* os-detect lua space fix
@ 2009-08-22 16:29 adrian15
0 siblings, 0 replies; only message in thread
From: adrian15 @ 2009-08-22 16:29 UTC (permalink / raw)
To: The development of GRUB 2
[-- Attachment #1: Type: text/plain, Size: 326 bytes --]
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
[-- Attachment #2: osdetect_lua_equals_space_fix.diff --]
[-- Type: text/plain, Size: 414 bytes --]
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"
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-08-22 16:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-22 16:29 os-detect lua space fix adrian15
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.