From: Jean Guyader Date: Fri, 20 Nov 2009 19:00:08 +0000 (+0000) Subject: installer: tune2fs failed because the file systems was already journalised. X-Git-Url: http://xenbits.xen.org/gitweb?a=commitdiff_plain;h=20229c36f2b4209568a530a78982d3bb61364613;p=xenclient%2Fbuild.git installer: tune2fs failed because the file systems was already journalised. --- diff --git a/target/generic/target_xenclient_installer_skeleton/install/stages/Trash-and-install b/target/generic/target_xenclient_installer_skeleton/install/stages/Trash-and-install index f8382ba..9dbd627 100755 --- a/target/generic/target_xenclient_installer_skeleton/install/stages/Trash-and-install +++ b/target/generic/target_xenclient_installer_skeleton/install/stages/Trash-and-install @@ -101,9 +101,9 @@ install_dom0() do_cmd mke2fs -j "/dev/xenclient/storage" >&2 || return 1 do_cmd mke2fs -j "/dev/xenclient/log" >&2 || return 1 - do_cmd tune2fs -i 0 -c -1 -j -m 0 "/dev/xenclient/config" >&2 || return 1 - do_cmd tune2fs -i 0 -c -1 -j -m 0 "/dev/xenclient/storage" >&2 || return 1 - do_cmd tune2fs -i 0 -c -1 -j -m 0 "/dev/xenclient/log" >&2 || return 1 + do_cmd tune2fs -i 0 -c -1 -m 0 "/dev/xenclient/config" >&2 || return 1 + do_cmd tune2fs -i 0 -c -1 -m 0 "/dev/xenclient/storage" >&2 || return 1 + do_cmd tune2fs -i 0 -c -1 -m 0 "/dev/xenclient/log" >&2 || return 1 mixedgauge "Configuring for boot..." "${PERCENT}" PERCENT="$(( PERCENT + 10 ))"