Advertisement
Guest User

Untitled

a guest
Jul 20th, 2022
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. if loadfont /font.pf2 ; then
  2. set gfxmode=640x480
  3. insmod efi_gop
  4. insmod efi_uga
  5. insmod video_bochs
  6. insmod video_cirrus
  7. insmod gfxterm
  8. insmod jpeg
  9. insmod png
  10. terminal_output gfxterm
  11. fi
  12.  
  13. background_image /boot/grub/splash.png
  14. set menu_color_normal=white/black
  15. set menu_color_highlight=dark-gray/white
  16. set timeout=6
  17.  
  18. menuentry "devuan-live (amd64)" {
  19. set gfxpayload=keep
  20. linux /live/vmlinuz boot=live username=devuan apparmor=0
  21. initrd /live/initrd.img
  22. }
  23.  
  24. menuentry "Other language" {
  25. set gfxpayload=keep
  26. linux /live/vmlinuz boot=live username=devuan apparmor=0 locales=it_IT.UTF-8 keyboard-layouts=it
  27. initrd /live/initrd.img
  28. }
  29.  
  30. menuentry "devuan-live (load to RAM)" {
  31. set gfxpayload=keep
  32. linux /live/vmlinuz boot=live username=devuan toram apparmor=0
  33. initrd /live/initrd.img
  34. }
  35.  
  36. menuentry "devuan-live (failsafe)" {
  37. set gfxpayload=keep
  38. linux /live/vmlinuz boot=live username=devuan noapic noapm nodma nomce nolapic nosmp vga=normal apparmor=0
  39. initrd /live/initrd.img
  40. }
  41.  
  42. menuentry "Memory test" {
  43. linux16 /live/memtest86+.bin
  44. }
  45.  
  46. menuentry "persistence" {
  47. set gfxpayload=keep
  48. linux /live/vmlinuz boot=live username=devuan hostname=devuan quiet splash components noautomount persistence noapic noapm nodma nomce nolapic nosmp vga=normal apparmor=0
  49. initrd /live/initrd.img
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement