mirror of
https://github.com/Freescale/meta-freescale-3rdparty.git
synced 2025-07-05 05:15:24 +02:00
imx6qdl-variscite-som: Fix huge wifi startup delay
* We see kernel complaining more than once complaining: | wl18xx_driver wl18xx.2.auto: Direct firmware load for ti-connectivity/wl18xx-conf.bin failed with error -2 * It took a ages for wifi to come up * recipe was stolen from [1] and slightly modified [1] http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-connectivity/wlconf/wlconf_8.7.3.bb?h=master Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
This commit is contained in:
parent
efdb7b0307
commit
ec9c495bd3
|
@ -56,6 +56,6 @@ SERIAL_CONSOLES = "115200;ttymxc0"
|
|||
|
||||
USE_VT = "0"
|
||||
|
||||
MACHINE_FIRMWARE_append = " linux-firmware-wl12xx linux-firmware-wl18xx"
|
||||
MACHINE_FIRMWARE_append = " linux-firmware-wl12xx linux-firmware-wl18xx ti-18xx-wlconf"
|
||||
|
||||
MACHINE_FEATURES += " pci bluetooth touchscreen wifi"
|
||||
|
|
40
recipes-connectivity/ti-18xx-wlconf/ti-18xx-wlconf_8.7.3..bb
Normal file
40
recipes-connectivity/ti-18xx-wlconf/ti-18xx-wlconf_8.7.3..bb
Normal file
|
@ -0,0 +1,40 @@
|
|||
SUMMARY = "Configuration utility for TI wireless drivers"
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85c90328e3a9438"
|
||||
|
||||
# Tag: R8.7_SP3 (8.7.3)
|
||||
SRCREV = "5048b59a444ac59ba7171d6e122d5a84581aebf2"
|
||||
SRC_URI = "git://git.ti.com/wilink8-wlan/18xx-ti-utils.git"
|
||||
|
||||
S = "${WORKDIR}/git/wlconf"
|
||||
|
||||
EXTRA_OEMAKE = "CC="${CC}""
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${sbindir}
|
||||
install -d ${D}${sbindir}/wlconf/
|
||||
install -d ${D}${sbindir}/wlconf/official_inis
|
||||
install -d ${D}/lib/firmware/ti-connectivity
|
||||
|
||||
install -m 0755 wlconf ${D}${sbindir}/wlconf/
|
||||
install -m 0755 dictionary.txt ${D}${sbindir}/wlconf/
|
||||
install -m 0755 struct.bin ${D}${sbindir}/wlconf/
|
||||
install -m 0755 default.conf ${D}${sbindir}/wlconf/
|
||||
install -m 0755 wl18xx-conf-default.bin ${D}${sbindir}/wlconf/
|
||||
install -m 0755 wl18xx-conf-default.bin ${D}/lib/firmware/ti-connectivity/wl18xx-conf.bin
|
||||
install -m 0755 README ${D}${sbindir}/wlconf/
|
||||
install -m 0755 example.conf ${D}${sbindir}/wlconf/
|
||||
install -m 0755 example.ini ${D}${sbindir}/wlconf/
|
||||
install -m 0755 configure-device.sh ${D}${sbindir}/wlconf/
|
||||
install -m 0755 ${S}/official_inis/* \
|
||||
${D}${sbindir}/wlconf/official_inis/
|
||||
}
|
||||
|
||||
FILES_${PN} += " \
|
||||
${sbindir}/wlconf \
|
||||
${sbindir}/wlconf/official_inis \
|
||||
/lib/firmware/ti-connectivity/wl18xx-conf.bin \
|
||||
"
|
||||
|
||||
FILES_${PN}-dbg += "${sbindir}/wlconf/.debug"
|
||||
|
Loading…
Reference in New Issue
Block a user