From f35f053755f98e077389517f80ad7da81b031787 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Mon, 2 Jun 2025 22:10:08 +0200 Subject: [PATCH] cmd: smbios: Fix header for type 3 entries Change from "Baseboard Information" to "Chassis information". Signed-off-by: Mark Kettenis Reviewed-by: Heinrich Schuchardt --- cmd/smbios.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.2