diff options
author | Simon Glass <sjg@chromium.org> | 2025-01-10 17:00:07 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-01-22 15:58:03 -0600 |
commit | 78bff2ebba9994a61ec8c0592d88ddb1d34c795b (patch) | |
tree | 75e24c3d3d692ba4a1a4eeb8a26bcfc0c2e66949 | |
parent | 26001ee047d071214c3dff7603c8d956ba172d6d (diff) |
x86: Enable meminfo command
Enable this command for x86 boards as it is quite useful for seeing
where memory is.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | cmd/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 93efeaec6f4..4bc8b9100de 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -892,14 +892,14 @@ config MD5SUM_VERIFY config CMD_MEMINFO bool "meminfo" - default y if SANDBOX + default y if SANDBOX || X86 help Display memory information. config CMD_MEMINFO_MAP bool "- with memory map" depends on CMD_MEMINFO - default y if SANDBOX + default y if SANDBOX || X86 help Shows a memory map, in addition to just the DRAM size. This allows seeing where U-Boot's memory area is, at the top of DRAM, as well as |