diff --git a/netutils/netlib/netlib_getifstatus.c b/netutils/netlib/netlib_getifstatus.c index 2aab3d944..2fdbeb853 100644 --- a/netutils/netlib/netlib_getifstatus.c +++ b/netutils/netlib/netlib_getifstatus.c @@ -64,6 +64,12 @@ # define PF_INETX PF_INET #elif defined(CONFIG_NET_IPv6) # define PF_INETX PF_INET6 +#elif defined(CONFIG_NET_LOCAL) +# define PF_INETX PF_LOCAL +#elif defined(CONFIG_NET_PKT) +# define PF_INETX PF_PACKET +#elif defined(CONFIG_NET_USRSOCK) +# define PF_INETX PF_INET #endif /**************************************************************************** diff --git a/netutils/netlib/netlib_getmacaddr.c b/netutils/netlib/netlib_getmacaddr.c index 124ca6d6e..6f1fa5d26 100644 --- a/netutils/netlib/netlib_getmacaddr.c +++ b/netutils/netlib/netlib_getmacaddr.c @@ -1,7 +1,7 @@ /**************************************************************************** * netutils/netlib/netlib_getmacaddr.c * - * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. + * Copyright (C) 2007-2009, 2011, 2017 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -63,6 +63,10 @@ # define PF_INETX PF_INET #elif defined(CONFIG_NET_IPv6) # define PF_INETX PF_INET6 +#elif defined(CONFIG_NET_PKT) +# define PF_INETX PF_PACKET +#elif defined(CONFIG_NET_USRSOCK) +# define PF_INETX PF_INET #endif /**************************************************************************** diff --git a/netutils/netlib/netlib_setifstatus.c b/netutils/netlib/netlib_setifstatus.c index 5e4b775b2..48c9ad4e5 100644 --- a/netutils/netlib/netlib_setifstatus.c +++ b/netutils/netlib/netlib_setifstatus.c @@ -63,6 +63,12 @@ # define PF_INETX PF_INET #elif defined(CONFIG_NET_IPv6) # define PF_INETX PF_INET6 +#elif defined(CONFIG_NET_LOCAL) +# define PF_INETX PF_LOCAL +#elif defined(CONFIG_NET_PKT) +# define PF_INETX PF_PACKET +#elif defined(CONFIG_NET_USRSOCK) +# define PF_INETX PF_INET #endif /**************************************************************************** diff --git a/netutils/netlib/netlib_setmacaddr.c b/netutils/netlib/netlib_setmacaddr.c index d404c1af1..921e0847b 100644 --- a/netutils/netlib/netlib_setmacaddr.c +++ b/netutils/netlib/netlib_setmacaddr.c @@ -1,7 +1,7 @@ /**************************************************************************** * netutils/netlib/netlib_setmacaddr.c * - * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved. + * Copyright (C) 2007-2009, 2011-2012, 2017 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -66,6 +66,12 @@ #elif defined(CONFIG_NET_IPv6) # define PF_INETX PF_INET6 # define AF_INETX AF_INET6 +#elif defined(CONFIG_NET_PKT) +# define PF_INETX PF_PACKET +# define AF_INETX AF_PACKET +#elif defined(CONFIG_NET_USRSOCK) +# define PF_INETX PF_INET +# define AF_INETX AF_INET #endif /**************************************************************************** diff --git a/nshlib/nsh_netcmds.c b/nshlib/nsh_netcmds.c index 982173e1d..c2cc648f3 100644 --- a/nshlib/nsh_netcmds.c +++ b/nshlib/nsh_netcmds.c @@ -1096,6 +1096,13 @@ int cmd_ifconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv) } #endif +#if !defined(CONFIG_NET_IPv4) && !defined(CONFIG_NET_IPv6) + UNUSED(hostip); + UNUSED(mask); + UNUSED(gwip); + UNUSED(gip); +#endif + return OK; } #endif