From 360c9e5b51ef3d640ed6343da2babbe646415465 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Tue, 11 Jun 2013 00:53:41 +0200 Subject: [PATCH] Use lowercase 'timeout' command in syslinux configuration [Closes: issue1262] MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit With an uppercase 'TIMEOUT' command the system seems to be failing to autoboot for a user (using kernel version 3.9-1-amd64 on a ThinkPad T410s). While syslinux shouldn't care about it ("Keywords are case insensitive") changing the uppercase command to lowercase fixes the issue, so let's go for it. Thanks: Martin Å louf for reporting this bug including a workaround --- grml2usb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grml2usb b/grml2usb index 8e530d9..ab0ad63 100755 --- a/grml2usb +++ b/grml2usb @@ -1384,7 +1384,7 @@ def handle_syslinux_config(grml_flavour, target): # install main configuration only *once*, no matter how many ISOs we have: syslinux_config_file = open(syslinux_cfg, 'w') - syslinux_config_file.write("TIMEOUT 300\n") + syslinux_config_file.write("timeout 300\n") syslinux_config_file.write("include vesamenu.cfg\n") syslinux_config_file.close() -- 2.1.4