summaryrefslogtreecommitdiffstats
path: root/febootstrap-to-initramfs.sh
diff options
context:
space:
mode:
authorRichard Jones <rjones@debian5x64.home.annexia.org>2009-05-24 15:39:10 +0100
committerRichard Jones <rjones@debian5x64.home.annexia.org>2009-05-24 15:39:10 +0100
commit346a893d8035212e8d2acbe3a14521df504116e2 (patch)
tree25bca6467d29e132da0982e2bf11672a2ad158e6 /febootstrap-to-initramfs.sh
parent0eacd743cb1ff655a09f7b941320a0235d482df0 (diff)
downloadfebootstrap-346a893d8035212e8d2acbe3a14521df504116e2.tar.gz
febootstrap-346a893d8035212e8d2acbe3a14521df504116e2.tar.xz
febootstrap-346a893d8035212e8d2acbe3a14521df504116e2.zip
Update to previous commit: Properly specify newc cpio format.
Diffstat (limited to 'febootstrap-to-initramfs.sh')
-rwxr-xr-xfebootstrap-to-initramfs.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/febootstrap-to-initramfs.sh b/febootstrap-to-initramfs.sh
index 54ee046..93d415a 100755
--- a/febootstrap-to-initramfs.sh
+++ b/febootstrap-to-initramfs.sh
@@ -36,7 +36,7 @@ set -e
if [ -f fakeroot.log ]; then
fakeroot -i fakeroot.log \
- sh -c 'find -not -name fakeroot.log -a -print0 | cpio -o -0 -c -H newc | gzip --best'
+ sh -c 'find -not -name fakeroot.log -a -print0 | cpio -o -0 -H newc | gzip --best'
else
- find -not -name fakeroot.log -a -print0 | cpio -o -0 -c -H newc | gzip --best
+ find -not -name fakeroot.log -a -print0 | cpio -o -0 -H newc | gzip --best
fi