diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-07-03 09:36:27 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-07-05 10:34:57 +0200 |
commit | 86fce9c3efcc48b94710e2f56b1c78bdc9b79263 (patch) | |
tree | 976152b2be6f91fc47e0a834d159420afaea3e12 /getting-started | |
parent | f08344dfea0937e2e36e3251b6122bded7bcd127 (diff) |
Update SD card instructions.
root file system file is now a .tar.xz (no longer .bz2)
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'getting-started')
-rw-r--r-- | getting-started/machines/R-Car-Starter-Kit-gen3.md | 4 | ||||
-rw-r--r-- | getting-started/machines/porter.md | 4 | ||||
-rw-r--r-- | getting-started/troubleshooting.md | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/getting-started/machines/R-Car-Starter-Kit-gen3.md b/getting-started/machines/R-Car-Starter-Kit-gen3.md index 7e58377..0385aa4 100644 --- a/getting-started/machines/R-Car-Starter-Kit-gen3.md +++ b/getting-started/machines/R-Car-Starter-Kit-gen3.md @@ -281,8 +281,8 @@ tar (GNU tar) 1.28 Copy Automotive Grade Linux (AGL) files onto the mircoSD card by extracting the root file system archive: ``` -sudo $TAR --extract --numeric-owner --preserve-permissions --preserve-order --totals \ - --xattrs-include='*' --directory=$SDCARD --file=agl-demo-platform-h3ulcb.tar.bz2 +sudo $TAR --extract --xz --numeric-owner --preserve-permissions --preserve-order --totals \ + --xattrs-include='*' --directory=$SDCARD --file=agl-demo-platform-h3ulcb.tar.xz ``` Copy Kernel Image and Device Tree Blob file into the **boot** directory: diff --git a/getting-started/machines/porter.md b/getting-started/machines/porter.md index 4cc1c8d..f9b2624 100644 --- a/getting-started/machines/porter.md +++ b/getting-started/machines/porter.md @@ -238,8 +238,8 @@ tar (GNU tar) 1.28 Copy Automotive Grade Linux (AGL) files onto the mircoSD card by extracting the root file system archive: ``` -sudo $TAR --extract --numeric-owner --preserve-permissions --preserve-order --totals \ - --xattrs-include='*' --directory=$SDCARD --file=agl-demo-platform-porter.tar.bz2 +sudo $TAR --extract --xz --numeric-owner --preserve-permissions --preserve-order --totals \ + --xattrs-include='*' --directory=$SDCARD --file=agl-demo-platform-porter.tar.xz ``` Copy Kernel Image and Device Tree Blob file into the **boot** directory: diff --git a/getting-started/troubleshooting.md b/getting-started/troubleshooting.md index 183d0c9..6b2d930 100644 --- a/getting-started/troubleshooting.md +++ b/getting-started/troubleshooting.md @@ -24,8 +24,8 @@ tar (GNU tar) 1.28 To copy Automotive Grade Linux (AGL) files AND EXTENDED ATRIBUTES onto the SDcard using tar the command is: ``` -tar --extract --numeric-owner --preserve-permissions --preserve-order --totals \ - --xattrs-include='*' --directory=DESTINATION_DIRECTORY --file=agl-demo-platform.....tar.bz2 +tar --extract --xz --numeric-owner --preserve-permissions --preserve-order --totals \ + --xattrs-include='*' --directory=DESTINATION_DIRECTORY --file=agl-demo-platform.....tar.xz ``` ## meta-rust |