diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2010-10-07 20:03:30 +1100 |
---|---|---|
committer | Graeme Russ <graeme.russ@gmail.com> | 2010-10-07 20:03:30 +1100 |
commit | c81b26beb87c5dbf6b5f68b779e529915178b17c (patch) | |
tree | aba732ebc0632ecbd73ef0d1c55f48d2375cde8f /arch/i386/include/asm | |
parent | 161b3589ea19ad262a2eebbf7b4f10aeb6812f35 (diff) | |
download | u-boot-imx-c81b26beb87c5dbf6b5f68b779e529915178b17c.zip u-boot-imx-c81b26beb87c5dbf6b5f68b779e529915178b17c.tar.gz u-boot-imx-c81b26beb87c5dbf6b5f68b779e529915178b17c.tar.bz2 |
x86: Set cold/warm boot flag
Diffstat (limited to 'arch/i386/include/asm')
-rw-r--r-- | arch/i386/include/asm/global_data.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/i386/include/asm/global_data.h b/arch/i386/include/asm/global_data.h index 456f606..a15c598 100644 --- a/arch/i386/include/asm/global_data.h +++ b/arch/i386/include/asm/global_data.h @@ -82,6 +82,9 @@ extern gd_t *gd; #define GD_FLG_LOGINIT 0x00020 /* Log Buffer has been initialized */ #define GD_FLG_DISABLE_CONSOLE 0x00040 /* Disable console (in & out) */ #define GD_FLG_ENV_READY 0x00080 /* Environment imported into hash table */ +#define GD_FLG_COLD_BOOT 0x00100 /* Cold Boot */ +#define GD_FLG_WARM_BOOT 0x00200 /* Warm Boot */ + #define DECLARE_GLOBAL_DATA_PTR |