projects
/
tools
/
mic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df1c0d3
)
Revert "ext4 images are created with inode size 256 bytes"
author
Xiao Jin
<jin.xiao@samsung.com>
Wed, 12 Sep 2018 07:44:59 +0000
(15:44 +0800)
committer
Xiao Jin
<jin.xiao@samsung.com>
Thu, 13 Sep 2018 02:59:43 +0000
(10:59 +0800)
This reverts commit
c2b1299800f0f1f8cd4794fc5e55bdc20e35721d
.
Change-Id: Id9308c18a70de32cb781091f999bb39715bdc55a
mic/utils/fs_related.py
patch
|
blob
|
history
diff --git
a/mic/utils/fs_related.py
b/mic/utils/fs_related.py
index a914139a6ffd0000d6030238e2807205d9d6784c..11f68017fc3a45db6cbc200ea75af34202b4a0ca 100755
(executable)
--- a/
mic/utils/fs_related.py
+++ b/
mic/utils/fs_related.py
@@
-489,9
+489,6
@@
class ExtDiskMount(DiskMount):
msger.verbose("Formating %s filesystem on %s" % (self.fstype, self.disk.device))
cmdlist = [self.mkfscmd, "-F", "-L", self.fslabel, "-m", "1", "-b",
str(self.blocksize), "-U", self.uuid]
- #raw device do not maintain i-node,so -I is invalid param
- if not isinstance(self.disk,RawDisk):
- cmdlist.extend(["-I",str(256)])
if self.__extopts:
cmdlist.extend(self.__extopts.split())
cmdlist.extend([self.disk.device])