hardware: Detect ZOTAC Gaming Zone (Strix Point)

This commit is contained in:
Matthew Schwartz 2025-05-29 12:25:32 -07:00
parent b926dbd50b
commit 8c4fe23781

View file

@ -89,7 +89,7 @@ pub(crate) async fn device_variant() -> Result<(DeviceType, String)> {
(DeviceType::LegionGoS, product_name.to_string()) (DeviceType::LegionGoS, product_name.to_string())
} }
("Valve", _, "Jupiter" | "Galileo") => (DeviceType::SteamDeck, board_name.to_string()), ("Valve", _, "Jupiter" | "Galileo") => (DeviceType::SteamDeck, board_name.to_string()),
("ZOTAC", _, "G0A1W") => (DeviceType::ZotacGamingZone, board_name.to_string()), ("ZOTAC", _, "G0A1W" | "G1A1W") => (DeviceType::ZotacGamingZone, board_name.to_string()),
_ => (DeviceType::Unknown, String::from("unknown")), _ => (DeviceType::Unknown, String::from("unknown")),
}) })
} }