diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-09-27 02:50:58 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-09-27 09:54:17 +0300 |
commit | a8801d8665bcc94c63a798e291a03c88f2af0215 (patch) | |
tree | dbb8e24cb34701252d36d70d1b033298f35d38a3 /flash_eraseall | |
parent | 2c413f5232e02d8dd413a93f7f4f5cb8d2420ec6 (diff) |
mtd-utils: unify flash_erase and flash_eraseall
These have overlapping functionality, and while flash_eraseall supports
newer 64bit ioctls, flash_erase does not. So rather than graft support
onto flash_erase, merge the functionality of two into flash_erase so we
only have to support one util from now on.
A simple wrapper is provided to ease old flash_eraseall users into the
new combined flash_erase util.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'flash_eraseall')
-rwxr-xr-x | flash_eraseall | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/flash_eraseall b/flash_eraseall new file mode 100755 index 0000000..c5539b3 --- /dev/null +++ b/flash_eraseall @@ -0,0 +1,4 @@ +#!/bin/sh +echo "${0##*/} has been replaced by \`flash_erase <mtddev> 0 0\`; please use it" 1>&2 +[ $# -ne 0 ] && set -- "$@" 0 0 +exec flash_erase "$@" |