grub.qubes 596 B

123456789101112
  1. # make sure to use /dev/mapper/dmroot, not /dev/xvda directly - both have the
  2. # same fs, including UUID
  3. GRUB_DISABLE_LINUX_UUID=true
  4. GRUB_DISABLE_OS_PROBER=true
  5. GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX root=/dev/mapper/dmroot console=tty0 console=hvc0"
  6. # make SWIOTLB smaller - it isn't really needed unless PCI passthrough is used,
  7. # and even then, 16MB is enough
  8. GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX swiotlb=8192"
  9. # add noresume - to avoid a 30 second hang on Debian HVM boot as it tries to
  10. # locate swap space for hibernation
  11. GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX noresume"
  12. GRUB_TIMEOUT=0