diff options
author | Florian Fainelli <florian@openwrt.org> | 2006-02-15 15:36:28 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2006-02-15 15:36:28 +0000 |
commit | efc82b9580fa141dae724d26dbb697ed27c3f93f (patch) | |
tree | 314ac0d825413d452c8fee70dddefbc32efd78c9 /openwrt/package/bind/Config.in | |
parent | d4cfc752103b0e437d41779bec821f826202c8d5 (diff) | |
download | mtk-20170518-efc82b9580fa141dae724d26dbb697ed27c3f93f.zip mtk-20170518-efc82b9580fa141dae724d26dbb697ed27c3f93f.tar.gz mtk-20170518-efc82b9580fa141dae724d26dbb697ed27c3f93f.tar.bz2 |
Added logrotate, fixed CP call in httping, added bind splitting, thanks to Sébastien Bourgasser
SVN-Revision: 3243
Diffstat (limited to 'openwrt/package/bind/Config.in')
-rw-r--r-- | openwrt/package/bind/Config.in | 89 |
1 files changed, 84 insertions, 5 deletions
diff --git a/openwrt/package/bind/Config.in b/openwrt/package/bind/Config.in index 38dc92f..34a33c4 100644 --- a/openwrt/package/bind/Config.in +++ b/openwrt/package/bind/Config.in @@ -1,10 +1,89 @@ -#menu "bind.............................. A DNS server implementation" +menu "bind.............................. A DNS server implementation" config BR2_COMPILE_BIND tristate default n - depends BR2_PACKAGE_BIND_CLIENT || BR2_PACKAGE_BIND_SERVER - + depends BR2_PACKAGE_BIND_CLIENT || BR2_PACKAGE_BIND_SERVER || BR2_PACKAGE_BIND_TOOLS || BR2_PACKAGE_BIND_RNDC || BR2_PACKAGE_BIND_CHECK || BR2_PACKAGE_BIND_DNSSEC || BR2_PACKAGE_BIND_HOST || BR2_PACKAGE_BIND_DIG + +config BR2_PACKAGE_BIND_TOOLS + prompt "bind-tools........................ Bind administration tools" + tristate + default m if CONFIG_DEVEL + select BR2_COMPILE_BIND + select BR2_PACKAGE_LIBOPENSSL + help + dig, host, nsupdate, dnssec-keygen, dnssec-signzone, named-checkconf, named-checkzone, rndc, rndc-confgen + + http://www.isc.org/sw/bind/ + + Depends: openssl + +config BR2_PACKAGE_BIND_RNDC + prompt "bind-rndc......................... Bind administration tools (rndc & rndc-confgen only)" + tristate + default m if CONFIG_DEVEL + select BR2_COMPILE_BIND + select BR2_PACKAGE_LIBOPENSSL + help + rndc, rndc-confgen + + http://www.isc.org/sw/bind/ + + Depends: openssl + +config BR2_PACKAGE_BIND_CHECK + prompt "bind-check........................ Bind administration tools (named-checkconf & named-checkzone only)" + tristate + default m if CONFIG_DEVEL + select BR2_COMPILE_BIND + select BR2_PACKAGE_LIBOPENSSL + help + named-checkconf, named-checkzone + + http://www.isc.org/sw/bind/ + + Depends: openssl + +config BR2_PACKAGE_BIND_DNSSEC + prompt "bind-dnssec....................... Bind administration tools (dnssec-keygen & dnssec-signzone only)" + tristate + default m if CONFIG_DEVEL + select BR2_COMPILE_BIND + select BR2_PACKAGE_LIBOPENSSL + help + dnssec-keygen, dnssec-signzone + + http://www.isc.org/sw/bind/ + + Depends: openssl + +config BR2_PACKAGE_BIND_HOST + prompt "bind-host......................... A simple DNS client" + tristate + default m if CONFIG_DEVEL + select BR2_COMPILE_BIND + select BR2_PACKAGE_LIBOPENSSL + help + host + + http://www.isc.org/sw/bind/ + + Depends: openssl + +config BR2_PACKAGE_BIND_DIG + prompt "bind-dig.......................... A DNS client" + tristate + default m if CONFIG_DEVEL + select BR2_COMPILE_BIND + select BR2_PACKAGE_LIBOPENSSL + help + dig + + http://www.isc.org/sw/bind/ + + Depends: openssl + + config BR2_PACKAGE_BIND_CLIENT prompt "bind-client....................... A dynamic DNS client" tristate @@ -29,6 +108,6 @@ config BR2_PACKAGE_BIND_SERVER http://www.isc.org/sw/bind/ - Depends: openssl + Depends: libopenssl -#endmenu +endmenu |