Advertisement
Guest User

grub.cfg

a guest
Dec 8th, 2019
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.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. insmod part_gpt
  10. insmod part_msdos
  11. if [ -s $prefix/grubenv ]; then
  12.   load_env
  13. fi
  14. if [ "${next_entry}" ] ; then
  15.    set default="${next_entry}"
  16.    set next_entry=
  17.    save_env next_entry
  18.    set boot_once=true
  19. else
  20.    set default="0"
  21. fi
  22.  
  23. if [ x"${feature_menuentry_id}" = xy ]; then
  24.   menuentry_id_option="--id"
  25. else
  26.   menuentry_id_option=""
  27. fi
  28.  
  29. export menuentry_id_option
  30.  
  31. if [ "${prev_saved_entry}" ]; then
  32.   set saved_entry="${prev_saved_entry}"
  33.   save_env saved_entry
  34.   set prev_saved_entry=
  35.   save_env prev_saved_entry
  36.   set boot_once=true
  37. fi
  38.  
  39. function savedefault {
  40.   if [ -z "${boot_once}" ]; then
  41.     saved_entry="${chosen}"
  42.     save_env saved_entry
  43.   fi
  44. }
  45.  
  46. function load_video {
  47.   if [ x$feature_all_video_module = xy ]; then
  48.     insmod all_video
  49.   else
  50.     insmod efi_gop
  51.     insmod efi_uga
  52.     insmod ieee1275_fb
  53.     insmod vbe
  54.     insmod vga
  55.     insmod video_bochs
  56.     insmod video_cirrus
  57.   fi
  58. }
  59.  
  60. if [ x$feature_default_font_path = xy ] ; then
  61.    font=unicode
  62. else
  63. insmod part_msdos
  64. insmod btrfs
  65. set root='hd0,msdos2'
  66. if [ x$feature_platform_search_hint = xy ]; then
  67.   search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos2' --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  22617c40-a25f-440e-99bf-050edfdcd822
  68. else
  69.   search --no-floppy --fs-uuid --set=root 22617c40-a25f-440e-99bf-050edfdcd822
  70. fi
  71.     font="/@snapshots/TESTING/usr/share/grub/unicode.pf2"
  72. fi
  73.  
  74. if loadfont $font ; then
  75.   set gfxmode=auto
  76.   load_video
  77.   insmod gfxterm
  78.   set locale_dir=$prefix/locale
  79.   set lang=de_DE
  80.   insmod gettext
  81. fi
  82. terminal_input console
  83. terminal_output gfxterm
  84. if [ x$feature_timeout_style = xy ] ; then
  85.   set timeout_style=menu
  86.   set timeout=5
  87. # Fallback normal timeout code in case the timeout_style feature is
  88. # unavailable.
  89. else
  90.   set timeout=5
  91. fi
  92. ### END /etc/grub.d/00_header ###
  93.  
  94. ### BEGIN /etc/grub.d/40_custom ###
  95. # This file provides an easy way to add custom menu entries.  Simply type the
  96. # menu entries you want to add after this comment.  Be careful not to change
  97. # the 'exec tail' line above.
  98. menuentry 'Arch Linux TESTING' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-22617c40-a25f-440e-99bf-050edfdcd822' {
  99.     load_video
  100.     set gfxpayload=keep
  101.     insmod gzio
  102.     insmod part_msdos
  103.     insmod ext2
  104.     set root='hd0,msdos1'
  105.     if [ x$feature_platform_search_hint = xy ]; then
  106.       search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  adcfbcd8-897e-47e7-8a21-04a6642d2926
  107.     else
  108.       search --no-floppy --fs-uuid --set=root adcfbcd8-897e-47e7-8a21-04a6642d2926
  109.     fi
  110.     echo    'Loading Linux TESTING ...'
  111.     linux   /vmlinuz-linux root=UUID=22617c40-a25f-440e-99bf-050edfdcd822 rw rootflags=subvol=@snapshots/TESTING  loglevel=3 quiet
  112.     echo    'Loading initial ramdisk ...'
  113.     initrd  /initramfs-linux.img
  114. }
  115. submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-22617c40-a25f-440e-99bf-050edfdcd822' {
  116.     menuentry 'Arch Linux, with Linux STABLE' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-stable-advanced-22617c40-a25f-440e-99bf-050edfdcd822' {
  117.         load_video
  118.         set gfxpayload=keep
  119.         insmod gzio
  120.         insmod part_msdos
  121.         insmod ext2
  122.         set root='hd0,msdos1'
  123.         if [ x$feature_platform_search_hint = xy ]; then
  124.           search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  adcfbcd8-897e-47e7-8a21-04a6642d2926
  125.         else
  126.           search --no-floppy --fs-uuid --set=root adcfbcd8-897e-47e7-8a21-04a6642d2926
  127.         fi
  128.         echo    'Loading Linux STABLE ...'
  129.         linux   /vmlinuz-linux-stable root=UUID=22617c40-a25f-440e-99bf-050edfdcd822 rw rootflags=subvol=@snapshots/STABLE  loglevel=3 quiet
  130.         echo    'Loading initial ramdisk ...'
  131.         initrd  /initramfs-linux-stable.img
  132.     }
  133.     menuentry 'Arch Linux, with Linux OLDSTABLE' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-oldstable-advanced-22617c40-a25f-440e-99bf-050edfdcd822' {
  134.         load_video
  135.         set gfxpayload=keep
  136.         insmod gzio
  137.         insmod part_msdos
  138.         insmod ext2
  139.         set root='hd0,msdos1'
  140.         if [ x$feature_platform_search_hint = xy ]; then
  141.           search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  adcfbcd8-897e-47e7-8a21-04a6642d2926
  142.         else
  143.           search --no-floppy --fs-uuid --set=root adcfbcd8-897e-47e7-8a21-04a6642d2926
  144.         fi
  145.         echo    'Loading Linux OLDSTABLE ...'
  146.         linux   /vmlinuz-linux-oldstable root=UUID=22617c40-a25f-440e-99bf-050edfdcd822 rw rootflags=subvol=@snapshots/OLDSTABLE  loglevel=3 quiet
  147.         echo    'Loading initial ramdisk ...'
  148.         initrd  /initramfs-linux-oldstable.img
  149.     }
  150. }
  151. ### END /etc/grub.d/40_custom ###
  152.  
  153. ### BEGIN /etc/grub.d/41_custom ###
  154. if [ -f  ${config_directory}/custom.cfg ]; then
  155.   source ${config_directory}/custom.cfg
  156. elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  157.   source $prefix/custom.cfg;
  158. fi
  159. ### END /etc/grub.d/41_custom ###
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement