diff options
| author | wdenk <wdenk> | 2004-08-02 21:11:11 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2004-08-02 21:11:11 +0000 | 
| commit | 68ceb29e7133a0f972f53d3d61fd61207374baec (patch) | |
| tree | aea2bf247ffeabcab9e908c152b316e269e2e5ee /include/net.h | |
| parent | 9aea95307fdb0ffe0d3a98a17ac73e5040c9756a (diff) | |
| download | olio-uboot-2014.01-68ceb29e7133a0f972f53d3d61fd61207374baec.tar.xz olio-uboot-2014.01-68ceb29e7133a0f972f53d3d61fd61207374baec.zip | |
Add support for console over UDP (compatible to Ingo Molnar's
netconsole patch under Linux)
Diffstat (limited to 'include/net.h')
| -rw-r--r-- | include/net.h | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/include/net.h b/include/net.h index 68f5fea3e..5a6b8083b 100644 --- a/include/net.h +++ b/include/net.h @@ -314,6 +314,7 @@ extern volatile uchar * NetRxPkt;		/* Current receive packet	*/  extern int		NetRxPktLen;		/* Current rx packet length	*/  extern unsigned		NetIPID;		/* IP ID (counting)		*/  extern uchar		NetBcastAddr[6];	/* Ethernet boardcast address	*/ +extern uchar		NetEtherNullAddr[6];  #define VLAN_NONE	4095			/* untagged 			*/  #define VLAN_IDMASK	0x0fff			/* mask of valid vlan id 	*/ @@ -334,7 +335,7 @@ extern int		NetState;		/* Network loop state		*/  extern int		NetRestartWrap;		/* Tried all network devices	*/  #endif -typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS, CDP } proto_t; +typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS, CDP, NETCONS } proto_t;  /* from net/net.c */  extern char	BootFile[128];			/* Boot File name		*/ |