summaryrefslogtreecommitdiffstats
path: root/meta/classes/bootimg.bbclass
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2011-11-23 17:56:12 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-30 22:18:08 +0000
commiteb4aa3483b1129a7137983ed54596030a5ccba2b (patch)
tree92a8309a4b4c5d51bdd9efe0da502b62ae913f23 /meta/classes/bootimg.bbclass
parentbcbd57aae576fa262c83f435bccf3bc3184e5506 (diff)
downloadpoky-eb4aa3483b1129a7137983ed54596030a5ccba2b.tar.gz
bootimg: Add grub-efi support
Create a new grub-efi.bbclass and integrate it into bootimg alongside the syslinux support. This new class uses the output from the grub-efi-native recipe. Thanks goes to Josef Ahmad <josef.ahmad@intel.com> for the original build_grub_cfg() routine. The EFI features are only added to the image if MACHINE_FEATURES contains "efi". The resulting images are therefor either legacy boot only (like they were originally) or legacy boot and EFI boot. A new "dummy.bbclass" was added to allow for the conditional include of grub-efi. This makes it so if efi support is not to be built in, we don't spend time building grub-efi-native just because the include adds the dependency. There is a bug in the mkdosfs tool from the dosfstools package which causes it to crash when the directory passed with the -d parameter contains sub-directories. An /EFI/BOOT directory is required for a proper EFI installation. Until it is fixed, we install to the top level directory for the hddimg. (From OE-Core rev: be95f54495bf9e03062f86b929c66cab6e385a03) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Josef Ahmad <josef.ahmad@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/bootimg.bbclass')
-rw-r--r--meta/classes/bootimg.bbclass13
1 files changed, 13 insertions, 0 deletions
diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass
index 0554ffa00a..ce95801bff 100644
--- a/meta/classes/bootimg.bbclass
+++ b/meta/classes/bootimg.bbclass
@@ -35,7 +35,12 @@ ISODIR = "${S}/cd"
35BOOTIMG_VOLUME_ID ?= "boot" 35BOOTIMG_VOLUME_ID ?= "boot"
36BOOTIMG_EXTRA_SPACE ?= "512" 36BOOTIMG_EXTRA_SPACE ?= "512"
37 37
38EFI = ${@base_contains("MACHINE_FEATURES", "efi", "1", "0", d)}
39EFI_CLASS = ${@base_contains("MACHINE_FEATURES", "efi", "grub-efi", "dummy", d)}
40
38inherit syslinux 41inherit syslinux
42inherit ${EFI_CLASS}
43
39 44
40build_iso() { 45build_iso() {
41 # Only create an ISO if we have an INITRD and NOISO was not set 46 # Only create an ISO if we have an INITRD and NOISO was not set
@@ -47,6 +52,9 @@ build_iso() {
47 install -d ${ISODIR} 52 install -d ${ISODIR}
48 53
49 syslinux_iso_populate 54 syslinux_iso_populate
55 if [ "${EFI}" = "1" ]; then
56 grubefi_iso_populate
57 fi
50 58
51 mkisofs -V ${BOOTIMG_VOLUME_ID} \ 59 mkisofs -V ${BOOTIMG_VOLUME_ID} \
52 -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.iso \ 60 -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.iso \
@@ -63,6 +71,9 @@ build_hddimg() {
63 if [ "${NOHDD}" != "1" ] ; then 71 if [ "${NOHDD}" != "1" ] ; then
64 install -d ${HDDDIR} 72 install -d ${HDDDIR}
65 syslinux_hddimg_populate 73 syslinux_hddimg_populate
74 if [ "${EFI}" = "1" ]; then
75 grubefi_hddimg_populate
76 fi
66 77
67 # Determine the block count for the final image 78 # Determine the block count for the final image
68 BLOCKS=`du -bks ${HDDDIR} | cut -f 1` 79 BLOCKS=`du -bks ${HDDDIR} | cut -f 1`
@@ -83,6 +94,8 @@ build_hddimg() {
83 94
84python do_bootimg() { 95python do_bootimg() {
85 bb.build.exec_func('build_syslinux_cfg', d) 96 bb.build.exec_func('build_syslinux_cfg', d)
97 if d.getVar("EFI", True) == "1":
98 bb.build.exec_func('build_grub_cfg', d)
86 bb.build.exec_func('build_hddimg', d) 99 bb.build.exec_func('build_hddimg', d)
87 bb.build.exec_func('build_iso', d) 100 bb.build.exec_func('build_iso', d)
88} 101}