diff options
author | Wolfgang Denk <wd@denx.de> | 2007-05-16 01:12:04 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-05-16 01:12:04 +0200 |
commit | 256176d3d5462d466e2c8434281ced50257c8add (patch) | |
tree | df286b05bb197dfd92308258bd723aeef3581f90 /Makefile | |
parent | d62f64cc23a940eafe712c776b3249e4160753d1 (diff) | |
parent | 068aab660bc3912b930be5540e6b3f3fd6ad3c96 (diff) | |
download | u-boot-imx-256176d3d5462d466e2c8434281ced50257c8add.zip u-boot-imx-256176d3d5462d466e2c8434281ced50257c8add.tar.gz u-boot-imx-256176d3d5462d466e2c8434281ced50257c8add.tar.bz2 |
Merge with /home/wd/git/u-boot/custodian/u-boot-mpc83xx
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1626,6 +1626,19 @@ r5200_config : unconfig ## MPC83xx Systems ######################################################################### +MPC8313ERDB_33_config \ +MPC8313ERDB_66_config: unconfig + @echo "" >include/config.h ; \ + if [ "$(findstring _33_,$@)" ] ; then \ + echo -n "...33M ..." ; \ + echo "#define CFG_33MHZ" >>include/config.h ; \ + fi ; \ + if [ "$(findstring _66_,$@)" ] ; then \ + echo -n "...66M..." ; \ + echo "#define CFG_66MHZ" >>include/config.h ; \ + fi ; + @$(MKCONFIG) -a MPC8313ERDB ppc mpc83xx mpc8313erdb + MPC832XEMDS_config \ MPC832XEMDS_HOST_33_config \ MPC832XEMDS_HOST_66_config \ |