diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2015-01-23 16:05:08 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-01-25 15:04:35 +0100 |
commit | b8f45e7a090bedd292df868a1dd5ff9d16ffeb40 (patch) | |
tree | a26f5608ad6dddcf7ba0c8b5de3411a516753882 | |
parent | 4a2aa94e6ced5aef6c13d425feac996c3759f7f2 (diff) | |
download | buildroot-b8f45e7a090bedd292df868a1dd5ff9d16ffeb40.tar.gz buildroot-b8f45e7a090bedd292df868a1dd5ff9d16ffeb40.zip |
boards/raspberrypi: fix rootfs.tar path in readme
The rootfs.tar file is located under ./output/images/.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | board/raspberrypi/readme.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/raspberrypi/readme.txt b/board/raspberrypi/readme.txt index 725ad9dc9e..ead9227a11 100644 --- a/board/raspberrypi/readme.txt +++ b/board/raspberrypi/readme.txt @@ -132,7 +132,7 @@ rootfs, there are further steps to do. Extract (as root!) the contents of the rootfs.tar archive into the second partition you created above: - $ sudo tar xf rootfs.tar -C /mnt/mountpointroot + $ sudo tar xf ./output/images/rootfs.tar -C /mnt/mountpointroot Finish ====== |