From 2dc450e9fd9f9cf965b337f79ac20bb57410e5e6 Mon Sep 17 00:00:00 2001 From: Brian McGillion Date: Tue, 5 Nov 2024 15:12:58 +0400 Subject: [PATCH] Fix the camera pass through to the business-vm Signed-off-by: Brian McGillion --- modules/hardware/common/usb/vhotplug.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/modules/hardware/common/usb/vhotplug.nix b/modules/hardware/common/usb/vhotplug.nix index bf8e315cb..3e19c7393 100644 --- a/modules/hardware/common/usb/vhotplug.nix +++ b/modules/hardware/common/usb/vhotplug.nix @@ -78,10 +78,25 @@ let ignore = [ { # Ignore Lenovo X1 camera since it is attached to the business-vm + # Finland SKU vendorId = "04f2"; productId = "b751"; description = "Lenovo X1 Integrated Camera"; } + { + # Ignore Lenovo X1 camera since it is attached to the business-vm + # Uae 1st SKU + vendorId = "5986"; + productId = "2145"; + description = "Lenovo X1 Integrated Camera"; + } + { + # Ignore Lenovo X1 camera since it is attached to the business-vm + # UAE #2 SKU + vendorId = "30c9"; + productId = "0052"; + description = "Lenovo X1 Integrated Camera"; + } ]; } ];