diff options
author | David Runge <dvzrv@archlinux.org> | 2020-06-30 13:00:42 +0200 |
---|---|---|
committer | David Runge <dvzrv@archlinux.org> | 2020-06-30 14:57:26 +0200 |
commit | b08f1681cfafa7a24069acfefdf4b1c18d4e1d3c (patch) | |
tree | a16209357453e70806eee7ab71f463f79828f4e7 /configs/releng/efiboot | |
parent | 609e98847bf3ad95525daf8288096ea762e7cd23 (diff) | |
download | archiso32-b08f1681cfafa7a24069acfefdf4b1c18d4e1d3c.tar.xz |
Standardizing boot loader entry format
{configs/releng/efiboot/loader/entries/archiso-x86_64-{cd,usb}.conf,configs/releng/syslinux/archiso_{pxe,sys}.cfg}:
Standardizing the boot loader entry format by switching all entries to the form:
"Arch Linux install medium (<CARCH>[, <PROPERTY>])".
This removes the distinction between "CD" and "USB" when booting in UEFI "el-torito" (as the information is not useful).
Changing some of the syslinux help text as well to reflect this change. This also drops the specific <CARCH> from the
syslinux help text as it is duplicated information.
Closes #24
Diffstat (limited to 'configs/releng/efiboot')
-rw-r--r-- | configs/releng/efiboot/loader/entries/archiso-x86_64-cd.conf | 2 | ||||
-rw-r--r-- | configs/releng/efiboot/loader/entries/archiso-x86_64-usb.conf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configs/releng/efiboot/loader/entries/archiso-x86_64-cd.conf b/configs/releng/efiboot/loader/entries/archiso-x86_64-cd.conf index b77ed98..7f5c81b 100644 --- a/configs/releng/efiboot/loader/entries/archiso-x86_64-cd.conf +++ b/configs/releng/efiboot/loader/entries/archiso-x86_64-cd.conf @@ -1,4 +1,4 @@ -title Arch Linux archiso x86_64 UEFI CD +title Arch Linux install medium (x86_64, UEFI) linux /EFI/archiso/vmlinuz.efi initrd /EFI/archiso/intel_ucode.img initrd /EFI/archiso/amd_ucode.img diff --git a/configs/releng/efiboot/loader/entries/archiso-x86_64-usb.conf b/configs/releng/efiboot/loader/entries/archiso-x86_64-usb.conf index 09adca4..e1d156a 100644 --- a/configs/releng/efiboot/loader/entries/archiso-x86_64-usb.conf +++ b/configs/releng/efiboot/loader/entries/archiso-x86_64-usb.conf @@ -1,4 +1,4 @@ -title Arch Linux archiso x86_64 UEFI USB +title Arch Linux install medium (x86_64, UEFI) linux /%INSTALL_DIR%/boot/x86_64/vmlinuz initrd /%INSTALL_DIR%/boot/intel_ucode.img initrd /%INSTALL_DIR%/boot/amd_ucode.img |