From 5231811851593982f403e34b6f24bc42e818f4f9 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 16 Jul 2009 13:39:36 +0000 Subject: 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. SVN-Revision: 16867 --- target/linux/x86/base-files/lib/upgrade/platform.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target/linux/x86/base-files') diff --git a/target/linux/x86/base-files/lib/upgrade/platform.sh b/target/linux/x86/base-files/lib/upgrade/platform.sh index 3d15914..0f79a00 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() { -- cgit v1.1