spacepaste

  1.  
  2. #!/bin/sh
  3. exec tail -n +3 $0
  4. # This file provides an easy way to add custom menu entries. Simply type the
  5. # menu entries you want to add after this comment. Be careful not to change
  6. # the 'exec tail' line above.
  7. #
  8. menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-7706867b-b5b4-4ff6-838a-d0b190c14f82' {
  9. load_video
  10. set gfxpayload=keep
  11. insmod gzio
  12. insmod part_gpt
  13. insmod btrfs
  14. if [ x$feature_platform_search_hint = xy ]; then
  15. search --no-floppy --fs-uuid --set=root 7706867b-b5b4-4ff6-838a-d0b190c14f82
  16. else
  17. search --no-floppy --fs-uuid --set=root 7706867b-b5b4-4ff6-838a-d0b190c14f82
  18. fi
  19. echo 'Caricamento Linux linux...'
  20. linux /@arch/boot/vmlinuz-linux root=UUID=7706867b-b5b4-4ff6-838a-d0b190c14f82 rw rootflags=subvol=@arch quiet
  21. echo 'Caricamento ramdisk iniziale...'
  22. initrd /@arch/boot/initramfs-linux.img
  23.