]> git.ipfire.org Git - people/ms/bricklayer.git/commitdiff
GRUB: Do not enable the VGA console when installing for serial
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 14 Sep 2023 15:48:05 +0000 (15:48 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 14 Sep 2023 15:48:05 +0000 (15:48 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/python/bootloaders.py

index 13459b1b0728215b2c90093d120220ee79e6d074..6573b23b96bfc53d2467837767a35347dc500ba4 100644 (file)
@@ -147,7 +147,7 @@ class Grub(Bootloader):
                        unit = device.removeprefix("ttyS")
 
                        conf |= {
-                               "GRUB_TERMINAL_OUTPUT" : "\"serial console\"",
+                               "GRUB_TERMINAL_OUTPUT" : "\"serial\"",
                                "GRUB_SERIAL_COMMAND"  : "\"serial --unit=%s --speed=%s\"" % (unit, baudrate),
                        }