Advertisement
Guest User

Untitled

a guest
Jan 6th, 2011
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. #
  2. # DO NOT EDIT THIS FILE
  3. #
  4. # It is automatically generated by /usr/sbin/grub-mkconfig using templates
  5. # from /etc/grub.d and settings from /etc/default/grub
  6. #
  7.  
  8. ### BEGIN /etc/grub.d/00_header ###
  9. if [ -s $prefix/grubenv ]; then
  10. load_env
  11. fi
  12. set default="0"
  13. if [ ${prev_saved_entry} ]; then
  14. set saved_entry=${prev_saved_entry}
  15. save_env saved_entry
  16. set prev_saved_entry=
  17. save_env prev_saved_entry
  18. set boot_once=true
  19. fi
  20.  
  21. function savedefault {
  22. if [ -z ${boot_once} ]; then
  23. saved_entry=${chosen}
  24. save_env saved_entry
  25. fi
  26. }
  27. insmod ext2
  28. set root='(hd1,2)'
  29. search --no-floppy --fs-uuid --set 52c4594c-2a96-4055-8b3b-d5b52d310f07
  30. set locale_dir=($root)/boot/grub/locale
  31. set lang=en
  32. insmod gettext
  33. set timeout=5
  34. ### END /etc/grub.d/00_header ###
  35.  
  36. ### BEGIN /etc/grub.d/10_linux ###
  37. menuentry "GNU/Linux, with Linux 2.6.33.4" --class gnu-linux --class gnu --class os {
  38. insmod ext2
  39. set root='(hd1,2)'
  40. search --no-floppy --fs-uuid --set 52c4594c-2a96-4055-8b3b-d5b52d310f07
  41. echo Loading Linux 2.6.33.4 ...
  42. linux /boot/vmlinuz-generic-2.6.33.4 root=/dev/sdb2 ro
  43. }
  44. menuentry "GNU/Linux, with Linux 2.6.33.4 (recovery mode)" --class gnu-linux --class gnu --class os {
  45. insmod ext2
  46. set root='(hd1,2)'
  47. search --no-floppy --fs-uuid --set 52c4594c-2a96-4055-8b3b-d5b52d310f07
  48. echo Loading Linux 2.6.33.4 ...
  49. linux /boot/vmlinuz-generic-2.6.33.4 root=/dev/sdb2 ro single
  50. }
  51. ### END /etc/grub.d/10_linux ###
  52.  
  53. ### BEGIN /etc/grub.d/30_os-prober ###
  54. ### END /etc/grub.d/30_os-prober ###
  55.  
  56. ### BEGIN /etc/grub.d/40_custom ###
  57. # This file provides an easy way to add custom menu entries. Simply type the
  58. # menu entries you want to add after this comment. Be careful not to change
  59. # the 'exec tail' line above.
  60. ### END /etc/grub.d/40_custom ###
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement