diff options
author | Haiying Wang <haiying.wang@freescale.com> | 2006-07-12 10:48:05 -0400 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2006-07-13 10:57:37 -0500 |
commit | bea3f28d285942bf3f7ab339ce85178ded544225 (patch) | |
tree | eb3ef76fa25a4dcd89d09dbbaa7f7772fa4e662f /board/mpc8641hpcn/Makefile | |
parent | fcb28e763415e0e4e66b0f45842d1557ae198e5e (diff) | |
download | u-boot-imx-bea3f28d285942bf3f7ab339ce85178ded544225.zip u-boot-imx-bea3f28d285942bf3f7ab339ce85178ded544225.tar.gz u-boot-imx-bea3f28d285942bf3f7ab339ce85178ded544225.tar.bz2 |
Add support for reading and writing mac addresses to or from ID EEPROM.
Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
With attached patch, we can use command "mac/mac read/mac save/"
to read and write EEPROM under u-boot prompt.
U-boot will calculate the checksum of EEPROM while bootup,
if it is right, then u-boot will check whether the mac address
of eTSEC0/1/2/3 is availalbe (non-zero).
If there is mac address availabe in EEPROM, u-boot will use it,
otherewise, u-boot will use the mac address defined in
MPC8641HPCN.h. This matches the requirement to set unique mac address
for each TSEC port.
Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
Signed-off-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'board/mpc8641hpcn/Makefile')
-rw-r--r-- | board/mpc8641hpcn/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/mpc8641hpcn/Makefile b/board/mpc8641hpcn/Makefile index 060db84..0ebed87 100644 --- a/board/mpc8641hpcn/Makefile +++ b/board/mpc8641hpcn/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a -OBJS := $(BOARD).o pixis.o oftree.o +OBJS := $(BOARD).o pixis.o sys_eeprom.o oftree.o SOBJS := init.o $(LIB): $(OBJS) $(SOBJS) |