Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. #!/bin/sh
  2. exec tail -n +3 $0
  3. # This file provides an easy way to add custom menu entries. Simply type the
  4. # menu entries you want to add after this comment. Be careful not to change
  5. # the 'exec tail' line above.
  6.  
  7. menuentry "" {
  8. true
  9. }
  10.  
  11. menuentry "Tails 3.13.1 (amd64)" {
  12. set isofile="images/tails-amd64-3.13.1.iso"
  13. loopback loop (hd1,gpt2)/${isofile}
  14. linux (loop)/live/vmlinuz boot=live config findiso=/${isofile} nopersistence noprompt timezone=Etc/UTC block.events_dfl_poll_msecs=1000 splash noautologin module=Tails slab_nomerge slub_debug=FZP mce=0 vsyscall=none page_poison=1 union=aufs quiet
  15. initrd (loop)/live/initrd.img
  16. }
  17.  
  18. menuentry "Ubuntu 18.04 (amd64)" {
  19. set isofile="images/ubuntu-18.04-desktop-amd64.iso"
  20. loopback loop (hd1,gpt2)/${isofile}
  21. linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/${isofile}
  22. initrd (loop)/casper/initrd.lz
  23. }
  24.  
  25. menuentry "BCWipe Total WipeOut 3.5.2 (amd64)" {
  26. set isofile="images/bcwipe_total_wipeout_3.5.2.iso"
  27. loopback loop (hd1,gpt2)/${isofile}
  28. linux (loop)/vmlinuz.x86_64 root=/dev/ram0 rw init=/init video=efifb loglevel=3
  29. initrd (loop)/wipe-x86_64.lz (loop)/firmware.lz (loop)/bcwipe
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement