Guest User

Untitled

a guest
Jun 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. #
  2. # DO NOT EDIT THIS FILE
  3. #
  4. # It is automatically generated by grub2-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="${saved_entry}"
  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. set timeout=5
  36. ### END /etc/grub.d/00_header ###
  37.  
  38. ### BEGIN /etc/grub.d/30_os-prober ###
  39. menuentry "Windows 7 (loader) (on /dev/sda2)" --class windows --class os {
  40. insmod part_msdos
  41. insmod ntfs
  42. set root='(hd0,msdos2)'
  43. search --no-floppy --fs-uuid --set=root F2E60802E607C5B7
  44. chainloader +1
  45. }
  46. menuentry "Windows 7 (loader) (on /dev/sda3)" --class windows --class os {
  47. insmod part_msdos
  48. insmod ntfs
  49. set root='(hd0,msdos3)'
  50. search --no-floppy --fs-uuid --set=root 0292114892114199
  51. chainloader +1
  52. }
  53. ### END /etc/grub.d/30_os-prober ###
  54.  
  55. ### BEGIN /etc/grub.d/10_linux ###
  56. menuentry 'Fedora Linux, with Linux 3.1.0-7.fc16.i686' --class fedora --class gnu-linux --class gnu --class os {
  57. load_video
  58. set gfxpayload=keep
  59. insmod gzio
  60. insmod part_msdos
  61. insmod ext2
  62. set root='(hd0,msdos1)'
  63. search --no-floppy --fs-uuid --set=root 2263c05f-a5ff-4f96-b61b-3db76af128a0
  64. echo 'Loading Linux 3.1.0-7.fc16.i686 ...'
  65. linux /vmlinuz-3.1.0-7.fc16.i686 root=/dev/mapper/vg_shai-lv_root ro rd.md=0 rd.dm=0 quiet rd.lvm.lv=vg_shai/lv_swap rhgb rd.lvm.lv=vg_shai/lv_root rd.luks=0 KEYTABLE=la-latin1 SYSFONT=latarcyrheb-sun16 LANG=en_US.UTF-8
  66. echo 'Loading initial ramdisk ...'
  67. initrd /initramfs-3.1.0-7.fc16.i686.img
  68. }
  69. menuentry 'Fedora Linux, with Linux 3.1.0-7.fc16.i686 (recovery mode)' --class fedora --class gnu-linux --class gnu --class os {
  70. load_video
  71. set gfxpayload=keep
  72. insmod gzio
  73. insmod part_msdos
  74. insmod ext2
  75. set root='(hd0,msdos1)'
  76. search --no-floppy --fs-uuid --set=root 2263c05f-a5ff-4f96-b61b-3db76af128a0
  77. echo 'Loading Linux 3.1.0-7.fc16.i686 ...'
  78. linux /vmlinuz-3.1.0-7.fc16.i686 root=/dev/mapper/vg_shai-lv_root ro single rd.md=0 rd.dm=0 quiet rd.lvm.lv=vg_shai/lv_swap rhgb rd.lvm.lv=vg_shai/lv_root rd.luks=0 KEYTABLE=la-latin1 SYSFONT=latarcyrheb-sun16 LANG=en_US.UTF-8
  79. echo 'Loading initial ramdisk ...'
  80. initrd /initramfs-3.1.0-7.fc16.i686.img
  81. }
  82. ### END /etc/grub.d/10_linux ###
  83.  
  84. ### BEGIN /etc/grub.d/20_linux_xen ###
  85. ### END /etc/grub.d/20_linux_xen ###
  86.  
  87.  
  88. ### BEGIN /etc/grub.d/40_custom ###
  89. # This file provides an easy way to add custom menu entries. Simply type the
  90. # menu entries you want to add after this comment. Be careful not to change
  91. # the 'exec tail' line above.
  92. ### END /etc/grub.d/40_custom ###
  93.  
  94. ### BEGIN /etc/grub.d/41_custom ###
  95. if [ -f $prefix/custom.cfg ]; then
  96. source $prefix/custom.cfg;
  97. fi
  98. ### END /etc/grub.d/41_custom ###
  99.  
  100. ### BEGIN /etc/grub.d/90_persistent ###
  101. ### END /etc/grub.d/90_persistent ###
Add Comment
Please, Sign In to add comment