Update initramfs_create
Changing that line got rid of a gzip warning "unexpected end of file", at least for me.pull/8/head
parent
94583b4d64
commit
6a816ccc2e
|
|
@ -74,7 +74,7 @@ copy_including_deps /$LMK/kernel/drivers/block/loop.*
|
||||||
copy_including_deps /$LMK/kernel/fs/fuse
|
copy_including_deps /$LMK/kernel/fs/fuse
|
||||||
copy_including_deps /$LMK/modules.*
|
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
|
# 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")"
|
MODULEORDER="$(cd "$INITRAMFS/$LMK/"; find -name "*.ko" | sed -r "s:^./::g" | tr "\n" "|" | sed -r "s:[.]:.:g")"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue