From 507bbe3e8084a82c20399367801da87db7d14e65 Mon Sep 17 00:00:00 2001 From: wdenk Date: Sun, 18 Apr 2004 21:13:41 +0000 Subject: * Patch by Yasushi Shoji, 07 Apr 2004: - add support for microblaze processors - add support for AtmarkTechno "suzaku" board --- common/cmd_bootm.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'common/cmd_bootm.c') diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index b0604914771..421269ef2cb 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -242,6 +242,8 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) if (hdr->ih_arch != IH_CPU_NIOS) #elif defined(__M68K__) if (hdr->ih_arch != IH_CPU_M68K) +#elif defined(__microblaze__) + if (hdr->ih_arch != IH_CPU_MICROBLAZE) #else # error Unknown CPU type #endif @@ -1185,6 +1187,7 @@ print_type (image_header_t *hdr) case IH_CPU_SPARC: arch = "SPARC"; break; case IH_CPU_SPARC64: arch = "SPARC 64 Bit"; break; case IH_CPU_M68K: arch = "M68K"; break; + case IH_CPU_MICROBLAZE: arch = "Microblaze"; break; default: arch = "Unknown Architecture"; break; } -- cgit