diff options
author | Martin Kelly <mkelly@xevo.com> | 2017-02-15 14:46:38 -0800 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-02-16 12:44:44 +0000 |
commit | cc538eca28979e1eb966f67a6bca9d05456386a1 (patch) | |
tree | 25680f93a0f8d096a81b5794102df53d52dd2226 | |
parent | ee64fd8a05a3f18f2307b30251b7111ccf08d718 (diff) |
README-AGL: correct rootfstype to ext4
README-AGL incorrectly recommends to use rootfstype=ext3, but the
current filesystem is ext4, which causes boot failures due to
unsupported filesystem features. Without this patch, you get the
following when attempting to boot on porter with rootfstype=ext3:
EXT3-fs (mmcblk0p1): error: couldn't mount because of unsupported
optional features (240)
Change-Id: I346b76b59420f1ffb7acea58d82961acdf24aaf1
Signed-off-by: Martin Kelly <mkelly@xevo.com>
-rw-r--r-- | README-AGL.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README-AGL.md b/README-AGL.md index efdd14db2..bb6e8aa63 100644 --- a/README-AGL.md +++ b/README-AGL.md @@ -340,7 +340,7 @@ NOTE: To boot weston on porter board, we need keyboard and mouse. (USB2.0 can be > => setenv bootargs_console console=ttySC6,${baudrate} > => setenv bootargs_video vmalloc=384M video=HDMI-A-1:1024x768-32@60 > => setenv bootcmd_sd 'ext4load mmc 0:1 0x40007fc0 boot/uImage;ext4load mmc 0:1 0x40f00000 boot/uImage-r8a7791-porter.dtb' -> => setenv bootcmd 'setenv bootargs ${bootargs_console} ${bootargs_video} root=/dev/mmcblk0p1 rw rootfstype=ext3;run bootcmd_sd;bootm 0x40007fc0 - 0x40f00000' +> => setenv bootcmd 'setenv bootargs ${bootargs_console} ${bootargs_video} root=/dev/mmcblk0p1 rw rootfstype=ext4;run bootcmd_sd;bootm 0x40007fc0 - 0x40f00000' > => saveenv ##### Boot from SD card |