diff options
author | Martha Marx <mmarx@silicontkx.com> | 2008-05-29 14:23:25 -0400 |
---|---|---|
committer | John Rigby <jrigby@freescale.com> | 2008-07-10 11:36:42 -0600 |
commit | f31c49db2a5e076f415c0785eb37f67f2faa5fc8 (patch) | |
tree | 5d89a520255ea95f33adbffc50660a209033eaf3 /Makefile | |
parent | 16bee7b0dc294ee01ca2434aa1dd3bd717a69615 (diff) | |
download | u-boot-imx-f31c49db2a5e076f415c0785eb37f67f2faa5fc8.zip u-boot-imx-f31c49db2a5e076f415c0785eb37f67f2faa5fc8.tar.gz u-boot-imx-f31c49db2a5e076f415c0785eb37f67f2faa5fc8.tar.bz2 |
Configuration changes for ADS5121 Rev 3
ADS5121 Rev 3 board is now the default config
config targets are now
ads5121_config
Rev 3 board with
PCI
M41T62 on board RTC
512MB DRAM
ads5121_rev2_config
Rev 2 board with
No PCI
256MB DRAM
Signed-off-by: Martha Marx <mmarx@silicontkx.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: John Rigby <jrigby@freescale.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -750,12 +750,11 @@ motionpro_config: unconfig ## MPC512x Systems ######################################################################### ads5121_config \ -ads5121_PCI_config \ - : unconfig +ads5121_rev2_config \ + : unconfig @mkdir -p $(obj)include - @if [ "$(findstring _PCI_,$@)" ] ; then \ - echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ - $(XECHO) "... with PCI enabled" ; \ + @if [ "$(findstring rev2,$@)" ] ; then \ + echo "#define CONFIG_ADS5121_REV2 1" > $(obj)include/config.h; \ fi @$(MKCONFIG) -a ads5121 ppc mpc512x ads5121 |