From d7064bb00478335a056ffe24d7d58eaa1a26a143 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sun, 26 Apr 2009 23:24:51 +0200 Subject: [PATCH] Patch by pieterg: use dir_index when creating ext3 filesystem --- lib/python/Components/Harddisk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/Components/Harddisk.py b/lib/python/Components/Harddisk.py index df14276b..c34511db 100755 --- a/lib/python/Components/Harddisk.py +++ b/lib/python/Components/Harddisk.py @@ -156,7 +156,7 @@ class Harddisk: cmd = "/sbin/mkfs.ext3 " if self.diskSize() > 4 * 1024: cmd += "-T largefile " - cmd += "-m0 " + self.devidex + "part1" + cmd += "-m0 -O dir_index " + self.devidex + "part1" res = system(cmd) return (res >> 8) -- 2.30.2