From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1SOZaF-00065W-4j for mharc-grub-devel@gnu.org; Sun, 29 Apr 2012 15:14:59 -0400 Received: from eggs.gnu.org ([208.118.235.92]:43533) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SOZaC-00064g-6T for grub-devel@gnu.org; Sun, 29 Apr 2012 15:14:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SOZaA-0005kL-63 for grub-devel@gnu.org; Sun, 29 Apr 2012 15:14:55 -0400 Received: from mail-bk0-f41.google.com ([209.85.214.41]:48103) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SOZa9-0005kE-VM for grub-devel@gnu.org; Sun, 29 Apr 2012 15:14:54 -0400 Received: by bkwj4 with SMTP id j4so1792897bkw.0 for ; Sun, 29 Apr 2012 12:14:52 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:x-gm-message-state; bh=zVoG+jpFEmhmwDj1ej21OWJ+Kg58I+ecWfSW2328fEo=; b=kia22sA+HU9qk9YwxWLGq2V/4nhFgbmjaMtPOQsIRn5QFwVMafG+TmqfB82ZGSjMt/ QTv6RNwS1YfS4Q4JFe3YfVHtcfzXVLdvozEa85mYDwqrHg91yJ6ja9wUiqPA1vJusBBL 1ji6CYlcYib75c8cbbLngRJR6zqPW4uzkaSYqi0y3zxUBxT3rqk6R2hb0mKW72oiC/Sm M2LIhC4ezTNS4v7zQcjLkCPbOu142NM7cLVd7w13yQfHRZfXKfJVVQ2gAVbxGXsP0H+d +8gMmMr0JGAtFaiZBaY7aRTQo5K9rXzWSFuB46iqhWnnFAsGsslamMugX/tux8OZ+Jnk oeAg== Received: by 10.204.133.198 with SMTP id g6mr6296685bkt.90.1335726891603; Sun, 29 Apr 2012 12:14:51 -0700 (PDT) Received: from [192.168.2.4] ([77.75.167.238]) by mx.google.com with ESMTPS id v2sm22762371bkw.16.2012.04.29.12.14.50 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 29 Apr 2012 12:14:50 -0700 (PDT) Message-ID: <4F9D9328.9080303@kiilerich.com> Date: Sun, 29 Apr 2012 21:14:48 +0200 From: Mads Kiilerich User-Agent: Mozilla/5.0 (X11; Linux i686; rv:11.0) Gecko/20120329 Thunderbird/11.0.1 MIME-Version: 1.0 To: The development of GNU GRUB Subject: [PATCH] Boot immediately after GRUB_HIDDEN_TIMEOUT Content-Type: multipart/mixed; boundary="------------030803030501020404080403" X-Gm-Message-State: ALoCoQnYcH1rPOKVTRq/68Kpa7kL4pXeIIapAITJt5zak1ESLQyUKutmIIRQRdm9Q8kld/+Q7hQK X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.214.41 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 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: Sun, 29 Apr 2012 19:14:57 -0000 This is a multi-part message in MIME format. --------------030803030501020404080403 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit * util/grub.d/00_header.in: Boot immediately after GRUB_HIDDEN_TIMEOUT. Documentation said: "If no key is pressed during that time, boot immediately." --------------030803030501020404080403 Content-Type: text/x-patch; name="hidden_timeout.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="hidden_timeout.patch" === modified file 'ChangeLog' --- ChangeLog 2012-04-29 16:43:22 +0000 +++ ChangeLog 2012-04-29 19:12:19 +0000 @@ -1,3 +1,9 @@ +2012-04-29 Mads Kiilerich + + * util/grub.d/00_header.in: Boot immediately after + GRUB_HIDDEN_TIMEOUT. Documentation said: "If no key is pressed + during that time, boot immediately." + 2012-04-29 Bean * grub-core/net/drivers/efi/efinet.c (get_card_packet): Fix buffer === modified file 'util/grub.d/00_header.in' --- util/grub.d/00_header.in 2012-03-04 13:55:13 +0000 +++ util/grub.d/00_header.in 2012-04-29 17:48:30 +0000 @@ -280,7 +280,7 @@ fi cat << EOF if sleep$verbose --interruptible ${1} ; then - set timeout=${2} + set timeout=0 fi EOF else --------------030803030501020404080403--