Network: Various fixes for clean compile with both Ethernet and SLIP
This commit is contained in:
parent
34bb359447
commit
f9074a02ad
@ -95,14 +95,25 @@
|
|||||||
# error "You must not disable loadable modules via CONFIG_BINFMT_DISABLE in your configuration file"
|
# error "You must not disable loadable modules via CONFIG_BINFMT_DISABLE in your configuration file"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Ethernet specific configuration */
|
||||||
|
|
||||||
|
#ifdef CONFIG_NET_ETHERNET
|
||||||
|
|
||||||
|
/* Otherwise, use the standard Ethernet device name */
|
||||||
|
|
||||||
|
# define NET_DEVNAME "eth0"
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
/* No Ethernet -> No MAC address operations */
|
||||||
|
|
||||||
|
# undef CONFIG_EXAMPLES_THTTPD_NOMAC
|
||||||
|
#endif
|
||||||
|
|
||||||
/* SLIP-specific configuration */
|
/* SLIP-specific configuration */
|
||||||
|
|
||||||
#ifdef CONFIG_NET_SLIP
|
#ifdef CONFIG_NET_SLIP
|
||||||
|
|
||||||
/* No MAC address operations */
|
|
||||||
|
|
||||||
# undef CONFIG_EXAMPLES_THTTPD_NOMAC
|
|
||||||
|
|
||||||
/* TTY device to use */
|
/* TTY device to use */
|
||||||
|
|
||||||
# ifndef CONFIG_NET_SLIPTTY
|
# ifndef CONFIG_NET_SLIPTTY
|
||||||
@ -110,12 +121,10 @@
|
|||||||
# endif
|
# endif
|
||||||
|
|
||||||
# define SLIP_DEVNO 0
|
# define SLIP_DEVNO 0
|
||||||
|
|
||||||
|
# ifndef NET_DEVNAME
|
||||||
# define NET_DEVNAME "sl0"
|
# define NET_DEVNAME "sl0"
|
||||||
#else
|
# endif
|
||||||
|
|
||||||
/* Otherwise, use the standard ethernet device name */
|
|
||||||
|
|
||||||
# define NET_DEVNAME "eth0"
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Describe the ROMFS file system */
|
/* Describe the ROMFS file system */
|
||||||
|
@ -52,7 +52,7 @@ endif
|
|||||||
|
|
||||||
# No MAC address support for SLIP (Ethernet only)
|
# No MAC address support for SLIP (Ethernet only)
|
||||||
|
|
||||||
ifneq ($(CONFIG_NET_SLIP),y)
|
ifeq ($(CONFIG_NET_ETHERNET),y)
|
||||||
CSRCS += netlib_setmacaddr.c netlib_getmacaddr.c
|
CSRCS += netlib_setmacaddr.c netlib_getmacaddr.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -589,7 +589,7 @@ int cmd_ifconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|||||||
FAR char *gwip = NULL;
|
FAR char *gwip = NULL;
|
||||||
FAR char *mask = NULL;
|
FAR char *mask = NULL;
|
||||||
FAR char *tmp = NULL;
|
FAR char *tmp = NULL;
|
||||||
#ifndef CONFIG_NET_SLIP
|
#ifdef CONFIG_NET_ETHERNET
|
||||||
FAR char *hw = NULL;
|
FAR char *hw = NULL;
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_NSH_DHCPC) || defined(CONFIG_NSH_DNS)
|
#if defined(CONFIG_NSH_DHCPC) || defined(CONFIG_NSH_DNS)
|
||||||
@ -661,7 +661,7 @@ int cmd_ifconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef CONFIG_NET_SLIP
|
#ifdef CONFIG_NET_ETHERNET
|
||||||
/* REVISIT: How will we handle Ethernet and SLIP networks together? */
|
/* REVISIT: How will we handle Ethernet and SLIP networks together? */
|
||||||
|
|
||||||
else if (!strcmp(tmp, "hw"))
|
else if (!strcmp(tmp, "hw"))
|
||||||
@ -703,7 +703,7 @@ int cmd_ifconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef CONFIG_NET_SLIP
|
#ifdef CONFIG_NET_ETHERNET
|
||||||
/* Set Hardware Ethernet MAC address */
|
/* Set Hardware Ethernet MAC address */
|
||||||
/* REVISIT: How will we handle Ethernet and SLIP networks together? */
|
/* REVISIT: How will we handle Ethernet and SLIP networks together? */
|
||||||
|
|
||||||
|
@ -92,13 +92,23 @@
|
|||||||
* mixed transports.
|
* mixed transports.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef CONFIG_NET_SLIP
|
#ifdef CONFIG_NET_MULILINK
|
||||||
|
# warning REVISIT: CONFIG_NET_MULILINK multilink support incomplete
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* If both SLIP and Ethernet interfaces are present, only the Ethernet
|
||||||
|
* interface will be initialized.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if defined(CONFIG_NET_ETHERNET)
|
||||||
|
# define NET_DEVNAME "eth0"
|
||||||
|
#elif defined(CONFIG_NET_SLIP)
|
||||||
# define NET_DEVNAME "sl0"
|
# define NET_DEVNAME "sl0"
|
||||||
# ifndef CONFIG_NSH_NOMAC
|
# ifndef CONFIG_NSH_NOMAC
|
||||||
# error "CONFIG_NSH_NOMAC must be defined for SLIP"
|
# error "CONFIG_NSH_NOMAC must be defined for SLIP"
|
||||||
# endif
|
# endif
|
||||||
#else
|
#else
|
||||||
# define NET_DEVNAME "eth0"
|
# error ERROR: No link layer protocol defined
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* While the network is up, the network monitor really does nothing. It
|
/* While the network is up, the network monitor really does nothing. It
|
||||||
@ -143,7 +153,8 @@ static void nsh_netinit_configure(void)
|
|||||||
#if defined(CONFIG_NSH_DHCPC)
|
#if defined(CONFIG_NSH_DHCPC)
|
||||||
FAR void *handle;
|
FAR void *handle;
|
||||||
#endif
|
#endif
|
||||||
#if (defined(CONFIG_NSH_DHCPC) || defined(CONFIG_NSH_NOMAC)) && !defined(CONFIG_NET_SLIP)
|
#if (defined(CONFIG_NSH_DHCPC) || defined(CONFIG_NSH_NOMAC)) && \
|
||||||
|
defined(CONFIG_NET_ETHERNET)
|
||||||
uint8_t mac[IFHWADDRLEN];
|
uint8_t mac[IFHWADDRLEN];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -151,7 +162,7 @@ static void nsh_netinit_configure(void)
|
|||||||
|
|
||||||
/* Many embedded network interfaces must have a software assigned MAC */
|
/* Many embedded network interfaces must have a software assigned MAC */
|
||||||
|
|
||||||
#if defined(CONFIG_NSH_NOMAC) && !defined(CONFIG_NET_SLIP)
|
#if defined(CONFIG_NSH_NOMAC) && defined(CONFIG_NET_ETHERNET)
|
||||||
#ifdef CONFIG_NSH_ARCHMAC
|
#ifdef CONFIG_NSH_ARCHMAC
|
||||||
/* Let platform-specific logic assign the MAC address. */
|
/* Let platform-specific logic assign the MAC address. */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user