diff options
author | Grant Erickson <gerickson@nuovations.com> | 2008-05-04 16:45:01 -0700 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-05-09 20:48:16 +0200 |
commit | e419e12d04ae3b280c99a87a2ea4ad7a40628bcb (patch) | |
tree | 20c410f2f164aab0ed4051c727e047970df880f2 /common | |
parent | f5a24259190c388c2527bdc49fee34577d862cc7 (diff) | |
download | u-boot-imx-e419e12d04ae3b280c99a87a2ea4ad7a40628bcb.zip u-boot-imx-e419e12d04ae3b280c99a87a2ea4ad7a40628bcb.tar.gz u-boot-imx-e419e12d04ae3b280c99a87a2ea4ad7a40628bcb.tar.bz2 |
Recognize 'powerpc' As an Alias for IH_ARCH_PPC
Add support for the recognition of 'powerpc' as an alias for the PowerPC
architecture type since Linux is already trending in that direction,
preferring 'powerpc' to 'ppc'.
Signed-off-by: Grant Erickson <gerickson@nuovations.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/image.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/image.c b/common/image.c index 4a024d4..051d298 100644 --- a/common/image.c +++ b/common/image.c @@ -93,6 +93,7 @@ static table_entry_t uimage_arch[] = { { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", }, { IH_ARCH_NIOS, "nios", "NIOS", }, { IH_ARCH_NIOS2, "nios2", "NIOS II", }, + { IH_ARCH_PPC, "powerpc", "PowerPC", }, { IH_ARCH_PPC, "ppc", "PowerPC", }, { IH_ARCH_S390, "s390", "IBM S390", }, { IH_ARCH_SH, "sh", "SuperH", }, |