Hi,
Thanks for the report. The documentation and code of GRUB both agree
(see (info "(grub) gfxmode") and grub/grub-core/video/video.c:651:0)
that ',' and ';' should split a video mode string; I think the issue was
that we weren't quoting the value set in the GRUB script. I've fixed
that like:
modified gnu/bootloader/grub.scm
@@ -190,7 +190,7 @@ (define* (eye-candy config store-device store-mount-point
(if (memq 'gfxterm (bootloader-configuration-terminal-outputs config))
#~(format #f "
if loadfont unicode; then
- set gfxmode=~a
+ set gfxmode=~s
insmod all_video
insmod gfxterm
fi~%"
in commit dba3e997a43. Let me know if something is still amiss. Closing.
--
Thanks,
Maxim