diff options
author | Heinrich Schuchardt | 2019-06-20 13:52:16 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2019-07-06 21:25:32 +0200 |
commit | 88192098d160aff42c08a9e4edc746a55d199232 (patch) | |
tree | f28230fbe3f1be95f38ce8065db2d1adc403f528 /include | |
parent | ce43528d6a9ff3d1099a6bc194f0cccc8f0df44d (diff) |
efi_loader: initialization of variable services
Provide an initialization routine for variable services.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/efi_loader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index de1e67fd40e..d30c4e8ef31 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -325,6 +325,8 @@ extern struct list_head efi_register_notify_events; /* Initialize efi execution environment */ efi_status_t efi_init_obj_list(void); +/* Initialize variable services */ +efi_status_t efi_init_variables(void); /* Called by bootefi to initialize root node */ efi_status_t efi_root_node_register(void); /* Called by bootefi to initialize runtime */ |