summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xlsinitcpio15
-rwxr-xr-xmkinitcpio3
2 files changed, 14 insertions, 4 deletions
diff --git a/lsinitcpio b/lsinitcpio
index 10cd663..9d98d57 100755
--- a/lsinitcpio
+++ b/lsinitcpio
@@ -91,10 +91,17 @@ detect_filetype() {
return
fi
- if [[ $(hexdump -n 4 -e '"%x"' "$1") == '184d2204' ]]; then
- echo 'lz4'
- return
- fi
+ case $(hexdump -n 4 -e '"%x"' "$1") in
+ 184d2204)
+ error 'Newer lz4 stream format detected! This may not boot!'
+ echo 'lz4'
+ return
+ ;;
+ 184c2102)
+ echo 'lz4 -l'
+ return
+ ;;
+ esac
if [[ $(hexdump -n 3 -e '"%c"' "$1") == 'BZh' ]]; then
echo 'bzip2'
diff --git a/mkinitcpio b/mkinitcpio
index cb94d62..42abde7 100755
--- a/mkinitcpio
+++ b/mkinitcpio
@@ -202,6 +202,9 @@ build_image() {
xz)
COMPRESSION_OPTIONS+=' --check=crc32'
;;
+ lz4)
+ COMPRESSION_OPTIONS+=' -l'
+ ;;
esac
cpio_opts=('-0' '-o' '-H' 'newc')