9 lines
307 B
Plaintext
9 lines
307 B
Plaintext
# Remove EFI support for machines which don't support it
|
|
EFI = "${@bb.utils.contains("MACHINE_FEATURES", "efi", "1", "0", d)}"
|
|
COREOS_IMAGE_GENERATE_UKI = "${EFI}"
|
|
COREOS_IMAGE_GENERATE_INSTALLER = "${EFI}"
|
|
COREOS_IMAGE_GENERATE_SWU = "${EFI}"
|
|
|
|
# Base classe for all image based on NWL
|
|
inherit coreos-image
|