diff options
author | wdenk <wdenk> | 2005-04-03 22:35:21 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-04-03 22:35:21 +0000 |
commit | 384cc687445b34241fcc8b31bbb7aa9fc252dd90 (patch) | |
tree | 4ef26b0022805188ea5b7b4bf13a14973c5c4d70 /Makefile | |
parent | c1a11c19ecbfb390c09ad1ef9800412235ec1708 (diff) | |
download | u-boot-imx-384cc687445b34241fcc8b31bbb7aa9fc252dd90.zip u-boot-imx-384cc687445b34241fcc8b31bbb7aa9fc252dd90.tar.gz u-boot-imx-384cc687445b34241fcc8b31bbb7aa9fc252dd90.tar.bz2 |
Patches by Josef Wagner, 29 Oct 2004:
- Add support for MicroSys CPU87 board
- Add support for MicroSys PM854 board
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -959,6 +959,20 @@ CPU86_ROMBOOT_config: unconfig fi; \ echo "export CONFIG_BOOT_ROM" >> config.mk; +CPU87_config \ +CPU87_ROMBOOT_config: unconfig + @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu87 + @cd ./include ; \ + if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ + echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ + echo "... booting from 8-bit flash" ; \ + else \ + echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ + echo "... booting from 64-bit flash" ; \ + fi; \ + echo "export CONFIG_BOOT_ROM" >> config.mk; + + ep8260_config: unconfig @./mkconfig $(@:_config=) ppc mpc8260 ep8260 @@ -1147,6 +1161,9 @@ MPC8541CDS_config: unconfig MPC8555CDS_config: unconfig @./mkconfig $(@:_config=) ppc mpc85xx mpc8555cds cds +PM854_config: unconfig + @./mkconfig $(@:_config=) ppc mpc85xx pm854 + sbc8540_config \ sbc8540_33_config \ sbc8540_66_config: unconfig |