summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2017-11-28 12:34:47 +0200
committerLeon Anavi <leon.anavi@konsulko.com>2017-11-28 12:34:47 +0200
commit0ec7d411980f56d6d9aeef371410f6af83090d58 (patch)
tree4fd92de16e1e62428bfa169e50625e1a90d6c723
parent106d87fc688a48de66c2d1b62aaf1a661d4d32f7 (diff)
raspberrypi.md: Update Raspberry Pi images
Update the instructions for flashing Raspberry Pi 2 and 3 images on microSD card. Bug-AGL: SPEC-774 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
-rw-r--r--getting-started/machines/raspberrypi.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/getting-started/machines/raspberrypi.md b/getting-started/machines/raspberrypi.md
index 2300c4c..4d8d6b4 100644
--- a/getting-started/machines/raspberrypi.md
+++ b/getting-started/machines/raspberrypi.md
@@ -24,15 +24,15 @@ Follow the steps below to copy the image to microSD card and to boot it on Raspb
* Connect your sdcard in your linux machine.
* Copy output image from build machine to linux machine that is connected your sdcard. (Often, those are same machines)
-* Output Image location in build machine for Raspberry Pi 2: *tmp/deploy/images/raspberrypi2/agl-demo-platform-raspberrypi2.rpi-sdimg*
-* Output Image location in build machine for Raspberry Pi 3: *tmp/deploy/images/raspberrypi3/agl-demo-platform-raspberrypi3.rpi-sdimg*
+* Output Image location in build machine for Raspberry Pi 2: *tmp/deploy/images/raspberrypi2/agl-demo-platform-raspberrypi2.wic.xz*
+* Output Image location in build machine for Raspberry Pi 3: *tmp/deploy/images/raspberrypi3/agl-demo-platform-raspberrypi3.wic.xz*
* Unmount the microSD card and after that flash output image to it card with root user:
*Note: the sdimage files can also be named rpi-sdimg-ota in case you have the **"agl-sota"** feature enabled*
```bash
sudo umount [sdcard device]
-sudo dd if=[output image] of=[sdcard device] bs=4M
+xzcat [output image] | sudo dd of=[sdcard device] bs=4M
sync
```