0
0
mirror of https://github.com/openwrt/packages.git synced 2025-03-14 22:38:43 +00:00
packages/net/rsync/Config.in
Maxim Storchak 8951378aec rsync: support xxhash and lz4
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2024-04-19 21:51:40 +08:00

31 lines
482 B
Plaintext

if PACKAGE_rsync
config RSYNC_xattr
bool
prompt "Enable xattr support"
default y if USE_FS_ACL_ATTR
default n
config RSYNC_acl
bool
prompt "Enable ACL support"
default y if USE_FS_ACL_ATTR
default n
config RSYNC_zstd
bool
prompt "Enable zstd stream compression"
default n
config RSYNC_lz4
bool
prompt "Enable lz4, extremely fast compression"
default n
config RSYNC_xxhash
bool
prompt "Enable xxhash, extremely fast hash"
default n
endif