- 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)
32 lines
1.0 KiB
BlitzBasic
32 lines
1.0 KiB
BlitzBasic
SUMMARY = "System Ready Scripts"
|
|
DESCRIPTION = "A collection of scripts to help with SystemReady compliance."
|
|
HOMEPAGE = "https://gitlab.arm.com/systemready/systemready-scripts"
|
|
|
|
inherit native
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=85b7d439a311c22626c2e3f05daf628e"
|
|
|
|
RDEPENDS:${PN} = "python3-packaging-native python3-pyyaml-native \
|
|
python3-chardet-native python3-requests-native python3-construct-native \
|
|
dtc-native python3-dtschema-wrapper-native"
|
|
|
|
PV = "v2023.04"
|
|
S = "${WORKDIR}/git"
|
|
SRC_URI = "\
|
|
git://git.gitlab.arm.com/systemready/systemready-scripts.git;protocol=https;nobranch=1 \
|
|
file://0001-check-sr-results-Return-non-zero-exit-code-on-failur.patch \
|
|
file://0002-check-sr-results-Device-tree-improvements.patch \
|
|
"
|
|
|
|
# The SRCREV is at the v2023.04 tag
|
|
SRCREV = "f8244ab8da09f9e6005ceff81ebb234f35a2a698"
|
|
|
|
do_install() {
|
|
install -d ${D}/${libdir}/systemready_scripts
|
|
cp -r ${S}/* ${D}/${libdir}/systemready_scripts
|
|
}
|
|
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|