All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/kmod: support zstd compression if available
@ 2021-05-04 12:33 Norbert Lange
  2021-05-04 12:33 ` [Buildroot] [PATCH 2/2] package/kmod: create zstd option for host Norbert Lange
  2021-05-04 19:18 ` [Buildroot] [PATCH 1/2] package/kmod: support zstd compression if available Yann E. MORIN
  0 siblings, 2 replies; 3+ messages in thread
From: Norbert Lange @ 2021-05-04 12:33 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Norbert Lange <nolange79@gmail.com>
---
 package/kmod/kmod.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/kmod/kmod.mk b/package/kmod/kmod.mk
index 7fed252c22..9d2b2c47d7 100644
--- a/package/kmod/kmod.mk
+++ b/package/kmod/kmod.mk
@@ -41,6 +41,13 @@ else
 KMOD_CONF_OPTS += --without-zlib
 endif
 
+ifeq ($(BR2_PACKAGE_ZSTD),y)
+KMOD_DEPENDENCIES += zstd
+KMOD_CONF_OPTS += --with-zstd
+else
+KMOD_CONF_OPTS += --without-zstd
+endif
+
 ifeq ($(BR2_PACKAGE_XZ),y)
 KMOD_DEPENDENCIES += xz
 KMOD_CONF_OPTS += --with-xz
-- 
2.30.2

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

end of thread, other threads:[~2021-05-04 19:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-04 12:33 [Buildroot] [PATCH 1/2] package/kmod: support zstd compression if available Norbert Lange
2021-05-04 12:33 ` [Buildroot] [PATCH 2/2] package/kmod: create zstd option for host Norbert Lange
2021-05-04 19:18 ` [Buildroot] [PATCH 1/2] package/kmod: support zstd compression if available Yann E. MORIN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.