Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 1717989 Details for
Bug 1884042
From Fed32, grub cannot boot Fed33 if Fed33 is installed with live defaults for btrfs and the reverse
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh90 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
some debugging information (grub.cfg x 2) , and a /etc/fstab
grubbug (text/plain), 33.14 KB, created by
Leslie Satenstein
on 2020-09-30 20:32:11 UTC
(
hide
)
Description:
some debugging information (grub.cfg x 2) , and a /etc/fstab
Filename:
MIME Type:
Creator:
Leslie Satenstein
Created:
2020-09-30 20:32:11 UTC
Size:
33.14 KB
patch
obsolete
>Red Hat Bugzilla â Bug 1884042 Submitted grub2-mkconfig 2.04 >====================================================================== >Generating grub configuration file ... >Found Fedora 33 (Workstation Edition Prerelease) on /dev/sda3 >Found openSUSE Leap 15.2 on /dev/sdb3 >Found Fedora 33 (Workstation Edition Prerelease) on /dev/sdb6 >This is the output from Fedora 32 grub.cfg > ># ># DO NOT EDIT THIS FILE ># ># It is automatically generated by grub2-mkconfig using templates ># from /etc/grub.d and settings from /etc/default/grub ># > >### BEGIN /etc/grub.d/00_header ### >set pager=1 > >if [ -f ${config_directory}/grubenv ]; then > load_env -f ${config_directory}/grubenv >elif [ -s $prefix/grubenv ]; then > load_env >fi >if [ "${next_entry}" ] ; then > set default="${next_entry}" > set next_entry= > save_env next_entry > set boot_once=true >else > set default="${saved_entry}" >fi > >if [ x"${feature_menuentry_id}" = xy ]; then > menuentry_id_option="--id" >else > menuentry_id_option="" >fi > >export menuentry_id_option > >if [ "${prev_saved_entry}" ]; then > set saved_entry="${prev_saved_entry}" > save_env saved_entry > set prev_saved_entry= > save_env prev_saved_entry > set boot_once=true >fi > >function savedefault { > if [ -z "${boot_once}" ]; then > saved_entry="${chosen}" > save_env saved_entry > fi >} > >function load_video { > if [ x$feature_all_video_module = xy ]; then > insmod all_video > else > insmod efi_gop > insmod efi_uga > insmod ieee1275_fb > insmod vbe > insmod vga > insmod video_bochs > insmod video_cirrus > fi >} > >terminal_output console >if [ x$feature_timeout_style = xy ] ; then > set timeout_style=menu > set timeout=5 ># Fallback normal timeout code in case the timeout_style feature is ># unavailable. >else > set timeout=5 >fi >### END /etc/grub.d/00_header ### > >### BEGIN /etc/grub.d/01_users ### >if [ -f ${prefix}/user.cfg ]; then > source ${prefix}/user.cfg > if [ -n "${GRUB2_PASSWORD}" ]; then > set superusers="root" > export superusers > password_pbkdf2 root ${GRUB2_PASSWORD} > fi >fi >### END /etc/grub.d/01_users ### > >### BEGIN /etc/grub.d/08_fallback_counting ### >insmod increment ># Check if boot_counter exists and boot_success=0 to activate this behaviour. >if [ -n "${boot_counter}" -a "${boot_success}" = "0" ]; then > # if countdown has ended, choose to boot rollback deployment, > # i.e. default=1 on OSTree-based systems. > if [ "${boot_counter}" = "0" -o "${boot_counter}" = "-1" ]; then > set default=1 > set boot_counter=-1 > # otherwise decrement boot_counter > else > decrement boot_counter > fi > save_env boot_counter >fi >### END /etc/grub.d/08_fallback_counting ### > >### BEGIN /etc/grub.d/10_linux ### >insmod part_gpt >insmod ext2 >if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 >else > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 >fi >insmod part_gpt >insmod fat >if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=boot 2E1D-7279 >else > search --no-floppy --fs-uuid --set=boot 2E1D-7279 >fi > ># This section was generated by a script. Do not modify the generated file - all changes ># will be lost the next time file is regenerated. Instead edit the BootLoaderSpec files. ># ># The blscfg command parses the BootLoaderSpec files stored in /boot/loader/entries and ># populates the boot menu. Please refer to the Boot Loader Specification documentation ># for the files format: https://www.freedesktop.org/wiki/Specifications/BootLoaderSpec/. > ># The kernelopts variable should be defined in the grubenv file. But to ensure that menu ># entries populated from BootLoaderSpec files that use this variable work correctly even ># without a grubenv file, define a fallback kernelopts variable if this has not been set. ># ># The kernelopts variable in the grubenv file can be modified using the grubby tool or by ># executing the grub2-mkconfig tool. For the latter, the values of the GRUB_CMDLINE_LINUX ># and GRUB_CMDLINE_LINUX_DEFAULT options from /etc/default/grub file are used to set both ># the kernelopts variable in the grubenv file and the fallback kernelopts variable. >if [ -z "${kernelopts}" ]; then > set kernelopts="root=UUID=34aea80c-4e3b-4b16-9009-3fc9aeada4c3 ro resume=UUID=389ff8c8-bc23-4d6c-9ca4-0c8ec4af1148 rhgb quiet " >fi > >insmod blscfg >blscfg >### END /etc/grub.d/10_linux ### > >### BEGIN /etc/grub.d/10_reset_boot_success ### ># Hiding the menu is ok if last boot was ok or if this is a first boot attempt to boot the entry >if [ "${boot_success}" = "1" -o "${boot_indeterminate}" = "1" ]; then > set menu_hide_ok=1 >else > set menu_hide_ok=0 >fi ># Reset boot_indeterminate after a successful boot >if [ "${boot_success}" = "1" ] ; then > set boot_indeterminate=0 ># Avoid boot_indeterminate causing the menu to be hidden more then once >elif [ "${boot_indeterminate}" = "1" ]; then > set boot_indeterminate=2 >fi ># Reset boot_success for current boot >set boot_success=0 >save_env boot_success boot_indeterminate >### END /etc/grub.d/10_reset_boot_success ### > >### BEGIN /etc/grub.d/12_menu_auto_hide ### >if [ x$feature_timeout_style = xy ] ; then > if [ "${menu_show_once}" ]; then > unset menu_show_once > save_env menu_show_once > set timeout_style=menu > set timeout=60 > elif [ "${menu_auto_hide}" -a "${menu_hide_ok}" = "1" ]; then > set orig_timeout_style=${timeout_style} > set orig_timeout=${timeout} > if [ "${fastboot}" = "1" ]; then > # timeout_style=menu + timeout=0 avoids the countdown code keypress check > set timeout_style=menu > set timeout=0 > else > set timeout_style=hidden > set timeout=1 > fi > fi >fi >### END /etc/grub.d/12_menu_auto_hide ### > >### BEGIN /etc/grub.d/20_linux_xen ### > >### END /etc/grub.d/20_linux_xen ### > >### BEGIN /etc/grub.d/20_ppc_terminfo ### >### END /etc/grub.d/20_ppc_terminfo ### > >### BEGIN /etc/grub.d/30_os-prober ### >############################################################# FEDORA 33 IS MISSING FROM HERE >menuentry 'openSUSE Leap 15.2 (on /dev/sdb3)' --class opensuse --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.41-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 splash=silent resume=/dev/disk/by-label/swapforSdb mitigations=auto quiet > initrd /initrd-5.3.18-lp152.41-default >} >submenu 'Advanced options for openSUSE Leap 15.2 (on /dev/sdb3)' $menuentry_id_option 'osprober-gnulinux-advanced-8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > menuentry 'openSUSE Leap 15.2 (on /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.3.18-lp152.41-default--8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.41-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 splash=silent resume=/dev/disk/by-label/swapforSdb mitigations=auto quiet > initrd /initrd-5.3.18-lp152.41-default > } > menuentry 'openSUSE Leap 15.2, with Linux 5.3.18-lp152.41-default (on /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.3.18-lp152.41-default--8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.41-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 splash=silent resume=/dev/disk/by-label/swapforSdb mitigations=auto quiet > initrd /initrd-5.3.18-lp152.41-default > } > menuentry 'openSUSE Leap 15.2, with Linux 5.3.18-lp152.41-default (recovery mode) (on /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.3.18-lp152.41-default--8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.41-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 > initrd /initrd-5.3.18-lp152.41-default > } > menuentry 'openSUSE Leap 15.2, with Linux 5.3.18-lp152.36-default (on /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.3.18-lp152.36-default--8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.36-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 splash=silent resume=/dev/disk/by-label/swapforSdb mitigations=auto quiet > initrd /initrd-5.3.18-lp152.36-default > } > menuentry 'openSUSE Leap 15.2, with Linux 5.3.18-lp152.36-default (recovery mode) (on /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.3.18-lp152.36-default--8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.36-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 > initrd /initrd-5.3.18-lp152.36-default > } >} > >menuentry 'Fedora 33 (Workstation Edition Prerelease) (on /dev/sdb6)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-14c2d1a7-cc75-41aa-bd60-ca1adfe1b4c6' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt16' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt16 --hint-efi=hd1,gpt16 --hint-baremetal=ahci1,gpt16 c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > else > search --no-floppy --fs-uuid --set=root c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > fi > linux /vmlinuz-0-rescue-43056c070071461ba0cfa4e122dc864f root=/dev/sdb6 > initrd /initramfs-0-rescue-43056c070071461ba0cfa4e122dc864f.img >} >submenu 'Advanced options for Fedora 33 (Workstation Edition Prerelease) (on /dev/sdb6)' $menuentry_id_option 'osprober-gnulinux-advanced-14c2d1a7-cc75-41aa-bd60-ca1adfe1b4c6' { > menuentry 'Fedora 33 (Workstation Edition Prerelease) (on /dev/sdb6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-0-rescue-43056c070071461ba0cfa4e122dc864f--14c2d1a7-cc75-41aa-bd60-ca1adfe1b4c6' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt16' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt16 --hint-efi=hd1,gpt16 --hint-baremetal=ahci1,gpt16 c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > else > search --no-floppy --fs-uuid --set=root c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > fi > linux /vmlinuz-0-rescue-43056c070071461ba0cfa4e122dc864f root=/dev/sdb6 > initrd /initramfs-0-rescue-43056c070071461ba0cfa4e122dc864f.img > } > menuentry 'Fedora 33 (Workstation Edition Prerelease) (on /dev/sdb6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.8.11-300.fc33.x86_64--14c2d1a7-cc75-41aa-bd60-ca1adfe1b4c6' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt16' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt16 --hint-efi=hd1,gpt16 --hint-baremetal=ahci1,gpt16 c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > else > search --no-floppy --fs-uuid --set=root c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > fi > linux /vmlinuz-5.8.11-300.fc33.x86_64 root=/dev/sdb6 > initrd /initramfs-5.8.11-300.fc33.x86_64.img > } > menuentry 'Fedora 33 (Workstation Edition Prerelease) (on /dev/sdb6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.8.12-300.fc33.x86_64--14c2d1a7-cc75-41aa-bd60-ca1adfe1b4c6' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt16' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt16 --hint-efi=hd1,gpt16 --hint-baremetal=ahci1,gpt16 c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > else > search --no-floppy --fs-uuid --set=root c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > fi > linux /vmlinuz-5.8.12-300.fc33.x86_64 root=/dev/sdb6 > initrd /initramfs-5.8.12-300.fc33.x86_64.img > } >} > ># Other OS found, undo autohiding of menu unless menu_auto_hide=2 >if [ "${orig_timeout_style}" -a "${menu_auto_hide}" != "2" ]; then > set timeout_style=${orig_timeout_style} > set timeout=${orig_timeout} >fi >### END /etc/grub.d/30_os-prober ### > >### BEGIN /etc/grub.d/30_uefi-firmware ### >### END /etc/grub.d/30_uefi-firmware ### > >### BEGIN /etc/grub.d/40_custom ### ># This file provides an easy way to add custom menu entries. Simply type the ># menu entries you want to add after this comment. Be careful not to change ># the 'exec tail' line above. >### END /etc/grub.d/40_custom ### > >### BEGIN /etc/grub.d/41_custom ### >if [ -f ${config_directory}/custom.cfg ]; then > source ${config_directory}/custom.cfg >elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then > source $prefix/custom.cfg; >fi >### END /etc/grub.d/41_custom ### > > >==================================================================== >==================================================================== ># ># DO NOT EDIT THIS FILE ># ># It is automatically generated by grub2-mkconfig using templates ># from /etc/grub.d and settings from /etc/default/grub ># > >### BEGIN /etc/grub.d/00_header ### >set pager=1 > >if [ -f ${config_directory}/grubenv ]; then > load_env -f ${config_directory}/grubenv >elif [ -s $prefix/grubenv ]; then > load_env >fi >if [ "${next_entry}" ] ; then > set default="${next_entry}" > set next_entry= > save_env next_entry > set boot_once=true >else > set default="${saved_entry}" >fi > >if [ x"${feature_menuentry_id}" = xy ]; then > menuentry_id_option="--id" >else > menuentry_id_option="" >fi > >export menuentry_id_option > >if [ "${prev_saved_entry}" ]; then > set saved_entry="${prev_saved_entry}" > save_env saved_entry > set prev_saved_entry= > save_env prev_saved_entry > set boot_once=true >fi > >function savedefault { > if [ -z "${boot_once}" ]; then > saved_entry="${chosen}" > save_env saved_entry > fi >} > >function load_video { > if [ x$feature_all_video_module = xy ]; then > insmod all_video > else > insmod efi_gop > insmod efi_uga > insmod ieee1275_fb > insmod vbe > insmod vga > insmod video_bochs > insmod video_cirrus > fi >} > >terminal_output console >if [ x$feature_timeout_style = xy ] ; then > set timeout_style=menu > set timeout=5 ># Fallback normal timeout code in case the timeout_style feature is ># unavailable. >else > set timeout=5 >fi >### END /etc/grub.d/00_header ### > >### BEGIN /etc/grub.d/01_users ### >if [ -f ${prefix}/user.cfg ]; then > source ${prefix}/user.cfg > if [ -n "${GRUB2_PASSWORD}" ]; then > set superusers="root" > export superusers > password_pbkdf2 root ${GRUB2_PASSWORD} > fi >fi >### END /etc/grub.d/01_users ### > >### BEGIN /etc/grub.d/08_fallback_counting ### >insmod increment ># Check if boot_counter exists and boot_success=0 to activate this behaviour. >if [ -n "${boot_counter}" -a "${boot_success}" = "0" ]; then > # if countdown has ended, choose to boot rollback deployment, > # i.e. default=1 on OSTree-based systems. > if [ "${boot_counter}" = "0" -o "${boot_counter}" = "-1" ]; then > set default=1 > set boot_counter=-1 > # otherwise decrement boot_counter > else > decrement boot_counter > fi > save_env boot_counter >fi >### END /etc/grub.d/08_fallback_counting ### > >### BEGIN /etc/grub.d/10_linux ### >insmod part_gpt >insmod ext2 >set root='hd0,gpt2' >if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 384d0cbd-d1b2-4de0-bec2-7697db29d643 >else > search --no-floppy --fs-uuid --set=root 384d0cbd-d1b2-4de0-bec2-7697db29d643 >fi >insmod part_gpt >insmod fat >set boot='hd0,gpt1' >if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=boot --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 2230-E8E4 >else > search --no-floppy --fs-uuid --set=boot 2230-E8E4 >fi > ># This section was generated by a script. Do not modify the generated file - all changes ># will be lost the next time file is regenerated. Instead edit the BootLoaderSpec files. ># ># The blscfg command parses the BootLoaderSpec files stored in /boot/loader/entries and ># populates the boot menu. Please refer to the Boot Loader Specification documentation ># for the files format: https://www.freedesktop.org/wiki/Specifications/BootLoaderSpec/. > ># The kernelopts variable should be defined in the grubenv file. But to ensure that menu ># entries populated from BootLoaderSpec files that use this variable work correctly even ># without a grubenv file, define a fallback kernelopts variable if this has not been set. ># ># The kernelopts variable in the grubenv file can be modified using the grubby tool or by ># executing the grub2-mkconfig tool. For the latter, the values of the GRUB_CMDLINE_LINUX ># and GRUB_CMDLINE_LINUX_DEFAULT options from /etc/default/grub file are used to set both ># the kernelopts variable in the grubenv file and the fallback kernelopts variable. >if [ -z "${kernelopts}" ]; then > set kernelopts="root=UUID=f0fd85f7-34b4-4f75-9f43-c5bbb3d06db0 ro rootflags=subvol=root rhgb quiet " >fi > >insmod blscfg >blscfg >### END /etc/grub.d/10_linux ### > >### BEGIN /etc/grub.d/10_reset_boot_success ### ># Hiding the menu is ok if last boot was ok or if this is a first boot attempt to boot the entry >if [ "${boot_success}" = "1" -o "${boot_indeterminate}" = "1" ]; then > set menu_hide_ok=1 >else > set menu_hide_ok=0 >fi ># Reset boot_indeterminate after a successful boot >if [ "${boot_success}" = "1" ] ; then > set boot_indeterminate=0 ># Avoid boot_indeterminate causing the menu to be hidden more then once >elif [ "${boot_indeterminate}" = "1" ]; then > set boot_indeterminate=2 >fi ># Reset boot_success for current boot >set boot_success=0 >save_env boot_success boot_indeterminate >### END /etc/grub.d/10_reset_boot_success ### > >### BEGIN /etc/grub.d/12_menu_auto_hide ### >if [ x$feature_timeout_style = xy ] ; then > if [ "${menu_show_once}" ]; then > unset menu_show_once > save_env menu_show_once > set timeout_style=menu > set timeout=60 > elif [ "${menu_auto_hide}" -a "${menu_hide_ok}" = "1" ]; then > set orig_timeout_style=${timeout_style} > set orig_timeout=${timeout} > if [ "${fastboot}" = "1" ]; then > # timeout_style=menu + timeout=0 avoids the countdown code keypress check > set timeout_style=menu > set timeout=0 > else > set timeout_style=hidden > set timeout=1 > fi > fi >fi >### END /etc/grub.d/12_menu_auto_hide ### > >### BEGIN /etc/grub.d/14_menu_show_once ### >if [ x$feature_timeout_style = xy ]; then > if [ "${menu_show_once_timeout}" ]; then > set timeout_style=menu > set timeout="${menu_show_once_timeout}" > unset menu_show_once_timeout > save_env menu_show_once_timeout > fi >fi >### END /etc/grub.d/14_menu_show_once ### > >### BEGIN /etc/grub.d/20_linux_xen ### > >### END /etc/grub.d/20_linux_xen ### > >### BEGIN /etc/grub.d/20_ppc_terminfo ### >### END /etc/grub.d/20_ppc_terminfo ### > >### BEGIN /etc/grub.d/30_os-prober ### >menuentry 'Fedora 32 (Workstation Edition) (on /dev/nvme0n1p3)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-34aea80c-4e3b-4b16-9009-3fc9aeada4c3' { > insmod part_gpt > insmod ext2 > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 > else > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 > fi > linux /vmlinuz-0-rescue-8f8031e8e31c46efbf787f8ed5293f04 root=/dev/nvme0n1p3 > initrd /initramfs-0-rescue-8f8031e8e31c46efbf787f8ed5293f04.img >} >submenu 'Advanced options for Fedora 32 (Workstation Edition) (on /dev/nvme0n1p3)' $menuentry_id_option 'osprober-gnulinux-advanced-34aea80c-4e3b-4b16-9009-3fc9aeada4c3' { > menuentry 'Fedora 32 (Workstation Edition) (on /dev/nvme0n1p3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-0-rescue-8f8031e8e31c46efbf787f8ed5293f04--34aea80c-4e3b-4b16-9009-3fc9aeada4c3' { > insmod part_gpt > insmod ext2 > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 > else > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 > fi > linux /vmlinuz-0-rescue-8f8031e8e31c46efbf787f8ed5293f04 root=/dev/nvme0n1p3 > initrd /initramfs-0-rescue-8f8031e8e31c46efbf787f8ed5293f04.img > } > menuentry 'Fedora 32 (Workstation Edition) (on /dev/nvme0n1p3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.7.17-200.fc32.x86_64--34aea80c-4e3b-4b16-9009-3fc9aeada4c3' { > insmod part_gpt > insmod ext2 > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 > else > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 > fi > linux /vmlinuz-5.7.17-200.fc32.x86_64 root=/dev/nvme0n1p3 > initrd /initramfs-5.7.17-200.fc32.x86_64.img > } > menuentry 'Fedora 32 (Workstation Edition) (on /dev/nvme0n1p3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.8.10-200.fc32.x86_64--34aea80c-4e3b-4b16-9009-3fc9aeada4c3' { > insmod part_gpt > insmod ext2 > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 > else > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 > fi > linux /vmlinuz-5.8.10-200.fc32.x86_64 root=/dev/nvme0n1p3 > initrd /initramfs-5.8.10-200.fc32.x86_64.img > } > menuentry 'Fedora 32 (Workstation Edition) (on /dev/nvme0n1p3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.8.11-200.fc32.x86_64--34aea80c-4e3b-4b16-9009-3fc9aeada4c3' { > insmod part_gpt > insmod ext2 > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 > else > search --no-floppy --fs-uuid --set=root 7fb3e5db-5ebb-4ee5-ae10-d10b64327792 > fi > linux /vmlinuz-5.8.11-200.fc32.x86_64 root=/dev/nvme0n1p3 > initrd /initramfs-5.8.11-200.fc32.x86_64.img > } >} > >menuentry 'openSUSE Leap 15.2 (on /dev/sdb3)' --class opensuse --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.41-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 splash=silent resume=/dev/disk/by-label/swapforSdb mitigations=auto quiet > initrd /initrd-5.3.18-lp152.41-default >} >submenu 'Advanced options for openSUSE Leap 15.2 (on /dev/sdb3)' $menuentry_id_option 'osprober-gnulinux-advanced-8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > menuentry 'openSUSE Leap 15.2 (on /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.3.18-lp152.41-default--8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.41-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 splash=silent resume=/dev/disk/by-label/swapforSdb mitigations=auto quiet > initrd /initrd-5.3.18-lp152.41-default > } > menuentry 'openSUSE Leap 15.2, with Linux 5.3.18-lp152.41-default (on /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.3.18-lp152.41-default--8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.41-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 splash=silent resume=/dev/disk/by-label/swapforSdb mitigations=auto quiet > initrd /initrd-5.3.18-lp152.41-default > } > menuentry 'openSUSE Leap 15.2, with Linux 5.3.18-lp152.41-default (recovery mode) (on /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.3.18-lp152.41-default--8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.41-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 > initrd /initrd-5.3.18-lp152.41-default > } > menuentry 'openSUSE Leap 15.2, with Linux 5.3.18-lp152.36-default (on /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.3.18-lp152.36-default--8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.36-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 splash=silent resume=/dev/disk/by-label/swapforSdb mitigations=auto quiet > initrd /initrd-5.3.18-lp152.36-default > } > menuentry 'openSUSE Leap 15.2, with Linux 5.3.18-lp152.36-default (recovery mode) (on /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.3.18-lp152.36-default--8c53faad-81b1-427d-b60d-2f1e55b6f0f5' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 551a5284-ab92-4ca0-9d7d-a2612c97cccf > else > search --no-floppy --fs-uuid --set=root 551a5284-ab92-4ca0-9d7d-a2612c97cccf > fi > linux /vmlinuz-5.3.18-lp152.36-default root=UUID=8c53faad-81b1-427d-b60d-2f1e55b6f0f5 > initrd /initrd-5.3.18-lp152.36-default > } >} > >menuentry 'Fedora 33 (Workstation Edition Prerelease) (on /dev/sdb6)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-14c2d1a7-cc75-41aa-bd60-ca1adfe1b4c6' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt16' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt16 --hint-efi=hd1,gpt16 --hint-baremetal=ahci1,gpt16 c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > else > search --no-floppy --fs-uuid --set=root c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > fi > linux /vmlinuz-0-rescue-43056c070071461ba0cfa4e122dc864f root=/dev/sdb6 > initrd /initramfs-0-rescue-43056c070071461ba0cfa4e122dc864f.img >} >submenu 'Advanced options for Fedora 33 (Workstation Edition Prerelease) (on /dev/sdb6)' $menuentry_id_option 'osprober-gnulinux-advanced-14c2d1a7-cc75-41aa-bd60-ca1adfe1b4c6' { > menuentry 'Fedora 33 (Workstation Edition Prerelease) (on /dev/sdb6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-0-rescue-43056c070071461ba0cfa4e122dc864f--14c2d1a7-cc75-41aa-bd60-ca1adfe1b4c6' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt16' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt16 --hint-efi=hd1,gpt16 --hint-baremetal=ahci1,gpt16 c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > else > search --no-floppy --fs-uuid --set=root c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > fi > linux /vmlinuz-0-rescue-43056c070071461ba0cfa4e122dc864f root=/dev/sdb6 > initrd /initramfs-0-rescue-43056c070071461ba0cfa4e122dc864f.img > } > menuentry 'Fedora 33 (Workstation Edition Prerelease) (on /dev/sdb6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.8.11-300.fc33.x86_64--14c2d1a7-cc75-41aa-bd60-ca1adfe1b4c6' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt16' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt16 --hint-efi=hd1,gpt16 --hint-baremetal=ahci1,gpt16 c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > else > search --no-floppy --fs-uuid --set=root c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > fi > linux /vmlinuz-5.8.11-300.fc33.x86_64 root=/dev/sdb6 > initrd /initramfs-5.8.11-300.fc33.x86_64.img > } > menuentry 'Fedora 33 (Workstation Edition Prerelease) (on /dev/sdb6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.8.12-300.fc33.x86_64--14c2d1a7-cc75-41aa-bd60-ca1adfe1b4c6' { > insmod part_gpt > insmod ext2 > set root='hd1,gpt16' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt16 --hint-efi=hd1,gpt16 --hint-baremetal=ahci1,gpt16 c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > else > search --no-floppy --fs-uuid --set=root c2ddf0f3-8bc8-4570-8fa7-17e0ebcbab55 > fi > linux /vmlinuz-5.8.12-300.fc33.x86_64 root=/dev/sdb6 > initrd /initramfs-5.8.12-300.fc33.x86_64.img > } >} > ># Other OS found, undo autohiding of menu unless menu_auto_hide=2 >if [ "${orig_timeout_style}" -a "${menu_auto_hide}" != "2" ]; then > set timeout_style=${orig_timeout_style} > set timeout=${orig_timeout} >fi >### END /etc/grub.d/30_os-prober ### > >### BEGIN /etc/grub.d/30_uefi-firmware ### >### END /etc/grub.d/30_uefi-firmware ### > >### BEGIN /etc/grub.d/40_custom ### ># This file provides an easy way to add custom menu entries. Simply type the ># menu entries you want to add after this comment. Be careful not to change ># the 'exec tail' line above. >### END /etc/grub.d/40_custom ### > >### BEGIN /etc/grub.d/41_custom ### >if [ -f ${config_directory}/custom.cfg ]; then > source ${config_directory}/custom.cfg >elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then > source $prefix/custom.cfg; >fi >### END /etc/grub.d/41_custom ### > >========================================================================================== >========================================================================================== > >The fstab for Fedora 33 > > ># ># /etc/fstab ># Created by anaconda on Tue Sep 29 21:44:21 2020 ># ># Accessible filesystems, by reference, are maintained under '/dev/disk/'. ># See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info. ># ># After editing this file, run 'systemctl daemon-reload' to update systemd ># units generated from this file. ># >#<file system> <mount> <type> <options> <dmp pass> <xref> <label/uuid> >UUID=f0fd85f7-34b4-4f75-9f43-c5bbb3d06db0 / btrfs subvol=root 0 0 #/dev/sda3 fedora_localhost-live >UUID=384d0cbd-d1b2-4de0-bec2-7697db29d643 /boot ext4 defaults 1 2 #/dev/sda2 >UUID=2230-E8E4 /boot/efi vfat umask=0077,shortname=winnt 0 2 #/dev/sda1 >UUID=f0fd85f7-34b4-4f75-9f43-c5bbb3d06db0 /home btrfs subvol=home 0 0 #/dev/sda3 fedora_localhost-live > >UUID=ff624337-994e-45cf-a313-b82552d08977 none swap sw 0 0 #/dev/nvme0n1p6 >UUID=d6a5cfb4-f0de-45de-91f0-80dfe18e8104 /share btrfs subvol=share 0 0 #/dev/nvme0n1p8 sharebtrfs >UUID=86155041-8680-4914-9b01-9c50f9aaf7aa /storage ext4 defaults,noatime 0 0 #/dev/sdc5 sdc5Storage > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1884042
:
1717975
| 1717989 |
1721376
|
1721377
|
1721378
|
1721379
|
1721544