Re: Strange Error Message Issued Before Display of Themed Grub Menu

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 23/11/22 18:22, Samuel Sieb wrote:
On 11/22/22 22:45, Stephen Morris wrote:
On 23/11/22 12:04, Samuel Sieb wrote:
On 11/20/22 23:54, Stephen Morris wrote:
     I am getting the following error message displayed before the display of the grub boot menu, can someone explain to me what this means and why it is occurring in F37 when it was never produced in F36, and what I need to do to rectify it?

                 error: ../../grub-core/kern/efi/sb.c:169:prohibited by secure boot policy

That's not a file you'll find on your system.  That's just identifying where in the grub code that the error message is coming from.  As you say the grub-gfxmode command isn't working now, I would assume that's what is causing the error message because it's not allowed with secure boot enabled. You most likely have to stay with the graphics mode that is initialized by the BIOS.
Thanks Samuel. Are you saying that grub command is not allowed if F37 because F37 is now booting via grub with full secure boot enabled, whereas with the way F36 booted that grub command was honoured and the menus and theme were displayed in that resolution with full secure boot enabled?

That was just a guess and I think it was wrong now.  I checked the source and that error message is related to file loading.  I would have to see your config file to make a guess about what file it was trying to load.
Thanks Samuel, I've attached my grub.cfg file. If it is failing to load a module, would there be some sort of error message in boot.log, and if so what would I need to search for to find it, or is this happening too early in the boot sequence to make that file? I did find a net article that seemed to be from the developer, that seemed to be his spec for the source code changes he was doing, but I didn't understand the sections of the code to seemed to be relevant to what was denied under secure boot. I'm not sure if I could find that article again.

regards,
Steve

_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue
#
# 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
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod btrfs
set root='hd3,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,gpt1 --hint-efi=hd3,gpt1 --hint-baremetal=ahci3,gpt1  ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9
else
  search --no-floppy --fs-uuid --set=root ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9
fi
    font="/Fedora_root/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_AU
  insmod gettext
fi
terminal_output gfxterm
insmod part_gpt
insmod btrfs
set root='hd3,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,gpt1 --hint-efi=hd3,gpt1 --hint-baremetal=ahci3,gpt1  ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9
else
  search --no-floppy --fs-uuid --set=root ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9
