- 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)
68 lines
2.3 KiB
BlitzBasic
68 lines
2.3 KiB
BlitzBasic
SUMMARY = "File system QA test suite"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSES/GPL-2.0;md5=74274e8a218423e49eefdea80bc55038"
|
|
|
|
SRCREV = "088e5bd4cb6d7295612430a56ae84ff5c8f54730"
|
|
SRCREV_unionmount = "e3825b16b46f4c4574a1a69909944c059835f914"
|
|
SRCREV_FORMAT = "default_unionmount"
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git;branch=master \
|
|
git://github.com/amir73il/unionmount-testsuite.git;branch=master;protocol=https;name=unionmount;destsuffix=unionmount-testsuite \
|
|
file://0001-add-missing-FTW_-macros-when-not-available-in-libc.patch \
|
|
file://0002-Drop-detached_mounts_propagation-and-remove-sys-moun.patch \
|
|
file://0001-include-libgen.h-for-basename-API-prototype.patch \
|
|
file://0002-Add-missing-STATX_ATTR_-defines-from-musl-sys-stat.h.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
# brokensep because m4/package_globals.m4 calls ". ./VERSION" (and that's not the only issue)
|
|
inherit autotools-brokensep useradd
|
|
|
|
DEPENDS += "xfsprogs acl"
|
|
RDEPENDS:${PN} += "\
|
|
bash \
|
|
bc \
|
|
coreutils \
|
|
e2fsprogs \
|
|
e2fsprogs-tune2fs \
|
|
e2fsprogs-resize2fs \
|
|
libaio \
|
|
libcap-bin \
|
|
overlayfs-tools \
|
|
perl \
|
|
python3 \
|
|
python3-core \
|
|
xfsprogs \
|
|
acl \
|
|
gawk \
|
|
"
|
|
|
|
USERADD_PACKAGES = "${PN}"
|
|
# these users are necessary to run the tests
|
|
USERADD_PARAM:${PN} = "-U -m fsgqa; -N 123456-fsgqa; -N fsgqa2"
|
|
|
|
EXTRA_OECONF = "INSTALL_USER=root INSTALL_GROUP=root"
|
|
|
|
TARGET_CC_ARCH:append:libc-musl = " -D_LARGEFILE64_SOURCE"
|
|
|
|
do_configure:prepend() {
|
|
# this is done by Makefile configure target, but we don't call it in do_configure
|
|
cp -a ${S}/include/install-sh .
|
|
}
|
|
|
|
do_install() {
|
|
# otherwise install-sh duplicates DESTDIR prefix
|
|
export DIST_ROOT="/" DIST_MANIFEST="" DESTDIR="${D}"
|
|
oe_runmake install
|
|
|
|
unionmount_target_dir=${D}${prefix}/xfstests/unionmount-testsuite
|
|
install -d $unionmount_target_dir/tests
|
|
install ${WORKDIR}/unionmount-testsuite/tests/* -t $unionmount_target_dir/tests
|
|
install ${WORKDIR}/unionmount-testsuite/*.py -t $unionmount_target_dir
|
|
install ${WORKDIR}/unionmount-testsuite/run -t $unionmount_target_dir
|
|
install ${WORKDIR}/unionmount-testsuite/README -t $unionmount_target_dir
|
|
}
|
|
|
|
FILES:${PN} += "${prefix}/xfstests"
|