diff options
Diffstat (limited to 'include/image.h')
| -rw-r--r-- | include/image.h | 16 | 
1 files changed, 9 insertions, 7 deletions
| diff --git a/include/image.h b/include/image.h index 8ccc00b76..8675a8285 100644 --- a/include/image.h +++ b/include/image.h @@ -320,13 +320,15 @@ typedef struct bootm_headers {  	int		verify;		/* getenv("verify")[0] != 'n' */  #define	BOOTM_STATE_START	(0x00000001) -#define	BOOTM_STATE_LOADOS	(0x00000002) -#define	BOOTM_STATE_RAMDISK	(0x00000004) -#define	BOOTM_STATE_FDT		(0x00000008) -#define	BOOTM_STATE_OS_CMDLINE	(0x00000010) -#define	BOOTM_STATE_OS_BD_T	(0x00000020) -#define	BOOTM_STATE_OS_PREP	(0x00000040) -#define	BOOTM_STATE_OS_GO	(0x00000080) +#define	BOOTM_STATE_FINDOS	(0x00000002) +#define	BOOTM_STATE_FINDOTHER	(0x00000004) +#define	BOOTM_STATE_LOADOS	(0x00000008) +#define	BOOTM_STATE_RAMDISK	(0x00000010) +#define	BOOTM_STATE_FDT		(0x00000020) +#define	BOOTM_STATE_OS_CMDLINE	(0x00000040) +#define	BOOTM_STATE_OS_BD_T	(0x00000080) +#define	BOOTM_STATE_OS_PREP	(0x00000100) +#define	BOOTM_STATE_OS_GO	(0x00000200)  	int		state;  #ifdef CONFIG_LMB |