fi
insmod gfxmenu
loadfont ($root)/Fedora_root/usr/share/grub/themes/pentract/Poppins-14.pf2
loadfont ($root)/Fedora_root/usr/share/grub/themes/pentract/Poppins-16.pf2
loadfont ($root)/Fedora_root/usr/share/grub/themes/pentract/Poppins-18.pf2
loadfont ($root)/Fedora_root/usr/share/grub/themes/pentract/Poppins-48.pf2
loadfont ($root)/Fedora_root/usr/share/grub/themes/pentract/terminus-12.pf2
loadfont ($root)/Fedora_root/usr/share/grub/themes/pentract/terminus-14.pf2
loadfont ($root)/Fedora_root/usr/share/grub/themes/pentract/terminus-16.pf2
insmod png
set theme=($root)/Fedora_root/usr/share/grub/themes/pentract/theme.txt
export theme
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=100
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=100
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 ###
menuentry 'Fedora' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-simple-ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod ext2
	set root='hd2,gpt7'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt7 --hint-efi=hd2,gpt7 --hint-baremetal=ahci2,gpt7  6be09dba-b73e-47bf-ac54-0f45fe886946
	else
	  search --no-floppy --fs-uuid --set=root 6be09dba-b73e-47bf-ac54-0f45fe886946
	fi
	echo	'Loading Linux 6.0.8-300.fc37.x86_64 ...'
	linux	/vmlinuz-6.0.8-300.fc37.x86_64 root=UUID=ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9 ro rootflags=subvol=Fedora_root rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1 
	echo	'Loading initial ramdisk ...'
	initrd	/initramfs-6.0.8-300.fc37.x86_64.img
}
submenu 'Advanced options for Fedora' $menuentry_id_option 'gnulinux-advanced-ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9' {
	menuentry 'Fedora Linux (6.0.8-300.fc37.x86_64) 37 (Workstation Edition)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-6.0.8-300.fc37.x86_64-advanced-ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt7 --hint-efi=hd2,gpt7 --hint-baremetal=ahci2,gpt7  6be09dba-b73e-47bf-ac54-0f45fe886946
		else
		  search --no-floppy --fs-uuid --set=root 6be09dba-b73e-47bf-ac54-0f45fe886946
		fi
		echo	'Loading Linux 6.0.8-300.fc37.x86_64 ...'
		linux	/vmlinuz-6.0.8-300.fc37.x86_64 root=UUID=ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9 ro rootflags=subvol=Fedora_root rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1 
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-6.0.8-300.fc37.x86_64.img
	}
	menuentry 'Fedora Linux (6.0.8-300.fc37.x86_64) 37 (Workstation Edition) (recovery mode)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-6.0.8-300.fc37.x86_64-recovery-ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt7 --hint-efi=hd2,gpt7 --hint-baremetal=ahci2,gpt7  6be09dba-b73e-47bf-ac54-0f45fe886946
		else
		  search --no-floppy --fs-uuid --set=root 6be09dba-b73e-47bf-ac54-0f45fe886946
		fi
		echo	'Loading Linux 6.0.8-300.fc37.x86_64 ...'
		linux	/vmlinuz-6.0.8-300.fc37.x86_64 root=UUID=ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9 ro single rootflags=subvol=Fedora_root rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-6.0.8-300.fc37.x86_64.img
	}
	menuentry 'Fedora Linux (6.0.8-200.fc36.x86_64) 37 (Workstation Edition)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-6.0.8-200.fc36.x86_64-advanced-ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt7 --hint-efi=hd2,gpt7 --hint-baremetal=ahci2,gpt7  6be09dba-b73e-47bf-ac54-0f45fe886946
		else
		  search --no-floppy --fs-uuid --set=root 6be09dba-b73e-47bf-ac54-0f45fe886946
		fi
		echo	'Loading Linux 6.0.8-200.fc36.x86_64 ...'
		linux	/vmlinuz-6.0.8-200.fc36.x86_64 root=UUID=ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9 ro rootflags=subvol=Fedora_root rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1 
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-6.0.8-200.fc36.x86_64.img
	}
	menuentry 'Fedora Linux (6.0.8-200.fc36.x86_64) 37 (Workstation Edition) (recovery mode)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-6.0.8-200.fc36.x86_64-recovery-ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt7 --hint-efi=hd2,gpt7 --hint-baremetal=ahci2,gpt7  6be09dba-b73e-47bf-ac54-0f45fe886946
		else
		  search --no-floppy --fs-uuid --set=root 6be09dba-b73e-47bf-ac54-0f45fe886946
		fi
		echo	'Loading Linux 6.0.8-200.fc36.x86_64 ...'
		linux	/vmlinuz-6.0.8-200.fc36.x86_64 root=UUID=ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9 ro single rootflags=subvol=Fedora_root rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-6.0.8-200.fc36.x86_64.img
	}
	menuentry 'Fedora Linux (6.0.5-200.fc36.x86_64) 37 (Workstation Edition)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-6.0.5-200.fc36.x86_64-advanced-ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt7 --hint-efi=hd2,gpt7 --hint-baremetal=ahci2,gpt7  6be09dba-b73e-47bf-ac54-0f45fe886946
		else
		  search --no-floppy --fs-uuid --set=root 6be09dba-b73e-47bf-ac54-0f45fe886946
		fi
		echo	'Loading Linux 6.0.5-200.fc36.x86_64 ...'
		linux	/vmlinuz-6.0.5-200.fc36.x86_64 root=UUID=ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9 ro rootflags=subvol=Fedora_root rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1 
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-6.0.5-200.fc36.x86_64.img
	}
	menuentry 'Fedora Linux (6.0.5-200.fc36.x86_64) 37 (Workstation Edition) (recovery mode)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-6.0.5-200.fc36.x86_64-recovery-ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt7 --hint-efi=hd2,gpt7 --hint-baremetal=ahci2,gpt7  6be09dba-b73e-47bf-ac54-0f45fe886946
		else
		  search --no-floppy --fs-uuid --set=root 6be09dba-b73e-47bf-ac54-0f45fe886946
		fi
		echo	'Loading Linux 6.0.5-200.fc36.x86_64 ...'
		linux	/vmlinuz-6.0.5-200.fc36.x86_64 root=UUID=ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9 ro single rootflags=subvol=Fedora_root rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-6.0.5-200.fc36.x86_64.img
	}
	menuentry 'Fedora Linux (0-rescue-5ef0653b8301422faddd10d780e0b5cb) 37 (Workstation Edition)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-0-rescue-5ef0653b8301422faddd10d780e0b5cb-advanced-ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9' {
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt7 --hint-efi=hd2,gpt7 --hint-baremetal=ahci2,gpt7  6be09dba-b73e-47bf-ac54-0f45fe886946
		else
		  search --no-floppy --fs-uuid --set=root 6be09dba-b73e-47bf-ac54-0f45fe886946
		fi
		echo	'Loading Linux 0-rescue-5ef0653b8301422faddd10d780e0b5cb ...'
		linux	/vmlinuz-0-rescue-5ef0653b8301422faddd10d780e0b5cb root=UUID=ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9 ro rootflags=subvol=Fedora_root rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1 
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-0-rescue-5ef0653b8301422faddd10d780e0b5cb.img
	}
	menuentry 'Fedora Linux (0-rescue-5ef0653b8301422faddd10d780e0b5cb) 37 (Workstation Edition) (recovery mode)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-0-rescue-5ef0653b8301422faddd10d780e0b5cb-recovery-ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9' {
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt7 --hint-efi=hd2,gpt7 --hint-baremetal=ahci2,gpt7  6be09dba-b73e-47bf-ac54-0f45fe886946
		else
		  search --no-floppy --fs-uuid --set=root 6be09dba-b73e-47bf-ac54-0f45fe886946
		fi
		echo	'Loading Linux 0-rescue-5ef0653b8301422faddd10d780e0b5cb ...'
		linux	/vmlinuz-0-rescue-5ef0653b8301422faddd10d780e0b5cb root=UUID=ba36dde9-5bf1-4140-89e7-b82ee1fe7cf9 ro single rootflags=subvol=Fedora_root rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-0-rescue-5ef0653b8301422faddd10d780e0b5cb.img
	}
}

