]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
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 562dd7959be4dc5a482338bfe8009cf028913cfe..ed419f19028f2a1672a8f1a7aee1f805c3d3263d 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);