From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Hellstrom Date: Thu, 13 Mar 2008 10:38:12 +0100 Subject: [U-Boot-Users] [PATCH 1/8] SPARC: bootm SPARC support Message-ID: <47D8F604.5080006@gaisler.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This patch adds support for SPARC u-boot images to bootm. The IH_CPU_SPARC indentifier in the image header is recognized. The IH_CPU_SPARC indentifier has already been implemented in mkimage. Best Regards, Daniel Hellstrom 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 9546729..466e783 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -262,6 +262,8 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) if (hdr->ih_arch != IH_CPU_PPC) #elif defined(__sh__) if (hdr->ih_arch != IH_CPU_SH) +#elif defined(__sparc__) + if (hdr->ih_arch != IH_CPU_SPARC) #else # error Unknown CPU type #endif