[Fedora-livecd-list] imgcreate/fs.py

Jeremy Katz katzj at fedoraproject.org
Wed Feb 27 03:27:55 UTC 2008


 imgcreate/fs.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 04298ddc7bb8f0aef55a54b6c2367a6387c8100a
Author: Jeremy Katz <katzj at redhat.com>
Date:   Tue Feb 26 22:27:45 2008 -0500

    Temporarily use 128 byte inodes to avoid hitting #434893
    
    256 byte inodes are currently causing the loss of xattrs on resize.
    esandeen is working on a fix, but to keep things from being broken for now,
    let's just fall back

diff --git a/imgcreate/fs.py b/imgcreate/fs.py
index 9ca3a3e..2dafd4b 100644
--- a/imgcreate/fs.py
+++ b/imgcreate/fs.py
@@ -201,7 +201,7 @@ class SparseExtLoopbackMount(SparseLoopbackMount):
     def __format_filesystem(self):
         rc = subprocess.call(["/sbin/mkfs." + self.fstype,
                               "-F", "-L", self.fslabel,
-                              "-m", "1", "-b", str(self.blocksize),
+                              "-m", "1", "-b", str(self.blocksize), "-I128",
                               self.lofile,
                               str(self.size / self.blocksize)])
         if rc != 0:





More information about the Fedora-livecd-list mailing list