cmd: smbios: Fix header for type 3 entries
authorMark Kettenis <kettenis@openbsd.org>
Mon, 2 Jun 2025 20:10:08 +0000 (22:10 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 25 Jun 2025 19:42:26 +0000 (13:42 -0600)
Change from "Baseboard Information" to "Chassis information".

Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
cmd/smbios.c

index 562dd79..ed419f1 100644 (file)
@@ -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);