summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fsset.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/fsset.py b/fsset.py
index 02bf9b810..0fb4a6a3d 100644
--- a/fsset.py
+++ b/fsset.py
@@ -1039,9 +1039,10 @@ def ext2FormatFilesystem(argList, messageFile, windowCreator, mntpoint):
val = (int(l[0]) * 100) / int(l[1])
w and w.set(val)
# sync every 10%
- if sync + 10 < val:
- isys.sync()
- sync = val
+# XXX comment out for now because kernel seems to hang on < 256M machines!
+# if sync + 10 < val:
+# isys.sync()
+# sync = val
num = ''
except OSError, args:
(num, str) = args