diff options
| author | Tom Rini <[email protected]> | 2018-07-01 22:13:34 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2018-07-01 22:13:34 -0400 |
| commit | ac378bb05fa3cac3197085431f577e0dbddd4b4a (patch) | |
| tree | aa16e2990b97bd5d2f1358a63e906963a55bc8ce /cmd | |
| parent | 168de20f3b6ccefef0ff5757fa5310f47a95c2f0 (diff) | |
| parent | 40144260a9c8c5228500824ad9b7b19597a4bb0b (diff) | |
Merge git://git.denx.de/u-boot-x86
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/bootefi.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/bootefi.c b/cmd/bootefi.c index f55a40dc84c..cd755b6bf44 100644 --- a/cmd/bootefi.c +++ b/cmd/bootefi.c @@ -61,6 +61,11 @@ efi_status_t efi_init_obj_list(void) if (ret != EFI_SUCCESS) goto out; #endif +#ifdef CONFIG_GENERATE_ACPI_TABLE + ret = efi_acpi_register(); + if (ret != EFI_SUCCESS) + goto out; +#endif #ifdef CONFIG_GENERATE_SMBIOS_TABLE ret = efi_smbios_register(); if (ret != EFI_SUCCESS) |
