diff options
-rwxr-xr-x | linearizeDisk.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linearizeDisk.py b/linearizeDisk.py index 7a54372..bd7a69c 100755 --- a/linearizeDisk.py +++ b/linearizeDisk.py @@ -22,6 +22,9 @@ def linearBlocks (fd): elif size in (368640, 737280): # 360k or 720k blocksPerChunk = 9 + elif size == 819200: + # 800k + blocksPerChunk = 10 else: logging.warning ('Cannot determine blocks per chunk from filesize') chunkSize = blockSize*blocksPerChunk |