Advertisement
Guest User

Untitled

a guest
Jul 27th, 2011
399
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. #
  2. # DO NOT EDIT THIS FILE
  3. #
  4. # It is automatically generated by 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.  
  28. function load_video {
  29. insmod vbe
  30. insmod vga
  31. insmod video_bochs
  32. insmod video_cirrus
  33. }
  34.  
  35. insmod ext2
  36. set root='(md0)'
  37. search --no-floppy --fs-uuid --set=root 9f81a35d-0813-481f-9ae0-e4fba57c5580
  38. set locale_dir=($root)/grub/locale
  39. set lang=en_US
  40. insmod gettext
  41. set timeout=5
  42. ### END /etc/grub.d/00_header ###
  43.  
  44. ### BEGIN /etc/grub.d/10_linux ###
  45. menuentry 'Gentoo GNU/Linux, with Linux 3.0.0-gentoo' --class gentoo --class gnu-linux --class gnu --class os {
  46. load_video
  47. insmod ext2
  48. set root='(md0)'
  49. search --no-floppy --fs-uuid --set=root 9f81a35d-0813-481f-9ae0-e4fba57c5580
  50. echo 'Loading Linux 3.0.0-gentoo ...'
  51. linux /kernel-3.0.0-gentoo root=/dev/mapper/vg-root ro domdadm
  52. echo 'Loading initial ramdisk ...'
  53. initrd /initramfs-3.0.0-gentoo.img
  54. }
  55. menuentry 'Gentoo GNU/Linux, with Linux 3.0.0-gentoo (recovery mode)' --class gentoo --class gnu-linux --class gnu --class os {
  56. load_video
  57. insmod ext2
  58. set root='(md0)'
  59. search --no-floppy --fs-uuid --set=root 9f81a35d-0813-481f-9ae0-e4fba57c5580
  60. echo 'Loading Linux 3.0.0-gentoo ...'
  61. linux /kernel-3.0.0-gentoo root=/dev/mapper/vg-root ro single domdadm
  62. echo 'Loading initial ramdisk ...'
  63. initrd /initramfs-3.0.0-gentoo.img
  64. }
  65. ### END /etc/grub.d/10_linux ###
  66.  
  67. ### BEGIN /etc/grub.d/20_linux_xen ###
  68. ### END /etc/grub.d/20_linux_xen ###
  69.  
  70. ### BEGIN /etc/grub.d/30_os-prober ###
  71. ### END /etc/grub.d/30_os-prober ###
  72.  
  73. ### BEGIN /etc/grub.d/40_custom ###
  74. # This file provides an easy way to add custom menu entries. Simply type the
  75. # menu entries you want to add after this comment. Be careful not to change
  76. # the 'exec tail' line above.
  77. ### END /etc/grub.d/40_custom ###
  78.  
  79. ### BEGIN /etc/grub.d/41_custom ###
  80. if [ -f $prefix/custom.cfg ]; then
  81. source $prefix/custom.cfg;
  82. fi
  83. ### END /etc/grub.d/41_custom ###
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement