This finishes refactor of splitting off net_config library name from net_app library, started inc60df1311,c89a06dbc. This commit makes sure that Kconfig options are prefixed with CONFIG_NET_CONFIG_ instead of CONFIG_NET_APP_, and propagates these changes thru the app configs in the tree. Also, minor dependency, etc. tweaks are made. Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
24 lines
494 B
Plaintext
24 lines
494 B
Plaintext
# General config
|
|
CONFIG_NEWLIB_LIBC=y
|
|
|
|
# Networking config
|
|
CONFIG_NETWORKING=y
|
|
CONFIG_NET_IPV4=y
|
|
CONFIG_NET_IPV6=n
|
|
CONFIG_NET_TCP=y
|
|
CONFIG_NET_SOCKETS=y
|
|
CONFIG_NET_SOCKETS_POSIX_NAMES=y
|
|
|
|
# Network driver config
|
|
CONFIG_TEST_RANDOM_GENERATOR=y
|
|
|
|
# Network address config
|
|
CONFIG_NET_CONFIG_SETTINGS=y
|
|
CONFIG_NET_CONFIG_NEED_IPV4=y
|
|
CONFIG_NET_CONFIG_MY_IPV4_ADDR="192.0.2.1"
|
|
CONFIG_NET_CONFIG_PEER_IPV4_ADDR="192.0.2.2"
|
|
|
|
# Network debug config
|
|
#CONFIG_NET_DEBUG_SOCKETS=y
|
|
CONFIG_SYS_LOG_NET_LEVEL=2
|