From patchwork Tue Sep 29 15:47:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Harkin X-Patchwork-Id: 523931 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 7869F14029C for ; Wed, 30 Sep 2015 01:49:09 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DDE754B8E9; Tue, 29 Sep 2015 17:48:45 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wq8D2U_AfrsG; Tue, 29 Sep 2015 17:48:45 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B56DC4B914; Tue, 29 Sep 2015 17:48:07 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 261124B8CD for ; Tue, 29 Sep 2015 17:47:49 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sQr2MevxS1UE for ; Tue, 29 Sep 2015 17:47:49 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by theia.denx.de (Postfix) with ESMTPS id 0EF3E4B8DC for ; Tue, 29 Sep 2015 17:47:46 +0200 (CEST) Received: by wiclk2 with SMTP id lk2so157729479wic.0 for ; Tue, 29 Sep 2015 08:47:46 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=J/9O4xCUTgD3/qnutpBq7p4Ch86AWBnF6+9YBifdQoA=; b=Ah6jugxrGvZ9XQR4VGwJDxFgBqJCCEqNJccwbHAwDVS06mIvDIjfXez5AeZ0oSBEla 7qr+NdW4SeKPWZt0EfiR1YQwUR+Kl8MmllgJkkcicYffUC0xgHoEgqUjC/G2/8SzkXVs gwapfc6a9s5cfeR2aWxJU/8+2aUD/oOclgTvg5qdQZpQlKVocvZRWHt3g1je0EmlSNeU is7uBgv2GwsTT9H7nfmUe1G9BxjRMhVReWxAWT5swIB9CPBsDSnywFMGTa2QTU0vBe2Z BFTplFehAZOvSlHDzBMwfLkN6NA9vmnPksGBBQOW4l+R7Hej7QQg5r55+HG5dteRI0KS wJcQ== X-Gm-Message-State: ALoCoQm+PZ45w/MjiMmAGxN6RrNTePao7oSmTVGkieHLyJpNRXghdgZbau1SdYredu4RqEeVbQBX X-Received: by 10.180.188.101 with SMTP id fz5mr28047281wic.3.1443541665933; Tue, 29 Sep 2015 08:47:45 -0700 (PDT) Received: from localhost.localdomain (82-69-54-187.dsl.in-addr.zen.co.uk. [82.69.54.187]) by smtp.gmail.com with ESMTPSA id kb9sm24555824wjb.49.2015.09.29.08.47.44 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 29 Sep 2015 08:47:45 -0700 (PDT) From: Ryan Harkin To: ryan.harkin@linaro.org, u-boot@lists.denx.de, Albert Aribaud , Tom Rini Date: Tue, 29 Sep 2015 16:47:20 +0100 Message-Id: <1443541640-7810-11-git-send-email-ryan.harkin@linaro.org> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1443541640-7810-1-git-send-email-ryan.harkin@linaro.org> References: <1443541640-7810-1-git-send-email-ryan.harkin@linaro.org> Cc: Steve Rae Subject: [U-Boot] [PATCH v2 10/10] vexpress64: juno: use /dev/sda2 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This patch changes the default "root=" parameter to "/dev/sda2". Many linux based distros use /dev/sda1 for their boot partition; this is often not a rootfs that can be used by the "root=" parameter. Linaro images use /dev/sda1 as a boot partition, although this of a different nature to a distro image. Linaro uses /dev/sda2 for the rootfs partition. Signed-off-by: Ryan Harkin Reviewed-by: Linus Walleij --- include/configs/vexpress_aemv8a.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/vexpress_aemv8a.h b/include/configs/vexpress_aemv8a.h index 259f6ac..ef3014d 100644 --- a/include/configs/vexpress_aemv8a.h +++ b/include/configs/vexpress_aemv8a.h @@ -200,7 +200,7 @@ /* Assume we boot with root on the first partition of a USB stick */ #define CONFIG_BOOTARGS "console=ttyAMA0,115200n8 " \ - "root=/dev/sda1 rw " \ + "root=/dev/sda2 rw " \ "rootwait "\ "earlyprintk=pl011,0x7ff80000 debug "\ "user_debug=31 "\