git.cweiske.de
/
enigma2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6860bcc
)
Patch by pieterg: use dir_index when creating ext3 filesystem
author
Felix Domke
<
[email protected]
>
Sun, 26 Apr 2009 21:24:51 +0000
(23:24 +0200)
committer
Felix Domke
<
[email protected]
>
Sun, 26 Apr 2009 21:24:51 +0000
(23:24 +0200)
lib/python/Components/Harddisk.py
patch
|
blob
|
history
diff --git
a/lib/python/Components/Harddisk.py
b/lib/python/Components/Harddisk.py
index df14276bdaa257e34638b8c989386783796666fa..c34511db7f6771efb6e6148fd67c48f37d62f0c8 100755
(executable)
--- 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)