net: Remove all references to CONFIG_ETHADDR and friends

We really don't want boards defining fixed MAC addresses in their config
so we just remove the option to set it in a fixed way. If you must have
a MAC address that was not provisioned, then use the random MAC address
functionality.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Joe Hershberger 2015-05-04 14:55:14 -05:00
parent bef1014b31
commit 92ac520821
82 changed files with 13 additions and 317 deletions

16
README
View file

@ -2107,18 +2107,6 @@ CBFS (Coreboot Filesystem) support
Some PHY like Intel LXT971A need extra delay after Some PHY like Intel LXT971A need extra delay after
command issued before MII status register can be read command issued before MII status register can be read
- Ethernet address:
CONFIG_ETHADDR
CONFIG_ETH1ADDR
CONFIG_ETH2ADDR
CONFIG_ETH3ADDR
CONFIG_ETH4ADDR
CONFIG_ETH5ADDR
Define a default value for Ethernet address to use
for the respective Ethernet interface, in case this
is not determined automatically.
- IP address: - IP address:
CONFIG_IPADDR CONFIG_IPADDR
@ -2873,8 +2861,8 @@ CBFS (Coreboot Filesystem) support
completely disabled. Anybody can change or delete completely disabled. Anybody can change or delete
these parameters. these parameters.
Alternatively, if you #define _both_ CONFIG_ETHADDR Alternatively, if you define _both_ an ethaddr in the
_and_ CONFIG_OVERWRITE_ETHADDR_ONCE, a default default env _and_ CONFIG_OVERWRITE_ETHADDR_ONCE, a default
Ethernet address is installed in the environment, Ethernet address is installed in the environment,
which can be changed exactly ONCE by the user. [The which can be changed exactly ONCE by the user. [The
serial# is unaffected by this, i. e. it remains serial# is unaffected by this, i. e. it remains

View file

@ -15,7 +15,7 @@ Here are the places where MAC addresses might be stored:
- board-specific location (eeprom, dedicated flash, ...) - board-specific location (eeprom, dedicated flash, ...)
Note: only used when mandatory due to hardware design etc... Note: only used when mandatory due to hardware design etc...
- environment ("ethaddr", "eth1addr", ...) (see CONFIG_ETHADDR) - environment ("ethaddr", "eth1addr", ...)
Note: this is the preferred way to permanently store MAC addresses Note: this is the preferred way to permanently store MAC addresses
- ethernet data (struct eth_device -> enetaddr) - ethernet data (struct eth_device -> enetaddr)

View file

@ -12,6 +12,7 @@
#include <common.h> #include <common.h>
#include <command.h> #include <command.h>
#include <errno.h>
#include <net.h> #include <net.h>
#include <netdev.h> #include <netdev.h>
#include <malloc.h> #include <malloc.h>
@ -653,13 +654,8 @@ int greth_initialize(bd_t * bis)
} }
} }
} else { } else {
/* HW Address not found in environment, Set default HW address */ /* No ethaddr set */
addr[0] = GRETH_HWADDR_0; /* MSB */ return -EINVAL;
addr[1] = GRETH_HWADDR_1;
addr[2] = GRETH_HWADDR_2;
addr[3] = GRETH_HWADDR_3;
addr[4] = GRETH_HWADDR_4;
addr[5] = GRETH_HWADDR_5; /* LSB */
} }
/* set and remember MAC address */ /* set and remember MAC address */

View file

@ -725,12 +725,6 @@ static int smc_get_ethaddr(bd_t *bd, struct eth_device *dev)
static int get_rom_mac(struct eth_device *dev, unsigned char *v_rom_mac) static int get_rom_mac(struct eth_device *dev, unsigned char *v_rom_mac)
{ {
#ifdef HARDCODE_MAC /* used for testing or to supress run time warnings */
char hw_mac_addr[] = { 0x02, 0x80, 0xad, 0x20, 0x31, 0xb8 };
memcpy (v_rom_mac, hw_mac_addr, 6);
return (1);
#else
int i; int i;
SMC_SELECT_BANK(dev, 1); SMC_SELECT_BANK(dev, 1);
for (i=0; i<6; i++) for (i=0; i<6; i++)
@ -738,7 +732,6 @@ static int get_rom_mac(struct eth_device *dev, unsigned char *v_rom_mac)
v_rom_mac[i] = SMC_inb(dev, LAN91C96_IA0 + i); v_rom_mac[i] = SMC_inb(dev, LAN91C96_IA0 + i);
} }
return (1); return (1);
#endif
} }
/* Structure to detect the device IDs */ /* Structure to detect the device IDs */

View file

@ -27,29 +27,6 @@ To find out who has a MAC address, or to purchase MAC addresses, goto
the IEEE, at: the IEEE, at:
http://standards.ieee.org/regauth/oui/index.shtml http://standards.ieee.org/regauth/oui/index.shtml
To change your MAC address, there can not be a MAC address predefined in
U-Boot. To ensure that this does not occur, check your
include/configs/<board_name>.h file, and check to see that the following
settings are _not_ or commented out there.
#define HARDCODE_MAC 1
#define CONFIG_ETHADDR 02:80:ad:20:31:b8
The purpose of HARDCODE_MAC is to hardcode the MAC address in software,
(not what we want), or to preset it to 02:80:ad:20:31:b8 (not what we
want either).
You can check this in a running U-Boot, by doing a power cycle, then
before U-Boot tries to do any networking, running the 'printenv' command
BOOT> printenv
ethaddr=02:80:ad:20:31:b8
If you see the 'ethaddr' variable show up, like the above, you need to
recompile U-Boot, with the above settings commented out of the
include/configs/<board_name>.h file.
2. Running the smc91111_eeprom program 2. Running the smc91111_eeprom program
--------------------------------------------------------------------- ---------------------------------------------------------------------

View file

@ -74,12 +74,10 @@
#define CONFIG_UDP_CHECKSUM #define CONFIG_UDP_CHECKSUM
#ifdef CONFIG_MCFFEC #ifdef CONFIG_MCFFEC
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
#endif /* CONFIG_MCFFEC */ #endif /* CONFIG_MCFFEC */
#define CONFIG_HOSTNAME M5208EVBe #define CONFIG_HOSTNAME M5208EVBe

View file

@ -95,12 +95,10 @@
#define CONFIG_BOOTDELAY 1 /* autoboot after 5 seconds */ #define CONFIG_BOOTDELAY 1 /* autoboot after 5 seconds */
#define CONFIG_BOOTFILE "u-boot.bin" #define CONFIG_BOOTFILE "u-boot.bin"
#ifdef CONFIG_MCFFEC #ifdef CONFIG_MCFFEC
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
#endif /* FEC_ENET */ #endif /* FEC_ENET */
#define CONFIG_HOSTNAME M5235EVB #define CONFIG_HOSTNAME M5235EVB

View file

@ -94,12 +94,10 @@
#endif #endif
#ifdef CONFIG_MCFFEC #ifdef CONFIG_MCFFEC
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
#endif /* CONFIG_MCFFEC */ #endif /* CONFIG_MCFFEC */
#define CONFIG_HOSTNAME M5272C3 #define CONFIG_HOSTNAME M5272C3

View file

@ -80,12 +80,10 @@
#define CONFIG_BOOTDELAY 5 #define CONFIG_BOOTDELAY 5
#ifdef CONFIG_MCFFEC #ifdef CONFIG_MCFFEC
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
#endif /* CONFIG_MCFFEC */ #endif /* CONFIG_MCFFEC */
#define CONFIG_HOSTNAME M5282EVB #define CONFIG_HOSTNAME M5282EVB

View file

@ -94,13 +94,10 @@
#define CONFIG_UDP_CHECKSUM #define CONFIG_UDP_CHECKSUM
#ifdef CONFIG_MCFFEC #ifdef CONFIG_MCFFEC
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_ETH1ADDR 00:e0:0c:bc:e5:61
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
#endif /* FEC_ENET */ #endif /* FEC_ENET */
#define CONFIG_HOSTNAME M53017 #define CONFIG_HOSTNAME M53017

View file

@ -88,12 +88,10 @@
#define CONFIG_UDP_CHECKSUM #define CONFIG_UDP_CHECKSUM
#ifdef CONFIG_MCFFEC #ifdef CONFIG_MCFFEC
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
#endif /* FEC_ENET */ #endif /* FEC_ENET */
#define CONFIG_HOSTNAME M5329EVB #define CONFIG_HOSTNAME M5329EVB

View file

@ -88,12 +88,10 @@
#define CONFIG_UDP_CHECKSUM #define CONFIG_UDP_CHECKSUM
#ifdef CONFIG_MCFFEC #ifdef CONFIG_MCFFEC
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
#endif /* FEC_ENET */ #endif /* FEC_ENET */
#define CONFIG_HOSTNAME M5373EVB #define CONFIG_HOSTNAME M5373EVB

View file

@ -113,15 +113,12 @@
"::eth0:off:rw console=ttyS0,115200" "::eth0:off:rw console=ttyS0,115200"
#endif #endif
#define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
#define CONFIG_ETH1ADDR 00:e0:0c:bc:e5:61
#define CONFIG_ETHPRIME "FEC0" #define CONFIG_ETHPRIME "FEC0"
#define CONFIG_IPADDR 192.168.1.2 #define CONFIG_IPADDR 192.168.1.2
#define CONFIG_NETMASK 255.255.255.0 #define CONFIG_NETMASK 255.255.255.0
#define CONFIG_SERVERIP 192.168.1.1 #define CONFIG_SERVERIP 192.168.1.1
#define CONFIG_GATEWAYIP 192.168.1.1 #define CONFIG_GATEWAYIP 192.168.1.1
#define CONFIG_OVERWRITE_ETHADDR_ONCE
#define CONFIG_SYS_FEC_BUF_USE_SRAM #define CONFIG_SYS_FEC_BUF_USE_SRAM
/* If CONFIG_SYS_DISCOVER_PHY is not defined - hardcoded */ /* If CONFIG_SYS_DISCOVER_PHY is not defined - hardcoded */
#ifndef CONFIG_SYS_DISCOVER_PHY #ifndef CONFIG_SYS_DISCOVER_PHY

View file

@ -77,13 +77,11 @@
# define CONFIG_BOOTDELAY 1 /* autoboot after 5 seconds */ # define CONFIG_BOOTDELAY 1 /* autoboot after 5 seconds */
# define CONFIG_BOOTARGS "root=/dev/mtdblock1 rw rootfstype=jffs2 ip=none mtdparts=physmap-flash.0:2M(kernel)ro,-(jffs2)" # define CONFIG_BOOTARGS "root=/dev/mtdblock1 rw rootfstype=jffs2 ip=none mtdparts=physmap-flash.0:2M(kernel)ro,-(jffs2)"
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_ETHPRIME "FEC0" # define CONFIG_ETHPRIME "FEC0"
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
/* If CONFIG_SYS_DISCOVER_PHY is not defined - hardcoded */ /* If CONFIG_SYS_DISCOVER_PHY is not defined - hardcoded */
# ifndef CONFIG_SYS_DISCOVER_PHY # ifndef CONFIG_SYS_DISCOVER_PHY

View file

@ -83,14 +83,11 @@
# define CONFIG_BOOTDELAY 1 /* autoboot after 5 seconds */ # define CONFIG_BOOTDELAY 1 /* autoboot after 5 seconds */
# define CONFIG_BOOTARGS "root=/dev/mtdblock1 rw rootfstype=jffs2 ip=none mtdparts=physmap-flash.0:5M(kernel)ro,-(jffs2)" # define CONFIG_BOOTARGS "root=/dev/mtdblock1 rw rootfstype=jffs2 ip=none mtdparts=physmap-flash.0:5M(kernel)ro,-(jffs2)"
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_ETH1ADDR 00:e0:0c:bc:e5:61
# define CONFIG_ETHPRIME "FEC0" # define CONFIG_ETHPRIME "FEC0"
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
/* If CONFIG_SYS_DISCOVER_PHY is not defined - hardcoded */ /* If CONFIG_SYS_DISCOVER_PHY is not defined - hardcoded */
# ifndef CONFIG_SYS_DISCOVER_PHY # ifndef CONFIG_SYS_DISCOVER_PHY

View file

@ -75,13 +75,10 @@
# endif # endif
# endif /* CONFIG_SYS_DISCOVER_PHY */ # endif /* CONFIG_SYS_DISCOVER_PHY */
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_ETH1ADDR 00:e0:0c:bc:e5:61
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
#endif #endif
@ -135,12 +132,10 @@
#define CONFIG_UDP_CHECKSUM #define CONFIG_UDP_CHECKSUM
#ifdef CONFIG_MCFFEC #ifdef CONFIG_MCFFEC
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
#endif /* FEC_ENET */ #endif /* FEC_ENET */
#define CONFIG_HOSTNAME M547xEVB #define CONFIG_HOSTNAME M547xEVB

View file

@ -75,13 +75,10 @@
# endif # endif
# endif /* CONFIG_SYS_DISCOVER_PHY */ # endif /* CONFIG_SYS_DISCOVER_PHY */
# define CONFIG_ETHADDR 00:e0:0c:bc:e5:60
# define CONFIG_ETH1ADDR 00:e0:0c:bc:e5:61
# define CONFIG_IPADDR 192.162.1.2 # define CONFIG_IPADDR 192.162.1.2
# define CONFIG_NETMASK 255.255.255.0 # define CONFIG_NETMASK 255.255.255.0
# define CONFIG_SERVERIP 192.162.1.1 # define CONFIG_SERVERIP 192.162.1.1
# define CONFIG_GATEWAYIP 192.162.1.1 # define CONFIG_GATEWAYIP 192.162.1.1
# define CONFIG_OVERWRITE_ETHADDR_ONCE
#endif #endif

View file

@ -720,13 +720,9 @@
/* The mac addresses for all ethernet interface */ /* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET) #if defined(CONFIG_TSEC_ENET)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:E0:0C:02:00:FD
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:E0:0C:02:01:FD
#define CONFIG_HAS_ETH2 #define CONFIG_HAS_ETH2
#define CONFIG_ETH2ADDR 00:E0:0C:02:02:FD
#define CONFIG_HAS_ETH3 #define CONFIG_HAS_ETH3
#define CONFIG_ETH3ADDR 00:E0:0C:02:03:FD
#endif #endif
#define CONFIG_IPADDR 192.168.1.254 #define CONFIG_IPADDR 192.168.1.254

View file

@ -12,7 +12,7 @@
* Please refer to doc/README.mpc85xx for more info. * Please refer to doc/README.mpc85xx for more info.
* *
* Make sure you change the MAC address and other network params first, * Make sure you change the MAC address and other network params first,
* search for CONFIG_ETHADDR, CONFIG_SERVERIP, etc in this file. * search for CONFIG_SERVERIP, etc in this file.
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -406,11 +406,8 @@
/* The mac addresses for all ethernet interface */ /* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET) #if defined(CONFIG_TSEC_ENET)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:E0:0C:00:00:FD
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:E0:0C:00:01:FD
#define CONFIG_HAS_ETH2 #define CONFIG_HAS_ETH2
#define CONFIG_ETH2ADDR 00:E0:0C:00:02:FD
#endif #endif
#define CONFIG_IPADDR 192.168.1.253 #define CONFIG_IPADDR 192.168.1.253

View file

@ -418,11 +418,8 @@ extern unsigned long get_clock_freq(void);
/* The mac addresses for all ethernet interface */ /* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET) #if defined(CONFIG_TSEC_ENET)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:E0:0C:00:00:FD
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:E0:0C:00:01:FD
#define CONFIG_HAS_ETH2 #define CONFIG_HAS_ETH2
#define CONFIG_ETH2ADDR 00:E0:0C:00:02:FD
#endif #endif
#define CONFIG_IPADDR 192.168.1.253 #define CONFIG_IPADDR 192.168.1.253

View file

@ -449,9 +449,7 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);
/* The mac addresses for all ethernet interface */ /* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET) #if defined(CONFIG_TSEC_ENET)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:E0:0C:02:00:FD
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:E0:0C:02:01:FD
#endif #endif
#define CONFIG_IPADDR 192.168.1.251 #define CONFIG_IPADDR 192.168.1.251

View file

@ -539,17 +539,11 @@ extern unsigned long get_clock_freq(void);
/* /*
* Environment Configuration * Environment Configuration
*/ */
/* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET) #if defined(CONFIG_TSEC_ENET)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:E0:0C:00:00:FD
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:E0:0C:00:01:FD
#define CONFIG_HAS_ETH2 #define CONFIG_HAS_ETH2
#define CONFIG_ETH2ADDR 00:E0:0C:00:02:FD
#define CONFIG_HAS_ETH3 #define CONFIG_HAS_ETH3
#define CONFIG_ETH3ADDR 00:E0:0C:00:03:FD
#endif #endif
#define CONFIG_IPADDR 192.168.1.253 #define CONFIG_IPADDR 192.168.1.253

View file

@ -412,15 +412,10 @@ extern unsigned long get_clock_freq(void);
/* /*
* Environment Configuration * Environment Configuration
*/ */
/* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET) #if defined(CONFIG_TSEC_ENET)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:E0:0C:00:00:FD
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:E0:0C:00:01:FD
#define CONFIG_HAS_ETH2 #define CONFIG_HAS_ETH2
#define CONFIG_ETH2ADDR 00:E0:0C:00:02:FD
#endif #endif
#define CONFIG_IPADDR 192.168.1.253 #define CONFIG_IPADDR 192.168.1.253

View file

@ -12,7 +12,7 @@
* Please refer to doc/README.mpc85xx for more info. * Please refer to doc/README.mpc85xx for more info.
* *
* Make sure you change the MAC address and other network params first, * Make sure you change the MAC address and other network params first,
* search for CONFIG_ETHADDR, CONFIG_SERVERIP, etc in this file. * search for CONFIG_SERVERIP, etc. in this file.
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -443,17 +443,11 @@
/* /*
* Environment Configuration * Environment Configuration
*/ */
/* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET) || defined(CONFIG_ETHER_ON_FCC) #if defined(CONFIG_TSEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:E0:0C:00:00:FD
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:E0:0C:00:01:FD
#define CONFIG_HAS_ETH2 #define CONFIG_HAS_ETH2
#define CONFIG_ETH2ADDR 00:E0:0C:00:02:FD
#define CONFIG_HAS_ETH3 #define CONFIG_HAS_ETH3
#define CONFIG_ETH3ADDR 00:E0:0C:00:03:FD
#endif #endif
#define CONFIG_IPADDR 192.168.1.253 #define CONFIG_IPADDR 192.168.1.253

View file

@ -438,13 +438,9 @@ extern unsigned long get_clock_freq(void);
/* The mac addresses for all ethernet interface */ /* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET) || defined(CONFIG_UEC_ETH) #if defined(CONFIG_TSEC_ENET) || defined(CONFIG_UEC_ETH)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:E0:0C:00:00:FD
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:E0:0C:00:01:FD
#define CONFIG_HAS_ETH2 #define CONFIG_HAS_ETH2
#define CONFIG_ETH2ADDR 00:E0:0C:00:02:FD
#define CONFIG_HAS_ETH3 #define CONFIG_HAS_ETH3
#define CONFIG_ETH3ADDR 00:E0:0C:00:03:FD
#endif #endif
#define CONFIG_IPADDR 192.168.1.253 #define CONFIG_IPADDR 192.168.1.253

View file

@ -658,17 +658,11 @@
/* /*
* Environment Configuration * Environment Configuration
*/ */
/* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET) #if defined(CONFIG_TSEC_ENET)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:E0:0C:02:00:FD
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:E0:0C:02:01:FD
#define CONFIG_HAS_ETH2 #define CONFIG_HAS_ETH2
#define CONFIG_ETH2ADDR 00:E0:0C:02:02:FD
#define CONFIG_HAS_ETH3 #define CONFIG_HAS_ETH3
#define CONFIG_ETH3ADDR 00:E0:0C:02:03:FD
#endif #endif
#define CONFIG_IPADDR 192.168.1.254 #define CONFIG_IPADDR 192.168.1.254

View file

@ -300,7 +300,6 @@
#define CONFIG_ULI526X #define CONFIG_ULI526X
#ifdef CONFIG_ULI526X #ifdef CONFIG_ULI526X
#define CONFIG_ETHADDR 00:E0:0C:00:00:01
#endif #endif
/************************************************************ /************************************************************

View file

@ -10,7 +10,7 @@
* MPC8641HPCN board configuration file * MPC8641HPCN board configuration file
* *
* Make sure you change the MAC address and other network params first, * Make sure you change the MAC address and other network params first,
* search for CONFIG_ETHADDR, CONFIG_SERVERIP, etc in this file. * search for CONFIG_SERVERIP, etc. in this file.
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -679,14 +679,6 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);
* Environment Configuration * Environment Configuration
*/ */
/* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET)
#define CONFIG_ETHADDR 00:E0:0C:00:00:01
#define CONFIG_ETH1ADDR 00:E0:0C:00:01:FD
#define CONFIG_ETH2ADDR 00:E0:0C:00:02:FD
#define CONFIG_ETH3ADDR 00:E0:0C:00:03:FD
#endif
#define CONFIG_HAS_ETH0 1 #define CONFIG_HAS_ETH0 1
#define CONFIG_HAS_ETH1 1 #define CONFIG_HAS_ETH1 1
#define CONFIG_HAS_ETH2 1 #define CONFIG_HAS_ETH2 1

View file

@ -165,7 +165,6 @@
"setenv bootargs ${bootargs} no_ethaddr;" \ "setenv bootargs ${bootargs} no_ethaddr;" \
"fi\0" \ "fi\0" \
"hostname=CPUP0\0" \ "hostname=CPUP0\0" \
"ethaddr=00:00:00:00:00:00\0" \
"netdev=eth0\0" \ "netdev=eth0\0" \
"bootcmd=run bootcmd_nor\0" \ "bootcmd=run bootcmd_nor\0" \
"" ""

View file

@ -73,8 +73,6 @@
#define CONFIG_GATEWAYIP 192.168.233.1 #define CONFIG_GATEWAYIP 192.168.233.1
#define CONFIG_SERVERIP 192.168.233.53 #define CONFIG_SERVERIP 192.168.233.53
#define CONFIG_ROOTPATH "/romfs/brettl2" #define CONFIG_ROOTPATH "/romfs/brettl2"
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
#endif #endif

View file

@ -87,8 +87,6 @@
#endif #endif
#define CONFIG_HOSTNAME bf518f-ezbrd #define CONFIG_HOSTNAME bf518f-ezbrd
#define CONFIG_PHY_ADDR 3 #define CONFIG_PHY_ADDR 3
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -85,8 +85,6 @@
#define CONFIG_NETCONSOLE 1 #define CONFIG_NETCONSOLE 1
#endif #endif
#define CONFIG_HOSTNAME bf526-ezbrd #define CONFIG_HOSTNAME bf526-ezbrd
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -83,8 +83,6 @@
#define CONFIG_NETCONSOLE 1 #define CONFIG_NETCONSOLE 1
#endif #endif
#define CONFIG_HOSTNAME bf527-ezkit #define CONFIG_HOSTNAME bf527-ezkit
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -75,8 +75,6 @@
SSYNC(); \ SSYNC(); \
} while (0) } while (0)
#define CONFIG_HOSTNAME bf533-ezkit #define CONFIG_HOSTNAME bf533-ezkit
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
/* /*

View file

@ -68,8 +68,6 @@
SSYNC(); \ SSYNC(); \
} while (0) } while (0)
#define CONFIG_HOSTNAME bf533-stamp #define CONFIG_HOSTNAME bf533-stamp
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:b8 */
/* I2C */ /* I2C */

