026ba608a1
Vendor the BitBake layer (recipes, network config, boost pin, kernel append, runqemu bridge script) alongside SMO for packaging as a Yocto image. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
333 B
BlitzBasic
16 lines
333 B
BlitzBasic
SUMMARY = "Probe kernel RSeq timeslice extension"
|
|
LICENSE = "CLOSED"
|
|
|
|
SRC_URI = "file://rseqsliceprobe.cpp"
|
|
|
|
S = "${UNPACKDIR}"
|
|
|
|
do_compile() {
|
|
${CXX} ${CXXFLAGS} ${LDFLAGS} ${S}/rseqsliceprobe.cpp -o rseqsliceprobe
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 rseqsliceprobe ${D}${bindir}/rseqsliceprobe
|
|
}
|