Facebook
From Mungo Kitten, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 266
  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.   set have_grubenv=true
  11.   load_env
  12. fi
  13. if [ "${next_entry}" ] ; then
  14.    set default="${next_entry}"
  15.    set next_entry=
  16.    save_env next_entry
  17.    set boot_once=true
  18. else
  19.    set default="0"
  20. fi
  21.  
  22. if [ x"${feature_menuentry_id}" = xy ]; then
  23.   menuentry_id_option="--id"
  24. else
  25.   menuentry_id_option=""
  26. fi
  27.  
  28. export menuentry_id_option
  29.  
  30. if [ "${prev_saved_entry}" ]; then
  31.   set saved_entry="${prev_saved_entry}"
  32.   save_env saved_entry
  33.   set prev_saved_entry=
  34.   save_env prev_saved_entry
  35.   set boot_once=true
  36. fi
  37.  
  38. function savedefault {
  39.   if [ -z "${boot_once}" ]; then
  40.     saved_entry="${chosen}"
  41.     save_env saved_entry
  42.   fi
  43. }
  44. function recordfail {
  45.   set recordfail=1
  46.   if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  47. }
  48. function load_video {
  49.   if [ x$feature_all_video_module = xy ]; then
  50.     insmod all_video
  51.   else
  52.     insmod efi_gop
  53.     insmod efi_uga
  54.     insmod ieee1275_fb
  55.     insmod vbe
  56.     insmod vga
  57.     insmod video_bochs
  58.     insmod video_cirrus
  59.   fi
  60. }
  61.  
  62. if [ x$feature_default_font_path = xy ] ; then
  63.    font=unicode
  64. else
  65. insmod part_gpt
  66. insmod ext2
  67. set root='hd0,gpt3'
  68. if [ x$feature_platform_search_hint = xy ]; then
  69.   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  70. else
  71.   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  72. fi
  73.     font="/usr/share/grub/unicode.pf2"
  74. fi
  75.  
  76. if loadfont $font ; then
  77.   set gfxmode=auto
  78.   load_video
  79.   insmod gfxterm
  80.   set locale_dir=$prefix/locale
  81.   set lang=pl_PL
  82.   insmod gettext
  83. fi
  84. terminal_output gfxterm
  85. if [ "${recordfail}" = 1 ] ; then
  86.   set timeout=30
  87. else
  88.   if [ x$feature_timeout_style = xy ] ; then
  89.     set timeout_style=menu
  90.     set timeout=10
  91.   # Fallback normal timeout code in case the timeout_style feature is
  92.   # unavailable.
  93.   else
  94.     set timeout=10
  95.   fi
  96. fi
  97. ### END /etc/grub.d/00_header ###
  98.  
  99. ### BEGIN /etc/grub.d/05_debian_theme ###
  100. set menu_color_normal=white/black
  101. set menu_color_highlight=black/light-gray
  102. if background_color 44,0,30,0; then
  103.   clear
  104. fi
  105. ### END /etc/grub.d/05_debian_theme ###
  106.  
  107. ### BEGIN /etc/grub.d/10_linux ###
  108. function gfxmode {
  109.         set gfxpayload="${1}"
  110.         if [ "${1}" = "keep" ]; then
  111.                 set vt_handoff=vt.handoff=7
  112.         else
  113.                 set vt_handoff=
  114.         fi
  115. }
  116. if [ "${recordfail}" != 1 ]; then
  117.   if [ -e ${prefix}/gfxblacklist.txt ]; then
  118.     if hwmatch ${prefix}/gfxblacklist.txt 3; then
  119.       if [ ${match} = 0 ]; then
  120.         set linux_gfx_mode=keep
  121.       else
  122.         set linux_gfx_mode=text
  123.       fi
  124.     else
  125.       set linux_gfx_mode=text
  126.     fi
  127.   else
  128.     set linux_gfx_mode=keep
  129.   fi
  130. else
  131.   set linux_gfx_mode=text
  132. fi
  133. export linux_gfx_mode
  134. menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  135.         recordfail
  136.         load_video
  137.         gfxmode $linux_gfx_mode
  138.         insmod gzio
  139.         if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  140.         insmod part_gpt
  141.         insmod ext2
  142.         set root='hd0,gpt3'
  143.         if [ x$feature_platform_search_hint = xy ]; then
  144.           search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  145.         else
  146.           search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  147.         fi
  148.         linux   /boot/vmlinuz-4.10.0-42-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff
  149.         initrd  /boot/initrd.img-4.10.0-42-generic
  150. }
  151. submenu 'Opcje zaawansowane dla systemu Ubuntu' $menuentry_id_option 'gnulinux-advanced-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  152.         menuentry 'Ubuntu, za pomocą systemu Linux 4.10.0-42-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-42-generic-advanced-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  153.                 recordfail
  154.                 load_video
  155.                 gfxmode $linux_gfx_mode
  156.                 insmod gzio
  157.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  158.                 insmod part_gpt
  159.                 insmod ext2
  160.                 set root='hd0,gpt3'
  161.                 if [ x$feature_platform_search_hint = xy ]; then
  162.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  163.                 else
  164.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  165.                 fi
  166.                 echo    'Wczytywanie systemu Linux 4.10.0-42-generic...'
  167.                 linux   /boot/vmlinuz-4.10.0-42-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff
  168.                 echo    'Wczytywanie początkowego dysku RAM...'
  169.                 initrd  /boot/initrd.img-4.10.0-42-generic
  170.         }
  171.         menuentry 'Ubuntu, with Linux 4.10.0-42-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-42-generic-init-upstart-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  172.                 recordfail
  173.                 load_video
  174.                 gfxmode $linux_gfx_mode
  175.                 insmod gzio
  176.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  177.                 insmod part_gpt
  178.                 insmod ext2
  179.                 set root='hd0,gpt3'
  180.                 if [ x$feature_platform_search_hint = xy ]; then
  181.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  182.                 else
  183.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  184.                 fi
  185.                 echo    'Wczytywanie systemu Linux 4.10.0-42-generic...'
  186.                 linux   /boot/vmlinuz-4.10.0-42-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff init=/sbin/upstart
  187.                 echo    'Wczytywanie początkowego dysku RAM...'
  188.                 initrd  /boot/initrd.img-4.10.0-42-generic
  189.         }
  190.         menuentry 'Ubuntu, with Linux 4.10.0-42-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-42-generic-recovery-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  191.                 recordfail
  192.                 load_video
  193.                 insmod gzio
  194.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  195.                 insmod part_gpt
  196.                 insmod ext2
  197.                 set root='hd0,gpt3'
  198.                 if [ x$feature_platform_search_hint = xy ]; then
  199.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  200.                 else
  201.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  202.                 fi
  203.                 echo    'Wczytywanie systemu Linux 4.10.0-42-generic...'
  204.                 linux   /boot/vmlinuz-4.10.0-42-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro recovery nomodeset
  205.                 echo    'Wczytywanie początkowego dysku RAM...'
  206.                 initrd  /boot/initrd.img-4.10.0-42-generic
  207.         }
  208.         menuentry 'Ubuntu, za pomocą systemu Linux 4.10.0-40-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-40-generic-advanced-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  209.                 recordfail
  210.                 load_video
  211.                 gfxmode $linux_gfx_mode
  212.                 insmod gzio
  213.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  214.                 insmod part_gpt
  215.                 insmod ext2
  216.                 set root='hd0,gpt3'
  217.                 if [ x$feature_platform_search_hint = xy ]; then
  218.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  219.                 else
  220.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  221.                 fi
  222.                 echo    'Wczytywanie systemu Linux 4.10.0-40-generic...'
  223.                 linux   /boot/vmlinuz-4.10.0-40-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff
  224.                 echo    'Wczytywanie początkowego dysku RAM...'
  225.                 initrd  /boot/initrd.img-4.10.0-40-generic
  226.         }
  227.         menuentry 'Ubuntu, with Linux 4.10.0-40-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-40-generic-init-upstart-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  228.                 recordfail
  229.                 load_video
  230.                 gfxmode $linux_gfx_mode
  231.                 insmod gzio
  232.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  233.                 insmod part_gpt
  234.                 insmod ext2
  235.                 set root='hd0,gpt3'
  236.                 if [ x$feature_platform_search_hint = xy ]; then
  237.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  238.                 else
  239.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  240.                 fi
  241.                 echo    'Wczytywanie systemu Linux 4.10.0-40-generic...'
  242.                 linux   /boot/vmlinuz-4.10.0-40-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff init=/sbin/upstart
  243.                 echo    'Wczytywanie początkowego dysku RAM...'
  244.                 initrd  /boot/initrd.img-4.10.0-40-generic
  245.         }
  246.         menuentry 'Ubuntu, with Linux 4.10.0-40-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-40-generic-recovery-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  247.                 recordfail
  248.                 load_video
  249.                 insmod gzio
  250.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  251.                 insmod part_gpt
  252.                 insmod ext2
  253.                 set root='hd0,gpt3'
  254.                 if [ x$feature_platform_search_hint = xy ]; then
  255.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  256.                 else
  257.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  258.                 fi
  259.                 echo    'Wczytywanie systemu Linux 4.10.0-40-generic...'
  260.                 linux   /boot/vmlinuz-4.10.0-40-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro recovery nomodeset
  261.                 echo    'Wczytywanie początkowego dysku RAM...'
  262.                 initrd  /boot/initrd.img-4.10.0-40-generic
  263.         }
  264.         menuentry 'Ubuntu, za pomocą systemu Linux 4.10.0-38-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-38-generic-advanced-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  265.                 recordfail
  266.                 load_video
  267.                 gfxmode $linux_gfx_mode
  268.                 insmod gzio
  269.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  270.                 insmod part_gpt
  271.                 insmod ext2
  272.                 set root='hd0,gpt3'
  273.                 if [ x$feature_platform_search_hint = xy ]; then
  274.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  275.                 else
  276.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  277.                 fi
  278.                 echo    'Wczytywanie systemu Linux 4.10.0-38-generic...'
  279.                 linux   /boot/vmlinuz-4.10.0-38-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff
  280.                 echo    'Wczytywanie początkowego dysku RAM...'
  281.                 initrd  /boot/initrd.img-4.10.0-38-generic
  282.         }
  283.         menuentry 'Ubuntu, with Linux 4.10.0-38-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-38-generic-init-upstart-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  284.                 recordfail
  285.                 load_video
  286.                 gfxmode $linux_gfx_mode
  287.                 insmod gzio
  288.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  289.                 insmod part_gpt
  290.                 insmod ext2
  291.                 set root='hd0,gpt3'
  292.                 if [ x$feature_platform_search_hint = xy ]; then
  293.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  294.                 else
  295.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  296.                 fi
  297.                 echo    'Wczytywanie systemu Linux 4.10.0-38-generic...'
  298.                 linux   /boot/vmlinuz-4.10.0-38-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff init=/sbin/upstart
  299.                 echo    'Wczytywanie początkowego dysku RAM...'
  300.                 initrd  /boot/initrd.img-4.10.0-38-generic
  301.         }
  302.         menuentry 'Ubuntu, with Linux 4.10.0-38-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-38-generic-recovery-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  303.                 recordfail
  304.                 load_video
  305.                 insmod gzio
  306.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  307.                 insmod part_gpt
  308.                 insmod ext2
  309.                 set root='hd0,gpt3'
  310.                 if [ x$feature_platform_search_hint = xy ]; then
  311.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  312.                 else
  313.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  314.                 fi
  315.                 echo    'Wczytywanie systemu Linux 4.10.0-38-generic...'
  316.                 linux   /boot/vmlinuz-4.10.0-38-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro recovery nomodeset
  317.                 echo    'Wczytywanie początkowego dysku RAM...'
  318.                 initrd  /boot/initrd.img-4.10.0-38-generic
  319.         }
  320.         menuentry 'Ubuntu, za pomocą systemu Linux 4.10.0-28-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-28-generic-advanced-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  321.                 recordfail
  322.                 load_video
  323.                 gfxmode $linux_gfx_mode
  324.                 insmod gzio
  325.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  326.                 insmod part_gpt
  327.                 insmod ext2
  328.                 set root='hd0,gpt3'
  329.                 if [ x$feature_platform_search_hint = xy ]; then
  330.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  331.                 else
  332.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  333.                 fi
  334.                 echo    'Wczytywanie systemu Linux 4.10.0-28-generic...'
  335.                 linux   /boot/vmlinuz-4.10.0-28-generic root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff
  336.                 echo    'Wczytywanie początkowego dysku RAM...'
  337.                 initrd  /boot/initrd.img-4.10.0-28-generic
  338.         }
  339.         menuentry 'Ubuntu, with Linux 4.10.0-28-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-28-generic-init-upstart-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  340.                 recordfail
  341.                 load_video
  342.                 gfxmode $linux_gfx_mode
  343.                 insmod gzio
  344.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  345.                 insmod part_gpt
  346.                 insmod ext2
  347.                 set root='hd0,gpt3'
  348.                 if [ x$feature_platform_search_hint = xy ]; then
  349.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  350.                 else
  351.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  352.                 fi
  353.                 echo    'Wczytywanie systemu Linux 4.10.0-28-generic...'
  354.                 linux   /boot/vmlinuz-4.10.0-28-generic root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff init=/sbin/upstart
  355.                 echo    'Wczytywanie początkowego dysku RAM...'
  356.                 initrd  /boot/initrd.img-4.10.0-28-generic
  357.         }
  358.         menuentry 'Ubuntu, with Linux 4.10.0-28-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-28-generic-recovery-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  359.                 recordfail
  360.                 load_video
  361.                 insmod gzio
  362.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  363.                 insmod part_gpt
  364.                 insmod ext2
  365.                 set root='hd0,gpt3'
  366.                 if [ x$feature_platform_search_hint = xy ]; then
  367.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  368.                 else
  369.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  370.                 fi
  371.                 echo    'Wczytywanie systemu Linux 4.10.0-28-generic...'
  372.                 linux   /boot/vmlinuz-4.10.0-28-generic root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro recovery nomodeset
  373.                 echo    'Wczytywanie początkowego dysku RAM...'
  374.                 initrd  /boot/initrd.img-4.10.0-28-generic
  375.         }
  376.         menuentry 'Ubuntu, za pomocą systemu Linux 3.19.0-84-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-84-generic-advanced-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  377.                 recordfail
  378.                 load_video
  379.                 gfxmode $linux_gfx_mode
  380.                 insmod gzio
  381.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  382.                 insmod part_gpt
  383.                 insmod ext2
  384.                 set root='hd0,gpt3'
  385.                 if [ x$feature_platform_search_hint = xy ]; then
  386.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  387.                 else
  388.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  389.                 fi
  390.                 echo    'Wczytywanie systemu Linux 3.19.0-84-generic...'
  391.                 linux   /boot/vmlinuz-3.19.0-84-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff
  392.                 echo    'Wczytywanie początkowego dysku RAM...'
  393.                 initrd  /boot/initrd.img-3.19.0-84-generic
  394.         }
  395.         menuentry 'Ubuntu, with Linux 3.19.0-84-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-84-generic-init-upstart-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  396.                 recordfail
  397.                 load_video
  398.                 gfxmode $linux_gfx_mode
  399.                 insmod gzio
  400.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  401.                 insmod part_gpt
  402.                 insmod ext2
  403.                 set root='hd0,gpt3'
  404.                 if [ x$feature_platform_search_hint = xy ]; then
  405.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  406.                 else
  407.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  408.                 fi
  409.                 echo    'Wczytywanie systemu Linux 3.19.0-84-generic...'
  410.                 linux   /boot/vmlinuz-3.19.0-84-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff init=/sbin/upstart
  411.                 echo    'Wczytywanie początkowego dysku RAM...'
  412.                 initrd  /boot/initrd.img-3.19.0-84-generic
  413.         }
  414.         menuentry 'Ubuntu, with Linux 3.19.0-84-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-84-generic-recovery-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  415.                 recordfail
  416.                 load_video
  417.                 insmod gzio
  418.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  419.                 insmod part_gpt
  420.                 insmod ext2
  421.                 set root='hd0,gpt3'
  422.                 if [ x$feature_platform_search_hint = xy ]; then
  423.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  424.                 else
  425.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  426.                 fi
  427.                 echo    'Wczytywanie systemu Linux 3.19.0-84-generic...'
  428.                 linux   /boot/vmlinuz-3.19.0-84-generic.efi.signed root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro recovery nomodeset
  429.                 echo    'Wczytywanie początkowego dysku RAM...'
  430.                 initrd  /boot/initrd.img-3.19.0-84-generic
  431.         }
  432.         menuentry 'Ubuntu, za pomocą systemu Linux 3.19.0-15-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-15-generic-advanced-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  433.                 recordfail
  434.                 load_video
  435.                 gfxmode $linux_gfx_mode
  436.                 insmod gzio
  437.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  438.                 insmod part_gpt
  439.                 insmod ext2
  440.                 set root='hd0,gpt3'
  441.                 if [ x$feature_platform_search_hint = xy ]; then
  442.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  443.                 else
  444.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  445.                 fi
  446.                 echo    'Wczytywanie systemu Linux 3.19.0-15-generic...'
  447.                 linux   /boot/vmlinuz-3.19.0-15-generic root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff
  448.                 echo    'Wczytywanie początkowego dysku RAM...'
  449.                 initrd  /boot/initrd.img-3.19.0-15-generic
  450.         }
  451.         menuentry 'Ubuntu, with Linux 3.19.0-15-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-15-generic-init-upstart-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  452.                 recordfail
  453.                 load_video
  454.                 gfxmode $linux_gfx_mode
  455.                 insmod gzio
  456.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  457.                 insmod part_gpt
  458.                 insmod ext2
  459.                 set root='hd0,gpt3'
  460.                 if [ x$feature_platform_search_hint = xy ]; then
  461.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  462.                 else
  463.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  464.                 fi
  465.                 echo    'Wczytywanie systemu Linux 3.19.0-15-generic...'
  466.                 linux   /boot/vmlinuz-3.19.0-15-generic root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro  quiet splash $vt_handoff init=/sbin/upstart
  467.                 echo    'Wczytywanie początkowego dysku RAM...'
  468.                 initrd  /boot/initrd.img-3.19.0-15-generic
  469.         }
  470.         menuentry 'Ubuntu, with Linux 3.19.0-15-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-15-generic-recovery-abbe8243-30e5-4e98-9b39-7b7888b0a779' {
  471.                 recordfail
  472.                 load_video
  473.                 insmod gzio
  474.                 if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  475.                 insmod part_gpt
  476.                 insmod ext2
  477.                 set root='hd0,gpt3'
  478.                 if [ x$feature_platform_search_hint = xy ]; then
  479.                   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3  abbe8243-30e5-4e98-9b39-7b7888b0a779
  480.                 else
  481.                   search --no-floppy --fs-uuid --set=root abbe8243-30e5-4e98-9b39-7b7888b0a779
  482.                 fi
  483.                 echo    'Wczytywanie systemu Linux 3.19.0-15-generic...'
  484.                 linux   /boot/vmlinuz-3.19.0-15-generic root=UUID=abbe8243-30e5-4e98-9b39-7b7888b0a779 ro recovery nomodeset
  485.                 echo    'Wczytywanie początkowego dysku RAM...'
  486.                 initrd  /boot/initrd.img-3.19.0-15-generic
  487.         }
  488. }
  489.  
  490. ### END /etc/grub.d/10_linux ###
  491.  
  492. ### BEGIN /etc/grub.d/20_linux_xen ###
  493.  
  494. ### END /etc/grub.d/20_linux_xen ###
  495.  
  496. ### BEGIN /etc/grub.d/20_memtest86+ ###
  497. ### END /etc/grub.d/20_memtest86+ ###
  498.  
  499. ### BEGIN /etc/grub.d/30_os-prober ###
  500. menuentry 'Windows Boot Manager (na /dev/sdc2)' --class windows --class os $menuentry_id_option 'osprober-efi-00E8-322F' {
  501.         insmod part_gpt
  502.         insmod fat
  503.         set root='hd2,gpt2'
  504.         if [ x$feature_platform_search_hint = xy ]; then
  505.           search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt2 --hint-efi=hd2,gpt2 --hint-baremetal=ahci2,gpt2  00E8-322F
  506.         else
  507.           search --no-floppy --fs-uuid --set=root 00E8-322F
  508.         fi
  509.         chainloader /EFI/Microsoft/Boot/bootmgfw.efi
  510. }
  511. set timeout_style=menu
  512. if [ "${timeout}" = 0 ]; then
  513.   set timeout=10
  514. fi
  515. ### END /etc/grub.d/30_os-prober ###
  516.  
  517. ### BEGIN /etc/grub.d/30_uefi-firmware ###
  518. menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
  519.         fwsetup
  520. }
  521. ### END /etc/grub.d/30_uefi-firmware ###
  522.  
  523. ### BEGIN /etc/grub.d/40_custom ###
  524. # This file provides an easy way to add custom menu entries.  Simply type the
  525. # menu entries you want to add after this comment.  Be careful not to change
  526. # the 'exec tail' line above.
  527. ### END /etc/grub.d/40_custom ###
  528.  
  529. ### BEGIN /etc/grub.d/41_custom ###
  530. if [ -f  ${config_directory}/custom.cfg ]; then
  531.   source ${config_directory}/custom.cfg
  532. elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  533.   source $prefix/custom.cfg;
  534. fi
  535. ### END /etc/grub.d/41_custom ###
  536.