From: nbd Date: Mon, 16 Apr 2007 23:29:44 +0000 (+0000) Subject: add jffs2_mark_erase function for erasing jffs2 partitions on the next mount (typical... X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=6dbdf08f38e76694e0bea1e418ecd37f47c04e8c;p=openwrt.git add jffs2_mark_erase function for erasing jffs2 partitions on the next mount (typically faster than doing mtd erase manually) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6978 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/base-files/files/etc/functions.sh b/package/base-files/files/etc/functions.sh index dac46a3497..86ea82de67 100755 --- a/package/base-files/files/etc/functions.sh +++ b/package/base-files/files/etc/functions.sh @@ -186,3 +186,13 @@ strtok() { # { [] ... } return $count } + + +jffs2_mark_erase() { + local part="$(find_mtd_part "$1")" + [ -z "$part" ] && { + echo Partition not found. + return 1 + } + echo -e "\xde\xad\xc0\xde" | mtd -qq write - "$1" +}