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 | # |
Patrick Williams | 03514f1 | 2024-04-05 07:04:11 -0500 | [diff] [blame] | 5 | |
| 6 | PACKAGE_CLASSES ?= "package_ipk" |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 7 | require conf/distro/poky.conf |
| 8 | |
| 9 | DISTRO = "poky-altcfg" |
| 10 | DISTROOVERRIDES = "poky:poky-altcfg" |
| 11 | #DISTROOVERRIDES = "poky:linuxstdbase" |
| 12 | |
Andrew Geissler | c5535c9 | 2023-01-27 16:10:19 -0600 | [diff] [blame] | 13 | POKY_INIT_MANAGER:poky-altcfg = "systemd" |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 14 | # systemd isn't suitable with musl |
Andrew Geissler | c5535c9 | 2023-01-27 16:10:19 -0600 | [diff] [blame] | 15 | POKY_INIT_MANAGER:poky-altcfg:libc-musl = "sysvinit" |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 16 | |
| 17 | require conf/distro/include/poky-distro-alt-test-config.inc |