summaryrefslogtreecommitdiffstats
path: root/rules/samba.in
blob: ec54236617b4e3ae06822b5d1d8ba6659d502641 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
## SECTION=disk_and_file

menuconfig SAMBA
	tristate
	prompt "samba                         "
	select HOST_SYSTEM_PERL
	select LIBC_CRYPT
	select LIBC_DL
	select LIBC_NSL
	select LIBC_RESOLV
	select GCCLIBS_GCC_S
	select ACL
	select BUSYBOX_START_STOP_DAEMON	if SAMBA_STARTSCRIPT
	select CUPS				if SAMBA_CUPS
	select KRB5
	select LIBBSD
	select LIBCAP
	select LIBPOPT
	select READLINE
	select SYSTEMD				if SAMBA_SYSTEMD_UNIT
	select ZLIB
	help
	  Samba is an Open Source/Free Software suite that has, since
	  1992, provided file and print services to all manner of
	  SMB/CIFS clients, including the numerous versions of Microsoft
	  Windows operating systems. Samba is freely available under the
	  GNU General Public License

	  See http://www.samba.org for details.

if SAMBA

config SAMBA_COMMON
	bool

config SAMBA_SERVER
	bool
	select SAMBA_COMMON
	prompt "Samba server"
	help
	  Installs samba server. ATTENTION: You need rw access to your
	  rootfs before starting the samba server!

config SAMBA_CLIENT
	bool
	select SAMBA_COMMON
	prompt "Samba client"
	help
	  Installs some client components of the Samba suite.

config SAMBA_LIBCLIENT
	bool
	select SAMBA_COMMON
	prompt "Samba client library"
	help
	  Installs the libsmbclient shared library.

config SAMBA_CUPS
	bool
	prompt "cups support"
	help
	  Turn on CUPS support

config SAMBA_STARTSCRIPT
	bool
	default y
	depends on SAMBA_SERVER
	prompt "install /etc/init.d/samba"

config SAMBA_SYSTEMD_UNIT
	bool
	default y
	depends on SAMBA_SERVER && INITMETHOD_SYSTEMD
	prompt "install systemd unit files"

endif