summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlinearizeDisk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/linearizeDisk.py b/linearizeDisk.py
index 7fb6495..7a54372 100755
--- a/linearizeDisk.py
+++ b/linearizeDisk.py
@@ -19,8 +19,8 @@ def linearBlocks (fd):
if size == 1228800:
# 1.2m
blocksPerChunk = 15
- elif size == 368640:
- # 360k
+ elif size in (368640, 737280):
+ # 360k or 720k
blocksPerChunk = 9
else:
logging.warning ('Cannot determine blocks per chunk from filesize')