Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 1 | # |
| 2 | # An example of subclassing a distro, primarily used for testing alternate configuration |
| 3 | # combinations on the Yocto Project autobuilder |
| 4 | # |
| 5 | require conf/distro/poky.conf |
| 6 | |
| 7 | DISTRO = "poky-altcfg" |
| 8 | DISTROOVERRIDES = "poky:poky-altcfg" |
| 9 | #DISTROOVERRIDES = "poky:linuxstdbase" |
| 10 | |
| 11 | INIT_MANAGER ?= "systemd" |
| 12 | # systemd isn't suitable with musl |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 13 | INIT_MANAGER:libc-musl ?= "sysvinit" |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 14 | |
| 15 | require conf/distro/include/poky-distro-alt-test-config.inc |