diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-02-04 19:26:54 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-02-04 19:26:54 -0500 |
commit | 32a9f5f2160a034ea87ea651b233ef7c635e55cf (patch) | |
tree | 0200cf2bbdd5f6201e1603a2a3953d4637f7a2a8 /examples/Makefile | |
parent | 4087bc88cebec75c432a7fe9f6afb545b0919831 (diff) | |
download | u-boot-imx-32a9f5f2160a034ea87ea651b233ef7c635e55cf.zip u-boot-imx-32a9f5f2160a034ea87ea651b233ef7c635e55cf.tar.gz u-boot-imx-32a9f5f2160a034ea87ea651b233ef7c635e55cf.tar.bz2 |
make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/examples/Makefile b/examples/Makefile index 71a8c7f..79af4b0 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -91,13 +91,9 @@ BIN += sched.bin endif ifeq ($(ARCH),blackfin) -ifneq ($(BOARD),bf537-stamp) -ifneq ($(BOARD),bf537-pnav) ELF += smc91111_eeprom SREC += smc91111_eeprom.srec -BIN += smc91111_eeprom.bin -endif -endif +BIN += smc91111_eeprom.bin endif # The following example is pretty 8xx specific... |