diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-07-14 08:04:49 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-07-16 12:37:02 +0200 |
commit | 012c56ac76e1bdabc711a90898e81316e1d1a020 (patch) | |
tree | c91e58b8654fce27666af1852773b30aebe8ec80 /include/efi_variable.h | |
parent | f96744b2509622302dbc6bd6f2f669fc406c24d3 (diff) |
efi_loader: restructure code for TEE variables
When using secure boot functions needed both for file and TEE based UEFI
variables have to be moved to the common code module efi_var_common.c.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi_variable.h')
-rw-r--r-- | include/efi_variable.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/efi_variable.h b/include/efi_variable.h index bc5985cfdb..5eec407a2b 100644 --- a/include/efi_variable.h +++ b/include/efi_variable.h @@ -195,4 +195,11 @@ efi_status_t efi_var_mem_ins(u16 *variable_name, */ u64 efi_var_mem_free(void); +/** + * efi_init_secure_state - initialize secure boot state + * + * Return: status code + */ +efi_status_t efi_init_secure_state(void); + #endif |