- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
40 lines
1.4 KiB
BlitzBasic
40 lines
1.4 KiB
BlitzBasic
DESCRIPTION = "Configuration utility for TI wireless drivers"
|
|
LICENSE = "GPL-2.0-only"
|
|
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/git/wilink8-wlan/18xx-ti-utils.git;branch=master;protocol=https"
|
|
|
|
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}${nonarch_base_libdir}/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}${nonarch_base_libdir}/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 \
|
|
${nonarch_base_libdir}/firmware/ti-connectivity/wl18xx-conf.bin \
|
|
"
|
|
|
|
FILES:${PN}-dbg += "${sbindir}/wlconf/.debug"
|