grub.qubes 627 B

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