diff options
author | wdenk <wdenk> | 2003-05-03 15:50:43 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-05-03 15:50:43 +0000 |
commit | 7aa78614716b7bd7bdf68553f261ad0d5a12826a (patch) | |
tree | 756a98d1deac76f1cfba3d8da18c19e7183618c8 /Makefile | |
parent | 4532cb696eb717419022dbaa8d408e7df7df7b68 (diff) |
* Add support for Promess ATC boardLABEL_2003_05_03_1700
* Patch by Keith Outwater, 28 Apr 2003:
- Miscellaneous corrections and additions to GEN860T board specific code.
- Added GEN860_SC variant to GEN860T.
- Miscellaneous corrections to GEN860T documentation.
- Correct duplicate entry in U-Boot CREDITS file.
- Add GEN860T_SC entry in MAINTAINERS file.
- Update CREDITS file with GEN860T_SC info.
* Update Smiths Aerospace addresses in MAINTAINERS file
* Fix error handling in hush's version of "run" command
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -212,8 +212,16 @@ FADS860T_config: unconfig FLAGADM_config: unconfig @./mkconfig $(@:_config=) ppc mpc8xx flagadm +xtract_GEN860T = $(subst _SC,,$(subst _config,,$1)) + +GEN860T_SC_config \ GEN860T_config: unconfig - @./mkconfig $(@:_config=) ppc mpc8xx gen860t + @ >include/config.h + @[ -z "$(findstring _SC,$@)" ] || \ + { echo "#define CONFIG_SC" >>include/config.h ; \ + echo "With reduced H/W feature set (SC)..." ; \ + } + @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t GENIETV_config: unconfig @./mkconfig $(@:_config=) ppc mpc8xx genietv @@ -575,11 +583,13 @@ sbc8260_config: unconfig SCM_config: unconfig @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens +TQM8255_config \ TQM8260_config \ TQM8260_L2_config \ TQM8255_266MHz_config \ TQM8260_266MHz_config \ TQM8260_L2_266MHz_config \ +TQM8255_300MHz_config \ TQM8260_300MHz_config: unconfig @ >include/config.h @if [ "$(findstring _L2_,$@)" ] ; then \ @@ -601,6 +611,9 @@ TQM8260_300MHz_config: unconfig { echo "#define CONFIG_MPC8255" >>include/config.h ; } @./mkconfig -a TQM8260 ppc mpc8260 tqm8260 +atc_config: unconfig + @./mkconfig $(@:_config=) ppc mpc8260 atc + ######################################################################### ## 74xx/7xx Systems ######################################################################### |