- 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)
34 lines
953 B
BlitzBasic
34 lines
953 B
BlitzBasic
#
|
|
# Copyright (C) 2012 Wind River Systems, Inc.
|
|
#
|
|
SUMMARY = "MCE test suite"
|
|
|
|
DESCRIPTION = "The MCE test suite is a collection of tools and test scripts for \
|
|
testing the Linux RAS related features, including CPU/Memory error \
|
|
containment and recovery, ACPI/APEI support etc."
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/utils/cpu/mce/mce-test.git;protocol=git;branch=master \
|
|
file://makefile-remove-ldflags.patch \
|
|
file://0001-gcov_merge.py-scov_merge.py-switch-to-python3.patch \
|
|
"
|
|
SRCREV = "025014dedca39d2b8a57a82e52286e72e157d73a"
|
|
PV = "20222810+git"
|
|
|
|
RDEPENDS:${PN} = "mcelog mce-inject dialog bash"
|
|
|
|
COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
|
|
|
|
S ="${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE += "CFLAGS='${CFLAGS}'"
|
|
|
|
do_install:append(){
|
|
install -d ${D}/opt/mce-test
|
|
cp -rf ${S}/* ${D}/opt/mce-test/
|
|
}
|
|
|
|
FILES:${PN} += "/opt"
|