diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-02 22:09:37 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-02 22:09:37 +0000 |
commit | 9d4533ede123cf05eb66a00997ede9c64e579b4d (patch) | |
tree | b94af7c76d4f44472930795a9aff1f8339bc281f /networking | |
parent | dd539f76877000e333796da8f30ea760c080a69a (diff) | |
download | busybox-w32-9d4533ede123cf05eb66a00997ede9c64e579b4d.tar.gz busybox-w32-9d4533ede123cf05eb66a00997ede9c64e579b4d.tar.bz2 busybox-w32-9d4533ede123cf05eb66a00997ede9c64e579b4d.zip |
Fix kbuild bugs noticed by Bernhard Fischer <rep.nop@aon.at>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/Config.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/Config.in b/networking/Config.in index f9ea56488..3dfd80b3d 100644 --- a/networking/Config.in +++ b/networking/Config.in | |||
@@ -53,7 +53,7 @@ config FTPPUT | |||
53 | config FEATURE_FTPGETPUT_LONG_OPTIONS | 53 | config FEATURE_FTPGETPUT_LONG_OPTIONS |
54 | bool "Enable long options in ftpget/ftpput" | 54 | bool "Enable long options in ftpget/ftpput" |
55 | default n | 55 | default n |
56 | depends on GETOPT_LONG && (CONFIG_FTPGET || FTPPUT) | 56 | depends on GETOPT_LONG && (FTPGET || FTPPUT) |
57 | help | 57 | help |
58 | Support long options for the ftpget/ftpput applet. | 58 | Support long options for the ftpget/ftpput applet. |
59 | 59 | ||
@@ -239,20 +239,20 @@ config FEATURE_IFUPDOWN_IP_BUILTIN | |||
239 | help | 239 | help |
240 | Use the busybox iproute "ip" applet to implement "ifupdown". | 240 | Use the busybox iproute "ip" applet to implement "ifupdown". |
241 | 241 | ||
242 | If leave this disabled, you must install the full-blown iproute2 | 242 | If left disabled, you must install the full-blown iproute2 |
243 | utility or the "ifup" and "ifdown" applets will not work. | 243 | utility or the "ifup" and "ifdown" applets will not work. |
244 | 244 | ||
245 | config FEATURE_IFUPDOWN_IP_BUILTIN | 245 | config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN |
246 | bool "Use busybox ifconfig and route applets" | 246 | bool "Use busybox ifconfig and route applets" |
247 | default y | 247 | default y |
248 | depends on IFUPDOWN && !CONFIG_FEATURE_IFUPDOWN_IP | 248 | depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP |
249 | select IFCONFIG | 249 | select IFCONFIG |
250 | select ROUTE | 250 | select ROUTE |
251 | help | 251 | help |
252 | Use the busybox iproute "ifconfig" and "route" applets to | 252 | Use the busybox iproute "ifconfig" and "route" applets to |
253 | implement the "ifup" and "ifdown" utilities. | 253 | implement the "ifup" and "ifdown" utilities. |
254 | 254 | ||
255 | If leave this disabled, you must install the full-blown ifconfig | 255 | If left disabled, you must install the full-blown ifconfig |
256 | and route utilities, or the "ifup" and "ifdown" applets will not | 256 | and route utilities, or the "ifup" and "ifdown" applets will not |
257 | work. | 257 | work. |
258 | 258 | ||