mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00

Add firmware required by the Intel Centrino Adnanced-N 6205 mini-pcie card. The content is already available in the linux-firmware repository, this patch just adds the meta-data to include the right files and define a package. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
19 lines
522 B
Plaintext
19 lines
522 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR/${PN}:"
|
|
|
|
# This exists in Yocto 1.1, but include it here for completeness
|
|
LIC_FILES_CHKSUM += "file://LICENCE.iwlwifi_firmware;md5=311cc823df5b1be4f00fbf0f17d96a6b"
|
|
|
|
FWPATH = "/lib/firmware"
|
|
|
|
do_install_append() {
|
|
install -m 0644 LICENCE.iwlwifi_firmware ${D}${FWPATH}
|
|
install -m 0644 iwlwifi-6000g2a-5.ucode ${D}${FWPATH}
|
|
}
|
|
|
|
PACKAGES =+ "${PN}-iwlwifi-6000g2a-5"
|
|
|
|
FILES_${PN}-iwlwifi-6000g2a-5 = " \
|
|
${FWPATH}/LICENCE.iwlwifi_firmware \
|
|
${FWPATH}/iwlwifi-6000g2a-5.ucode \
|
|
"
|