From 48c335a46e03b46540a83a365fea76b92940927b Mon Sep 17 00:00:00 2001 From: Todor Minchev Date: Tue, 13 Dec 2016 14:56:49 -0800 Subject: rmc: add support for alternative EFI bootloaders RMC was previously configured to work only with the systemd-boot EFI bootloader. With this commit we can specify alternative bootloaders by setting the RMC_BOOTLOADER variable in local.conf. If RMC_BOOTLOADER is not set systemd-boot will be used by default. Signed-off-by: Todor Minchev Signed-off-by: California Sullivan --- classes/rmc-boot.bbclass | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 classes/rmc-boot.bbclass (limited to 'classes/rmc-boot.bbclass') diff --git a/classes/rmc-boot.bbclass b/classes/rmc-boot.bbclass new file mode 100644 index 00000000..a1f2093f --- /dev/null +++ b/classes/rmc-boot.bbclass @@ -0,0 +1,13 @@ +# rmc-boot bbclass +# Deploy central RMC database file to ESP + +IMAGE_INSTALL_append = " rmc" +RMC_BOOTLOADER ?= "systemd-boot" + +inherit ${RMC_BOOTLOADER} + +do_bootimg[depends] += "${MLPREFIX}rmc-db:do_deploy" + +efi_populate_append() { + install -m 0400 ${DEPLOY_DIR_IMAGE}/rmc.db ${DEST}/rmc.db +} -- cgit v1.2.3-54-g00ecf