summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2023-08-01 11:57:55 -0400
committerTom Rini <[email protected]>2023-08-01 11:57:55 -0400
commit7755b2200777f72dca87dd169138e95f011bbcb9 (patch)
treec8efbd18be71924f85faec5272bd779da89828ed /cmd
parente5b082a3c594cc332ccb5db0296bad7a4c070bf0 (diff)
parentdb971a7587d04b3f1cf2e6d452f9e37f50c5b3ed (diff)
Merge tag 'x86-pull-20230801' of https://source.denx.de/u-boot/custodians/u-boot-x86
- MTRR fixes for x86 boards - Add a little more info to 'cbsysinfo' command
Diffstat (limited to 'cmd')
-rw-r--r--cmd/x86/cbsysinfo.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd/x86/cbsysinfo.c b/cmd/x86/cbsysinfo.c
index 2b8d3b0a435..84822a3e321 100644
--- a/cmd/x86/cbsysinfo.c
+++ b/cmd/x86/cbsysinfo.c
@@ -190,8 +190,9 @@ static void show_table(struct sysinfo_t *info, bool verbose)
struct cb_serial *ser = info->serial;
int i;
- printf("Coreboot table at %lx, decoded to %p",
- gd->arch.coreboot_table, info);
+ printf("Coreboot table at %lx, size %x, records %x (dec %d), decoded to %p",
+ gd->arch.coreboot_table, info->table_size, info->rec_count,
+ info->rec_count, info);
if (info->header)
printf(", forwarded to %p\n", info->header);
printf("\n");