Update initramfs_create

Changing that line got rid of a gzip warning "unexpected end of file", at least for me.
pull/8/head
Asrael 2014-04-12 04:12:41 -07:00
parent 94583b4d64
commit 6a816ccc2e
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ copy_including_deps /$LMK/kernel/drivers/block/loop.*
copy_including_deps /$LMK/kernel/fs/fuse
copy_including_deps /$LMK/modules.*
find $INITRAMFS -name "*.ko.gz" | xargs gunzip
find $INITRAMFS -name "*.ko.gz" -exec gunzip {} \;
# trim modules.order file. Perhaps we could remove it entirely
MODULEORDER="$(cd "$INITRAMFS/$LMK/"; find -name "*.ko" | sed -r "s:^./::g" | tr "\n" "|" | sed -r "s:[.]:.:g")"