Guest User

Untitled

a guest
Jul 21st, 2014
549
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 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_gpt
  36. insmod ext2
  37. set root='(hd1,gpt5)'
  38. search --no-floppy --fs-uuid --set=root 2272be2f-c5e8-48ec-abee-65da58c1c97f
  39. if loadfont /usr/share/grub/unicode.pf2 ; then
  40. set gfxmode=640x480
  41. load_video
  42. insmod gfxterm
  43. insmod part_gpt
  44. insmod ext2
  45. set root='(hd0,gpt4)'
  46. search --no-floppy --fs-uuid --set=root ebecb187-3851-4802-9c02-eef41c56b0fe
  47. set locale_dir=($root)/grub/locale
  48. set lang=en_US
  49. insmod gettext
  50. fi
  51. terminal_output gfxterm
  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/06_mint_theme ###
  61. set menu_color_normal=white/black
  62. set menu_color_highlight=white/light-gray
  63. ### END /etc/grub.d/06_mint_theme ###
  64.  
  65. ### BEGIN /etc/grub.d/10_linux ###
  66. menuentry 'LMDE Cinnamon 64-bit, 3.11-2-amd64 (/dev/sda4)' --class linuxmint --class gnu-linux --class gnu --class os {
  67. load_video
  68. insmod gzio
  69. insmod part_gpt
  70. insmod ext2
  71. set root='(hd0,gpt4)'
  72. search --no-floppy --fs-uuid --set=root ebecb187-3851-4802-9c02-eef41c56b0fe
  73. echo 'Loading Linux 3.11-2-amd64 ...'
  74. linux /vmlinuz-3.11-2-amd64 root=UUID=2272be2f-c5e8-48ec-abee-65da58c1c97f ro quiet splash
  75. echo 'Loading initial ramdisk ...'
  76. initrd /initrd.img-3.11-2-amd64
  77. }
  78. menuentry 'LMDE Cinnamon 64-bit, 3.11-2-amd64 (/dev/sda4) -- (recovery mode)' --class linuxmint --class gnu-linux --class gnu --class os {
  79. load_video
  80. insmod gzio
  81. insmod part_gpt
  82. insmod ext2
  83. set root='(hd0,gpt4)'
  84. search --no-floppy --fs-uuid --set=root ebecb187-3851-4802-9c02-eef41c56b0fe
  85. echo 'Loading Linux 3.11-2-amd64 ...'
  86. linux /vmlinuz-3.11-2-amd64 root=UUID=2272be2f-c5e8-48ec-abee-65da58c1c97f ro single
  87. echo 'Loading initial ramdisk ...'
  88. initrd /initrd.img-3.11-2-amd64
  89. }
  90. ### END /etc/grub.d/10_linux ###
  91.  
  92. ### BEGIN /etc/grub.d/20_linux_xen ###
  93. ### END /etc/grub.d/20_linux_xen ###
  94.  
  95. ### BEGIN /etc/grub.d/30_os-prober ###
  96. menuentry "Windows Boot Manager (UEFI on /dev/sdb2)" --class windows --class os {
  97. insmod part_gpt
  98. insmod fat
  99. set root='(hd1,gpt2)'
  100. search --no-floppy --fs-uuid --set=root EC4D-A410
  101. chainloader /efi/Microsoft/Boot/bootmgfw.efi
  102. }
  103. ### END /etc/grub.d/30_os-prober ###
  104.  
  105. ### BEGIN /etc/grub.d/40_custom ###
  106. # This file provides an easy way to add custom menu entries. Simply type the
  107. # menu entries you want to add after this comment. Be careful not to change
  108. # the 'exec tail' line above.
  109. ### END /etc/grub.d/40_custom ###
  110.  
  111. ### BEGIN /etc/grub.d/41_custom ###
  112. if [ -f $prefix/custom.cfg ]; then
  113. source $prefix/custom.cfg;
  114. fi
  115. ### END /etc/grub.d/41_custom ###
Advertisement
Add Comment
Please, Sign In to add comment