### 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 than 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 'Windows Boot Manager (on /dev/sdc2)' --class windows --class os $menuentry_id_option 'osprober-efi-EC16-C981' {
	insmod part_gpt
	insmod fat
	set root='hd2,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt2 --hint-efi=hd2,gpt2 --hint-baremetal=ahci2,gpt2  EC16-C981
	else
	  search --no-floppy --fs-uuid --set=root EC16-C981
	fi
	chainloader /efi/Microsoft/Boot/bootmgfw.efi
}
menuentry 'Ubuntu 22.04.1 LTS (22.04) (on /dev/sde1)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-771eaae1-134b-45b4-8632-f0e19eccc59b' {
	insmod part_gpt
	insmod ext2
	set root='hd2,gpt9'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt9 --hint-efi=hd2,gpt9 --hint-baremetal=ahci2,gpt9  a8e03c94-2198-42a2-b686-511d6ecf9759
	else
	  search --no-floppy --fs-uuid --set=root a8e03c94-2198-42a2-b686-511d6ecf9759
	fi
	linux /vmlinuz-5.15.0-52-generic root=UUID=771eaae1-134b-45b4-8632-f0e19eccc59b ro quiet splash $vt_handoff
	initrd /initrd.img-5.15.0-52-generic
}
submenu 'Advanced options for Ubuntu 22.04.1 LTS (22.04) (on /dev/sde1)' $menuentry_id_option 'osprober-gnulinux-advanced-771eaae1-134b-45b4-8632-f0e19eccc59b' {
	menuentry 'Ubuntu (on /dev/sde1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.15.0-52-generic--771eaae1-134b-45b4-8632-f0e19eccc59b' {
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt9 --hint-efi=hd2,gpt9 --hint-baremetal=ahci2,gpt9  a8e03c94-2198-42a2-b686-511d6ecf9759
		else
		  search --no-floppy --fs-uuid --set=root a8e03c94-2198-42a2-b686-511d6ecf9759
		fi
		linux /vmlinuz-5.15.0-52-generic root=UUID=771eaae1-134b-45b4-8632-f0e19eccc59b ro quiet splash $vt_handoff
		initrd /initrd.img-5.15.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 5.15.0-52-generic (on /dev/sde1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.15.0-52-generic--771eaae1-134b-45b4-8632-f0e19eccc59b' {
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt9 --hint-efi=hd2,gpt9 --hint-baremetal=ahci2,gpt9  a8e03c94-2198-42a2-b686-511d6ecf9759
		else
		  search --no-floppy --fs-uuid --set=root a8e03c94-2198-42a2-b686-511d6ecf9759
		fi
		linux /vmlinuz-5.15.0-52-generic root=UUID=771eaae1-134b-45b4-8632-f0e19eccc59b ro quiet splash $vt_handoff
		initrd /initrd.img-5.15.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 5.15.0-52-generic (recovery mode) (on /dev/sde1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.15.0-52-generic--771eaae1-134b-45b4-8632-f0e19eccc59b' {
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt9 --hint-efi=hd2,gpt9 --hint-baremetal=ahci2,gpt9  a8e03c94-2198-42a2-b686-511d6ecf9759
		else
		  search --no-floppy --fs-uuid --set=root a8e03c94-2198-42a2-b686-511d6ecf9759
		fi
		linux /vmlinuz-5.15.0-52-generic root=UUID=771eaae1-134b-45b4-8632-f0e19eccc59b ro recovery nomodeset dis_ucode_ldr
		initrd /initrd.img-5.15.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 5.15.0-25-generic (on /dev/sde1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.15.0-25-generic--771eaae1-134b-45b4-8632-f0e19eccc59b' {
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt9 --hint-efi=hd2,gpt9 --hint-baremetal=ahci2,gpt9  a8e03c94-2198-42a2-b686-511d6ecf9759
		else
		  search --no-floppy --fs-uuid --set=root a8e03c94-2198-42a2-b686-511d6ecf9759
		fi
		linux /vmlinuz-5.15.0-25-generic root=UUID=771eaae1-134b-45b4-8632-f0e19eccc59b ro quiet splash $vt_handoff
		initrd /initrd.img-5.15.0-25-generic
	}
	menuentry 'Ubuntu, with Linux 5.15.0-25-generic (recovery mode) (on /dev/sde1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-5.15.0-25-generic--771eaae1-134b-45b4-8632-f0e19eccc59b' {
		insmod part_gpt
		insmod ext2
		set root='hd2,gpt9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt9 --hint-efi=hd2,gpt9 --hint-baremetal=ahci2,gpt9  a8e03c94-2198-42a2-b686-511d6ecf9759
		else
		  search --no-floppy --fs-uuid --set=root a8e03c94-2198-42a2-b686-511d6ecf9759
		fi
		linux /vmlinuz-5.15.0-25-generic root=UUID=771eaae1-134b-45b4-8632-f0e19eccc59b ro recovery nomodeset dis_ucode_ldr
		initrd /initrd.img-5.15.0-25-generic
	}
}

# 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 ###
if [ "$grub_platform" = "efi" ]; then
	menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
		fwsetup
	}
fi
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/35_fwupd ###
### END /etc/grub.d/35_fwupd ###

### 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 ###
_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx
Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue
[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [EPEL Devel]     [Fedora Magazine]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Desktop]     [Fedora Fonts]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Fedora Sparc]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux