Update grub.cfg

This commit is contained in:
Aditya Garg 2022-01-13 15:50:42 +05:30 committed by GitHub
parent 27addce7d5
commit dd0ae2a46e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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