mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
bd6a1bb278
Recipes are much more readable with whitespace around the assignment operators. Fix various assignments in meta-openembedded recipes to show this is definitely the preferred formatting. This fixes recipes with larger numbers of issues but there are just under 100 other references left to fix. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
34 lines
954 B
BlitzBasic
34 lines
954 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 = "9d11fc3e05eae7b454efeb5941beded56f80445b"
|
|
PV = "20230601+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"
|