aboutsummaryrefslogtreecommitdiffstats
path: root/package/bind/Config.in
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openwrt.org>2005-09-14 10:45:27 +0000
committerWaldemar Brodkorb <wbx@openwrt.org>2005-09-14 10:45:27 +0000
commite7f8acce0cd7853a6fa81601e300d1d1728f6008 (patch)
treeaff50786705f5cde2d63f9ce56db2dcd2b18e395 /package/bind/Config.in
parent9db9f5061fb4d778901428bf6f720d450d36a63c (diff)
downloadupstream-e7f8acce0cd7853a6fa81601e300d1d1728f6008.tar.gz
upstream-e7f8acce0cd7853a6fa81601e300d1d1728f6008.tar.bz2
upstream-e7f8acce0cd7853a6fa81601e300d1d1728f6008.zip
split into bind-server and bind-client package, add startup script and example named.conf
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1918 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/bind/Config.in')
-rw-r--r--package/bind/Config.in21
1 files changed, 18 insertions, 3 deletions
diff --git a/package/bind/Config.in b/package/bind/Config.in
index a820670b47..910c61c2e6 100644
--- a/package/bind/Config.in
+++ b/package/bind/Config.in
@@ -1,10 +1,25 @@
+menu "bind - DNS server implementation"
+
config BR2_PACKAGE_BIND
- tristate "bind - popular dns server"
- default m if CONFIG_DEVEL
- select BR2_PACKAGE_LIBOPENSSL
+ bool "bind - popular dns server"
+ default y if CONFIG_DEVEL
help
DNS server implementation
http://www.isc.org/
Depends: openssl
+
+config BR2_PACKAGE_BIND_SERVER
+ tristate "named - popular dns server"
+ default m if CONFIG_DEVEL
+ select BR2_PACKAGE_LIBOPENSSL
+ depends BR2_PACKAGE_BIND
+
+config BR2_PACKAGE_BIND_CLIENT
+ tristate "nsupdate - dynamic dns client"
+ default m if CONFIG_DEVEL
+ select BR2_PACKAGE_LIBOPENSSL
+ depends BR2_PACKAGE_BIND
+
+endmenu