diff options
author | wdenk <wdenk> | 2004-10-10 21:27:30 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-10-10 21:27:30 +0000 |
commit | 5c952cf0245421feb4644f2e71487c0b2e1dbd13 (patch) | |
tree | 47b80e839d339fe11dabd01ec8c89b46b791f797 /common/cmd_bootm.c | |
parent | 03f5c55021c2d6297e66cc11bfea75f149a5d71c (diff) | |
download | u-boot-imx-5c952cf0245421feb4644f2e71487c0b2e1dbd13.zip u-boot-imx-5c952cf0245421feb4644f2e71487c0b2e1dbd13.tar.gz u-boot-imx-5c952cf0245421feb4644f2e71487c0b2e1dbd13.tar.bz2 |
Patches by Scott McNutt, 24 Aug 2004:
- Add support for Altera Nios-II processors.
- Add support for Psyent PCI-5441 board.
- Add support for Psyent PK1C20 board.
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 5aa072f..84499a0 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -244,6 +244,8 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) if (hdr->ih_arch != IH_CPU_M68K) #elif defined(__microblaze__) if (hdr->ih_arch != IH_CPU_MICROBLAZE) +#elif defined(__nios2__) + if (hdr->ih_arch != IH_CPU_NIOS2) #else # error Unknown CPU type #endif |