Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] fs/common.mk: support lz4 compression
@ 2017-10-13 19:16 Peter Korsgaard
  2017-10-13 19:16 ` [Buildroot] [PATCH 2/4] fs/cpio: add option for " Peter Korsgaard
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Peter Korsgaard @ 2017-10-13 19:16 UTC (permalink / raw)
  To: buildroot

Similar to the other compressors.  Notice that we use the -l (legacy format)
for Linux kernel initrd compatibility.

Lz4 decompression is supported by the Linux kernel since 3.11.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 fs/common.mk | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/fs/common.mk b/fs/common.mk
index 9a7758ff49..0fc151b294 100644
--- a/fs/common.mk
+++ b/fs/common.mk
@@ -59,6 +59,11 @@ ROOTFS_$(2)_DEPENDENCIES += host-lzma
 ROOTFS_$(2)_COMPRESS_EXT = .lzma
 ROOTFS_$(2)_COMPRESS_CMD = $$(LZMA) -9 -c
 endif
+ifeq ($$(BR2_TARGET_ROOTFS_$(2)_LZ4),y)
+ROOTFS_$(2)_DEPENDENCIES += host-lz4
+ROOTFS_$(2)_COMPRESS_EXT = .lz4
+ROOTFS_$(2)_COMPRESS_CMD = lz4 -l -9 -c
+endif
 ifeq ($$(BR2_TARGET_ROOTFS_$(2)_LZO),y)
 ROOTFS_$(2)_DEPENDENCIES += host-lzop
 ROOTFS_$(2)_COMPRESS_EXT = .lzo
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2018-01-08 22:46 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-13 19:16 [Buildroot] [PATCH 1/4] fs/common.mk: support lz4 compression Peter Korsgaard
2017-10-13 19:16 ` [Buildroot] [PATCH 2/4] fs/cpio: add option for " Peter Korsgaard
2017-10-13 19:16 ` [Buildroot] [PATCH 3/4] fs/ext2: " Peter Korsgaard
2017-10-13 19:16 ` [Buildroot] [PATCH 4/4] fs/tar: " Peter Korsgaard
2017-10-13 22:05 ` [Buildroot] [PATCH 1/4] fs/common.mk: support " Thomas Petazzoni
2017-10-14  7:32   ` Yann E. MORIN
2017-10-15  9:03     ` Peter Korsgaard
2017-10-15 13:05       ` Yann E. MORIN
2017-10-15 20:45         ` Peter Korsgaard
2018-01-08 22:46 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox