diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-12 02:10:00 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-12 02:10:00 +0100 | 
| commit | 0afe519a433184fb1270ff0823971130353a807f (patch) | |
| tree | dcf4e84ada0961ded5df9ebfc2804e882bca57b0 /common/cmd_bootm.c | |
| parent | dc013d464000635a5b8ae841c6e683f94a6bee3d (diff) | |
| download | olio-uboot-2014.01-0afe519a433184fb1270ff0823971130353a807f.tar.xz olio-uboot-2014.01-0afe519a433184fb1270ff0823971130353a807f.zip | |
Add ADI Blackfin support
- add support for Analog Devices Blackfin BF533 CPU
- add support for the ADI BF533 Stamp uClinux board
- add support for the ADI BF533 EZKit board
Patches by Richard Klingler, June 11th 2005:
Diffstat (limited to 'common/cmd_bootm.c')
| -rw-r--r-- | common/cmd_bootm.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 8bb524bfe..5b93bddf9 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -252,6 +252,8 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	if (hdr->ih_arch != IH_CPU_MICROBLAZE)  #elif defined(__nios2__)  	if (hdr->ih_arch != IH_CPU_NIOS2) +#elif defined(__blackfin__) +	if (hdr->ih_arch != IH_CPU_BLACKFIN)  #else  # error Unknown CPU type  #endif |