mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
* 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.
This commit is contained in:
parent
6315349202
commit
c1a11c19ec
3 changed files with 10 additions and 0 deletions
|
@ -2,6 +2,12 @@
|
|||
Changes for U-Boot 1.1.3:
|
||||
======================================================================
|
||||
|
||||
* 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.
|
||||
|
||||
* Patch by David Adair, 27 Oct 2004:
|
||||
Add missing 440GX SDRAM Controller reset
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -86,6 +86,8 @@ table_entry_t arch_name[] = {
|
|||
{ IH_CPU_MICROBLAZE, "microblaze", "MicroBlaze", },
|
||||
{ IH_CPU_MIPS, "mips", "MIPS", },
|
||||
{ IH_CPU_MIPS64, "mips64", "MIPS 64 Bit", },
|
||||
{ IH_CPU_NIOS, "nios", "NIOS", },
|
||||
{ IH_CPU_NIOS2, "nios2", "NIOS II", },
|
||||
{ IH_CPU_PPC, "ppc", "PowerPC", },
|
||||
{ IH_CPU_S390, "s390", "IBM S390", },
|
||||
{ IH_CPU_SH, "sh", "SuperH", },
|
||||
|
|
Loading…
Add table
Reference in a new issue