mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
efi_selfest: redefine enum efi_test_phase
Setup will always occur before ExitBootServices(). So eliminate EFI_SETUP_AFTER_BOOTTIME_EXIT. Put the SetVirtualAddressMap() test into a separate class so that we can execute it last. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
f69a2016b6
commit
5e21958c02
3 changed files with 10 additions and 10 deletions
|
@ -66,11 +66,10 @@ enum efi_test_phase {
|
|||
*/
|
||||
EFI_SETUP_BEFORE_BOOTTIME_EXIT,
|
||||
/**
|
||||
* @EFI_SETUP_AFTER_BOOTTIME_EXIT: - setup after ExitBootServices
|
||||
*
|
||||
* Setup, execute, and teardown are executed after ExitBootServices().
|
||||
* @EFI_SETTING_VIRTUAL_ADDRESS_MAP - calls SetVirtualAddressMap()
|
||||
* Execute calls SetVirtualAddressMap().
|
||||
*/
|
||||
EFI_SETUP_AFTER_BOOTTIME_EXIT,
|
||||
EFI_SETTING_VIRTUAL_ADDRESS_MAP,
|
||||
};
|
||||
|
||||
extern struct efi_simple_text_output_protocol *con_out;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue