From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1IJkJQ-0006Xb-9K for mharc-grub-devel@gnu.org; Sat, 11 Aug 2007 02:19:00 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IJkJO-0006XW-QL for grub-devel@gnu.org; Sat, 11 Aug 2007 02:18:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IJkJM-0006Wk-6T for grub-devel@gnu.org; Sat, 11 Aug 2007 02:18:57 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IJkJM-0006Wh-3R for grub-devel@gnu.org; Sat, 11 Aug 2007 02:18:56 -0400 Received: from rv-out-0910.google.com ([209.85.198.187]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IJkJM-0001Ud-6M for grub-devel@gnu.org; Sat, 11 Aug 2007 02:18:56 -0400 Received: by rv-out-0910.google.com with SMTP id c27so752435rvf for ; Fri, 10 Aug 2007 23:18:54 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=uRxBd98fhFq3JUg/0RG6zxPHNPgJ96IQheZpnfYkPrxHSjmWlWEyRpSRccpegZ4RZWyQBrEzM4LvylweY0FCY5da8V87N11T1WH4/k5Gc/ZnK+32FNq49WABLK/jKAht5xo+mHD12CezkDl62hVZtFgzfM/N3UmPdjcb9pNcXk0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=YLhqsG0lJslDoIm0uuvm3tGjzT1xupzth8GyMEPrl/b5TWeKw5RY/zmzJUJlnhA0Vcy7mYqurOLv0G+OyRyRV3VybxNux3vTPYbJC2f1Vpvfav1R2rtJIg4j3Zjgbm5veLkUg4mxJjXrpZJblRXzbo82QKNBKx5p5/9+2rfhhJ4= Received: by 10.141.51.15 with SMTP id d15mr1355773rvk.1186813134200; Fri, 10 Aug 2007 23:18:54 -0700 (PDT) Received: from ?10.0.0.6? ( [64.81.67.54]) by mx.google.com with ESMTPS id k14sm6880528rvb.2007.08.10.23.18.52 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 10 Aug 2007 23:18:53 -0700 (PDT) Message-ID: <46BD54CF.2050800@gmail.com> Date: Fri, 10 Aug 2007 23:18:55 -0700 From: Mischa Spiegelmock User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: grub-devel@gnu.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Detected-Kernel: Linux 2.6 (newer, 2) Subject: Patch for boot message 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, 11 Aug 2007 06:18:59 -0000 I got sick of grub saying "The highlighted entry will be booted automatically in 1 seconds." Here's a patch: Index: normal/menu.c =================================================================== RCS file: /sources/grub/grub2/normal/menu.c,v retrieving revision 1.18 diff -r1.18 menu.c 331,332c331,332 < The highlighted entry will be booted automatically in %d seconds. ", < timeout); --- > The highlighted entry will be booted automatically in %d second%c ", > timeout, (timeout == 1 ? ' ' : 's')); -Mischa Spiegelmock