- 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)
29 lines
795 B
BlitzBasic
29 lines
795 B
BlitzBasic
SUMMARY = "DP firmware"
|
|
LICENSE = "Proprietary"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d3c315c6eaa43e07d8c130dc3a04a011"
|
|
|
|
inherit deploy fsl-eula-unpack
|
|
|
|
SRC_URI = "${FSL_MIRROR}/firmware-imx-8.16.bin;fsl-eula=true"
|
|
|
|
SRC_URI[sha256sum] = "65f829a9e2597bffc58a680aaefa638122144a083633d1ae09b3aec1d9f8ab84"
|
|
|
|
S = "${WORKDIR}/firmware-imx-8.16"
|
|
|
|
do_install () {
|
|
install -d ${D}/boot
|
|
install -m 0644 ${S}/firmware/hdmi/cadence/dp_ls1028a.bin ${D}/boot/ls1028a-dp-fw.bin
|
|
}
|
|
|
|
do_deploy () {
|
|
install -d ${DEPLOYDIR}/dp
|
|
install -m 0644 ${S}/firmware/hdmi/cadence/dp_ls1028a.bin ${DEPLOYDIR}/dp/ls1028a-dp-fw.bin
|
|
}
|
|
addtask deploy before do_build after do_install
|
|
|
|
PACKAGES += "${PN}-image"
|
|
FILES:${PN}-image += "/boot"
|
|
|
|
COMPATIBLE_MACHINE = "(qoriq-arm64)"
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|