diff options
-rw-r--r-- | hardinfo/dmi_util.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/hardinfo/dmi_util.c b/hardinfo/dmi_util.c index 0a493411..6479de6b 100644 --- a/hardinfo/dmi_util.c +++ b/hardinfo/dmi_util.c @@ -41,10 +41,17 @@ static int ignore_placeholder_strings(gchar **pstr) { DMI_IGNORE("NA"); DMI_IGNORE("SKU"); - /* noticed on an HP x360 */ + /* noticed on an HP x360 with Insyde BIOS */ DMI_IGNORE("Type2 - Board Asset Tag"); DMI_IGNORE("Type1ProductConfigId"); + /* Toshiba Laptop with Insyde BIOS */ + DMI_IGNORE("Base Board Version"); + DMI_IGNORE("No Asset Tag"); + DMI_IGNORE("None"); + DMI_IGNORE("Type1Family"); + DMI_IGNORE("123456789"); + /* Zotac version nonsense */ p = chk; while (*p != 0) { *p = 'x'; p++; } /* all X */ |