From e125cfecce998c1ed6e0bccb74bbc00d54ed6a3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Wed, 18 Sep 2024 23:04:03 +0200 Subject: [PATCH] hcl: mark both AX211 and BE200 wifi as certified on Novacustom V56 (cherry picked from commit c30178a38e291291fa2642f60827ade4d71bb7ba) --- qvm-tools/qubes-hcl-report | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qvm-tools/qubes-hcl-report b/qvm-tools/qubes-hcl-report index 831b04d66..b36e307f3 100755 --- a/qvm-tools/qubes-hcl-report +++ b/qvm-tools/qubes-hcl-report @@ -233,9 +233,9 @@ elif [ "$BRAND" = "LENOVO" ] && [ "$PRODUCT_VERSION" = "ThinkPad X230" ] && [[ " # NitroPad T430 CERTIFIED=yes elif [ "$BRAND" = "Notebook" ] && [ "$PRODUCT_VERSION" = "V560TU" ] && [[ "$BIOS" = "Dasharo"* ]]; then - # only Intel AX models are certified + # only Intel AX or BE200 models are certified wifi=$(lspci -nn | grep -F '[0280]:') - if [ -z "$wifi" ] || [[ "$wifi" = *"8086:272b"* ]]; then + if [ -z "$wifi" ] || [[ "$wifi" = *"8086:7e40"* ]] || [[ "$wifi" = *"8086:272b"* ]]; then CERTIFIED=yes fi fi