mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
poky itself defaults to rpm packaging. In support of the binary distro testing, and for wider testing in general, default poky-altcfg to ipk. Since we plan to have better "binary distro" testing on the autobuilder and we plan to primarily use ipk for this, having ipk based images available as part of our builds is desireable. Since we want systemd based images with ipk, it makes sense to leave standard poky using rpm images but switch poky-altcfg to use ipk. Doing this now for scarthgap gives us a good platform to build off in the long term too. This matches https://git.yoctoproject.org/yocto-autobuilder-helper/commit/?id=a9b4f83c05136dd83e07c0f68ae2ad13507ed36a (From meta-yocto rev: 6d89a66ad8a28d07425cf8886567038950ef65e7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
497 B
Plaintext
18 lines
497 B
Plaintext
#
|
|
# An example of subclassing a distro, primarily used for testing alternate configuration
|
|
# combinations on the Yocto Project autobuilder
|
|
#
|
|
|
|
PACKAGE_CLASSES ?= "package_ipk"
|
|
require conf/distro/poky.conf
|
|
|
|
DISTRO = "poky-altcfg"
|
|
DISTROOVERRIDES = "poky:poky-altcfg"
|
|
#DISTROOVERRIDES = "poky:linuxstdbase"
|
|
|
|
POKY_INIT_MANAGER:poky-altcfg = "systemd"
|
|
# systemd isn't suitable with musl
|
|
POKY_INIT_MANAGER:poky-altcfg:libc-musl = "sysvinit"
|
|
|
|
require conf/distro/include/poky-distro-alt-test-config.inc
|