- 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)
30 lines
920 B
BlitzBasic
30 lines
920 B
BlitzBasic
SUMMARY = "Chips&Media codec firmware files"
|
|
|
|
require recipes-bsp/ti-linux-fw/ti-linux-fw.inc
|
|
|
|
inherit update-alternatives
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENCE.cnm;md5=93b67e6bac7f8fec22b96b8ad0a1a9d0"
|
|
|
|
PV = "${CNM_WAVE521_FW_VERSION}"
|
|
PR = "${INC_PR}.1"
|
|
|
|
COMPATIBLE_MACHINE = "j721s2|j784s4|j722s|j742s2|am62axx|am62pxx"
|
|
|
|
TARGET_WAVE521C = "wave521c_k3_codec_fw.bin"
|
|
|
|
SOURCE_WAVE521C = "wave521c_k3_codec_fw.bin"
|
|
|
|
ALTERNATIVE_LINK_NAME[wave521c_codec_fw.bin] = "${nonarch_base_libdir}/firmware/${TARGET_WAVE521C}"
|
|
ALTERNATIVE_TARGET[wave521c_codec_fw.bin] = "${nonarch_base_libdir}/firmware/cnm/${TARGET_WAVE521C}"
|
|
ALTERNATIVE_PRIORITY = "10"
|
|
|
|
# Set up names for the firmwares
|
|
ALTERNATIVE:${PN} = "wave521c_codec_fw.bin"
|
|
|
|
do_install() {
|
|
install -d ${D}${nonarch_base_libdir}/firmware/cnm
|
|
install -m 0644 ${S}/cnm/${SOURCE_WAVE521C} ${D}${nonarch_base_libdir}/firmware/cnm/${TARGET_WAVE521C}
|
|
}
|