1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-01-11 15:00:39 +00:00
Files
meta-arm/meta-arm-systemready/recipes-test/arm-systemready-acs/arm-systemready-scripts-native.bb
Jon Mason eea748608c arm: WORKDIR fixes
Upstream has removed the need for setting S to WORKDIR, and is throwing
an error if still doing so.  Make the necessary changes.

From the upstream commit, much of the changes where made via:
  sed -i "/^S = \"\${WORKDIR}\/git\"/d" `find . -name *.bb -o -name *.inc -o -name *.bbclass`
  sed -i "s/^S = \"\${WORKDIR}\//S = \"\${UNPACKDIR}\//g" `find . -name *.bb -o -name *.inc -o -name *.bbclass`

Suggested-by: Marcin Juszkiewicz <marcin-oe@juszkiewicz.com.pl>
Signed-off-by: Jon Mason <jon.mason@arm.com>
2025-06-28 11:03:40 -04:00

31 lines
1022 B
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"
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"