btrfs-progs: make zstd optional
This adds choice to compile support for zstd or not. Signed-off-by: Karel Kočí <karel.koci@nic.cz>
This commit is contained in:
parent
160e84e91f
commit
63bc53b986
2 changed files with 19 additions and 2 deletions
10
utils/btrfs-progs/Config.in
Normal file
10
utils/btrfs-progs/Config.in
Normal file
|
@ -0,0 +1,10 @@
|
|||
if PACKAGE_btrfs-progs
|
||||
|
||||
config BTRFS_PROGS_ZSTD
|
||||
bool "Build with zstd support"
|
||||
depends on PACKAGE_libzstd
|
||||
default n
|
||||
help
|
||||
This allows you to manage BTRFS with zstd compression
|
||||
|
||||
endif
|
|
@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=btrfs-progs
|
||||
PKG_VERSION:=4.20.2
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.xz
|
||||
PKG_SOURCE_URL:=@KERNEL/linux/kernel/people/kdave/btrfs-progs
|
||||
|
@ -28,7 +28,7 @@ define Package/btrfs-progs
|
|||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
SUBMENU:=Filesystem
|
||||
DEPENDS:=+libattr +libuuid +zlib +zstd +libblkid +liblzo +libpthread
|
||||
DEPENDS:=+libattr +libuuid +zlib +libblkid +liblzo +libpthread +BTRFS_PROGS_ZSTD:libzstd
|
||||
TITLE:=Btrfs filesystems utilities
|
||||
URL:=https://btrfs.wiki.kernel.org/
|
||||
endef
|
||||
|
@ -40,6 +40,10 @@ define Package/btrfs-progs/description
|
|||
GPL and open for contribution from anyone.
|
||||
endef
|
||||
|
||||
define Package/btrfs-progs/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
progs = btrfs btrfs-find-root btrfs-image btrfs-map-logical \
|
||||
btrfs-select-super btrfstune mkfs.btrfs
|
||||
|
||||
|
@ -53,6 +57,9 @@ CONFIGURE_ARGS += \
|
|||
--disable-convert \
|
||||
--disable-documentation \
|
||||
--disable-python
|
||||
ifneq ($(CONFIG_BTRFS_PROGS_ZSTD),y)
|
||||
CONFIGURE_ARGS += --disable-zstd
|
||||
endif
|
||||
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib
|
||||
|
|
Loading…
Reference in a new issue