mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
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>
This commit is contained in:
parent
20220d22b9
commit
c160a95447
12 changed files with 37 additions and 182 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue