diff options
| author | Simon Glass <[email protected]> | 2023-03-20 08:30:15 +1300 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2023-03-25 11:07:22 +0100 |
| commit | 1d32eee4faedc11d98a342c92aa7d139d9b204cc (patch) | |
| tree | 8ac0b99cc5de2784546a6f76156bc1f4fb111dcb /cmd/Makefile | |
| parent | 041840eeeb129ab979cbc05d6c5fb80162f50add (diff) | |
efi: Support showing tables
Add a command (for the app and payload) to display the tables provided
by EFI. Note that for the payload the tables should always be present, so
an error message is unnecessary and would bloat the code.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'cmd/Makefile')
| -rw-r--r-- | cmd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index 62f50e2b1cc..d95833b2de0 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -62,7 +62,7 @@ obj-$(CONFIG_CMD_EXTENSION) += extension_board.o obj-$(CONFIG_CMD_ECHO) += echo.o obj-$(CONFIG_ENV_IS_IN_EEPROM) += eeprom.o obj-$(CONFIG_CMD_EEPROM) += eeprom.o -obj-$(CONFIG_EFI) += efi.o +obj-$(CONFIG_EFI) += efi.o efi_common.o obj-$(CONFIG_CMD_EFIDEBUG) += efidebug.o efi_common.o obj-$(CONFIG_CMD_EFICONFIG) += eficonfig.o ifdef CONFIG_CMD_EFICONFIG |
