diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-05 02:16:36 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-05 02:16:36 +0000 |
commit | 445d5e12cf785fd0741298de731fe801d46a8417 (patch) | |
tree | 8e47048b488768d59c78304e341a90f8bda2da66 /openwrt/package/updatedd/Config.in | |
parent | 391acdf6bc677cb5cb5e069df5fbfb27c5e9e283 (diff) |
reorganize/rationalize/format package menuconfig,
make updatedd modular
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2333 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/updatedd/Config.in')
-rw-r--r-- | openwrt/package/updatedd/Config.in | 94 |
1 files changed, 61 insertions, 33 deletions
diff --git a/openwrt/package/updatedd/Config.in b/openwrt/package/updatedd/Config.in index 0862021890..77bda5e192 100644 --- a/openwrt/package/updatedd/Config.in +++ b/openwrt/package/updatedd/Config.in @@ -1,45 +1,73 @@ +menu "updatedd.......................... A tool to update dynamic dns services" + config BR2_PACKAGE_UPDATEDD - tristate "updatedd - a tool to update dynamic dns services" - default m if CONFIG_DEVEL - help - Updatedd is a small tool that will update one of many dynamic - dns services on boot. Please look at the /etc/init.d/S50ddns - script for more info. + prompt "updatedd.......................... A tool to update dynamic DNS services" + tristate + default m if CONFIG_DEVEL + help + Updatedd is a small tool that will update one of many dynamic + dns services on boot. + + Please look at the /etc/init.d/S50ddns script for more info. + + http://www.philipp-benner.de/updatedd/ +if BR2_PACKAGE_UPDATEDD +comment "Plugin Dynamic DNS service" +endif -config BR2_PACKAGE_UPDATEDD_CHANGEIP - bool "changeip.com" +config BR2_PACKAGE_UPDATEDD_MOD_CHANGEIP + prompt "updatedd-mod-changeip........... changeip.com" + tristate depends on BR2_PACKAGE_UPDATEDD - default y if CONFIG_DEVEL -config BR2_PACKAGE_UPDATEDD_DYNDNS - bool "dyndns.org" + default m if CONFIG_DEVEL + +config BR2_PACKAGE_UPDATEDD_MOD_DYNDNS + prompt "updatedd-mod-dyndns............. dyndns.org" + tristate depends on BR2_PACKAGE_UPDATEDD - default y if CONFIG_DEVEL -config BR2_PACKAGE_UPDATEDD_EURODYNDNS - bool "eurodyndns.org" + default m if CONFIG_DEVEL + +config BR2_PACKAGE_UPDATEDD_MOD_EURODYNDNS + prompt "updatedd-mod-eurodyndns......... eurodyndns.org" + tristate depends on BR2_PACKAGE_UPDATEDD - default y if CONFIG_DEVEL -config BR2_PACKAGE_UPDATEDD_HN - bool "hn.org" + default m if CONFIG_DEVEL + +config BR2_PACKAGE_UPDATEDD_MOD_HN + prompt "updatedd-mod-hn................. hn.org" + tristate depends on BR2_PACKAGE_UPDATEDD - default y if CONFIG_DEVEL -config BR2_PACKAGE_UPDATEDD_NOIP - bool "no-ip.com" + default m if CONFIG_DEVEL + +config BR2_PACKAGE_UPDATEDD_MOD_NOIP + prompt "updatedd-mod-noip............... no-ip.com" + tristate depends on BR2_PACKAGE_UPDATEDD - default y if CONFIG_DEVEL -config BR2_PACKAGE_UPDATEDD_ODS - bool "ods.org" + default m if CONFIG_DEVEL + +config BR2_PACKAGE_UPDATEDD_MOD_ODS + prompt "updatedd-mod-ods................ ods.org" + tristate depends on BR2_PACKAGE_UPDATEDD - default y if CONFIG_DEVEL -config BR2_PACKAGE_UPDATEDD_OVH - bool "ovh.com" + default m if CONFIG_DEVEL + +config BR2_PACKAGE_UPDATEDD_MOD_OVH + prompt "updatedd-mod-ovh................ ovh.com" + tristate depends on BR2_PACKAGE_UPDATEDD - default y if CONFIG_DEVEL -config BR2_PACKAGE_UPDATEDD_REGFISH - bool "regfish.com" + default m if CONFIG_DEVEL + +config BR2_PACKAGE_UPDATEDD_MOD_REGFISH + prompt "updatedd-mod-regfish............ regfish.com" + tristate depends on BR2_PACKAGE_UPDATEDD - default y if CONFIG_DEVEL -config BR2_PACKAGE_UPDATEDD_TZO - bool "tzo.com" + default m if CONFIG_DEVEL + +config BR2_PACKAGE_UPDATEDD_MOD_TZO + prompt "updatedd-mod-tzo................ tzo.com" + tristate depends on BR2_PACKAGE_UPDATEDD - default y if CONFIG_DEVEL + default m if CONFIG_DEVEL + +endmenu |