View file

@ -86,8 +86,6 @@
#define CONFIG_SYS_AUTOLOAD "no" #define CONFIG_SYS_AUTOLOAD "no"
#define CONFIG_ROOTPATH "/romfs" #define CONFIG_ROOTPATH "/romfs"
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:42 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND

View file

@ -65,8 +65,6 @@
#define CONFIG_RMII #define CONFIG_RMII
#endif #endif
#define CONFIG_HOSTNAME bf537-pnav #define CONFIG_HOSTNAME bf537-pnav
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:24:21:18 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -86,8 +86,6 @@
#define CONFIG_SYS_AUTOLOAD "no" #define CONFIG_SYS_AUTOLOAD "no"
#define CONFIG_ROOTPATH "/romfs" #define CONFIG_ROOTPATH "/romfs"
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:42 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -65,8 +65,6 @@
#define CONFIG_NETCONSOLE 1 #define CONFIG_NETCONSOLE 1
#endif #endif
#define CONFIG_HOSTNAME bf537-stamp #define CONFIG_HOSTNAME bf537-stamp
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -63,8 +63,6 @@
#define CONFIG_SMC91111 1 #define CONFIG_SMC91111 1
#define CONFIG_SMC91111_BASE 0x20310300 #define CONFIG_SMC91111_BASE 0x20310300
#define CONFIG_HOSTNAME bf538f-ezkit #define CONFIG_HOSTNAME bf538f-ezkit
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
/* /*

View file

@ -73,8 +73,6 @@
#define CONFIG_SMC911X_BASE 0x24000000 #define CONFIG_SMC911X_BASE 0x24000000
#define CONFIG_SMC911X_16_BIT #define CONFIG_SMC911X_16_BIT
#define CONFIG_HOSTNAME bf548-ezkit #define CONFIG_HOSTNAME bf548-ezkit
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
/* /*

View file

@ -92,9 +92,6 @@
#define CONFIG_HOSTNAME bf561-acvilon #define CONFIG_HOSTNAME bf561-acvilon
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
/* /*
* Flash Settings * Flash Settings

View file

@ -64,8 +64,6 @@
#define CONFIG_SMC91111_BASE 0x2C010300 #define CONFIG_SMC91111_BASE 0x2C010300
#define CONFIG_SMC_USE_32_BIT 1 #define CONFIG_SMC_USE_32_BIT 1
#define CONFIG_HOSTNAME bf561-ezkit #define CONFIG_HOSTNAME bf561-ezkit
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
/* /*

View file

@ -76,9 +76,6 @@
#define CONFIG_HOSTNAME blackstamp #define CONFIG_HOSTNAME blackstamp
#define CONFIG_ROOTPATH "/checkout/uClinux-dist/romfs" #define CONFIG_ROOTPATH "/checkout/uClinux-dist/romfs"
#define CONFIG_SYS_AUTOLOAD "no" #define CONFIG_SYS_AUTOLOAD "no"
/* To remove hardcoding and enable MAC storage in EEPROM */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:b8 */
#endif #endif
#define CONFIG_ENV_IS_IN_SPI_FLASH #define CONFIG_ENV_IS_IN_SPI_FLASH

View file

@ -85,9 +85,6 @@
#define CFG_AUTOLOAD "no" #define CFG_AUTOLOAD "no"
#define CONFIG_CMD_DHCP #define CONFIG_CMD_DHCP
#define CONFIG_CMD_PING #define CONFIG_CMD_PING
#define CONFIG_ENV_OVERWRITE 1 /* enable changing MAC at runtime */
/* Comment out hardcoded MAC to enable MAC storage in EEPROM */
/* # define CONFIG_ETHADDR ff:ee:dd:cc:bb:aa */
/* /*
* SDRAM settings & memory map * SDRAM settings & memory map

View file

@ -69,9 +69,6 @@
#endif #endif
#define CONFIG_HOSTNAME br4 #define CONFIG_HOSTNAME br4
#define CONFIG_TFTP_BLOCKSIZE 4404 #define CONFIG_TFTP_BLOCKSIZE 4404
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 5c:38:1a:80:a7:00 */
/* /*
* Flash Settings * Flash Settings

View file

@ -83,8 +83,6 @@
#define CONFIG_NETCONSOLE 1 #define CONFIG_NETCONSOLE 1
#endif #endif
#define CONFIG_HOSTNAME cm-bf527 #define CONFIG_HOSTNAME cm-bf527
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -66,8 +66,6 @@
#define CONFIG_SMC91111 1 #define CONFIG_SMC91111 1
#define CONFIG_SMC91111_BASE 0x20200300 #define CONFIG_SMC91111_BASE 0x20200300
#define CONFIG_HOSTNAME cm-bf533 #define CONFIG_HOSTNAME cm-bf533
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
/* /*

View file

@ -71,8 +71,6 @@
#define CONFIG_NETCONSOLE 1 #define CONFIG_NETCONSOLE 1
#endif #endif
#define CONFIG_HOSTNAME cm-bf537e #define CONFIG_HOSTNAME cm-bf537e
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -69,8 +69,6 @@
#define CONFIG_NETCONSOLE 1 #define CONFIG_NETCONSOLE 1
#endif #endif
#define CONFIG_HOSTNAME cm-bf537u #define CONFIG_HOSTNAME cm-bf537u
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -76,8 +76,6 @@
#define CONFIG_SMC911X_BASE 0x24000000 #define CONFIG_SMC911X_BASE 0x24000000
#define CONFIG_SMC911X_16_BIT #define CONFIG_SMC911X_16_BIT
#define CONFIG_HOSTNAME cm-bf548 #define CONFIG_HOSTNAME cm-bf548
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:24:31:91 */
/* /*

View file

@ -67,8 +67,6 @@
#define CONFIG_SMC911X_BASE 0x24008000 /* AMS1 */ #define CONFIG_SMC911X_BASE 0x24008000 /* AMS1 */
#define CONFIG_SMC911X_16_BIT #define CONFIG_SMC911X_16_BIT
#define CONFIG_HOSTNAME cm-bf561 #define CONFIG_HOSTNAME cm-bf561
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:cf */
/* /*

View file

@ -177,7 +177,6 @@ considered during boot */
/* User network settings */ /* User network settings */
#define CONFIG_ETHADDR 00:00:00:00:00:09 /* default ethernet MAC addr. */
#define CONFIG_IPADDR 192.168.100.2 /* default board IP address */ #define CONFIG_IPADDR 192.168.100.2 /* default board IP address */
#define CONFIG_SERVERIP 192.168.100.1 /* default tftp server IP address */ #define CONFIG_SERVERIP 192.168.100.1 /* default tftp server IP address */

View file

@ -37,8 +37,6 @@
#endif #endif
#endif #endif
#define CONFIG_ETHADDR DE:AD:BE:EF:01:01 /* Ethernet address */
#define CONFIG_BOOTDELAY 2 /* autoboot after 2 seconds */ #define CONFIG_BOOTDELAY 2 /* autoboot after 2 seconds */
#define CONFIG_BAUDRATE 115200 #define CONFIG_BAUDRATE 115200

View file

@ -242,7 +242,6 @@
"rootpath=/opt/eldk/arm\0" \ "rootpath=/opt/eldk/arm\0" \
"splashpos=230,180\0" \ "splashpos=230,180\0" \
"testrfspath=/opt/eldk/test_arm\0" \ "testrfspath=/opt/eldk/test_arm\0" \
"tempmac=setenv ethaddr 02:ea:20:ff:ff:ff\0" \
"nandargs=setenv bootargs rootfstype=ubifs ro chk_data_crc " \ "nandargs=setenv bootargs rootfstype=ubifs ro chk_data_crc " \
"ubi.mtd=${as} root=ubi0:rootfs\0" \ "ubi.mtd=${as} root=ubi0:rootfs\0" \
"nandrwargs=setenv bootargs rootfstype=ubifs rw chk_data_crc " \ "nandrwargs=setenv bootargs rootfstype=ubifs rw chk_data_crc " \
@ -315,6 +314,6 @@
"fi;" \ "fi;" \
"else echo U-Boot not downloaded..exiting;fi\0" \ "else echo U-Boot not downloaded..exiting;fi\0" \
"ubootupd_nand=echo run load_magic,run load_nand,run upd;\0" \ "ubootupd_nand=echo run load_magic,run load_nand,run upd;\0" \
"bootcmd=run tempmac;run net_testrfs\0" "bootcmd=run net_testrfs\0"
#endif /* __CONFIG_H */ #endif /* __CONFIG_H */

View file

@ -280,7 +280,6 @@
/*#define CONFIG_SHOW_ACTIVITY*/ /*#define CONFIG_SHOW_ACTIVITY*/
#define CONFIG_NET_RETRY_COUNT 10 /* # of retries */ #define CONFIG_NET_RETRY_COUNT 10 /* # of retries */
#define CONFIG_ETHADDR 00:00:7a:cc:00:13
#define CONFIG_PHY_ADDR 0x00 #define CONFIG_PHY_ADDR 0x00
/* /*

View file

@ -260,16 +260,6 @@
/* USE GRETH Ethernet Driver */ /* USE GRETH Ethernet Driver */
#define CONFIG_GRETH 1 #define CONFIG_GRETH 1
/* Default GRETH Ethernet HARDWARE address */
#define GRETH_HWADDR_0 0x00
#define GRETH_HWADDR_1 0x00
#define GRETH_HWADDR_2 0x7a
#define GRETH_HWADDR_3 0xcc
#define GRETH_HWADDR_4 0x00
#define GRETH_HWADDR_5 0x13
#endif
#define CONFIG_ETHADDR 00:00:7a:cc:00:13
#define CONFIG_PHY_ADDR 0x00 #define CONFIG_PHY_ADDR 0x00
/* /*

View file

@ -220,15 +220,6 @@
*/ */
#define CONFIG_GRETH 1 #define CONFIG_GRETH 1
/* Default GRETH Ethernet HARDWARE address */
#define GRETH_HWADDR_0 0x00
#define GRETH_HWADDR_1 0x00
#define GRETH_HWADDR_2 0x7a
#define GRETH_HWADDR_3 0xcc
#define GRETH_HWADDR_4 0x00
#define GRETH_HWADDR_5 0x12
#define CONFIG_ETHADDR 00:00:7a:cc:00:12
#define CONFIG_PHY_ADDR 0x00 #define CONFIG_PHY_ADDR 0x00
/* /*

View file

@ -94,7 +94,6 @@
"rootpath=/export/roofs\0" \ "rootpath=/export/roofs\0" \
"scratch=40000000\0" \ "scratch=40000000\0" \
"getkernel=tftpboot $(scratch) $(bootfile)\0" \ "getkernel=tftpboot $(scratch) $(bootfile)\0" \
"ethaddr=00:00:7A:CC:00:12\0" \
"bootargs=console=ttyS0,38400" \ "bootargs=console=ttyS0,38400" \
"" ""
#define CONFIG_NETMASK 255.255.255.0 #define CONFIG_NETMASK 255.255.255.0
@ -243,16 +242,6 @@
*/ */
#define CONFIG_GRETH 1 #define CONFIG_GRETH 1
/* Default HARDWARE address */
#define GRETH_HWADDR_0 0x00
#define GRETH_HWADDR_1 0x00
#define GRETH_HWADDR_2 0x7A
#define GRETH_HWADDR_3 0xcc
#define GRETH_HWADDR_4 0x00
#define GRETH_HWADDR_5 0x12
#define CONFIG_ETHADDR 00:00:7a:cc:00:12
/* /*
* Define CONFIG_GRETH_10MBIT to force GRETH at 10Mb/s * Define CONFIG_GRETH_10MBIT to force GRETH at 10Mb/s
*/ */

View file

@ -91,7 +91,6 @@
"rootpath=/export/roofs\0" \ "rootpath=/export/roofs\0" \
"scratch=40000000\0" \ "scratch=40000000\0" \
"getkernel=tftpboot $(scratch) $(bootfile)\0" \ "getkernel=tftpboot $(scratch) $(bootfile)\0" \
"ethaddr=00:00:7A:CC:00:12\0" \
"bootargs=console=ttyS0,38400" \ "bootargs=console=ttyS0,38400" \
"" ""
#define CONFIG_NETMASK 255.255.255.0 #define CONFIG_NETMASK 255.255.255.0
@ -241,16 +240,6 @@
*/ */
/*#define CONFIG_GRETH 1*/ /*#define CONFIG_GRETH 1*/
/* Default HARDWARE address */
#define GRETH_HWADDR_0 0x00
#define GRETH_HWADDR_1 0x00
#define GRETH_HWADDR_2 0x7A
#define GRETH_HWADDR_3 0xcc
#define GRETH_HWADDR_4 0x00
#define GRETH_HWADDR_5 0x12
#define CONFIG_ETHADDR 00:00:7a:cc:00:12
/* /*
* Define CONFIG_GRETH_10MBIT to force GRETH at 10Mb/s * Define CONFIG_GRETH_10MBIT to force GRETH at 10Mb/s
*/ */

View file

@ -64,8 +64,6 @@
#define CONFIG_DRIVER_AX88180 1 #define CONFIG_DRIVER_AX88180 1
#define AX88180_BASE 0x2c000000 #define AX88180_BASE 0x2c000000
#define CONFIG_HOSTNAME ibf-dsp561 #define CONFIG_HOSTNAME ibf-dsp561
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
/* /*

View file

@ -110,9 +110,6 @@
#undef CONFIG_BOOTARGS #undef CONFIG_BOOTARGS
#define CONFIG_ETHADDR 00:a0:a4:03:00:00
#define CONFIG_OVERWRITE_ETHADDR_ONCE
#define CONFIG_IPADDR 192.168.100.2 #define CONFIG_IPADDR 192.168.100.2
#define CONFIG_SERVERIP 192.168.100.1 #define CONFIG_SERVERIP 192.168.100.1
#define CONFIG_NETMASK 255.255.255.0 #define CONFIG_NETMASK 255.255.255.0

View file

@ -350,7 +350,6 @@
#define CONFIG_IPADDR 192.168.0.3 #define CONFIG_IPADDR 192.168.0.3
#define CONFIG_SERVERIP 192.168.0.5 #define CONFIG_SERVERIP 192.168.0.5
#define CONFIG_GATEWAYIP 192.168.0.1 #define CONFIG_GATEWAYIP 192.168.0.1
#define CONFIG_ETHADDR 00:E0:0C:00:00:FD
/* architecture dependent code */ /* architecture dependent code */
#define CONFIG_SYS_USR_EXCEP /* user exception */ #define CONFIG_SYS_USR_EXCEP /* user exception */

View file

@ -85,8 +85,6 @@
#define CONFIG_SYS_HUSH_PARSER 1 /* use "hush" command parser */ #define CONFIG_SYS_HUSH_PARSER 1 /* use "hush" command parser */
#define CONFIG_SYS_PROMPT_HUSH_PS2 "> " #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
#define CONFIG_ETHADDR 00:50:C2:40:10:00
#define CONFIG_OVERWRITE_ETHADDR_ONCE 1
#define CONFIG_VERSION_VARIABLE 1 /* include version env variable */ #define CONFIG_VERSION_VARIABLE 1 /* include version env variable */
/* /*

View file

@ -90,7 +90,6 @@
"machid=ffffffff\0" \ "machid=ffffffff\0" \
"fdt_high=0x87000000\0" \ "fdt_high=0x87000000\0" \
"baudrate=115200\0" \ "baudrate=115200\0" \
"ethaddr=00:50:C2:7E:90:F0\0" \
"fec_addr=00:50:C2:7E:90:F0\0" \ "fec_addr=00:50:C2:7E:90:F0\0" \
"netmask=255.255.255.0\0" \ "netmask=255.255.255.0\0" \
"ipaddr=192.168.2.9\0" \ "ipaddr=192.168.2.9\0" \

View file

@ -31,8 +31,6 @@
#endif #endif
#endif #endif
#define CONFIG_ETHADDR DE:AD:BE:EF:01:01 /* Ethernet address */
#define CONFIG_BOOTDELAY 2 /* autoboot after 2 seconds */ #define CONFIG_BOOTDELAY 2 /* autoboot after 2 seconds */
#define CONFIG_BAUDRATE 115200 #define CONFIG_BAUDRATE 115200

View file

@ -69,8 +69,6 @@
#endif #endif
#define CONFIG_HOSTNAME pr1 #define CONFIG_HOSTNAME pr1
#define CONFIG_TFTP_BLOCKSIZE 4404 #define CONFIG_TFTP_BLOCKSIZE 4404
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
/* /*

View file

@ -102,7 +102,6 @@
#define CONFIG_SDRAM_BANK0 1 /* init onboard SDRAM bank 0 */ #define CONFIG_SDRAM_BANK0 1 /* init onboard SDRAM bank 0 */
#define CONFIG_ETHADDR DE:AD:BE:EF:01:01 /* Ethernet address */
#define CONFIG_IPADDR 192.168.193.102 #define CONFIG_IPADDR 192.168.193.102
#define CONFIG_NETMASK 255.255.255.224 #define CONFIG_NETMASK 255.255.255.224
#define CONFIG_SERVERIP 192.168.193.119 #define CONFIG_SERVERIP 192.168.193.119

View file

@ -581,13 +581,9 @@
/* /*
* Environment Configuration * Environment Configuration
*/ */
/* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET) #if defined(CONFIG_TSEC_ENET)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 02:E0:0C:00:00:FD
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 02:E0:0C:00:01:FD
#endif #endif
#define CONFIG_IPADDR 192.168.0.55 #define CONFIG_IPADDR 192.168.0.55

View file

@ -14,7 +14,7 @@
* SBC8641D board configuration file * SBC8641D board configuration file
* *
* Make sure you change the MAC address and other network params first, * Make sure you change the MAC address and other network params first,
* search for CONFIG_ETHADDR, CONFIG_SERVERIP, etc in this file. * search for CONFIG_SERVERIP, etc in this file.
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -528,14 +528,6 @@
* Environment Configuration * Environment Configuration
*/ */
/* The mac addresses for all ethernet interface */
#if defined(CONFIG_TSEC_ENET)
#define CONFIG_ETHADDR 02:E0:0C:00:00:01
#define CONFIG_ETH1ADDR 02:E0:0C:00:01:FD
#define CONFIG_ETH2ADDR 02:E0:0C:00:02:FD
#define CONFIG_ETH3ADDR 02:E0:0C:00:03:FD
#endif
#define CONFIG_HAS_ETH0 1 #define CONFIG_HAS_ETH0 1
#define CONFIG_HAS_ETH1 1 #define CONFIG_HAS_ETH1 1
#define CONFIG_HAS_ETH2 1 #define CONFIG_HAS_ETH2 1

View file

@ -50,7 +50,6 @@
#define CONFIG_BOOTARGS "console=ttySMX0,115200n8 root=/dev/mtdblock3 rootfstype=jffs2 mtdparts=scb9328_flash:128k(U-boot)ro,128k(U-boot_env),1m(kernel),4m(root),4m(fs) eval_board=evk9328" #define CONFIG_BOOTARGS "console=ttySMX0,115200n8 root=/dev/mtdblock3 rootfstype=jffs2 mtdparts=scb9328_flash:128k(U-boot)ro,128k(U-boot_env),1m(kernel),4m(root),4m(fs) eval_board=evk9328"
#define CONFIG_BOOTCOMMAND "bootm 10040000" #define CONFIG_BOOTCOMMAND "bootm 10040000"
#define CONFIG_SHOW_BOOT_PROGRESS #define CONFIG_SHOW_BOOT_PROGRESS
#define CONFIG_ETHADDR 80:81:82:83:84:85
#define CONFIG_NETMASK 255.255.255.0 #define CONFIG_NETMASK 255.255.255.0
#define CONFIG_IPADDR 10.10.10.9 #define CONFIG_IPADDR 10.10.10.9
#define CONFIG_SERVERIP 10.10.10.10 #define CONFIG_SERVERIP 10.10.10.10

View file

@ -100,15 +100,6 @@
#if defined(CONFIG_SYS_RAMBOOT) #if defined(CONFIG_SYS_RAMBOOT)
#define CONFIG_ENV_IS_NOWHERE /* Store env in memory only */ #define CONFIG_ENV_IS_NOWHERE /* Store env in memory only */
#define CONFIG_ENV_SIZE (8 << 10) #define CONFIG_ENV_SIZE (8 << 10)
/*
* In RAM-booting version, we have no environment storage. So we need to
* provide at least preliminary MAC addresses for the 4xx EMAC driver to
* register the interfaces. Those two addresses are generated via the
* tools/gen_eth_addr tool and should only be used in a closed laboratory
* environment.
*/
#define CONFIG_ETHADDR 4a:56:49:22:3e:43
#define CONFIG_ETH1ADDR 02:93:53:d5:06:98
#else #else
#define CONFIG_ENV_IS_IN_FLASH /* use FLASH for environ vars */ #define CONFIG_ENV_IS_IN_FLASH /* use FLASH for environ vars */
#endif #endif

View file

@ -13,7 +13,7 @@
/* mpc8560ads board configuration file */ /* mpc8560ads board configuration file */
/* please refer to doc/README.mpc85xx for more info */ /* please refer to doc/README.mpc85xx for more info */
/* make sure you change the MAC address and other network params first, /* make sure you change the MAC address and other network params first,
* search for CONFIG_ETHADDR,CONFIG_SERVERIP,etc in this file * search for CONFIG_SERVERIP, etc. in this file
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -342,14 +342,10 @@
#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */ #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */
#endif #endif
/*Note: change below for your network setting!!! */
#if defined(CONFIG_TSEC_ENET) || defined(CONFIG_ETHER_ON_FCC) #if defined(CONFIG_TSEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:e0:0c:07:9b:8a
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:e0:0c:07:9b:8b
#define CONFIG_HAS_ETH2 #define CONFIG_HAS_ETH2
#define CONFIG_ETH2ADDR 00:e0:0c:07:9b:8c
#endif #endif
#define CONFIG_SERVERIP 192.168.85.1 #define CONFIG_SERVERIP 192.168.85.1

View file

@ -13,7 +13,7 @@
/* mpc8560ads board configuration file */ /* mpc8560ads board configuration file */
/* please refer to doc/README.mpc85xx for more info */ /* please refer to doc/README.mpc85xx for more info */
/* make sure you change the MAC address and other network params first, /* make sure you change the MAC address and other network params first,
* search for CONFIG_ETHADDR,CONFIG_SERVERIP,etc in this file * search for CONFIG_SERVERIP, etc. in this file
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -377,14 +377,10 @@
#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */ #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */
#endif #endif
/*Note: change below for your network setting!!! */
#if defined(CONFIG_TSEC_ENET) || defined(CONFIG_ETHER_ON_FCC) #if defined(CONFIG_TSEC_ENET) || defined(CONFIG_ETHER_ON_FCC)
#define CONFIG_HAS_ETH0 #define CONFIG_HAS_ETH0
#define CONFIG_ETHADDR 00:e0:0c:07:9b:8a
#define CONFIG_HAS_ETH1 #define CONFIG_HAS_ETH1
#define CONFIG_ETH1ADDR 00:e0:0c:07:9b:8b
#define CONFIG_HAS_ETH2 #define CONFIG_HAS_ETH2
#define CONFIG_ETH2ADDR 00:e0:0c:07:9b:8c
#endif #endif
/* /*

View file

@ -66,8 +66,6 @@
#define CONFIG_NETCONSOLE 1 #define CONFIG_NETCONSOLE 1
#endif #endif
#define CONFIG_HOSTNAME tcm-bf518 #define CONFIG_HOSTNAME tcm-bf518
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -71,8 +71,6 @@
#define CONFIG_NETCONSOLE 1 #define CONFIG_NETCONSOLE 1
#endif #endif
#define CONFIG_HOSTNAME tcm-bf537 #define CONFIG_HOSTNAME tcm-bf537
/* Uncomment next line to use fixed MAC address */
/* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */
#define CONFIG_LIB_RAND #define CONFIG_LIB_RAND
/* /*

View file

@ -209,7 +209,6 @@
/* /*
* Network Configuration * Network Configuration
*/ */
#define CONFIG_ETHADDR 00:21:83:24:00:00
#define CONFIG_SERVERIP 192.168.11.1 #define CONFIG_SERVERIP 192.168.11.1
#define CONFIG_IPADDR 192.168.11.10 #define CONFIG_IPADDR 192.168.11.10
#define CONFIG_GATEWAYIP 192.168.11.1 #define CONFIG_GATEWAYIP 192.168.11.1

View file

@ -148,7 +148,6 @@
"netmask=255.255.0.0\0" \ "netmask=255.255.0.0\0" \
"ipaddr=192.168.160.18\0" \ "ipaddr=192.168.160.18\0" \
"serverip=192.168.1.1\0" \ "serverip=192.168.1.1\0" \
"ethaddr=00:e0:ee:00:05:2e\0" \
"bootfile=/tftpboot/v38b/uImage\0" \ "bootfile=/tftpboot/v38b/uImage\0" \
"u-boot=/tftpboot/v38b/u-boot.bin\0" \ "u-boot=/tftpboot/v38b/u-boot.bin\0" \
"" ""

View file

@ -176,17 +176,6 @@
#define CONFIG_ENV_OFFSET_REDUND 0x00120000 #define CONFIG_ENV_OFFSET_REDUND 0x00120000
#define CONFIG_ENV_ADDR 0x80000100 #define CONFIG_ENV_ADDR 0x80000100
/*
* Provide default ethernet address
*
* THIS IS NORMALLY NOT DONE. HERE WE KEEP WHAT WAS IN THE PORTED
* BOARD CONFIG IN CASE SOME PROVISIONING PROCESS OUT THERE EXPECTS
* THIS MAC ADDRESS WHEN THE DEVICE HAS STILL ITS DEFAULT CONFIG.
*/
#define CONFIG_ETHADDR 00:12:B4:00:AF:FE
#define CONFIG_OVERWRITE_ETHADDR_ONCE
/* /*
* U-Boot Commands * U-Boot Commands
*/ */

View file

@ -70,7 +70,6 @@
#undef CONFIG_CMD_DTT #undef CONFIG_CMD_DTT
#define CONFIG_ETHADDR 08:00:3e:26:0a:5b
#define CONFIG_NETMASK 255.255.255.0 #define CONFIG_NETMASK 255.255.255.0
#define CONFIG_IPADDR 192.168.68.201 #define CONFIG_IPADDR 192.168.68.201
#define CONFIG_SERVERIP 192.168.68.62 #define CONFIG_SERVERIP 192.168.68.62

View file

@ -296,8 +296,6 @@
#define CONFIG_IPADDR 192.168.1.10 #define CONFIG_IPADDR 192.168.1.10
#define CONFIG_SERVERIP 192.168.1.100 #define CONFIG_SERVERIP 192.168.1.100
#define CONFIG_GATEWAYIP 192.168.1.100 #define CONFIG_GATEWAYIP 192.168.1.100
#define CONFIG_ETHADDR 50:00:00:00:06:00
#define CONFIG_ETH1ADDR 50:00:00:00:06:01
#if 0 #if 0
#define CONFIG_BOOTDELAY -1 /* autoboot disabled */ #define CONFIG_BOOTDELAY -1 /* autoboot disabled */
#else #else

View file

@ -49,24 +49,6 @@ const uchar default_environment[] = {
#ifdef CONFIG_LOADS_ECHO #ifdef CONFIG_LOADS_ECHO
"loads_echo=" __stringify(CONFIG_LOADS_ECHO) "\0" "loads_echo=" __stringify(CONFIG_LOADS_ECHO) "\0"
#endif #endif
#ifdef CONFIG_ETHADDR
"ethaddr=" __stringify(CONFIG_ETHADDR) "\0"
#endif
#ifdef CONFIG_ETH1ADDR
"eth1addr=" __stringify(CONFIG_ETH1ADDR) "\0"
#endif
#ifdef CONFIG_ETH2ADDR
"eth2addr=" __stringify(CONFIG_ETH2ADDR) "\0"
#endif
#ifdef CONFIG_ETH3ADDR
"eth3addr=" __stringify(CONFIG_ETH3ADDR) "\0"
#endif
#ifdef CONFIG_ETH4ADDR
"eth4addr=" __stringify(CONFIG_ETH4ADDR) "\0"
#endif
#ifdef CONFIG_ETH5ADDR
"eth5addr=" __stringify(CONFIG_ETH5ADDR) "\0"
#endif
#ifdef CONFIG_ETHPRIME #ifdef CONFIG_ETHPRIME
"ethprime=" CONFIG_ETHPRIME "\0" "ethprime=" CONFIG_ETHPRIME "\0"
#endif #endif