
From: Simon Glass <sjg@chromium.org> If SMBIOS is enabled on x86, enable the 'smbios' command by default, so that the tables can be examined. Signed-off-by: Simon Glass <sjg@chromium.org> --- (no changes since v1) configs/chromebook_link_defconfig | 1 + lib/Kconfig | 1 + 2 files changed, 2 insertions(+) diff --git a/configs/chromebook_link_defconfig b/configs/chromebook_link_defconfig index a2231cc314f..05d81f516fc 100644 --- a/configs/chromebook_link_defconfig +++ b/configs/chromebook_link_defconfig @@ -32,6 +32,7 @@ CONFIG_DISPLAY_BOARDINFO_LATE=y CONFIG_MISC_INIT_R=y CONFIG_HUSH_PARSER=y CONFIG_CMD_CPU=y +# CONFIG_CMD_SMBIOS is not set CONFIG_CMD_GPIO=y CONFIG_CMD_PART=y CONFIG_CMD_SPI=y diff --git a/lib/Kconfig b/lib/Kconfig index ed93f798f69..0834d46fbb4 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -1171,6 +1171,7 @@ config SMBIOS depends on X86 || EFI_LOADER default y select LAST_STAGE_INIT + imply CMD_SMBIOS if X86 help Indicates that this platform can support System Management BIOS (SMBIOS) tables. These provide various pieces of information about -- 2.43.0