diff options
author | wdenk <wdenk> | 2005-04-05 23:32:21 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-04-05 23:32:21 +0000 |
commit | 3c2b3d454daa6024cc20d166b2f50efde169c7fe (patch) | |
tree | f66cfb007a5dec1d47a19b2cab8a9dc127468347 /Makefile | |
parent | b304c96871c92d1ec8fa57dda36cc198660fd10e (diff) | |
download | u-boot-imx-3c2b3d454daa6024cc20d166b2f50efde169c7fe.zip u-boot-imx-3c2b3d454daa6024cc20d166b2f50efde169c7fe.tar.gz u-boot-imx-3c2b3d454daa6024cc20d166b2f50efde169c7fe.tar.bz2 |
* Patch by Ladislav Michl, 05 Apr 2005:
Add support for VoiceBlue board.
* Patch by Ladislav Michl, 05 Apr 2005:
Fix netboot_common() prototypes.
* Cleanup.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1382,6 +1382,19 @@ VCMA9_config : unconfig versatile_config : unconfig @./mkconfig $(@:_config=) arm arm926ejs versatile +voiceblue_smallflash_config \ +voiceblue_config: unconfig + @if [ "$(findstring _smallflash_,$@)" ] ; then \ + echo "... boot from lower flash bank" ; \ + echo "#define VOICEBLUE_SMALL_FLASH" >>include/config.h ; \ + echo "VOICEBLUE_SMALL_FLASH=y" >board/voiceblue/config.tmp ; \ + else \ + echo "... boot from upper flash bank" ; \ + >include/config.h ; \ + echo "VOICEBLUE_SMALL_FLASH=n" >board/voiceblue/config.tmp ; \ + fi + @./mkconfig -a voiceblue arm arm925t voiceblue + ######################################################################### ## S3C44B0 Systems ######################################################################### |