diff options
author | Stefan Roese <sr@denx.de> | 2006-10-09 12:55:38 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2006-10-09 13:02:00 +0200 |
commit | 1a1b7374b89a04737c76948b00207b56a1bb37b6 (patch) | |
tree | f679c078e1abac599738dee01583de8689190d8f /common | |
parent | d82718fed0085b713d223b878c2378aeccc9a3e2 (diff) | |
download | u-boot-imx-1a1b7374b89a04737c76948b00207b56a1bb37b6.zip u-boot-imx-1a1b7374b89a04737c76948b00207b56a1bb37b6.tar.gz u-boot-imx-1a1b7374b89a04737c76948b00207b56a1bb37b6.tar.bz2 |
Define IH_CPU_AVR32
Make it possible to generate AVR32 uImage files with mkimage and
make cmd_bootm recognize them.
Patch by Haavard Skinnemoen, 22 Sep 2006
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_bootm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index fdf7180..2168e67 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -260,6 +260,8 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) if (hdr->ih_arch != IH_CPU_NIOS2) #elif defined(__blackfin__) if (hdr->ih_arch != IH_CPU_BLACKFIN) +#elif defined(__avr32__) + if (hdr->ih_arch != IH_CPU_AVR32) #else # error Unknown CPU type #endif @@ -1236,6 +1238,7 @@ print_type (image_header_t *hdr) case IH_CPU_INVALID: arch = "Invalid CPU"; break; case IH_CPU_ALPHA: arch = "Alpha"; break; case IH_CPU_ARM: arch = "ARM"; break; + case IH_CPU_AVR32: arch = "AVR32"; break; case IH_CPU_I386: arch = "Intel x86"; break; case IH_CPU_IA64: arch = "IA64"; break; case IH_CPU_MIPS: arch = "MIPS"; break; |