Add NSH addroute and delroute commands

This commit is contained in:
Gregory Nutt 2013-10-05 15:42:20 -06:00
parent 0e447ff9b5
commit 63b6d3bde3
3 changed files with 2 additions and 4 deletions

View File

@ -440,5 +440,3 @@ endif
comment "System Logging Device Options"
source drivers/syslog/Kconfig

View File

@ -68,8 +68,7 @@ config NET_SOCKOPTS
config NET_BUFSIZE
int "Network packet size"
default 562 if !NET_TCP && NET_UDP && !NET_SLIP
default 420 if NET_TCP && !NET_UDP && !NET_SLIP
default 562 if !NET_SLIP
default 296 if NET_SLIP
---help---
uIP buffer size. Default: 562

View File

@ -41,6 +41,7 @@
#include <stdint.h>
#include <errno.h>
#include <assert.h>
#include <arch/irq.h>