From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bartlomiej Sieka Date: Wed, 12 Mar 2008 21:12:25 +0100 Subject: [U-Boot-Users] [PATCH 19/20] [new uImage] Fix definition of common bootm_headers_t fields In-Reply-To: <20080312201023.6444.52806.stgit@pollux.denx.de> References: <20080312201023.6444.52806.stgit@pollux.denx.de> Message-ID: <20080312201225.6444.20222.stgit@pollux.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 From: Marian Balakowicz verify, autostart and lmb fields are used regardless of CONFIG_FIT setting, move their definitions to common section. Signed-off-by: Marian Balakowicz --- include/image.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/image.h b/include/image.h index 0109560..fbd8c30 100644 --- a/include/image.h +++ b/include/image.h @@ -221,10 +221,11 @@ typedef struct bootm_headers { const char *fit_uname_fdt; /* FDT blob subimage node unit name */ int fit_noffset_fdt;/* FDT blob subimage node offset */ #endif +#endif + int verify; /* getenv("verify")[0] != 'n' */ int autostart; /* getenv("autostart")[0] != 'n' */ struct lmb *lmb; /* for memory mgmt */ -#endif } bootm_headers_t; /*