From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Roese Date: Tue, 28 Aug 2012 10:21:57 +0200 Subject: [U-Boot] [PATCH v2 06/12] SPL: Port SPL framework to powerpc In-Reply-To: <20120827162734.GB24666@bill-the-cat> References: <1346064667-29692-1-git-send-email-sr@denx.de> <1346064667-29692-7-git-send-email-sr@denx.de> <20120827162734.GB24666@bill-the-cat> Message-ID: <503C7FA5.3000307@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 08/27/2012 06:27 PM, Tom Rini wrote: > On Mon, Aug 27, 2012 at 12:51:01PM +0200, Stefan Roese wrote: > >> This patch enables the SPL framework to be used on powerpc platforms >> and not only ARM. >> >> Signed-off-by: Stefan Roese > [snip] >> diff --git a/common/spl/spl.c b/common/spl/spl.c >> index 61936ee..3eb269e 100644 >> --- a/common/spl/spl.c >> +++ b/common/spl/spl.c > [snip] >> @@ -36,6 +35,9 @@ >> >> DECLARE_GLOBAL_DATA_PTR; >> >> +#ifndef CONFIG_SYS_UBOOT_START >> +#define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE >> +#endif >> #ifndef CONFIG_SYS_MONITOR_LEN >> #define CONFIG_SYS_MONITOR_LEN (200 * 1024) >> #endif > [snip] >> @@ -104,7 +116,7 @@ void spl_parse_image_header(const struct image_header *header) >> header->ih_magic); >> /* Let's assume U-Boot will not be more than 200 KB */ >> spl_image.size = CONFIG_SYS_MONITOR_LEN; >> - spl_image.entry_point = CONFIG_SYS_TEXT_BASE; >> + spl_image.entry_point = CONFIG_SYS_UBOOT_START; >> spl_image.load_addr = CONFIG_SYS_TEXT_BASE; >> spl_image.os = IH_OS_U_BOOT; >> spl_image.name = "U-Boot"; > > Can you post this as it's own patch? I'll pick that up for v5. Okay. Will do. Thanks, Stefan