diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2009-09-21 17:44:51 -0400 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2009-09-25 18:27:54 -0500 |
commit | 00ec0ff549b8cb6fb6d40e275aeb5a460642a3bd (patch) | |
tree | bc7e007fc7efee4260a40a84c4ca0154e9fabc30 /Makefile | |
parent | da6eea0f48c24a318e6de69d6bca0bb5ab70572b (diff) | |
download | u-boot-imx-00ec0ff549b8cb6fb6d40e275aeb5a460642a3bd.zip u-boot-imx-00ec0ff549b8cb6fb6d40e275aeb5a460642a3bd.tar.gz u-boot-imx-00ec0ff549b8cb6fb6d40e275aeb5a460642a3bd.tar.bz2 |
sbc8349: tidy up Makefile to use new configuration script.
Commit 804d83a5 allows us to move all the configuration
variation tweaks out of the top level Makefile and down
into the board config header. This takes advantage of
that for the sbc8349 board.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 1 insertions, 14 deletions
@@ -2403,20 +2403,7 @@ MVBLM7_config: unconfig sbc8349_config \ sbc8349_PCI_33_config \ sbc8349_PCI_66_config: unconfig - @mkdir -p $(obj)include - @if [ "$(findstring _PCI_,$@)" ] ; then \ - $(XECHO) -n "... PCI HOST at " ; \ - echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ - fi ; \ - if [ "$(findstring _33_,$@)" ] ; then \ - $(XECHO) -n "33MHz... " ; \ - echo "#define PCI_33M" >>$(obj)include/config.h ; \ - fi ; \ - if [ "$(findstring _66_,$@)" ] ; then \ - $(XECHO) -n "66MHz... " ; \ - echo "#define PCI_66M" >>$(obj)include/config.h ; \ - fi ; - @$(MKCONFIG) -a sbc8349 ppc mpc83xx sbc8349 + @$(MKCONFIG) -t $(@:_config=) sbc8349 ppc mpc83xx sbc8349 SIMPC8313_LP_config \ SIMPC8313_SP_config: unconfig |