From cbbab378f1aeb53de6fbf3c7ad00e4b8ccad89f3 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Thu, 7 Dec 2023 15:50:02 +0100 Subject: [PATCH] templates/boot/grub/%SHORT_NAME%_options.cfg: fix missing quotes Followup fix for commit c0460ecbd48f54b5b1895b6fc576efa4ddb54e9e, missing quotes and causing GRUB to not display the menu, as it runs into "out of memory" situation when sourcing the file. --- templates/boot/grub/%SHORT_NAME%_options.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/boot/grub/%SHORT_NAME%_options.cfg b/templates/boot/grub/%SHORT_NAME%_options.cfg index 9e82657..3988461 100644 --- a/templates/boot/grub/%SHORT_NAME%_options.cfg +++ b/templates/boot/grub/%SHORT_NAME%_options.cfg @@ -7,7 +7,7 @@ menuentry "%GRML_NAME% - Enable Predictable Network Interface Names" { initrd /boot/%SHORT_NAME%/initrd.img } -menuentry "%GRML_NAME% - Enable SSH (with random password) { +menuentry "%GRML_NAME% - Enable SSH (with random password)" { set gfxpayload=keep echo 'Loading kernel...' linux /boot/%SHORT_NAME%/vmlinuz apm=power-off boot=live live-media-path=/live/%GRML_NAME%/ bootid=%BOOTID% nomce net.ifnames=0 "${loopback}" ${kernelopts} ssh -- 2.1.4