mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
Just to keep things standard and clear, use the new INIT_MANAGER variable in the main distro config. This matches the default config with the addition of some DISTRO_FEATURES tweaks. (From meta-yocto rev: 07556802447a157bfdae842354c064e50ae09d42) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
453 B
Plaintext
16 lines
453 B
Plaintext
#
|
|
# An example of subclassing a distro, primarily used for testing alternate configuration
|
|
# combinations on the Yocto Project autobuilder
|
|
#
|
|
require conf/distro/poky.conf
|
|
|
|
DISTRO = "poky-altcfg"
|
|
DISTROOVERRIDES = "poky:poky-altcfg"
|
|
#DISTROOVERRIDES = "poky:linuxstdbase"
|
|
|
|
INIT_MANAGER:poky-altcfg = "systemd"
|
|
# systemd isn't suitable with musl
|
|
INIT_MANAGER:poky-altcfg:libc-musl = "sysvinit"
|
|
|
|
require conf/distro/include/poky-distro-alt-test-config.inc
|