mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-27 12:01:38 +01:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
34 lines
970 B
BlitzBasic
34 lines
970 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 \
|
|
file://0001-ltp-pan-fix-wait_handler-declaration.patch \
|
|
"
|
|
SRCREV = "9d11fc3e05eae7b454efeb5941beded56f80445b"
|
|
PV = "20230601+git"
|
|
|
|
RDEPENDS:${PN} = "mcelog mce-inject dialog bash"
|
|
|
|
COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
|
|
|
|
|
|
EXTRA_OEMAKE += "CFLAGS='${CFLAGS}'"
|
|
|
|
do_install:append(){
|
|
install -d ${D}/opt/mce-test
|
|
cp -rf ${S}/* ${D}/opt/mce-test/
|
|
}
|
|
|
|
FILES:${PN} += "/opt"
|