diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2017-06-29 17:11:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-29 17:11:43 +0200 |
commit | 38608b0406cd8b3e33e5de86c3daf01df7f21f22 (patch) | |
tree | f94932bb8a472b231178944c5f482e4ac23c7b92 /getting-started/machines/R-Car-Starter-Kit-gen3.md | |
parent | 9cba4a2f2fabd885599a42064978c79356339f42 (diff) | |
parent | f634d150142cb2b77ffdc8be01414170b990af32 (diff) |
Merge pull request #54 from XevoInc/master
r-car: boot with ro instead of rw
Diffstat (limited to 'getting-started/machines/R-Car-Starter-Kit-gen3.md')
-rw-r--r-- | getting-started/machines/R-Car-Starter-Kit-gen3.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/getting-started/machines/R-Car-Starter-Kit-gen3.md b/getting-started/machines/R-Car-Starter-Kit-gen3.md index 1a8320a..46eb121 100644 --- a/getting-started/machines/R-Car-Starter-Kit-gen3.md +++ b/getting-started/machines/R-Car-Starter-Kit-gen3.md @@ -468,7 +468,7 @@ Follow the steps below to configure the boot from microSD card and to set screen ``` => printenv baudrate=115200 - bootargs=console=ttySC0,115200 root=/dev/mmcblk1p1 rootwait rw rootfstype=ext4 + bootargs=console=ttySC0,115200 root=/dev/mmcblk1p1 rootwait ro rootfstype=ext4 bootcmd=run load_ker; run load_dtb; booti 0x48080000 - 0x48000000 bootdelay=3 fdt_high=0xffffffffffffffff @@ -488,7 +488,7 @@ Follow the steps below to configure the boot from microSD card and to set screen ``` => printenv baudrate=115200 - bootargs=console=ttySC0,115200 root=/dev/mmcblk1p1 rootwait rw rootfstype=ext4 + bootargs=console=ttySC0,115200 root=/dev/mmcblk1p1 rootwait ro rootfstype=ext4 bootcmd=run load_ker; run load_dtb; booti 0x48080000 - 0x48000000 bootdelay=3 fdt_high=0xffffffffffffffff @@ -507,7 +507,7 @@ Follow the steps below to configure the boot from microSD card and to set screen * If not, copy line by line: ``` -setenv bootargs console=ttySC0,115200 root=/dev/mmcblk1p1 rootwait rw rootfstype=ext4 +setenv bootargs console=ttySC0,115200 root=/dev/mmcblk1p1 rootwait ro rootfstype=ext4 setenv bootcmd run load_ker\; run load_dtb\; booti 0x48080000 - 0x48000000 setenv load_ker ext4load mmc 0:1 0x48080000 /boot/Image ``` |