Skip to content
Snippets Groups Projects
Commit 55447daa authored by livio's avatar livio Committed by Libreboot project
Browse files

Changed GRUB boot menu entry title

parent 3b66298e
No related branches found
No related tags found
No related merge requests found
......@@ -157,7 +157,7 @@ set grub_conf_names="osboot_ autoboot_ libreboot_ coreboot_"
# Creates a menuentry for GRUB. First argument is menu text without spaces then root and configfile
function grub_menuentry {
menuentry ${1} ${2} ${3} {
menuentry "Boot GRUB from $1" ${1} ${2} ${3} {
set root="${2}"
unset superusers
configfile ${3}
......@@ -171,7 +171,7 @@ function grub_create_menu {
if [ -d /"${dir}"/ ]; then
for name in '' ${grub_conf_names}; do
if [ -f /"${dir}"/"${name}"grub.cfg ]; then
grub_menuentry ${1}:GRUB ${1} /${dir}/${name}grub.cfg
grub_menuentry ${1} /${dir}/${name}grub.cfg
fi
done
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment