Skip to content

Commit

Permalink
Add more boot options and remove splash to make debugging easier
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosfad committed May 5, 2020
1 parent 084e3b1 commit 5f2c2d7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions files/grub/grub.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,26 @@ set default="0"
set timeout=30

menuentry "Try Ubuntu FS without installing" {
linux /casper/vmlinuz file=/cdrom/preseed/mbp.seed boot=casper ro quiet splash pcie_ports=compat ---
linux /casper/vmlinuz file=/cdrom/preseed/mbp.seed boot=casper ro efi=noruntime pcie_ports=compat ---
initrd /casper/initrd
}
menuentry "Try Ubuntu FS without installing (blacklist=thunderbolt)" {
linux /casper/vmlinuz file=/cdrom/preseed/mbp.seed boot=casper ro efi=noruntime pcie_ports=compat --- modprobe.blacklist=thunderbolt
initrd /casper/initrd
}
menuentry "Install Ubuntu FS" {
linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp.seed boot=casper only-ubiquity quiet splash pcie_ports=compat ---
linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp.seed boot=casper only-ubiquity efi=noruntime pcie_ports=compat ---
initrd /casper/initrd
}
menuentry "Install Ubuntu FS (blacklist=thunderbolt)" {
linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp.seed boot=casper only-ubiquity efi=noruntime pcie_ports=compat --- modprobe.blacklist=thunderbolt
initrd /casper/initrd
}
menuentry "Check disc for defects" {
linux /casper/vmlinuz boot=casper integrity-check quiet splash pcie_ports=compat ---
linux /casper/vmlinuz boot=casper integrity-check efi=noruntime enforcing=0 efi=noruntime pcie_ports=compat ---
initrd /casper/initrd
}
menuentry "Check disc for defects (blacklist=thunderbolt)" {
linux /casper/vmlinuz boot=casper integrity-check efi=noruntime enforcing=0 efi=noruntime pcie_ports=compat --- modprobe.blacklist=thunderbolt
initrd /casper/initrd
}
2 changes: 1 addition & 1 deletion files/preseed/mbp.seed
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
# well keep them installed.
#ubiquity ubiquity/keep-installed string icedtea6-plugin openoffice.org

d-i debian-installer/add-kernel-opts string efi=noruntime pcie_ports=compat loglevel=3
d-i debian-installer/add-kernel-opts string efi=noruntime pcie_ports=compat

0 comments on commit 5f2c2d7

Please sign in to comment.