Standardize whitespace in GRUB menu entry stanzas

Use consistent formatting across all architectures: 4-space indent,
two spaces after "linux", one space after "initrd". Also fix an extra
blank line before "fi" in amd64's UEFI section caused by f-string
interpolation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
michael.hudson@canonical.com 2026-02-19 13:49:51 +13:00
parent a6466ab0a3
commit a2a166d93d
No known key found for this signature in database
GPG Key ID: 80E627A0AB757E23
6 changed files with 17 additions and 17 deletions

View File

@ -95,8 +95,8 @@ class AMD64BootConfigurator(UEFIBootConfigurator):
result += """\
menuentry "Choose an Ubuntu version to install" {
set gfxpayload=keep
linux /casper/vmlinuz iso-chooser-menu ip=dhcp ---
initrd /casper/initrd
linux /casper/vmlinuz iso-chooser-menu ip=dhcp ---
initrd /casper/initrd
}
"""
return result
@ -107,8 +107,8 @@ menuentry "Choose an Ubuntu version to install" {
result += f"""\
menuentry "Try or Install {self.humanproject}" {{
set gfxpayload=keep
linux /casper/vmlinuz {kernel_params}
initrd /casper/initrd
linux /casper/vmlinuz {kernel_params}
initrd /casper/initrd
}}
"""
@ -117,8 +117,8 @@ menuentry "Try or Install {self.humanproject}" {{
result += f"""\
menuentry "{self.humanproject} (safe graphics)" {{
set gfxpayload=keep
linux /casper/vmlinuz nomodeset {kernel_params}
initrd /casper/initrd
linux /casper/vmlinuz nomodeset {kernel_params}
initrd /casper/initrd
}}
"""
@ -130,8 +130,8 @@ menuentry "{self.humanproject} (safe graphics)" {{
result += f"""\
menuentry "OEM install (for manufacturers)" {{
set gfxpayload=keep
linux /casper/vmlinuz {oem_kernel_params}
initrd /casper/initrd
linux /casper/vmlinuz {oem_kernel_params}
initrd /casper/initrd
}}
"""
@ -161,7 +161,7 @@ menuentry "{self.humanproject} with the HWE kernel" {{
result += f"""\
grub_platform
if [ "$grub_platform" = "efi" ]; then
{uefi_menu_entries}
{uefi_menu_entries}\
fi
"""

View File

@ -54,9 +54,9 @@ if [ $? = 0 ]; then
fi
menuentry "Try or Install {self.humanproject}" {{
\tset gfxpayload=keep
\tlinux\t/casper/vmlinuz $cmdline {kernel_params} console=tty0
\tinitrd\t/casper/initrd
set gfxpayload=keep
linux /casper/vmlinuz $cmdline {kernel_params} console=tty0
initrd /casper/initrd
}}
"""

View File

@ -74,7 +74,7 @@ set menu_color_highlight=black/light-gray
return f"""\
menuentry "{self.humanproject} with the HWE kernel" {{
set gfxpayload=keep
linux /casper/hwe-{kernel_name} {extra_params}{kernel_params}
linux /casper/hwe-{kernel_name} {extra_params}{kernel_params}
initrd /casper/hwe-initrd
}}
"""

View File

@ -63,7 +63,7 @@ class PPC64ELBootConfigurator(GrubBootConfigurator):
result += f"""\
menuentry "Try or Install {self.humanproject}" {{
set gfxpayload=keep
linux /casper/vmlinux quiet {kernel_params}
linux /casper/vmlinux quiet {kernel_params}
initrd /casper/initrd
}}
"""

View File

@ -134,7 +134,7 @@ class RISCV64BootConfigurator(GrubBootConfigurator):
result += f"""\
menuentry "Try or Install {self.humanproject}" {{
set gfxpayload=keep
linux /casper/vmlinux efi=debug sysctl.kernel.watchdog_thresh=60 ---
linux /casper/vmlinux efi=debug sysctl.kernel.watchdog_thresh=60 ---
initrd /casper/initrd
}}
"""

View File

@ -126,10 +126,10 @@ class UEFIBootConfigurator(GrubBootConfigurator):
"""Return UEFI firmware menu entries."""
return """\
menuentry 'Boot from next volume' {
\texit 1
exit 1
}
menuentry 'UEFI Firmware Settings' {
\tfwsetup
fwsetup
}
"""