Signed-off-by: Cody P Schafer <de...@codyps.com>
---
 package/base-files/files/lib/upgrade/common.sh | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/package/base-files/files/lib/upgrade/common.sh 
b/package/base-files/files/lib/upgrade/common.sh
index ecf1a98..7b3554b 100644
--- a/package/base-files/files/lib/upgrade/common.sh
+++ b/package/base-files/files/lib/upgrade/common.sh
@@ -198,10 +198,15 @@ jffs2_copy_config() {
 
 default_do_upgrade() {
        sync
+       local f_arg=
+       if [ $FORCE -gt 1 ]; then
+               f_arg=-f
+       fi
+
        if [ "$SAVE_CONFIG" -eq 1 ]; then
-               get_image "$1" | mtd $MTD_CONFIG_ARGS -j "$CONF_TAR" write - 
"${PART_NAME:-image}"
+               get_image "$1" | mtd $f_arg $MTD_CONFIG_ARGS -j "$CONF_TAR" 
write - "${PART_NAME:-image}"
        else
-               get_image "$1" | mtd write - "${PART_NAME:-image}"
+               get_image "$1" | mtd $f_arg write - "${PART_NAME:-image}"
        fi
 }
 
-- 
1.9.2
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Reply via email to