split into bind-server and bind-client package, add startup script and example named...
[openwrt.git] / openwrt / package / bind / Config.in
1 menu "bind - DNS server implementation"
2
3 config BR2_PACKAGE_BIND
4         bool "bind - popular dns server"
5         default y if CONFIG_DEVEL
6         help
7           DNS server implementation
8           
9           http://www.isc.org/
10           
11           Depends: openssl
12
13 config BR2_PACKAGE_BIND_SERVER
14         tristate "named - popular dns server"
15         default m if CONFIG_DEVEL
16         select BR2_PACKAGE_LIBOPENSSL
17         depends BR2_PACKAGE_BIND
18
19 config BR2_PACKAGE_BIND_CLIENT
20         tristate "nsupdate - dynamic dns client"
21         default m if CONFIG_DEVEL
22         select BR2_PACKAGE_LIBOPENSSL
23         depends BR2_PACKAGE_BIND
24
25 endmenu