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 /miscutils/nandwrite.c | |
parent | cc131534e2bc96a5005dc98a9559de009a68068a (diff) | |
download | busybox-w32-a78227dc7320738ec930edbde1aaa0023a51ee4c.tar.gz busybox-w32-a78227dc7320738ec930edbde1aaa0023a51ee4c.tar.bz2 busybox-w32-a78227dc7320738ec930edbde1aaa0023a51ee4c.zip |
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>
Diffstat (limited to 'miscutils/nandwrite.c')
-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) | |||
71 | fd = xopen(argv[0], O_RDWR); | 71 | fd = xopen(argv[0], O_RDWR); |
72 | xioctl(fd, MEMGETINFO, &meminfo); | 72 | xioctl(fd, MEMGETINFO, &meminfo); |
73 | 73 | ||
74 | mtdoffset = xatou(opt_s); | 74 | mtdoffset = bb_strtou(opt_s, NULL, 0); |
75 | 75 | ||
76 | /* Pull it into a CPU register (hopefully) - smaller code that way */ | 76 | /* Pull it into a CPU register (hopefully) - smaller code that way */ |
77 | meminfo_writesize = meminfo.writesize; | 77 | meminfo_writesize = meminfo.writesize; |