- 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)
36 lines
1.0 KiB
BlitzBasic
36 lines
1.0 KiB
BlitzBasic
SUMMARY = "PPFE Linux firmware"
|
|
LICENSE = "NXP-Binary-EULA"
|
|
LIC_FILES_CHKSUM = "file://NXP-Binary-EULA.txt;md5=92723670f432558b9e2494ed177d2a85"
|
|
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
inherit deploy
|
|
|
|
SRC_URI = "git://github.com/NXP/qoriq-engine-pfe-bin.git;nobranch=1;protocol=https"
|
|
SRCREV = "f55ee9f72090309bbb7ab71f48a498fc02909234"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install () {
|
|
install -d ${D}${nonarch_base_libdir}/firmware
|
|
install -d ${D}/boot/engine-pfe-bin
|
|
install -m 644 ${S}/NXP-Binary-EULA.txt ${D}${nonarch_base_libdir}/firmware
|
|
install -m 755 ${S}/ls1012a/slow_path/*.elf ${D}${nonarch_base_libdir}/firmware
|
|
install -m 755 ${S}/ls1012a/u-boot/* ${D}/boot/engine-pfe-bin
|
|
}
|
|
|
|
do_deploy () {
|
|
install -d ${DEPLOYDIR}/engine-pfe-bin
|
|
cp -r ${D}/boot/engine-pfe-bin/* ${DEPLOYDIR}/engine-pfe-bin
|
|
}
|
|
|
|
addtask deploy after do_install
|
|
|
|
FILES:${PN} += "${nonarch_base_libdir}/firmware /boot/"
|
|
INSANE_SKIP:${PN} += "arch already-stripped"
|
|
INHIBIT_PACKAGE_STRIP = "1"
|
|
INHIBIT_SYSROOT_STRIP = "1"
|
|
|
|
COMPATIBLE_MACHINE = "(ls1012a)"
|