summaryrefslogtreecommitdiffstats
path: root/lib/MGA/DrakISO/BuildISO.pm
diff options
context:
space:
mode:
authorMartin Whitaker <mageia@martin-whitaker.me.uk>2018-04-28 15:19:42 +0100
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2018-05-23 18:31:00 +0100
commit5e956f41db6543d400c0e0ea682f906353a749f7 (patch)
treee54ca0f9aa2b981d5099a87b95991d24ac6207e8 /lib/MGA/DrakISO/BuildISO.pm
parent63c9d61e1e7fa64b4b977c49125cb8665b471465 (diff)
downloaddrakiso-5e956f41db6543d400c0e0ea682f906353a749f7.tar
drakiso-5e956f41db6543d400c0e0ea682f906353a749f7.tar.gz
drakiso-5e956f41db6543d400c0e0ea682f906353a749f7.tar.bz2
drakiso-5e956f41db6543d400c0e0ea682f906353a749f7.tar.xz
drakiso-5e956f41db6543d400c0e0ea682f906353a749f7.zip
Standardise on EFI, not UEFI.
Diffstat (limited to 'lib/MGA/DrakISO/BuildISO.pm')
-rw-r--r--lib/MGA/DrakISO/BuildISO.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/MGA/DrakISO/BuildISO.pm b/lib/MGA/DrakISO/BuildISO.pm
index 5ba55d0..7dc3667 100644
--- a/lib/MGA/DrakISO/BuildISO.pm
+++ b/lib/MGA/DrakISO/BuildISO.pm
@@ -64,10 +64,10 @@ sub build_iso {
);
}
-# This function builds a hybrid ISO capable of both legacy and UEFI boot. The
+# This function builds a hybrid ISO capable of both legacy and EFI boot. The
# ISO contains a primary iso9660 partition (which is the only thing visible
# when booting from DVD) and a secondary ESP partition (which is only used
-# for USB UEFI boot).
+# for USB EFI boot).
#
# For legacy boot, the system boots the grub2 El Torito image. For DVD boot,
# this is located via the El Torito catalogue. For USB boot, it is located
@@ -75,7 +75,7 @@ sub build_iso {
# cases the initial grub2 root location is the iso9660 partition, so the
# initial grub2 configuration file will be read from that partition.
#
-# For UEFI boot, the system boots the grub2 EFI image. For DVD boot, this
+# For EFI boot, the system boots the grub2 EFI image. For DVD boot, this
# is located via the El Torito catalogue, and we store it in the iso9660
# partition. For USB boot, it must be located in the /EFI/BOOT directory
# in the ESP. For DVD boot the initial grub2 root location is the iso9660
@@ -124,9 +124,9 @@ sub build_iso_image {
'-boot-info-table',
'--grub2-boot-info',
if_($efi_type ne 'none',
- # for DVD UEFI boot
+ # for DVD EFI boot
'--efi-boot', '--interval:appended_partition_2:all::',
- # for USB UEFI boot
+ # for USB EFI boot
'-part_like_isohybrid',
'-iso_mbr_part_type', '0x00',
'-append_partition', 2, '0xef', $esp_image,