aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-04-26 23:24:51 +0200
committerFelix Domke <tmbinc@elitedvb.net>2009-04-26 23:24:51 +0200
commitd7064bb00478335a056ffe24d7d58eaa1a26a143 (patch)
tree9295cd54f2b7997133fe2ee6a8d2ebf5143e7363 /lib/python
parent6860bccf8a14d5cea270b6bb0823e2f9cf90f060 (diff)
downloadenigma2-d7064bb00478335a056ffe24d7d58eaa1a26a143.tar.gz
enigma2-d7064bb00478335a056ffe24d7d58eaa1a26a143.zip
Patch by pieterg: use dir_index when creating ext3 filesystem
Diffstat (limited to 'lib/python')
-rwxr-xr-xlib/python/Components/Harddisk.py2
1 files changed, 1 insertions, 1 deletions
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)