From 2d3c344f892c94185ce3732500cd5b8ff89110e6 Mon Sep 17 00:00:00 2001 From: wangjiahua Date: Wed, 15 Dec 2021 16:36:38 +0800 Subject: [PATCH] add chassis information type Computer for alpha architecture --- dmidecode.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dmidecode.c b/dmidecode.c index 3147d4d..79860b9 100644 --- a/dmidecode.c +++ b/dmidecode.c @@ -626,7 +626,8 @@ static const char *dmi_chassis_type(u8 code) "IoT Gateway", "Embedded PC", "Mini PC", - "Stick PC" /* 0x24 */ + "Stick PC", + "Computer" /* 0x25 */ }; code &= 0x7F; /* bits 6:0 are chassis type, 7th bit is the lock bit */