Pull request #47: fix(swupdate): make swupdate dependent on EFI

Merge in ICO/coreos from fix/remove_swupdate_from_qemu to master

* commit '17855553fc0f98d2946d11eb2ecc1379a44242ec':
  fix(swupdate): make swupdate dependent on EFI
This commit is contained in:
Patrick Vogelaar 2023-02-06 15:59:50 +01:00
commit 037c62be2c
1 changed files with 5 additions and 2 deletions

View File

@ -2,5 +2,8 @@ DESCRIPTION = "An image that come with most of the feature available in CoreOS"
inherit coreos-image inherit coreos-image
IMAGE_FEATURES += "ssh-server podman dev-tools cockpit networkmanager swupdate" IMAGE_FEATURES += "ssh-server podman dev-tools cockpit networkmanager"
IMAGE_INSTALL:append = " packagegroup-core-full-cmdline swupdate-www" IMAGE_FEATURES += "${@bb.utils.contains("MACHINE_FEATURES", "efi", "swupdate", "", d)}"
IMAGE_INSTALL:append = " packagegroup-core-full-cmdline"
IMAGE_INSTALL:append = "${@bb.utils.contains("IMAGE_FEATURES", "swupdate", " swupdate-www", "", d)}"