Update grub.cfg

This commit is contained in:
Aditya Garg 2022-01-12 18:36:10 +05:30 committed by GitHub
parent da73152bae
commit 7e71d34762
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -7,6 +7,10 @@ set default="0"
set timeout=30
menuentry "Try Ubuntu FS without installing" {
linux /casper/vmlinuz file=/cdrom/preseed/mbp.seed boot=casper ro pcie_ports=compat acpi=force ---
initrd /casper/initrd
}
menuentry "Try Ubuntu FS without installing (efi=noruntime)" {
linux /casper/vmlinuz file=/cdrom/preseed/mbp.seed boot=casper ro efi=noruntime pcie_ports=compat acpi=force ---
initrd /casper/initrd
}
@ -15,6 +19,10 @@ menuentry "Try Ubuntu FS without installing (blacklist=thunderbolt)" {
initrd /casper/initrd
}
menuentry "Install Ubuntu FS" {
linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp.seed boot=casper only-ubiquity pcie_ports=compat acpi=force ---
initrd /casper/initrd
}
menuentry "Install Ubuntu FS (efi=noruntime)" {
linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp.seed boot=casper only-ubiquity efi=noruntime pcie_ports=compat acpi=force ---
initrd /casper/initrd
}
@ -23,6 +31,10 @@ menuentry "Install Ubuntu FS (blacklist=thunderbolt)" {
initrd /casper/initrd
}
menuentry "Check disc for defects" {
linux /casper/vmlinuz boot=casper integrity-check enforcing=0 efi=noruntime pcie_ports=compat acpi=force ---
initrd /casper/initrd
}
menuentry "Check disc for defects (efi=noruntime)" {
linux /casper/vmlinuz boot=casper integrity-check efi=noruntime enforcing=0 efi=noruntime pcie_ports=compat acpi=force ---
initrd /casper/initrd
}