diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/image-live.bbclass | 4 | ||||
-rw-r--r-- | meta/classes/image-vm.bbclass | 2 | ||||
-rw-r--r-- | meta/classes/live-vm-common.bbclass | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/meta/classes/image-live.bbclass b/meta/classes/image-live.bbclass index 3a6e5f0e5b..c1862b1319 100644 --- a/meta/classes/image-live.bbclass +++ b/meta/classes/image-live.bbclass | |||
@@ -217,10 +217,10 @@ build_fat_img() { | |||
217 | fi | 217 | fi |
218 | 218 | ||
219 | if [ -z "${HDDIMG_ID}" ]; then | 219 | if [ -z "${HDDIMG_ID}" ]; then |
220 | mkdosfs ${FATSIZE} -n ${BOOTIMG_VOLUME_ID} -S 512 -C ${FATIMG} \ | 220 | mkdosfs ${FATSIZE} -n ${BOOTIMG_VOLUME_ID} ${MKDOSFS_EXTRAOPTS} -C ${FATIMG} \ |
221 | ${BLOCKS} | 221 | ${BLOCKS} |
222 | else | 222 | else |
223 | mkdosfs ${FATSIZE} -n ${BOOTIMG_VOLUME_ID} -S 512 -C ${FATIMG} \ | 223 | mkdosfs ${FATSIZE} -n ${BOOTIMG_VOLUME_ID} ${MKDOSFS_EXTRAOPTS} -C ${FATIMG} \ |
224 | ${BLOCKS} -i ${HDDIMG_ID} | 224 | ${BLOCKS} -i ${HDDIMG_ID} |
225 | fi | 225 | fi |
226 | 226 | ||
diff --git a/meta/classes/image-vm.bbclass b/meta/classes/image-vm.bbclass index 98bd92000e..b52df9fbf5 100644 --- a/meta/classes/image-vm.bbclass +++ b/meta/classes/image-vm.bbclass | |||
@@ -68,7 +68,7 @@ build_boot_dd() { | |||
68 | 68 | ||
69 | # Remove it since mkdosfs would fail when it exists | 69 | # Remove it since mkdosfs would fail when it exists |
70 | rm -f $HDDIMG | 70 | rm -f $HDDIMG |
71 | mkdosfs -n ${BOOTDD_VOLUME_ID} -S 512 -C $HDDIMG $BLOCKS | 71 | mkdosfs -n ${BOOTDD_VOLUME_ID} ${MKDOSFS_EXTRAOPTS} -C $HDDIMG $BLOCKS |
72 | mcopy -i $HDDIMG -s $HDDDIR/* ::/ | 72 | mcopy -i $HDDIMG -s $HDDDIR/* ::/ |
73 | 73 | ||
74 | if [ "${PCBIOS}" = "1" ]; then | 74 | if [ "${PCBIOS}" = "1" ]; then |
diff --git a/meta/classes/live-vm-common.bbclass b/meta/classes/live-vm-common.bbclass index 27b137dec6..e1d8b1843b 100644 --- a/meta/classes/live-vm-common.bbclass +++ b/meta/classes/live-vm-common.bbclass | |||
@@ -15,6 +15,8 @@ EFI = "${@bb.utils.contains("MACHINE_FEATURES", "efi", "1", "0", d)}" | |||
15 | EFI_PROVIDER ?= "grub-efi" | 15 | EFI_PROVIDER ?= "grub-efi" |
16 | EFI_CLASS = "${@bb.utils.contains("MACHINE_FEATURES", "efi", "${EFI_PROVIDER}", "", d)}" | 16 | EFI_CLASS = "${@bb.utils.contains("MACHINE_FEATURES", "efi", "${EFI_PROVIDER}", "", d)}" |
17 | 17 | ||
18 | MKDOSFS_EXTRAOPTS ??= "-S 512" | ||
19 | |||
18 | # Include legacy boot if MACHINE_FEATURES includes "pcbios" or if it does not | 20 | # Include legacy boot if MACHINE_FEATURES includes "pcbios" or if it does not |
19 | # contain "efi". This way legacy is supported by default if neither is | 21 | # contain "efi". This way legacy is supported by default if neither is |
20 | # specified, maintaining the original behavior. | 22 | # specified, maintaining the original behavior. |