Advertisement
Guest User

willis

a guest
Oct 31st, 2009
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 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. menuentry "tinycore - tinycore.iso" {
  7. set root=(hd2,1)
  8. loopback loop /tinycore.iso
  9. linux (loop)/boot/bzImage --
  10. initrd (loop)/boot/tinycore.gz
  11. }
  12.  
  13. menuentry "Ubuntu Live - ubuntu.iso" {
  14. set root=(hd2,1)
  15. loopback loop /ubuntu.iso
  16. linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/ubuntu.iso --
  17. initrd (loop)/casper/initrd.lz
  18. }
  19.  
  20. menuentry "Ubuntu Rescue - ubunturescue.iso" {
  21. set root=(hd2,1)
  22. loopback loop /ubunturescue.iso
  23. linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/ubunturescue.iso --
  24. initrd (loop)/casper/initrd.lz
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement