Blame view

buildroot/buildroot-2016.08.1/package/bind/Config.in 1.38 KB
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
38
39
40
41
42
43
  config BR2_PACKAGE_BIND
  	bool "bind"
  	depends on BR2_USE_MMU # fork()
  	depends on BR2_TOOLCHAIN_HAS_THREADS
  	depends on !BR2_STATIC_LIBS
  	help
  	  BIND (Berkeley Internet Name Domain) is an implementation of
  	  the Domain Name System (DNS) protocols and provides an openly
  	  redistributable reference implementation of the major
  	  components of the Domain Name System, including:
  
  	    * a Domain Name System server (named)
  	    * a Domain Name System resolver library
  	    * tools for verifying the proper operation of the DNS server
  
  	  The BIND DNS Server is used on the vast majority of name
  	  serving machines on the Internet, providing a robust and
  	  stable architecture on top of which an organization's naming
  	  architecture can be built. The resolver library included in
  	  the BIND distribution provides the standard APIs for
  	  translation between domain names and Internet addresses and is
  	  intended to be linked with applications requiring name service.
  
  	  http://www.isc.org/sw/bind/
  
  if BR2_PACKAGE_BIND
  
  config BR2_PACKAGE_BIND_SERVER
  	bool "Install server components"
  	default y
  	help
  	  Install server components (named, lwresd)
  
  config BR2_PACKAGE_BIND_TOOLS
  	bool "Install tools"
  	help
  	  Install tools (dig, host, nslookup, nsupdate)
  
  endif
  
  comment "bind needs a toolchain w/ threads, dynamic library"
  	depends on BR2_USE_MMU
  	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS