diff options
author | Jacob Kjaergaard <jacob.kjaergaard@prevas.dk> | 2014-12-10 13:44:27 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2014-12-10 13:44:27 +0100 |
commit | bd7c1f2d13cd1f7927ec081e4f23ee0f0b079e9a (patch) | |
tree | dcacd3393b348b16009ba1d782150113d3595c34 | |
parent | cfcd2399b20998a374ad52a5fac353f77e6ec0f6 (diff) | |
download | busybox-bd7c1f2d13cd1f7927ec081e4f23ee0f0b079e9a.tar.gz |
flashcp: change BUFSIZE to 4k
some flash partitions can be smaller than the existing BUFSIZE thus write
BUFSIZE will fail with "no space left on device"
Signed-off-by: Jacob Kjaergaard <jacob.kjaergaard@prevas.dk>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | miscutils/flashcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/flashcp.c b/miscutils/flashcp.c index b526566a4..9bc588d14 100644 --- a/miscutils/flashcp.c +++ b/miscutils/flashcp.c @@ -21,7 +21,7 @@ #define OPT_v (1 << 0) -#define BUFSIZE (8 * 1024) +#define BUFSIZE (4 * 1024) static void progress(int mode, uoff_t count, uoff_t total) { |