grub.cfg 354 B

12345678910111213
  1. # GRUB 2 configuration that boots the integration test binary via Multiboot2.
  2. set timeout=0
  3. set default=0
  4. # set debug=all
  5. menuentry "Integration Test" {
  6. # The leading slash is very important.
  7. multiboot2 /multiboot2_payload some commandline arguments
  8. # Pass some module + command line.
  9. module2 /boot/grub/grub.cfg grub-config
  10. boot
  11. }