Force GRUB2 menulist to show on HDMI monitor?

Issues and / or general discussion relating to Puppy


Moderator: Forum moderators

Post Reply
esos
Posts: 210
Joined: Thu Feb 18, 2021 4:33 am
Been thanked: 22 times

Force GRUB2 menulist to show on HDMI monitor?

Post by esos »

HP-laptop:
Using grub.cfg like this, it will show the menulist on both(lcd-screen and hdmi-monitor).
------------------
# DO NOT EDIT THIS FILE
# It is automatically generated by grub-mkconfig using templates from /etc/grub.d and settings from /etc/default/grub
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
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="0"
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_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 ab947178-1b93-4a3b-abd2-9a2e2cf4d33c
else
search --no-floppy --fs-uuid --set=root ab947178-1b93-4a3b-abd2-9a2e2cf4d33c
fi
font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
set gfxmode=800x600
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=en_US
insmod gettext
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 ab947178-1b93-4a3b-abd2-9a2e2cf4d33c
else
search --no-floppy --fs-uuid --set=root ab947178-1b93-4a3b-abd2-9a2e2cf4d33c
fi
insmod gfxmenu
insmod jpeg
insmod png
set theme=($root)/boot/grub/themes/theme.txt
export theme
if [ "${recordfail}" = 1 ] ; then
set timeout=40
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=30
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=25
fi
fi
### END /etc/grub.d/00_header ###
----------------------
Using simple grub.cfg, it will show only on hp laptop lcd-screen.
----------------------
set default=0
set timeout=5

set menu_color_normal='yellow/blue'
set menu_color_highlight='black/cyan'

if [ $grub_platform = 'efi' ]; then
loadfont /boot/grub/fonts/DejaVuSansMono18.pf2
set gfxmode=auto
terminal_output gfxterm
fi
------------------------
Now about Dell xps12 touch-screen which the display screen is already tossed due to leaking and sticky fluid/glue(maybe mercury).
Grub2 menulist wont show up on hdmi monitor.
How to change/modify Grub2 menulist configuration to be able to show on my hdmi monitor? Anybody?

williwaw
Posts: 2151
Joined: Tue Jul 14, 2020 11:24 pm
Has thanked: 196 times
Been thanked: 414 times

Re: Force GRUB2 menulist to show on HDMI monitor?

Post by williwaw »

can you see anything on a different monitor?
what exactly do you see on any monitor?
what exactly do you see on the hdmi monitor?
can you boot anything else on the dell with any monitor? if so, post your grub.cfg on the dell.
I assume you are trying to boot each machine with the same USB?

esos
Posts: 210
Joined: Thu Feb 18, 2021 4:33 am
Been thanked: 22 times

Re: Force GRUB2 menulist to show on HDMI monitor?

Post by esos »

Only using the hdmi monitor for hp-laptop, that's what I have.
The configuration grub.cfg is the same like on the hp. Both are multiboot setup which hp using HDrive and dell SSD. I dont use USB.
Dell menulist doesnt show up on the connected hdmi monitor, so I can not choose any OS, just boot up straight to the default OS.
Is there any missconfig dell grub.cfg?

williwaw
Posts: 2151
Joined: Tue Jul 14, 2020 11:24 pm
Has thanked: 196 times
Been thanked: 414 times

Re: Force GRUB2 menulist to show on HDMI monitor?

Post by williwaw »

esos wrote: Mon Dec 02, 2024 3:11 am

just boot up straight to the default OS.

so it does boot? maybe after grub times out? but you want to be able to see grub to select something different?

if so, post your dell grub.cfg for comparision. the uuids should be different. maybe something else too.

esos
Posts: 210
Joined: Thu Feb 18, 2021 4:33 am
Been thanked: 22 times

Re: Force GRUB2 menulist to show on HDMI monitor?

Post by esos »

Dell grub.cfg:
--------------------------
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
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="0"
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 ext2
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 76286d20-3d53-43c2-9d0b-7fd2374b9aaa
else
search --no-floppy --fs-uuid --set=root 76286d20-3d53-43c2-9d0b-7fd2374b9aaa
fi
font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
set gfxmode=1024x768
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=en_US
insmod gettext
fi
terminal_output gfxterm
insmod part_gpt
insmod ext2
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 76286d20-3d53-43c2-9d0b-7fd2374b9aaa
else
search --no-floppy --fs-uuid --set=root 76286d20-3d53-43c2-9d0b-7fd2374b9aaa
fi
insmod gfxmenu
insmod jpeg
insmod png
set theme=($root)/boot/grub/themes/mx_linux/theme.txt
export theme
if [ "${recordfail}" = 1 ] ; then
set timeout=30
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=15
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=20
fi
fi
### END /etc/grub.d/00_header ###

williwaw
Posts: 2151
Joined: Tue Jul 14, 2020 11:24 pm
Has thanked: 196 times
Been thanked: 414 times

Re: Force GRUB2 menulist to show on HDMI monitor?

Post by williwaw »

esos wrote: Mon Dec 02, 2024 1:54 pm

Dell grub.cfg:
--------------------------
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
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="0"
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 ext2
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 76286d20-3d53-43c2-9d0b-7fd2374b9aaa
else
search --no-floppy --fs-uuid --set=root 76286d20-3d53-43c2-9d0b-7fd2374b9aaa
fi
font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
set gfxmode=1024x768
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=en_US
insmod gettext
fi
terminal_output gfxterm
insmod part_gpt
insmod ext2
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 76286d20-3d53-43c2-9d0b-7fd2374b9aaa
else
search --no-floppy --fs-uuid --set=root 76286d20-3d53-43c2-9d0b-7fd2374b9aaa
fi
insmod gfxmenu
insmod jpeg
insmod png
set theme=($root)/boot/grub/themes/mx_linux/theme.txt
export theme
if [ "${recordfail}" = 1 ] ; then
set timeout=30
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=15
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=20
fi
fi
### END /etc/grub.d/00_header ###

looks like MX? do you have a puppy installed?

esos
Posts: 210
Joined: Thu Feb 18, 2021 4:33 am
Been thanked: 22 times

Re: Force GRUB2 menulist to show on HDMI monitor?

Post by esos »

grub.cfg from puppy is to simple, which not working in hp-laptop for hdmi monitor, see my first post.
multiboot: slacko, upup, fossapup, bookworm, ezos. All tested and bootable, that's why I need menulist.

Post Reply

Return to “Users Help”