]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
EXT4: Fix number base handling of "ext4write" command
authorWolfgang Denk <wd@denx.de>
Fri, 31 Jan 2014 08:28:25 +0000 (09:28 +0100)
committerTom Rini <trini@ti.com>
Wed, 19 Feb 2014 15:47:36 +0000 (10:47 -0500)
commitf7740f7712b8638f08b83a7e5d00bc1d6bb086a9
treed26cf7d00a07159bcf1518ed3650a13e9a846c5f
parent9137d19bdd321b810275f2e967e3a39165a4e8de
EXT4: Fix number base handling of "ext4write" command

Unlike other commands (for example, "fatwrite"), ext4write would
interpret the "sizebytes" as decimal number.  This is not only
inconsistend and unexpected to most users, it also breaks usage
like this:

tftp ${addr} ${name}
ext4write mmc 0:2 ${addr} ${filename} ${filesize}

Change this to use the standard notation of base 16 input format.
See also commit b770e88

WARNING: this is a change to the user interface!!

Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Uma Shankar <uma.shankar@samsung.com>
Cc: Stephen Warren <swarren@nvidia.com>
common/cmd_ext4.c