| Message ID | 20260328-default-features-v1-3-549331ccfab0@pbarker.dev (mailing list archive) |
|---|---|
| State | New |
| Headers | show |
| Series | Adapt to new default feature handling | expand |
diff --git a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf index b76edffa8fa3..713813a405f5 100644 --- a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf +++ b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf @@ -32,7 +32,7 @@ SPL_BINARY = "MLO" UBOOT_SUFFIX = "img" UBOOT_MACHINE = "am335x_evm_defconfig" -MACHINE_FEATURES = "usbgadget usbhost vfat alsa" +MACHINE_FEATURES = "${MACHINE_FEATURES_DEFAULT} usbgadget usbhost vfat alsa" IMAGE_BOOT_FILES ?= "u-boot.${UBOOT_SUFFIX} ${SPL_BINARY} ${KERNEL_IMAGETYPE} ${DTB_FILES}"
In openembedded-core, MACHINE_FEATURES_BACKFILL will be replaced to allow opting out of any default MACHINE_FEATURES. To adapt to this, we need to use MACHINE_FEATURES_DEFAULT to pick up the features that were previously added via backfill. Signed-off-by: Paul Barker <paul@pbarker.dev> --- meta-yocto-bsp/conf/machine/beaglebone-yocto.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)