Blame view

buildroot/buildroot-2016.08.1/package/openvpn/Config.in 996 Bytes
6b13f685e   김민수   BSP 최초 추가
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
  config BR2_PACKAGE_OPENVPN
  	bool "openvpn"
  	depends on BR2_USE_MMU # fork()
  	select BR2_PACKAGE_OPENSSL
  	help
  	  OpenVPN is a full-featured SSL VPN solution which can
  	  accomodate a wide range of configurations, including road
  	  warrior access, home/office/campus telecommuting, WiFi
  	  security, secure branch office linking, and enterprise-scale
  	  remote access solutions with load balancing, failover, and
  	  fine-grained access-controls.
  
  	  http://openvpn.net/
  
  if BR2_PACKAGE_OPENVPN
  
  config BR2_PACKAGE_OPENVPN_LZO
  	bool "LZO compression"
  	default y
  	select BR2_PACKAGE_LZO
  	help
  	  Enable LZO compression.
  
  config BR2_PACKAGE_OPENVPN_SMALL
  	bool "Optimize for small size"
  	help
  	  Make OpenVPN as small as possible.
  	  You loose eurephia, debugging info, help messages and more.
  	  It saves around 100 KiB in binary file size.
  
  config BR2_PACKAGE_OPENVPN_PWSAVE
  	bool "Allow passwords in files"
  	help
  	  Allow --askpass and --auth-user-pass passwords to be read
  	  from a file.
  
  endif