summaryrefslogtreecommitdiffstats
path: root/target/linux/x86
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-07-16 13:39:36 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-07-16 13:39:36 +0000
commit989900d133e54bba3c9ff89190ae4c25859bee89 (patch)
tree4e79749792ed55f9fe6367bbce86e584db80b2ee /target/linux/x86
parent5cbac7c140af6b762367f15da1cc16b3809a0a3d (diff)
[PATCH] sysupgrade-ext2 sync before writing image, not after
Sysupgrade for ext2 currently flushes the filesystem buffers after an image is written to the disk. This should happen before the image is written. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16867 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/x86')
-rw-r--r--target/linux/x86/base-files/lib/upgrade/platform.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/x86/base-files/lib/upgrade/platform.sh b/target/linux/x86/base-files/lib/upgrade/platform.sh
index 3d1591461..0f79a00cb 100644
--- a/target/linux/x86/base-files/lib/upgrade/platform.sh
+++ b/target/linux/x86/base-files/lib/upgrade/platform.sh
@@ -13,8 +13,8 @@ platform_check_image() {
}
platform_do_upgrade() {
- get_image "$1" > /dev/hda
sync
+ get_image "$1" > /dev/hda
}
x86_prepare_ext2() {