diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-11 21:34:46 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-11 21:34:46 +0000 |
commit | d429de78cafac72146839e55d30cd76273934858 (patch) | |
tree | 849fc82ccce38510576049ac065c694e9826a4ac | |
parent | 8d1840301d1daa24bcfce378f90794eb80d33b39 (diff) |
unlock linux partition before running jffs2root --clean. fixes #97
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2615 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | openwrt/package/base-files/default/sbin/mount_root | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openwrt/package/base-files/default/sbin/mount_root b/openwrt/package/base-files/default/sbin/mount_root index c393e06f39..e855b41a1e 100755 --- a/openwrt/package/base-files/default/sbin/mount_root +++ b/openwrt/package/base-files/default/sbin/mount_root @@ -22,6 +22,7 @@ if [ "$1" != "failsafe" ]; then if [ -z "$(nvram get no_root_swap)" ]; then is_clean || { mtd erase OpenWrt + mtd unlock linux jffs2root --clean } mtd unlock OpenWrt |