summaryrefslogtreecommitdiffstats
path: root/meta/classes/syslinux.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/syslinux.bbclass')
-rw-r--r--meta/classes/syslinux.bbclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/syslinux.bbclass b/meta/classes/syslinux.bbclass
index d6498d98bb..44ef9a9176 100644
--- a/meta/classes/syslinux.bbclass
+++ b/meta/classes/syslinux.bbclass
@@ -34,6 +34,9 @@ ISO_BOOTCAT = "isolinux/boot.cat"
34MKISOFS_OPTIONS = "-no-emul-boot -boot-load-size 4 -boot-info-table" 34MKISOFS_OPTIONS = "-no-emul-boot -boot-load-size 4 -boot-info-table"
35APPEND_prepend = " ${SYSLINUX_ROOT} " 35APPEND_prepend = " ${SYSLINUX_ROOT} "
36 36
37# Need UUID utility code.
38inherit fs-uuid
39
37syslinux_populate() { 40syslinux_populate() {
38 DEST=$1 41 DEST=$1
39 BOOTDIR=$2 42 BOOTDIR=$2
@@ -177,7 +180,7 @@ python build_syslinux_cfg () {
177 cfgfile.write('initrd=/initrd ') 180 cfgfile.write('initrd=/initrd ')
178 181
179 cfgfile.write('LABEL=%s '% (label)) 182 cfgfile.write('LABEL=%s '% (label))
180 183 append = replace_rootfs_uuid(d, append)
181 cfgfile.write('%s %s\n' % (append, btype[1])) 184 cfgfile.write('%s %s\n' % (append, btype[1]))
182 else: 185 else:
183 cfgfile.write('APPEND %s\n' % btype[1]) 186 cfgfile.write('APPEND %s\n' % btype[1])