- 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
706 B
BlitzBasic
29 lines
706 B
BlitzBasic
SUMMARY = "Firmwares and Standalone Applications"
|
|
LICENSE = "NXP-Binary-EULA"
|
|
LIC_FILES_CHKSUM = "file://EULA.txt;md5=86d76166990962fa552f840ff08e5798"
|
|
|
|
inherit deploy
|
|
|
|
SRC_URI = "git://github.com/nxp/qoriq-firmware-inphi.git;nobranch=1;protocol=https"
|
|
SRCREV = "f22e9ff3bfed8342da6efb699e473b11fbad5695"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install () {
|
|
install -d ${D}/boot
|
|
cp -fr ${S}/in112525-phy-ucode.txt ${D}/boot
|
|
}
|
|
|
|
do_deploy () {
|
|
install -d ${DEPLOYDIR}/inphi
|
|
cp -fr ${S}/in112525-phy-ucode.txt ${DEPLOYDIR}/inphi
|
|
}
|
|
addtask deploy before do_build after do_install
|
|
|
|
PACKAGES += "${PN}-image"
|
|
FILES:${PN}-image += "/boot"
|
|
|
|
COMPATIBLE_MACHINE = "(qoriq-arm64)"
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|