diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2008-08-15 08:24:36 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-08-26 23:31:33 +0200 | 
| commit | c160a9544743e80e8889edb2275538e7764ce334 (patch) | |
| tree | 484a54af158348313ed5f3b4890a6bbb56e7e468 /include/image.h | |
| parent | 20220d22b9f41446288588cd2e457e0077a18bed (diff) | |
| download | olio-uboot-2014.01-c160a9544743e80e8889edb2275538e7764ce334.tar.xz olio-uboot-2014.01-c160a9544743e80e8889edb2275538e7764ce334.zip | |
bootm: refactor entry point code
Move entry point code out of each arch and into common code.
Keep the entry point in the bootm_headers_t images struct.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include/image.h')
| -rw-r--r-- | include/image.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/include/image.h b/include/image.h index 4b9c58271..e16c25340 100644 --- a/include/image.h +++ b/include/image.h @@ -219,6 +219,8 @@ typedef struct bootm_headers {  #endif  #endif +	ulong		ep;		/* entry point of OS */ +  	int		verify;		/* getenv("verify")[0] != 'n' */  	struct lmb	*lmb;		/* for memory mgmt */  } bootm_headers_t; |