From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1MetgP-00084D-W8 for mharc-grub-devel@gnu.org; Sat, 22 Aug 2009 12:43:14 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MetgO-000847-HT for grub-devel@gnu.org; Sat, 22 Aug 2009 12:43:12 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MetgN-00081h-0B for grub-devel@gnu.org; Sat, 22 Aug 2009 12:43:11 -0400 Received: from [199.232.76.173] (port=45832 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MetgM-00081e-Qf for grub-devel@gnu.org; Sat, 22 Aug 2009 12:43:10 -0400 Received: from ey-out-1920.google.com ([74.125.78.148]:15362) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MetgM-0004or-Hk for grub-devel@gnu.org; Sat, 22 Aug 2009 12:43:10 -0400 Received: by ey-out-1920.google.com with SMTP id 5so379105eyb.24 for ; Sat, 22 Aug 2009 09:43:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type; bh=eUR/bp4gazW9qcasLJ1wHaTO9vaOCurjmAyPIk4WK88=; b=ZZ4fjVeSImjCkgSDaDMCoCRynqKP/zUtZqm0/JV8MOLcxTWpwwgMnF+L+dwhlf4Xc9 Mp6YllAf2O0xBiDtMveTFOJCzRYnvr2NxZbuB2FvH6qEgs5AGpY0YMj0BF6Cve5POexW QIuXRXYMhRFZgh6X45jE8gBrFwW6oYf6Y9TLI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type; b=lOR4VA81Cn2XW20+z483ervtbgN5g15poN3QP7oIxzlb3bkw89jD0jOuDY7AcF2YYQ KNILbluthNyeBpvQUZLmMuwYfZbV9UuJj1rskQknK/dG5ZKA2LXewkVDgoF+q0qsH74n KOsDK4iSCRwlO5nFIPDKl3BpfsyO8+Ggg0dJY= Received: by 10.211.137.14 with SMTP id p14mr2609900ebn.70.1250959389192; Sat, 22 Aug 2009 09:43:09 -0700 (PDT) Received: from ?79.149.39.62? (62.Red-79-149-39.staticIP.rima-tde.net [79.149.39.62]) by mx.google.com with ESMTPS id 7sm2646611eyb.7.2009.08.22.09.43.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 22 Aug 2009 09:43:08 -0700 (PDT) Message-ID: <4A901CFA.4070209@gmail.com> Date: Sat, 22 Aug 2009 18:29:46 +0200 From: adrian15 User-Agent: Mozilla-Thunderbird 2.0.0.19 (X11/20090103) MIME-Version: 1.0 To: The development of GRUB 2 Content-Type: multipart/mixed; boundary="------------010408070304040304010708" X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: os-detect lua space fix X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Aug 2009 16:43:13 -0000 This is a multi-part message in MIME format. --------------010408070304040304010708 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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 --------------010408070304040304010708 Content-Type: text/plain; name="osdetect_lua_equals_space_fix.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="osdetect_lua_equals_space_fix.diff" 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" --------------010408070304040304010708--