diff options
author | Marian Balakowicz <m8@semihalf.com> | 2006-10-03 20:28:38 +0200 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2006-10-03 20:28:38 +0200 |
commit | 7299712c869ce1f409a854ca0d2b268783038ab2 (patch) | |
tree | cf993eb7b4d89aa4c4c9ec43ef6f5daa82a23fcd /board/tqm5200/Makefile | |
parent | aeec782b020930732eab075af97212c3f03afcae (diff) | |
download | u-boot-imx-7299712c869ce1f409a854ca0d2b268783038ab2.zip u-boot-imx-7299712c869ce1f409a854ca0d2b268783038ab2.tar.gz u-boot-imx-7299712c869ce1f409a854ca0d2b268783038ab2.tar.bz2 |
Update for CAM5200 board:
- Map in a additional chip selects CS4 and CS5.
- Modify the port configration, configure six UARTs and no PCI,
ATA and USB.
- Add custom flash driver to handle specific byte swapping
Diffstat (limited to 'board/tqm5200/Makefile')
-rw-r--r-- | board/tqm5200/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/board/tqm5200/Makefile b/board/tqm5200/Makefile index d0dde26..383b038 100644 --- a/board/tqm5200/Makefile +++ b/board/tqm5200/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).a -COBJS := $(BOARD).o cmd_stk52xx.o cmd_tb5200.o +COBJS := $(BOARD).o cmd_stk52xx.o cmd_tb5200.o cam5200_flash.o SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) @@ -40,6 +40,9 @@ clean: distclean: clean rm -f $(LIB) core *.bak .depend +cam5200_flash.o: cam5200_flash.c + $(CC) $(CFLAGS) -fno-strict-aliasing -c -o $@ $< + ######################################################################### # defines $(obj).depend target |