mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 06:16:04 +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>
30 lines
1000 B
BlitzBasic
30 lines
1000 B
BlitzBasic
SUMMARY = "Inject PCIE AER errors on the software level into a running Linux kernel."
|
|
DESCRIPTION = "\
|
|
aer-inject allows to inject PCIE AER errors on the software \
|
|
level into a running Linux kernel. This is intended for \
|
|
validation of the PCIE driver error recovery handler and \
|
|
PCIE AER core handler."
|
|
HOMEPAGE = "https://git.kernel.org/cgit/linux/kernel/git/gong.chen/aer-inject.git/"
|
|
SECTION = "pcie/misc"
|
|
LICENSE = "GPL-2.0-only"
|
|
|
|
LIC_FILES_CHKSUM = "file://README;beginline=25;endline=38;md5=643c2332ec702691a87ba6ea9499b2d6"
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/aer-inject.git;protocol=https;branch=master \
|
|
file://0001-include-libgen.h-for-basename.patch \
|
|
"
|
|
SRCREV = "9bd5e2c7886fca72f139cd8402488a2235957d41"
|
|
|
|
|
|
DEPENDS = "bison-native"
|
|
|
|
do_compile() {
|
|
oe_runmake CFLAGS="-Wall -D_GNU_SOURCE"
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' install
|
|
}
|
|
FILES:${PN} += "${prefix}/aer-inject"
|
|
BBCLASSEXTEND = "native nativesdk"
|