summaryrefslogtreecommitdiffstats
path: root/lib/MGA/DrakISO/BuildISO.pm
diff options
context:
space:
mode:
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,