summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-06-17 11:09:10 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-06-17 11:09:10 +0000
commit032f0de1f98b9bb82aac1393631b5b9e45a90e4f (patch)
treecae17ba8a03780941f16536acaff5b556f27696a /package
parent890ab345530489253aae76977d2f1ee0294a2610 (diff)
[package] sysupgrade: sync *before* mtd write, only fallback to sysrq-trigger if standard reboot fails
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16488 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/base-files/Makefile2
-rw-r--r--package/base-files/files/lib/upgrade/common.sh7
2 files changed, 5 insertions, 4 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile
index 81d63d9ff..f9ad4e736 100644
--- a/package/base-files/Makefile
+++ b/package/base-files/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=base-files
-PKG_RELEASE:=22
+PKG_RELEASE:=23
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh
index d0ae8fef5..2c392496a 100644
--- a/package/base-files/files/lib/upgrade/common.sh
+++ b/package/base-files/files/lib/upgrade/common.sh
@@ -142,12 +142,12 @@ jffs2_copy_config() {
}
default_do_upgrade() {
+ sync
if [ "$SAVE_CONFIG" -eq 1 -a -z "$USE_REFRESH" ]; then
get_image "$1" | mtd -j "$CONF_TAR" write - "${PART_NAME:-image}"
else
get_image "$1" | mtd write - "${PART_NAME:-image}"
fi
- sync
}
do_upgrade() {
@@ -157,7 +157,7 @@ do_upgrade() {
else
default_do_upgrade "$ARGV"
fi
-
+
[ "$SAVE_CONFIG" -eq 1 -a -n "$USE_REFRESH" ] && {
v "Refreshing partitions"
if type 'platform_refresh_partitions' >/dev/null 2>/dev/null; then
@@ -175,7 +175,8 @@ do_upgrade() {
[ -n "$DELAY" ] && sleep "$DELAY"
ask_bool 1 "Reboot" && {
v "Rebooting system..."
- echo b 2>/dev/null >/proc/sysrq-trigger
reboot
+ sleep 5
+ echo b 2>/dev/null >/proc/sysrq-trigger
}
}