diff options
author | Stefan Roese <sr@denx.de> | 2007-06-19 17:22:44 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-06-19 17:22:44 +0200 |
commit | b3f9ec86e388207fd03dcdf7b145b9ed080bf024 (patch) | |
tree | 00b4895198adc62482dd27f6c6740155ac1e13a1 /board/amcc/sequoia/Makefile | |
parent | df8a24cdd30151505cf57bbee5289e91bf53bd1b (diff) | |
download | u-boot-imx-b3f9ec86e388207fd03dcdf7b145b9ed080bf024.zip u-boot-imx-b3f9ec86e388207fd03dcdf7b145b9ed080bf024.tar.gz u-boot-imx-b3f9ec86e388207fd03dcdf7b145b9ed080bf024.tar.bz2 |
ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
This patch adds a board command to configure the I2C bootstrap EEPROM
values. Right now 533 and 667MHz are supported for booting either via NOR
or NAND FLASH. Here the usage:
=> bootstrap 533 nor ;to configure the board for 533MHz NOR booting
=> bootstrap 667 nand ;to configure the board for 667MHz NNAND booting
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc/sequoia/Makefile')
-rw-r--r-- | board/amcc/sequoia/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/amcc/sequoia/Makefile b/board/amcc/sequoia/Makefile index 06ef7f9..e1c9ad4 100644 --- a/board/amcc/sequoia/Makefile +++ b/board/amcc/sequoia/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).a -COBJS = $(BOARD).o sdram.o +COBJS = $(BOARD).o cmd_sequoia.o sdram.o SOBJS = init.o SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) |