Booting yocto system (and many other useful scripts)

This commit is contained in:
2025-07-31 17:44:58 +02:00
parent 3fd35d723a
commit 40ae7a8412
14 changed files with 141 additions and 77 deletions

View File

@@ -0,0 +1,19 @@
require conf/distro/poky.conf
DISTRO = "fcb-looper"
DISTRO_NAME = "FCB Looper Distribution"
DISTRO_VERSION = "1.0"
# Use busybox-mdev as device manager
VIRTUAL-RUNTIME_dev_manager = "busybox-mdev"
## Distro features for GUI, W^Fi, and systemd
#DISTRO_FEATURES:append = " wayland systemd pam usrmerge wifi opengl"
#DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit"
#
## Systemd configuration
#VIRTUAL-RUNTIME_init_manager = "systemd"
#VIRTUAL-RUNTIME_initscripts = ""
#
## Default target
#SYSTEMD_DEFAULT_TARGET = "graphical.target"

View File

@@ -4,12 +4,12 @@ BBPATH .= ":${LAYERDIR}"
# Layer recipes
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "meta-fcb-looper"
BBFILE_PATTERN_meta-fcb-looper = "^${LAYERDIR}/"
BBFILE_PRIORITY_meta-fcb-looper = "10"
BBFILE_COLLECTIONS += "fcb-looper-layer"
BBFILE_PATTERN_fcb-looper-layer = "^${LAYERDIR}/"
BBFILE_PRIORITY_fcb-looper-layer = "10"
LAYERVERSION_meta-fcb-looper = "1"
LAYERSERIES_COMPAT_meta-fcb-looper = "scarthgap"
LAYERVERSION_fcb-looper-layer = "1"
LAYERSERIES_COMPAT_fcb-looper-layer = "scarthgap"
# Dependencies
LAYERDEPENDS_meta-fcb-looper = "core openembedded-layer rust-bin-layer"
LAYERDEPENDS_fcb-looper-layer = "core intel openembedded-layer rust-bin-layer"