From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1OeAP3-00008x-3H for mharc-grub-devel@gnu.org; Wed, 28 Jul 2010 13:26:49 -0400 Received: from [140.186.70.92] (port=57638 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OeAOx-0008P3-Uk for grub-devel@gnu.org; Wed, 28 Jul 2010 13:26:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OeAB1-0002QH-29 for grub-devel@gnu.org; Wed, 28 Jul 2010 13:12:20 -0400 Received: from mail-gy0-f169.google.com ([209.85.160.169]:63811) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OeAB0-0002QC-Vr for grub-devel@gnu.org; Wed, 28 Jul 2010 13:12:19 -0400 Received: by gyb11 with SMTP id 11so2363867gyb.0 for ; Wed, 28 Jul 2010 10:12:18 -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:references:in-reply-to :content-type; bh=V6EMQHTv6bewX8L3KTqVftM6IRms1mwDtyVkxidZ3f4=; b=fHYCGrxUhSOB1oPG81fVJFJgQkue8uzRPE1mjum9nCabxiHsaqbwULX8C1szoRAMrp LJPcl2uDhJ0CuqYnyBNQ3sk4AytDeKbN993IYwpOD8j/vLm/8FMGs/9qXqMt67RzHCRO 3P0NzvdZDUD8AcniGvTq7G56IB4P5KbpkP4DE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type; b=Wy4+o7zck0ixxpqnTg9KEUW/1XBKuXK3gHA0pmKJ4y6Hgy8ckeIo/54wl4MmaijwOp kqPnOHx893ufgoL10hT8Vii5bjU21HyeJ+HQ0qZGqHPjchWZLWzpGw0UCjrRKzIae/Qx V7fRu0GqKjaaj5AdOQd7c8vTmy8OxCOzlO1t0= Received: by 10.100.165.18 with SMTP id n18mr11761850ane.252.1280337138246; Wed, 28 Jul 2010 10:12:18 -0700 (PDT) Received: from [192.168.21.179] (bas1-toronto05-1177663517.dsl.bell.ca [70.49.184.29]) by mx.google.com with ESMTPS id b21sm1327094ana.33.2010.07.28.10.12.17 (version=SSLv3 cipher=RC4-MD5); Wed, 28 Jul 2010 10:12:17 -0700 (PDT) Message-ID: <4C5064F0.6000501@gmail.com> Date: Wed, 28 Jul 2010 13:12:16 -0400 From: Doug Nazar User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.7) Gecko/20100713 Thunderbird/3.1.1 MIME-Version: 1.0 To: grub-devel@gnu.org References: <4C4E2FC5.10607@gmail.com> <20100727152625.GX2632@caffeine.csclub.uwaterloo.ca> <4C4FEF8C.5060200@gmail.com> <20100728150037.GC2632@caffeine.csclub.uwaterloo.ca> <20100728155158.GE2632@caffeine.csclub.uwaterloo.ca> <4C505B37.2020009@gmail.com> <20100728170155.GG2632@caffeine.csclub.uwaterloo.ca> In-Reply-To: <20100728170155.GG2632@caffeine.csclub.uwaterloo.ca> Content-Type: multipart/mixed; boundary="------------000806040302020207010307" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: Re: Big Endian fix patch X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2010 17:26:45 -0000 This is a multi-part message in MIME format. --------------000806040302020207010307 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 2010-07-28 1:01 PM, Lennart Sorensen wrote: > Well I don't think that helped (unless I messed up the compile). > The following works for me. Just finished testing it. Damn these 15 minute boot times. Doug --------------000806040302020207010307 Content-Type: text/plain; name="grub-fix-tab-completion-for-new-md-names.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="grub-fix-tab-completion-for-new-md-names.diff" === modified file 'normal/completion.c' --- normal/completion.c 2010-06-11 20:31:16 +0000 +++ normal/completion.c 2010-07-28 17:02:42 +0000 @@ -247,7 +247,7 @@ goto fail; } - dir = grub_strchr (current_word, '/'); + dir = grub_strchr (current_word + grub_strlen(device) + 2, '/'); last_dir = grub_strrchr (current_word, '/'); if (dir) { --------------000806040302020207010307--