diff options
author | Baruch Siach <baruch@tkos.co.il> | 2010-08-29 10:36:49 +0300 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-29 13:15:57 +0200 |
commit | a78227dc7320738ec930edbde1aaa0023a51ee4c (patch) | |
tree | ea620f2849fadb701980251e53cb957697228dce | |
parent | cc131534e2bc96a5005dc98a9559de009a68068a (diff) | |
download | busybox-a78227dc7320738ec930edbde1aaa0023a51ee4c.tar.gz |
nandwrite: allow hex values in the -s parameter
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | miscutils/nandwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/nandwrite.c b/miscutils/nandwrite.c index a20f7f384..d0e4397fb 100644 --- a/miscutils/nandwrite.c +++ b/miscutils/nandwrite.c @@ -71,7 +71,7 @@ int nandwrite_main(int argc UNUSED_PARAM, char **argv) fd = xopen(argv[0], O_RDWR); xioctl(fd, MEMGETINFO, &meminfo); - mtdoffset = xatou(opt_s); + mtdoffset = bb_strtou(opt_s, NULL, 0); /* Pull it into a CPU register (hopefully) - smaller code that way */ meminfo_writesize = meminfo.writesize; |