Guest User

Untitled

a guest
Apr 3rd, 2013
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.95 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 part_msdos
  36. insmod ext2
  37. set root='(hd0,msdos3)'
  38. search --no-floppy --fs-uuid --set ab77a515-2244-46d6-8134-248aa0f0bda8
  39. if loadfont /usr/share/grub/unicode.pf2 ; then
  40.   set gfxmode=640x480
  41.   load_video
  42.   insmod gfxterm
  43. fi
  44. terminal_output gfxterm
  45. insmod part_msdos
  46. insmod ext2
  47. set root='(hd0,msdos1)'
  48. search --no-floppy --fs-uuid --set f864a573-c821-4994-b036-50b745714a51
  49. set locale_dir=($root)/grub/locale
  50. set lang=
  51. insmod gettext
  52. set timeout=5
  53. ### END /etc/grub.d/00_header ###
  54.  
  55. ### BEGIN /etc/grub.d/05_debian_theme ###
  56. set menu_color_normal=cyan/blue
  57. set menu_color_highlight=white/blue
  58. ### END /etc/grub.d/05_debian_theme ###
  59.  
  60. ### BEGIN /etc/grub.d/10_linux ###
  61. menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64' --class debian --class gnu-linux --class gnu --class os {
  62.         insmod part_msdos
  63.         insmod ext2
  64.         set root='(hd0,msdos1)'
  65.         search --no-floppy --fs-uuid --set f864a573-c821-4994-b036-50b745714a51
  66.         echo    'Loading Linux 2.6.32-5-amd64 ...'
  67.         linux   /vmlinuz-2.6.32-5-amd64 root=UUID=ab77a515-2244-46d6-8134-248aa0f0bda8 ro  quiet
  68.         echo    'Loading initial ramdisk ...'
  69.         initrd  /initrd.img-2.6.32-5-amd64
  70. }
  71. menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
  72.         insmod part_msdos
  73.         insmod ext2
  74.         set root='(hd0,msdos1)'
  75.         search --no-floppy --fs-uuid --set f864a573-c821-4994-b036-50b745714a51
  76.         echo    'Loading Linux 2.6.32-5-amd64 ...'
  77.         linux   /vmlinuz-2.6.32-5-amd64 root=UUID=ab77a515-2244-46d6-8134-248aa0f0bda8 ro single
  78.         echo    'Loading initial ramdisk ...'
  79.         initrd  /initrd.img-2.6.32-5-amd64
  80. }
  81. ### END /etc/grub.d/10_linux ###
  82.  
  83. ### BEGIN /etc/grub.d/20_linux_xen ###
  84. ### END /etc/grub.d/20_linux_xen ###
  85.  
  86. ### BEGIN /etc/grub.d/30_os-prober ###
  87. ### END /etc/grub.d/30_os-prober ###
  88.  
  89. ### BEGIN /etc/grub.d/40_custom ###
  90. # This file provides an easy way to add custom menu entries.  Simply type the
  91. # menu entries you want to add after this comment.  Be careful not to change
  92. # the 'exec tail' line above.
  93. ### END /etc/grub.d/40_custom ###
  94.  
  95. ### BEGIN /etc/grub.d/41_custom ###
  96. if [ -f  $prefix/custom.cfg ]; then
  97.   source $prefix/custom.cfg;
  98. fi
  99. ### END /etc/grub.d/41_custom ###
Advertisement
Add Comment
Please, Sign In to add comment