diff options
author | Richard Jones <rjones@redhat.com> | 2009-11-11 10:55:26 +0000 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-11-11 10:55:26 +0000 |
commit | cc9b2e30e5f6d6e77c60e3f501969c4a478899da (patch) | |
tree | 48ae1c8bd61a57ead8099b3c97af5bbdf1bc1ae8 /appliance | |
parent | a11927340db33ae00c41abbb96f91ecff0b3772f (diff) | |
download | libguestfs-cc9b2e30e5f6d6e77c60e3f501969c4a478899da.tar.gz libguestfs-cc9b2e30e5f6d6e77c60e3f501969c4a478899da.tar.xz libguestfs-cc9b2e30e5f6d6e77c60e3f501969c4a478899da.zip |
Set cpio blocksize to 64K.
See:
https://www.redhat.com/archives/fedora-devel-list/2009-November/thread.html#00523
Diffstat (limited to 'appliance')
-rwxr-xr-x | appliance/libguestfs-supermin-helper.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appliance/libguestfs-supermin-helper.in b/appliance/libguestfs-supermin-helper.in index a096ea42..69f22e4f 100755 --- a/appliance/libguestfs-supermin-helper.in +++ b/appliance/libguestfs-supermin-helper.in @@ -83,4 +83,4 @@ find "$modpath" \( -not -name '*.ko' $whitelist \) -a -print0 | ls -1df $( cat "$sourcedir"/initramfs.@REPO@.@host_cpu@.supermin.hostfiles ) 2>/dev/null | - cpio --quiet -o -H newc ) >> "$initrd" + cpio -C 65536 --quiet -o -H newc ) >> "$initrd" |