summaryrefslogtreecommitdiffstats
path: root/rules/rsync3.in
blob: 856a282c334c551d7eb65fd1599359ab5c6e9975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
## SECTION=networking
menuconfig RSYNC3
	tristate
	prompt "rsync v3                      "
	select ZLIB
	select OPENSSH	if RUNTIME
	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
	  greatly speed up file transfers when the destination file is being
	  updated.

if RSYNC3

config RSYNC3_STARTSCRIPT
	bool
	default y
	depends on INITMETHOD_BBINIT
	prompt "install /etc/init.d/rsync"

config RSYNC3_ACL
	bool
	prompt "enable ACL support"
	help
	  --enable-acl-support

config RSYNC3_ATTR
	bool
	prompt "enable extended attribute support"
	help
	  --enable-xattr-support

config RSYNC3_ZSTD
	bool
	prompt "enable zstd compression support"
	help
	  --enable-zstd
endif