mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-15 06:55:17 -04:00
cmd_ext4: BREAK and correct ext4write parameter order
The ext4write command was taking the in-memory address and filename path in reverse order from the rest of the filesystem read and write commands. This corrects the order to be the same as fatload, etc. Signed-off-by: Tom Rini <trini@ti.com>
This commit is contained in:
parent
1d766c419e
commit
0171d52c41
@ -88,10 +88,10 @@ int do_ext4_write(cmd_tbl_t *cmdtp, int flag, int argc,
|
|||||||
dev = dev_desc->dev;
|
dev = dev_desc->dev;
|
||||||
|
|
||||||
/* get the filename */
|
/* get the filename */
|
||||||
filename = argv[3];
|
filename = argv[4];
|
||||||
|
|
||||||
/* get the address in hexadecimal format (string to int) */
|
/* get the address in hexadecimal format (string to int) */
|
||||||
ram_address = simple_strtoul(argv[4], NULL, 16);
|
ram_address = simple_strtoul(argv[3], NULL, 16);
|
||||||
|
|
||||||
/* get the filesize in base 10 format */
|
/* get the filesize in base 10 format */
|
||||||
file_size = simple_strtoul(argv[5], NULL, 10);
|
file_size = simple_strtoul(argv[5], NULL, 10);
|
||||||
@ -122,7 +122,7 @@ fail:
|
|||||||
|
|
||||||
U_BOOT_CMD(ext4write, 6, 1, do_ext4_write,
|
U_BOOT_CMD(ext4write, 6, 1, do_ext4_write,
|
||||||
"create a file in the root directory",
|
"create a file in the root directory",
|
||||||
"<interface> <dev[:part]> [Absolute filename path] [Address] [sizebytes]\n"
|
"<interface> <dev[:part]> <addr> <absolute filename path> [sizebytes]\n"
|
||||||
" - create a file in / directory");
|
" - create a file in / directory");
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user