From: Simon Glass <sjg@chromium.org>
Enable these commands in the app, since the requires pieces are now in
place.
Signed-off-by: Simon Glass <sjg@chromium.org>
---
(no changes since v1)
cmd/efidebug.c | 9 ---------
1 file changed, 9 deletions(-)
@@ -922,9 +922,6 @@ static int do_efi_boot_add(struct cmd_tbl *cmdtp, int flag,
efi_status_t ret;
int r = CMD_RET_SUCCESS;
- if (app_not_supported("boot add"))
- return CMD_RET_FAILURE;
-
guid = efi_global_variable_guid;
/* attributes */
@@ -1105,9 +1102,6 @@ static int do_efi_boot_rm(struct cmd_tbl *cmdtp, int flag,
u16 var_name16[9];
efi_status_t ret;
- if (app_not_supported("boot rm"))
- return CMD_RET_FAILURE;
-
if (argc == 1)
return CMD_RET_USAGE;
@@ -1290,9 +1284,6 @@ static int show_efi_boot_order(void)
struct efi_load_option lo;
efi_status_t ret;
- if (app_not_supported("show_boot_order"))
- return CMD_RET_FAILURE;
-
size = 0;
ret = efi_get_variable_int(u"BootOrder", &efi_global_variable_guid,
NULL, &size, NULL, NULL);