blob: 3d64bdd1feaac974552c98bce36fdb280356f453 [file] [log] [blame]
Brad Bishop79641f22019-09-10 07:20:22 -04001#
2# An example of subclassing a distro, primarily used for testing alternate configuration
3# combinations on the Yocto Project autobuilder
4#
Patrick Williams03514f12024-04-05 07:04:11 -05005
6PACKAGE_CLASSES ?= "package_ipk"
Brad Bishop79641f22019-09-10 07:20:22 -04007require conf/distro/poky.conf
8
9DISTRO = "poky-altcfg"
10DISTROOVERRIDES = "poky:poky-altcfg"
11#DISTROOVERRIDES = "poky:linuxstdbase"
12
Andrew Geisslerc5535c92023-01-27 16:10:19 -060013POKY_INIT_MANAGER:poky-altcfg = "systemd"
Brad Bishop79641f22019-09-10 07:20:22 -040014# systemd isn't suitable with musl
Andrew Geisslerc5535c92023-01-27 16:10:19 -060015POKY_INIT_MANAGER:poky-altcfg:libc-musl = "sysvinit"
Brad Bishop79641f22019-09-10 07:20:22 -040016
17require conf/distro/include/poky-distro-alt-test-config.inc