diff options
author | wdenk <wdenk> | 2005-04-03 21:11:16 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-04-03 21:11:16 +0000 |
commit | c1a11c19ecbfb390c09ad1ef9800412235ec1708 (patch) | |
tree | d5a2eb1c5aec4a922ea4b9393258410ce1f20b9a /common/cmd_bootm.c | |
parent | 6315349202ead02aec4774f6ede5d2ae490eae63 (diff) | |
download | u-boot-imx-c1a11c19ecbfb390c09ad1ef9800412235ec1708.zip u-boot-imx-c1a11c19ecbfb390c09ad1ef9800412235ec1708.tar.gz u-boot-imx-c1a11c19ecbfb390c09ad1ef9800412235ec1708.tar.bz2 |
* Patch by Scott McNutt, 01 Nov 2004:
Add missing NIOS/NIOS2 support for "iminfo" command
* Patch by Detlev Zundel, 29 Oct 2004:
Add missing NIOS/NIOS2 support for "mkimage" tool.
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 356a2a4..cdb0c19 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -1197,6 +1197,8 @@ print_type (image_header_t *hdr) case IH_CPU_SPARC64: arch = "SPARC 64 Bit"; break; case IH_CPU_M68K: arch = "M68K"; break; case IH_CPU_MICROBLAZE: arch = "Microblaze"; break; + case IH_CPU_NIOS: arch = "Nios"; break; + case IH_CPU_NIOS2: arch = "Nios-II"; break; default: arch = "Unknown Architecture"; break; } |