diff options
author | Forlot Romain [IoT.bzh] <claneys@iot.bzh> | 2016-12-22 21:37:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-22 21:37:50 +0100 |
commit | e6378370da42eec83a6997e7d14a517e50f12c81 (patch) | |
tree | 96afa9b4c6648a7783e526c092ed1d3a2b270e2d | |
parent | 32a4f02045009fa302d685fd75a99384f657e527 (diff) |
Keep using SDCARD variable.
As we set SDCARD variable, we should keep using it to avoid problem if anyone doesn't use /tmp/agl dir.
-rw-r--r-- | getting-started/machines/R-Car-Starter-Kit-gen3.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/getting-started/machines/R-Car-Starter-Kit-gen3.md b/getting-started/machines/R-Car-Starter-Kit-gen3.md index bd2ab54..2091382 100644 --- a/getting-started/machines/R-Car-Starter-Kit-gen3.md +++ b/getting-started/machines/R-Car-Starter-Kit-gen3.md @@ -282,12 +282,12 @@ sudo $TAR --extract --numeric-owner --preserve-permissions --preserve-order --to Copy Kernel Image and Device Tree Blob file into the **boot** directory: * For machine h3ulcb: ``` -sudo cp Image-r8a7795-h3ulcb.dtb /tmp/agl/boot/ +sudo cp Image-r8a7795-h3ulcb.dtb $SDCARD/boot/ ``` * For machine m3ulcb: ``` -sudo cp Image-r8a7796-m3ulcb.dtb /tmp/agl/boot/ +sudo cp Image-r8a7796-m3ulcb.dtb $SDCARD/boot/ ``` Ensure the changes have been written to the disk: |