Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 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)
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
SUMMARY = "i.MX Optional Execution Image"
|
||||
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b66f32a90f9577a5a3255c21d79bc619"
|
||||
|
||||
INHIBIT_DEFAULT_DEPS = "1"
|
||||
DEPENDS = "gcc-arm-none-eabi-native"
|
||||
|
||||
SRC_URI = "${IMX_OEI_SRC};branch=${SRCBRANCH}"
|
||||
IMX_OEI_SRC ?= "git://github.com/nxp-imx/imx-oei.git;protocol=https"
|
||||
SRCBRANCH = "master"
|
||||
SRCREV = "ca91ce798b2f3a2a0bab8c0f835f4bea88c9b080"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit deploy
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
||||
OEI_CONFIGS ?= "UNDEFINED"
|
||||
OEI_CORE ?= "UNDEFINED"
|
||||
OEI_SOC ?= "UNDEFINED"
|
||||
OEI_BOARD ?= "UNDEFINED"
|
||||
OEI_DDRCONFIG ?= ""
|
||||
|
||||
LDFLAGS[unexport] = "1"
|
||||
|
||||
EXTRA_OEMAKE = "\
|
||||
board=${OEI_BOARD} \
|
||||
DEBUG=1 \
|
||||
OEI_CROSS_COMPILE=arm-none-eabi-"
|
||||
|
||||
EXTRA_OEMAKE:append:mx95-generic-bsp = " r=${IMX_SOC_REV}"
|
||||
EXTRA_OEMAKE:append = " ${@' DDR_CONFIG=${OEI_DDRCONFIG}' if d.getVar('OEI_DDRCONFIG') else ''}"
|
||||
|
||||
do_configure() {
|
||||
for oei_config in ${OEI_CONFIGS}; do
|
||||
oe_runmake clean oei=$oei_config
|
||||
done
|
||||
}
|
||||
|
||||
do_compile() {
|
||||
for oei_config in ${OEI_CONFIGS}; do
|
||||
oe_runmake oei=$oei_config
|
||||
done
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}/firmware
|
||||
for oei_config in ${OEI_CONFIGS}; do
|
||||
install -m 0644 ${B}/build/${OEI_BOARD}/$oei_config/oei-*.bin ${D}/firmware
|
||||
done
|
||||
}
|
||||
|
||||
addtask deploy after do_install
|
||||
do_deploy() {
|
||||
cp -rf ${D}/firmware/* ${DEPLOYDIR}/
|
||||
}
|
||||
|
||||
FILES:${PN} = "/firmware"
|
||||
SYSROOT_DIRS += "/firmware"
|
||||
|
||||
PROVIDES += "virtual/imx-oei"
|
||||
|
||||
COMPATIBLE_MACHINE = "(mx95-generic-bsp)"
|
||||
Reference in New Issue
Block a user