diff options
| author | Tom Rini <[email protected]> | 2019-02-26 08:45:08 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-02-26 08:45:08 -0500 |
| commit | b3820ba997f004a376efc5446683101ff42b05af (patch) | |
| tree | 384943346ded7a82aa22747fbe2010dc9f69ca33 /include/command.h | |
| parent | afd46c5f13d0c93c44008bd7040227d0b84e31b9 (diff) | |
| parent | 00358bb804e9e8aa754f946954d299ba9e658a84 (diff) | |
Merge tag 'efi-2019-04-rc3' of https://github.com/xypron2/u-boot
Pull request for the UEFI sub-system for v2019.04-rc3
A new option -e is added to the env command which allows to display and
change UEFI variables in a user friendly way.
A new command efidebug is introduced to edit the UEFI boot sequence and to
display different aspects of the state of the UEFI sub-system: memory map,
loaded images, handles, drivers and devices.
A bug in the UEFI boot manager is fixed.
Diffstat (limited to 'include/command.h')
| -rw-r--r-- | include/command.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/command.h b/include/command.h index 461b17447c0..2e24e8ad3ee 100644 --- a/include/command.h +++ b/include/command.h @@ -139,6 +139,14 @@ extern int do_poweroff(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[] extern unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc, char * const argv[]); + +#if defined(CONFIG_CMD_NVEDIT_EFI) +extern int do_env_print_efi(cmd_tbl_t *cmdtp, int flag, int argc, + char * const argv[]); +extern int do_env_set_efi(cmd_tbl_t *cmdtp, int flag, int argc, + char * const argv[]); +#endif + /* * Error codes that commands return to cmd_process(). We use the standard 0 * and 1 for success and failure, but add one more case - failure with a |
