diff options
| author | wdenk <wdenk> | 2003-12-08 01:34:36 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-12-08 01:34:36 +0000 | 
| commit | 4e5ca3eb670460cd5ad9b07fa4aafc0dee6178be (patch) | |
| tree | 445ad34577e02b219f118c8825ad5815c3229541 /common/cmd_bootm.c | |
| parent | 9fd5e31fe0245c44a11d35a8603bb6b25c97b5c8 (diff) | |
| download | olio-uboot-2014.01-4e5ca3eb670460cd5ad9b07fa4aafc0dee6178be.tar.xz olio-uboot-2014.01-4e5ca3eb670460cd5ad9b07fa4aafc0dee6178be.zip | |
* Patch by Bernhard Kuhn, 28 Nov 2003:
  add support for Coldfire CPU
  add support for Motorola M5272C3 and M5282EVB boards
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 78d4612c8..5e31400c9 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -240,6 +240,8 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	if (hdr->ih_arch != IH_CPU_MIPS)  #elif defined(__nios__)  	if (hdr->ih_arch != IH_CPU_NIOS) +#elif defined(__M68K__) +	if (hdr->ih_arch != IH_CPU_M68K)  #else  # error Unknown CPU type  #endif |