PiBootMode.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __PI_BOOT_MODE_H__
00019 #define __PI_BOOT_MODE_H__
00020
00021 #include <gpxe/efi/ProcessorBind.h>
00022
00023
00024
00025
00026 typedef UINT32 EFI_BOOT_MODE;
00027
00028
00029
00030
00031 #define BOOT_WITH_FULL_CONFIGURATION 0x00
00032 #define BOOT_WITH_MINIMAL_CONFIGURATION 0x01
00033 #define BOOT_ASSUMING_NO_CONFIGURATION_CHANGES 0x02
00034 #define BOOT_WITH_FULL_CONFIGURATION_PLUS_DIAGNOSTICS 0x03
00035 #define BOOT_WITH_DEFAULT_SETTINGS 0x04
00036 #define BOOT_ON_S4_RESUME 0x05
00037 #define BOOT_ON_S5_RESUME 0x06
00038 #define BOOT_ON_S2_RESUME 0x10
00039 #define BOOT_ON_S3_RESUME 0x11
00040 #define BOOT_ON_FLASH_UPDATE 0x12
00041 #define BOOT_IN_RECOVERY_MODE 0x20
00042
00043 #endif