diff options
author | Mike Baker <mbm@openwrt.org> | 2005-03-06 03:34:52 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2005-03-06 03:34:52 +0000 |
commit | 6b93231c4f64a61103dfc16acebedd18b4c25171 (patch) | |
tree | aad933069e7dedf29eb70dbfd81e9ca95d9b578f /openwrt/package/Sysconf.in | |
parent | 14e0fec336fca0766605968fe9dd7eef2448736f (diff) | |
download | mtk-20170518-6b93231c4f64a61103dfc16acebedd18b4c25171.zip mtk-20170518-6b93231c4f64a61103dfc16acebedd18b4c25171.tar.gz mtk-20170518-6b93231c4f64a61103dfc16acebedd18b4c25171.tar.bz2 |
nbd's makefile/menuconfig rewrite
SVN-Revision: 307
Diffstat (limited to 'openwrt/package/Sysconf.in')
-rw-r--r-- | openwrt/package/Sysconf.in | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/openwrt/package/Sysconf.in b/openwrt/package/Sysconf.in new file mode 100644 index 0000000..647e292 --- /dev/null +++ b/openwrt/package/Sysconf.in @@ -0,0 +1,31 @@ +# + +menu "Runtime Configuration" + choice + bool "Telnet access" + default BR2_SYSCONF_TELNET_OPEN + + config BR2_SYSCONF_TELNET_FAILSAFE_ONLY + bool "open, failsafe only" + + config BR2_SYSCONF_TELNET_OPEN + bool "open" + + endchoice + + menu "Failsafe configuration" + + config BR2_SYSCONF_FAILSAFE_IP + string "IP Address" + default "192.168.1.1" + + config BR2_SYSCONF_FAILSAFE_NETMASK + string "Netmask" + default "255.255.255.0" + + config BR2_SYSCONF_FAILSAFE_MAC + string "MAC Address" + default "00:00:BA:DC:0D:ED" + + endmenu +endmenu |