Advertisement
Guest User

Untitled

a guest
Nov 5th, 2016
82
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 /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.  
  28. function recordfail {
  29. set recordfail=1
  30. if [ -n ${have_grubenv} ]; then if [ -z ${boot_once} ]; then save_env recordfail; fi; fi
  31. }
  32. serial --speed=19200 --unit=0 --word=8 --parity=no --stop=1
  33. if terminal_input serial ; then true ; else
  34. # For backward compatibility with versions of terminal.mod that don't
  35. # understand terminal_input
  36. terminal serial
  37. fi
  38. if terminal_output serial ; then true ; else
  39. # For backward compatibility with versions of terminal.mod that don't
  40. # understand terminal_output
  41. terminal serial
  42. fi
  43. if [ ${recordfail} = 1 ]; then
  44. set timeout=-1
  45. else
  46. set timeout=10
  47. fi
  48. ### END /etc/grub.d/00_header ###
  49.  
  50. ### BEGIN /etc/grub.d/05_debian_theme ###
  51. set menu_color_normal=white/black
  52. set menu_color_highlight=black/light-gray
  53. ### END /etc/grub.d/05_debian_theme ###
  54.  
  55. ### BEGIN /etc/grub.d/10_linux ###
  56. menuentry 'GNU/Linux, with Linux 2.6.32-74-server' --class gnu-linux --class gnu --class os {
  57. recordfail
  58. insmod ext2
  59. set root='(hd0)'
  60. search --no-floppy --fs-uuid --set 3c5f8d1d-c5e7-45fd-a873-6343f1f9c30e
  61. linux /boot/vmlinuz-2.6.32-74-server root=/dev/sda ro console=ttyS0,19200n8
  62. initrd /boot/initrd.img-2.6.32-74-server
  63. }
  64. menuentry 'GNU/Linux, with Linux 2.6.32-74-server (recovery mode)' --class gnu-linux --class gnu --class os {
  65. recordfail
  66. insmod ext2
  67. set root='(hd0)'
  68. search --no-floppy --fs-uuid --set 3c5f8d1d-c5e7-45fd-a873-6343f1f9c30e
  69. echo 'Loading Linux 2.6.32-74-server ...'
  70. linux /boot/vmlinuz-2.6.32-74-server root=/dev/sda ro single console=ttyS0,19200n8
  71. echo 'Loading initial ramdisk ...'
  72. initrd /boot/initrd.img-2.6.32-74-server
  73. }
  74. menuentry 'GNU/Linux, with Linux 2.6.32-74-generic' --class gnu-linux --class gnu --class os {
  75. recordfail
  76. insmod ext2
  77. set root='(hd0)'
  78. search --no-floppy --fs-uuid --set 3c5f8d1d-c5e7-45fd-a873-6343f1f9c30e
  79. linux /boot/vmlinuz-2.6.32-74-generic root=/dev/sda ro console=ttyS0,19200n8
  80. initrd /boot/initrd.img-2.6.32-74-generic
  81. }
  82. menuentry 'GNU/Linux, with Linux 2.6.32-74-generic (recovery mode)' --class gnu-linux --class gnu --class os {
  83. recordfail
  84. insmod ext2
  85. set root='(hd0)'
  86. search --no-floppy --fs-uuid --set 3c5f8d1d-c5e7-45fd-a873-6343f1f9c30e
  87. echo 'Loading Linux 2.6.32-74-generic ...'
  88. linux /boot/vmlinuz-2.6.32-74-generic root=/dev/sda ro single console=ttyS0,19200n8
  89. echo 'Loading initial ramdisk ...'
  90. initrd /boot/initrd.img-2.6.32-74-generic
  91. }
  92. ### END /etc/grub.d/10_linux ###
  93.  
  94. ### BEGIN /etc/grub.d/30_os-prober ###
  95. ### END /etc/grub.d/30_os-prober ###
  96.  
  97. ### BEGIN /etc/grub.d/40_custom ###
  98. # This file provides an easy way to add custom menu entries. Simply type the
  99. # menu entries you want to add after this comment. Be careful not to change
  100. # the 'exec tail' line above.
  101. ### END /etc/grub.d/40_custom ###
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement