diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-19 00:53:02 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-19 00:53:02 +0200 |
commit | c7db9a3805fbdf4187d9309cb2aa93e45828419a (patch) | |
tree | 115b58e08032dc62ad4b752141f9eec1dcbce182 /lib_arm | |
parent | 6617aae9b9f297c388fc011bdf4eb6c4553339e6 (diff) |
Initialize serial# and ethaddr from manufacturer data in EEPROM on CMC-PU2
Patch by Martin Krause, 08 Jun 2005
Diffstat (limited to 'lib_arm')
-rw-r--r-- | lib_arm/board.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index ada8cc88790..a3588d693ed 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -305,6 +305,10 @@ void start_armboot (void) devices_init (); /* get the devices list going. */ +#ifdef CONFIG_CMC_PU2 + load_sernum_ethaddr (); +#endif /* CONFIG_CMC_PU2 */ + jumptable_init (); console_init_r (); /* fully init console as a device */ |