- 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)
58 lines
1.4 KiB
BlitzBasic
58 lines
1.4 KiB
BlitzBasic
DESCRIPTION = "Trusted Firmware-A tests(aka TFTF)"
|
|
LICENSE = "BSD-3-Clause & NCSA"
|
|
|
|
LIC_FILES_CHKSUM += "file://docs/license.rst;md5=6175cc0aa2e63b6d21a32aa0ee7d1b4a"
|
|
|
|
inherit deploy
|
|
|
|
COMPATIBLE_MACHINE ?= "invalid"
|
|
|
|
SRC_URI_TRUSTED_FIRMWARE_A_TESTS ?= "git://git.trustedfirmware.org/TF-A/tf-a-tests.git;protocol=https"
|
|
SRC_URI = "${SRC_URI_TRUSTED_FIRMWARE_A_TESTS};branch=${SRCBRANCH} \
|
|
file://tf-a-tests-no-warn-rwx-segments.patch"
|
|
SRCBRANCH = "lts-v2.8"
|
|
SRCREV = "85442d2943440718c2c2c9c5c690202b4b4f5725"
|
|
|
|
DEPENDS += "optee-os"
|
|
|
|
EXTRA_OEMAKE += "USE_NVM=0"
|
|
EXTRA_OEMAKE += "SHELL_COLOR=1"
|
|
EXTRA_OEMAKE += "DEBUG=1"
|
|
|
|
# Modify mode based on debug or release mode
|
|
TFTF_MODE ?= "debug"
|
|
|
|
# Platform must be set for each machine
|
|
TFA_PLATFORM ?= "invalid"
|
|
|
|
EXTRA_OEMAKE += "ARCH=aarch64"
|
|
EXTRA_OEMAKE += "LOG_LEVEL=50"
|
|
|
|
S = "${WORKDIR}/git"
|
|
B = "${WORKDIR}/build"
|
|
|
|
# Add platform parameter
|
|
EXTRA_OEMAKE += "BUILD_BASE=${B} PLAT=${TFA_PLATFORM}"
|
|
|
|
# Requires CROSS_COMPILE set by hand as there is no configure script
|
|
export CROSS_COMPILE="${TARGET_PREFIX}"
|
|
|
|
do_compile() {
|
|
oe_runmake -C ${S} tftf
|
|
}
|
|
|
|
do_compile[cleandirs] = "${B}"
|
|
|
|
FILES:${PN} = "/firmware/tftf.bin"
|
|
SYSROOT_DIRS += "/firmware"
|
|
|
|
do_install() {
|
|
install -d -m 755 ${D}/firmware
|
|
install -m 0644 ${B}/${TFA_PLATFORM}/${TFTF_MODE}/tftf.bin ${D}/firmware/tftf.bin
|
|
}
|
|
|
|
do_deploy() {
|
|
cp -rf ${D}/firmware/* ${DEPLOYDIR}/
|
|
}
|
|
addtask deploy after do_install
|