meta-digi-arm: qualcomm: Move cfg.dat and qcom_cfg.ini to module recipe
The firmware configuration and the driver configuration are part of the driver repository. Stop duplicating the content in meta-digi so they are updated with the driver itself. https://jira.digi.com/browse/DEL-4021 Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
This commit is contained in:
parent
dba3244a3e
commit
5d2d0011d0
|
|
@ -19,8 +19,6 @@ FW_QCA6564-WIFI = " \
|
||||||
file://otp30.bin \
|
file://otp30.bin \
|
||||||
file://qwlan30.bin \
|
file://qwlan30.bin \
|
||||||
file://utf30.bin \
|
file://utf30.bin \
|
||||||
file://wlan/cfg.dat \
|
|
||||||
file://wlan/qcom_cfg.ini \
|
|
||||||
"
|
"
|
||||||
|
|
||||||
SRC_URI = " \
|
SRC_URI = " \
|
||||||
|
|
@ -41,7 +39,7 @@ do_install() {
|
||||||
${D}${base_libdir}/firmware/qca
|
${D}${base_libdir}/firmware/qca
|
||||||
|
|
||||||
# Wifi firmware
|
# Wifi firmware
|
||||||
install -d ${D}${base_libdir}/firmware/wlan
|
install -d ${D}${base_libdir}/firmware
|
||||||
install -m 0644 \
|
install -m 0644 \
|
||||||
bdwlan30_US.bin \
|
bdwlan30_US.bin \
|
||||||
bdwlan30_World.bin \
|
bdwlan30_World.bin \
|
||||||
|
|
@ -50,10 +48,6 @@ do_install() {
|
||||||
qwlan30.bin \
|
qwlan30.bin \
|
||||||
utf30.bin \
|
utf30.bin \
|
||||||
${D}${base_libdir}/firmware
|
${D}${base_libdir}/firmware
|
||||||
install -m 0644 \
|
|
||||||
wlan/cfg.dat \
|
|
||||||
wlan/qcom_cfg.ini \
|
|
||||||
${D}${base_libdir}/firmware/wlan
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Do not create empty debug and development packages (PN-dbg PN-dev PN-staticdev)
|
# Do not create empty debug and development packages (PN-dbg PN-dev PN-staticdev)
|
||||||
|
|
|
||||||
|
|
@ -42,11 +42,16 @@ do_install_append() {
|
||||||
install -m 0755 ${WORKDIR}/qualcomm-pre-up ${D}${sysconfdir}/network/if-pre-up.d/qualcomm
|
install -m 0755 ${WORKDIR}/qualcomm-pre-up ${D}${sysconfdir}/network/if-pre-up.d/qualcomm
|
||||||
install -d ${D}${sysconfdir}/modprobe.d
|
install -d ${D}${sysconfdir}/modprobe.d
|
||||||
install -m 0644 ${WORKDIR}/modprobe-qualcomm.conf ${D}${sysconfdir}/modprobe.d/qualcomm.conf
|
install -m 0644 ${WORKDIR}/modprobe-qualcomm.conf ${D}${sysconfdir}/modprobe.d/qualcomm.conf
|
||||||
|
install -d ${D}${base_libdir}/firmware/wlan/
|
||||||
|
install -m 0644 ${WORKDIR}/git/firmware_bin/WCNSS_cfg.dat ${D}${base_libdir}/firmware/wlan/cfg.dat
|
||||||
|
install -m 0644 ${WORKDIR}/git/firmware_bin/WCNSS_qcom_cfg.ini ${D}${base_libdir}/firmware/wlan/qcom_cfg.ini
|
||||||
}
|
}
|
||||||
|
|
||||||
FILES_${PN} += " \
|
FILES_${PN} += " \
|
||||||
${sysconfdir}/network/if-pre-up.d/qualcomm \
|
${sysconfdir}/network/if-pre-up.d/qualcomm \
|
||||||
${sysconfdir}/modprobe.d/qualcomm.conf \
|
${sysconfdir}/modprobe.d/qualcomm.conf \
|
||||||
|
${base_libdir}/firmware/wlan/cfg.dat \
|
||||||
|
${base_libdir}/firmware/wlan/qcom_cfg.ini \
|
||||||
"
|
"
|
||||||
|
|
||||||
COMPATIBLE_MACHINE = "(ccimx6ul)"
|
COMPATIBLE_MACHINE = "(ccimx6ul)"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue