grub-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

os-detect lua space fix


From: adrian15
Subject: os-detect lua space fix
Date: Sat, 22 Aug 2009 18:29:46 +0200
User-agent: Mozilla-Thunderbird 2.0.0.19 (X11/20090103)

Here you a have a patch that fixes the error that osdetect.lua script had with spaces around the equals sign.

Now it does not complain when assigning the variable.

adrian15
--
Support free software. Donate to Super Grub Disk. Apoya el software libre. Dona a Super Grub Disk. http://www.supergrubdisk.org/index.php?pid=10
diff -urN original/osdetect.lua equals_space_fixed/osdetect.lua
--- original/osdetect.lua       2009-08-15 18:59:48.000000000 +0200
+++ equals_space_fixed/osdetect.lua     2009-08-22 17:33:52.000000000 +0200
@@ -156,7 +156,7 @@
        local initrd
 
        title = "Linux " .. kernels[i]
-       source = "set root = " .. device ..
+       source = "set root=" .. device ..
          "\nlinux /boot/" .. kernelnames[i] ..
          " root=UUID=" ..  " ro"
 

reply via email to

[Prev in Thread] Current Thread [Next in Thread]