diff options
author | California Sullivan <california.l.sullivan@intel.com> | 2018-02-28 18:14:59 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-06 06:23:06 -0800 |
commit | eff14ba3e49d77bfc8167a19a0f58563270f2a51 (patch) | |
tree | 93b24817d8980aeca383e7419106db1d77eede89 | |
parent | 8daf2c544eb40d97d99a41627ddc5529c0e23f3c (diff) | |
download | openembedded-core-contrib-eff14ba3e49d77bfc8167a19a0f58563270f2a51.tar.gz |
grub: create recipe for configuration
This makes use of the grub-efi-cfg bbclass that was split out to create
a grub.cfg file just like the old one.
Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-bsp/grub/grub-bootconf_1.00.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/grub-bootconf_1.00.bb b/meta/recipes-bsp/grub/grub-bootconf_1.00.bb new file mode 100644 index 00000000000..d376fde68b1 --- /dev/null +++ b/meta/recipes-bsp/grub/grub-bootconf_1.00.bb @@ -0,0 +1,29 @@ +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" +SUMMARY = "Basic grub.cfg for use in EFI systems" + +RPROVIDES_${PN} += "virtual/grub-bootconf" + +inherit grub-efi-cfg + +S = "${WORKDIR}" + +GRUB_CFG = "${S}/grub-bootconf" +LABELS = "boot" + +ROOT ?= "root=/dev/sda2" + +python do_configure() { + bb.build.exec_func('build_efi_cfg', d) +} + +do_configure[vardeps] += "APPEND ROOT" + +do_install() { + install -d ${D}/boot + install -d ${D}/boot/EFI + install -d ${D}/boot/EFI/BOOT + install -m 0744 grub-bootconf ${D}/boot/EFI/BOOT/grub.cfg +} + +FILES_${PN} = "/boot/EFI/BOOT/grub.cfg" |