diff options
| author | Ryan Harkin <[email protected]> | 2015-10-09 17:18:08 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2015-10-11 17:12:06 -0400 |
| commit | 492f24e886a032c56e16647e69e536edb2be8e5d (patch) | |
| tree | 3f06f84bf4cd5cec48bfe04e4c2b7b3fc1bf1319 /include | |
| parent | ecbed5d6f4f96457dee8846c611056cb0d630642 (diff) | |
vexpress64: juno: use /dev/sda2
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 <[email protected]>
Reviewed-by: Linus Walleij <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/vexpress_aemv8a.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/vexpress_aemv8a.h b/include/configs/vexpress_aemv8a.h index 259f6aca82d..ef3014d68b1 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 "\ |
