From patchwork Wed Mar 9 23:46:35 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 595561 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id BBE9C140C59 for ; Thu, 10 Mar 2016 10:46:58 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=zacarias.com.ar header.i=@zacarias.com.ar header.b=Yuh1y8RH; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id EEDA7936F3; Wed, 9 Mar 2016 23:46:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tUv7ceKkomct; Wed, 9 Mar 2016 23:46:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id A587F95525; Wed, 9 Mar 2016 23:46:51 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id C1EEB1C0D62 for ; Wed, 9 Mar 2016 23:46:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id BC37491F47 for ; Wed, 9 Mar 2016 23:46:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BRcJDpdvj59C for ; Wed, 9 Mar 2016 23:46:45 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [176.9.42.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id E635091F3B for ; Wed, 9 Mar 2016 23:46:44 +0000 (UTC) Received: from asgard (cpe-186-22-138-122.telecentro-reversos.com.ar [186.22.138.122] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.15.1/8.15.1) with ESMTPSA id u29Nkb8u025845 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 9 Mar 2016 23:46:40 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1457567201; bh=aipwgT0LFB9O4vreYGDtBtU35v8Oz+MQZk/58+EfMfc=; h=From:To:Cc:Subject:Date; b=Yuh1y8RH8tO3+Pc6jDuJv31oz3P6TK8+TFWWu9m8HX2Oc74Ik0fs5K29ESmnuLzHu 3mgbIc7jJL7CIWwoM6iqLGsTmNoTMfywenQk82Lup7zEHRuTDWLzRYag6TlQdPBSe7 yo5WnUcUegGcyFz9uWLK4ChpGXmsV8NDPDAIck48= Received: by asgard (sSMTP sendmail emulation); Wed, 09 Mar 2016 20:46:36 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 9 Mar 2016 20:46:35 -0300 Message-Id: <1457567195-18182-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.4.10 X-Virus-Scanned: clamav-milter 0.98.7 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH] boot/grub2: add rootwait to default config X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" It doesn't hurt, and is useful for removable boot media like a pendrive that may depend on usb enumeration and isn't available immediately. Signed-off-by: Gustavo Zacarias Reviewed-by: Thomas Petazzoni --- boot/grub2/grub.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/grub2/grub.cfg b/boot/grub2/grub.cfg index c8abbd3..bd3e3f0 100644 --- a/boot/grub2/grub.cfg +++ b/boot/grub2/grub.cfg @@ -2,5 +2,5 @@ set default="0" set timeout="5" menuentry "Buildroot" { - linux /boot/bzImage root=/dev/sda1 console=tty1 + linux /boot/bzImage root=/dev/sda1 rootwait console=tty1 }