|
@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk |
|
|
|
|
|
|
|
|
PKG_NAME:=btrfs-progs |
|
|
PKG_NAME:=btrfs-progs |
|
|
PKG_VERSION:=4.20.2 |
|
|
PKG_VERSION:=4.20.2 |
|
|
PKG_RELEASE:=2 |
|
|
|
|
|
|
|
|
PKG_RELEASE:=3 |
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.xz |
|
|
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.xz |
|
|
PKG_SOURCE_URL:=@KERNEL/linux/kernel/people/kdave/btrfs-progs |
|
|
PKG_SOURCE_URL:=@KERNEL/linux/kernel/people/kdave/btrfs-progs |
|
@ -28,7 +28,7 @@ define Package/btrfs-progs |
|
|
SECTION:=utils |
|
|
SECTION:=utils |
|
|
CATEGORY:=Utilities |
|
|
CATEGORY:=Utilities |
|
|
SUBMENU:=Filesystem |
|
|
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 |
|
|
TITLE:=Btrfs filesystems utilities |
|
|
URL:=https://btrfs.wiki.kernel.org/ |
|
|
URL:=https://btrfs.wiki.kernel.org/ |
|
|
endef |
|
|
endef |
|
@ -40,6 +40,10 @@ define Package/btrfs-progs/description |
|
|
GPL and open for contribution from anyone. |
|
|
GPL and open for contribution from anyone. |
|
|
endef |
|
|
endef |
|
|
|
|
|
|
|
|
|
|
|
define Package/btrfs-progs/config |
|
|
|
|
|
source "$(SOURCE)/Config.in" |
|
|
|
|
|
endef |
|
|
|
|
|
|
|
|
progs = btrfs btrfs-find-root btrfs-image btrfs-map-logical \
|
|
|
progs = btrfs btrfs-find-root btrfs-image btrfs-map-logical \
|
|
|
btrfs-select-super btrfstune mkfs.btrfs |
|
|
btrfs-select-super btrfstune mkfs.btrfs |
|
|
|
|
|
|
|
@ -53,6 +57,9 @@ CONFIGURE_ARGS += \ |
|
|
--disable-convert \
|
|
|
--disable-convert \
|
|
|
--disable-documentation \
|
|
|
--disable-documentation \
|
|
|
--disable-python |
|
|
--disable-python |
|
|
|
|
|
ifneq ($(CONFIG_BTRFS_PROGS_ZSTD),y) |
|
|
|
|
|
CONFIGURE_ARGS += --disable-zstd |
|
|
|
|
|
endif |
|
|
|
|
|
|
|
|
define Build/InstallDev |
|
|
define Build/InstallDev |
|
|
$(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib |
|
|
$(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib |
|
|