summaryrefslogtreecommitdiff
path: root/zephyr/prj_base.conf
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-09-06 13:40:51 +1000
committerDamien George <damien.p.george@gmail.com>2017-09-06 13:40:51 +1000
commit01dd7804b87d60b2deab16712eccb3b97351a9b7 (patch)
tree1aa21f38a872b8e62a3d4e4f74f68033c6f827e4 /zephyr/prj_base.conf
parenta9862b30068fc9df1022f08019fb35aaa5085f64 (diff)
ports: Make new ports/ sub-directory and move all ports there.
This is to keep the top-level directory clean, to make it clear what is core and what is a port, and to allow the repository to grow with new ports in a sustainable way.
Diffstat (limited to 'zephyr/prj_base.conf')
-rw-r--r--zephyr/prj_base.conf42
1 files changed, 0 insertions, 42 deletions
diff --git a/zephyr/prj_base.conf b/zephyr/prj_base.conf
deleted file mode 100644
index c3ba2812f..000000000
--- a/zephyr/prj_base.conf
+++ /dev/null
@@ -1,42 +0,0 @@
-CONFIG_LEGACY_KERNEL=n
-CONFIG_REBOOT=y
-
-CONFIG_STDOUT_CONSOLE=y
-CONFIG_CONSOLE_HANDLER=y
-CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS=y
-CONFIG_NEWLIB_LIBC=y
-CONFIG_FLOAT=y
-CONFIG_MAIN_STACK_SIZE=4096
-
-# Networking config
-CONFIG_NETWORKING=y
-CONFIG_NET_IPV4=y
-CONFIG_NET_IPV6=y
-CONFIG_NET_UDP=y
-CONFIG_NET_TCP=y
-CONFIG_NET_SOCKETS=y
-CONFIG_TEST_RANDOM_GENERATOR=y
-CONFIG_NET_NBUF_RX_COUNT=5
-
-# DNS
-CONFIG_DNS_RESOLVER=y
-CONFIG_DNS_RESOLVER_ADDITIONAL_QUERIES=2
-CONFIG_DNS_SERVER_IP_ADDRESSES=y
-CONFIG_DNS_SERVER1="192.0.2.2"
-
-# Diagnostics and debugging
-
-# Required for zephyr.stack_analyze()
-CONFIG_INIT_STACKS=y
-
-# Required for usocket.pkt_get_info()
-CONFIG_NET_BUF_POOL_USAGE=y
-
-# Required for usocket.shell_*()
-#CONFIG_NET_SHELL=y
-
-# Uncomment to enable "INFO" level net_buf logging
-#CONFIG_NET_LOG=y
-#CONFIG_NET_DEBUG_NET_BUF=y
-# Change to 4 for "DEBUG" level
-#CONFIG_SYS_LOG_NET_LEVEL=3