Hi, On Mon, Nov 12, 2018 at 3:05 PM Tom Horsley <horsley1...@gmail.com> wrote:
If I edit the grub.cfg file and replace this absurd chunk of gibberish: 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 "${last_boot_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 with just set timeout=5 will I get my grub menu back so I can do things like choose previous kernels? Or should I just delete the entire chunk of code between the 01_menu_auto_hide comments? And why isn't there a way to disable the whole auto hide nonsense? The only thing it appears to be checking is a serial console, no define you can provide to just say "Dammit! Don't hide my menu!"
I see that you've already solved this. For the record, this can be disabled much easier by doing: sudo grub2-editenv - unset menu_auto_hide As documented in the GRUB hidden menu change FAQ: https://hansdegoede.livejournal.com/19081.html Which is linked from the change page: https://fedoraproject.org/wiki/Changes/HiddenGrubMenu#Documentation Regards, Hans _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org