From: Mark Kettenis Date: Mon, 2 Jun 2025 20:10:08 +0000 (+0200) Subject: cmd: smbios: Fix header for type 3 entries X-Git-Tag: v2025.10-rc1~91^2~39 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f35f053755f98e077389517f80ad7da81b031787;p=pandora-u-boot.git cmd: smbios: Fix header for type 3 entries Change from "Baseboard Information" to "Chassis information". Signed-off-by: Mark Kettenis Reviewed-by: Heinrich Schuchardt --- diff --git a/cmd/smbios.c b/cmd/smbios.c index 562dd7959be..ed419f19028 100644 --- a/cmd/smbios.c +++ b/cmd/smbios.c @@ -280,7 +280,7 @@ static void smbios_print_type3(struct smbios_type3 *table) int i; u8 *addr = (u8 *)table + offsetof(struct smbios_type3, sku_number); - printf("Baseboard Information\n"); + printf("Chassis Information\n"); smbios_print_str("Manufacturer", table, table->manufacturer); printf("\tType: 0x%02x\n", table->chassis_type); smbios_print_str("Version", table, table->version);