distro/yocto: add meta-salmanoff Yocto layer for QEMU x86 images

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>
This commit is contained in:
2026-06-21 16:18:33 -04:00
parent 63ff0aa264
commit 026ba608a1
21 changed files with 1166 additions and 0 deletions
@@ -0,0 +1,15 @@
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
}