diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2020-09-17 07:08:04 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2020-09-17 07:08:04 +0200 |
commit | cb21a6af17142ce7fdceaeb3ef35cfd5fba69109 (patch) | |
tree | 1ec36e15bf25e28ebc8a35e4e5580336f94c0cdb /package/busybox/config/networking | |
parent | fd7056d4d7972e7374043a45140ba1093ac238bf (diff) |
busybox: add missing symbols for noMMU case
Diffstat (limited to 'package/busybox/config/networking')
-rw-r--r-- | package/busybox/config/networking/Config.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/busybox/config/networking/Config.in b/package/busybox/config/networking/Config.in index be486d361..8ef4edf92 100644 --- a/package/busybox/config/networking/Config.in +++ b/package/busybox/config/networking/Config.in @@ -57,15 +57,15 @@ config BUSYBOX_NETCAT config BUSYBOX_NC_SERVER bool "Netcat server options (-l)" - default y - depends on BUSYBOX_NC + default n + depends on BUSYBOX_NC || BUSYBOX_NETCAT help Allow netcat to act as a server. config BUSYBOX_NC_EXTRA bool "Netcat extensions (-eiw and filename)" default y - depends on BUSYBOX_NC + depends on BUSYBOX_NC || BUSYBOX_NETCAT help Add -e (support for executing the rest of the command line after making or receiving a successful connection), -i (delay interval for @@ -74,7 +74,7 @@ config BUSYBOX_NC_EXTRA config BUSYBOX_NC_110_COMPAT bool "Netcat 1.10 compatibility (+2.5k)" default n # off specially for Rob - depends on BUSYBOX_NC + depends on BUSYBOX_NC || BUSYBOX_NETCAT help This option makes nc closely follow original nc-1.10. The code is about 2.5k bigger. It enables |