summaryrefslogtreecommitdiff
path: root/test/image
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2014-12-02 20:17:31 (GMT)
committerTom Rini <trini@ti.com>2015-01-14 16:35:43 (GMT)
commitb5493d17bdc62b0a0608d539bd2756eb7ed1cc9c (patch)
treec5472871655f1cb3c52aa78e74d9bb3b98dca954 /test/image
parent40e5975f9ad7a545b85d2430d6517d8d3d18e87d (diff)
downloadu-boot-fsl-qoriq-b5493d17bdc62b0a0608d539bd2756eb7ed1cc9c.tar.xz
sandbox: Correct ordering of 'sb save' commands
Prior to commit d455d87 there was an inconsistency between the position of the 'address' parameter in 'sb load' and 'sb save'. This was corrected but it broke some tests. Fix the tests and also the help for 'sb save'. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/image')
-rwxr-xr-xtest/image/test-fit.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/image/test-fit.py b/test/image/test-fit.py
index b065fcb..0eb424d 100755
--- a/test/image/test-fit.py
+++ b/test/image/test-fit.py
@@ -97,9 +97,9 @@ sb load hostfs 0 %(fit_addr)x %(fit)s
fdt addr %(fit_addr)x
bootm start %(fit_addr)x
bootm loados
-sb save hostfs 0 %(kernel_out)s %(kernel_addr)x %(kernel_size)x
-sb save hostfs 0 %(fdt_out)s %(fdt_addr)x %(fdt_size)x
-sb save hostfs 0 %(ramdisk_out)s %(ramdisk_addr)x %(ramdisk_size)x
+sb save hostfs 0 %(kernel_addr)x %(kernel_out)s %(kernel_size)x
+sb save hostfs 0 %(fdt_addr)x %(fdt_out)s %(fdt_size)x
+sb save hostfs 0 %(ramdisk_addr)x %(ramdisk_out)s %(ramdisk_size)x
reset
'''