From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail.pqgruber.com ([52.59.78.55]) by metis.ext.pengutronix.de with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.92) (envelope-from ) id 1kKfPO-0002Rf-2y for ptxdist@pengutronix.de; Tue, 22 Sep 2020 12:20:26 +0200 From: Clemens Gruber Date: Tue, 22 Sep 2020 12:20:13 +0200 Message-Id: <20200922102013.84967-2-clemens.gruber@pqgruber.com> In-Reply-To: <20200922102013.84967-1-clemens.gruber@pqgruber.com> References: <20200922102013.84967-1-clemens.gruber@pqgruber.com> MIME-Version: 1.0 Subject: [ptxdist] [PATCH 2/2] rsync3: support zstd compression List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de Cc: Clemens Gruber Signed-off-by: Clemens Gruber --- rules/rsync3.in | 7 +++++++ rules/rsync3.make | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/rules/rsync3.in b/rules/rsync3.in index 7dc03a52e..0affd7661 100644 --- a/rules/rsync3.in +++ b/rules/rsync3.in @@ -7,6 +7,7 @@ menuconfig RSYNC3 select OPENSSH_SSH select ACL if RSYNC3_ACL select ATTR if RSYNC3_ATTR + select ZSTD if RSYNC3_ZSTD help rsync is a program that behaves in much the same way that rcp does, but has many more options and uses the rsync remote-update protocol to @@ -31,4 +32,10 @@ config RSYNC3_ATTR prompt "enable extended attribute support" help --enable-xattr-support + +config RSYNC3_ZSTD + bool + prompt "enable zstd compression support" + help + --enable-zstd endif diff --git a/rules/rsync3.make b/rules/rsync3.make index a585f6265..9c96dba76 100644 --- a/rules/rsync3.make +++ b/rules/rsync3.make @@ -42,7 +42,7 @@ RSYNC3_AUTOCONF := \ --disable-locale \ --disable-openssl \ --disable-xxhash \ - --disable-zstd \ + --$(call ptx/endis, PTXCONF_ZSTD)-zstd \ --disable-lz4 \ --$(call ptx/endis, PTXCONF_ICONV)-iconv-open \ --$(call ptx/endis, PTXCONF_ICONV)-iconv \ -- 2.28.0 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de