mirror of
https://github.com/Freescale/meta-freescale-3rdparty.git
synced 2025-07-19 12:09:01 +02:00

This avoid a warning, during recipe parsing of bitbake, due an incompatible machine as the nvram.txt is not available as no know default one is suitable for every board so a specific one is need. Change-Id: I409a1310c6f37975a46d79cdbd84665daa381e0d Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
30 lines
654 B
BlitzBasic
30 lines
654 B
BlitzBasic
DESCRIPTION = "Nvram support for Broadcom wifi chips"
|
|
SECTION = "kernel"
|
|
|
|
LICENSE = "Proprietary"
|
|
LIC_FILES_CHKSUM = "file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc"
|
|
|
|
SRC_URI = " \
|
|
file://nvram.txt \
|
|
file://LICENCE.broadcom_bcm43xx \
|
|
"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -d ${D}/lib/firmware/brcm
|
|
|
|
cp -r ${WORKDIR}/nvram.txt \
|
|
${D}/lib/firmware/brcm/brcmfmac-sdio.txt
|
|
}
|
|
|
|
FILES_${PN} = " \
|
|
/lib/firmware/brcm/brcmfmac-sdio.txt \
|
|
"
|
|
BROADCOM_FIRMWARE = "INVALID"
|
|
BROADCOM_FIRMWARE_wandboard-dual = "bcm4329"
|
|
|
|
RDEPENDS_${PN} = "linux-firmware-${BROADCOM_FIRMWARE}"
|
|
|
|
COMPATIBLE_MACHINE = "(wandboard-dual)"
|