mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-23 07:01:38 +00:00
[new uImage] Fix definition of common bootm_headers_t fields
verify, autostart and lmb fields are used regardless of CONFIG_FIT setting, move their definitions to common section. Signed-off-by: Marian Balakowicz <m8@semihalf.com>
This commit is contained in:
parent
1d1cb4270e
commit
1ec73761d2
1 changed files with 2 additions and 1 deletions
|
@ -221,10 +221,11 @@ typedef struct bootm_headers {
|
||||||
const char *fit_uname_fdt; /* FDT blob subimage node unit name */
|
const char *fit_uname_fdt; /* FDT blob subimage node unit name */
|
||||||
int fit_noffset_fdt;/* FDT blob subimage node offset */
|
int fit_noffset_fdt;/* FDT blob subimage node offset */
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
int verify; /* getenv("verify")[0] != 'n' */
|
int verify; /* getenv("verify")[0] != 'n' */
|
||||||
int autostart; /* getenv("autostart")[0] != 'n' */
|
int autostart; /* getenv("autostart")[0] != 'n' */
|
||||||
struct lmb *lmb; /* for memory mgmt */
|
struct lmb *lmb; /* for memory mgmt */
|
||||||
#endif
|
|
||||||
} bootm_headers_t;
|
} bootm_headers_t;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue