diff options
-rw-r--r-- | meta/classes/grub-efi-cfg.bbclass | 4 | ||||
-rw-r--r-- | meta/classes/grub-efi.bbclass | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/meta/classes/grub-efi-cfg.bbclass b/meta/classes/grub-efi-cfg.bbclass index 730323c72e..85173c91fc 100644 --- a/meta/classes/grub-efi-cfg.bbclass +++ b/meta/classes/grub-efi-cfg.bbclass | |||
@@ -22,6 +22,7 @@ GRUB_CFG_LIVE = "${S}/grub_live.cfg" | |||
22 | GRUB_TIMEOUT ?= "10" | 22 | GRUB_TIMEOUT ?= "10" |
23 | #FIXME: build this from the machine config | 23 | #FIXME: build this from the machine config |
24 | GRUB_OPTS ?= "serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1" | 24 | GRUB_OPTS ?= "serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1" |
25 | KERNEL_IMAGETYPE ??= "bzImage" | ||
25 | 26 | ||
26 | EFIDIR = "/EFI/BOOT" | 27 | EFIDIR = "/EFI/BOOT" |
27 | GRUB_ROOT ?= "${ROOT}" | 28 | GRUB_ROOT ?= "${ROOT}" |
@@ -97,7 +98,8 @@ python build_efi_cfg() { | |||
97 | lb = label | 98 | lb = label |
98 | if label == "install": | 99 | if label == "install": |
99 | lb = "install-efi" | 100 | lb = "install-efi" |
100 | cfgfile.write('linux /vmlinuz LABEL=%s' % (lb)) | 101 | kernel = localdata.getVar('KERNEL_IMAGETYPE') |
102 | cfgfile.write('linux /%s LABEL=%s' % (kernel, lb)) | ||
101 | 103 | ||
102 | cfgfile.write(' %s' % replace_rootfs_uuid(d, root)) | 104 | cfgfile.write(' %s' % replace_rootfs_uuid(d, root)) |
103 | 105 | ||
diff --git a/meta/classes/grub-efi.bbclass b/meta/classes/grub-efi.bbclass index 4b5704c19c..90badc03a0 100644 --- a/meta/classes/grub-efi.bbclass +++ b/meta/classes/grub-efi.bbclass | |||
@@ -26,7 +26,7 @@ efi_iso_populate() { | |||
26 | # Build a EFI directory to create efi.img | 26 | # Build a EFI directory to create efi.img |
27 | mkdir -p ${EFIIMGDIR}/${EFIDIR} | 27 | mkdir -p ${EFIIMGDIR}/${EFIDIR} |
28 | cp $iso_dir/${EFIDIR}/* ${EFIIMGDIR}${EFIDIR} | 28 | cp $iso_dir/${EFIDIR}/* ${EFIIMGDIR}${EFIDIR} |
29 | cp $iso_dir/vmlinuz ${EFIIMGDIR} | 29 | cp $iso_dir/${KERNEL_IMAGETYPE} ${EFIIMGDIR} |
30 | EFIPATH=$(echo "${EFIDIR}" | sed 's/\//\\/g') | 30 | EFIPATH=$(echo "${EFIDIR}" | sed 's/\//\\/g') |
31 | printf 'fs0:%s\%s\n' "$EFIPATH" "$GRUB_IMAGE" > ${EFIIMGDIR}/startup.nsh | 31 | printf 'fs0:%s\%s\n' "$EFIPATH" "$GRUB_IMAGE" > ${EFIIMGDIR}/startup.nsh |
32 | if [ -f "$iso_dir/initrd" ] ; then | 32 | if [ -f "$iso_dir/initrd" ] ; then |