From b00c0d6461631904abf7bd3232c035141ee09093 Mon Sep 17 00:00:00 2001 From: Jose Lopez Date: Wed, 10 May 2017 13:31:30 +0200 Subject: [PATCH] Corrected README for uboot-mkimage.sh as pointed by Marco Fuentes Garcia --- U-boot/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/U-boot/README b/U-boot/README index ab4a5e2..8c679d0 100644 --- a/U-boot/README +++ b/U-boot/README @@ -25,12 +25,12 @@ First of all, you will need to export an environment variable: Then, if you have a uramimage.image.gz file and you want to unpack it to some location, just run: - $ ./uboot-mkimage.sh -u -r /absolute/path/where/image/will/be/unpacked -i /absolute/path/to/uramdisk.image.gz + $ ./uboot-mkimage.sh -m unpack -r /absolute/path/where/image/will/be/unpacked -i /absolute/path/to/uramdisk.image.gz Or the other way around (packing rootfs to a file): - $ ./uboot-mkimage.sh -p -r /absolute/path/where/image/will/be/unpacked -i /absolute/path/to/uramdisk.image.gz + $ ./uboot-mkimage.sh -m pack -r /absolute/path/where/image/will/be/unpacked -i /absolute/path/to/uramdisk.image.gz Easy!