diff options
| author | Marian Balakowicz <m8@semihalf.com> | 2008-01-08 18:14:09 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-02-07 01:12:53 +0100 | 
| commit | b97a2a0a21f279d66de8a9bdbfe21920968bcb1c (patch) | |
| tree | 7746eae37d3a468f3471cd303156920637445350 /lib_blackfin/bf533_linux.c | |
| parent | ed29bc4e8142b46b626f67524207b36e43d9aad6 (diff) | |
| download | olio-uboot-2014.01-b97a2a0a21f279d66de8a9bdbfe21920968bcb1c.tar.xz olio-uboot-2014.01-b97a2a0a21f279d66de8a9bdbfe21920968bcb1c.zip | |
[new uImage] Define a API for image handling operations
- Add inline helper macros for basic header processing
- Move common non inline code common/image.c
- Replace direct header access with the API routines
- Rename IH_CPU_* to IH_ARCH_*
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'lib_blackfin/bf533_linux.c')
| -rw-r--r-- | lib_blackfin/bf533_linux.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/lib_blackfin/bf533_linux.c b/lib_blackfin/bf533_linux.c index 80a3dc7d6..26c65340f 100644 --- a/lib_blackfin/bf533_linux.c +++ b/lib_blackfin/bf533_linux.c @@ -52,12 +52,13 @@ void do_bootm_linux(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[],  {  	int (*appl) (char *cmdline);  	char *cmdline; +	image_header_t *hdr = &header;  #ifdef SHARED_RESOURCES  	swap_to(FLASH);  #endif -	appl = (int (*)(char *))ntohl(header.ih_ep); +	appl = (int (*)(char *))image_get_ep (hdr);  	printf("Starting Kernel at = %x\n", appl);  	cmdline = make_command_line();  	if (icache_status()) { |