We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a546efa commit d082103Copy full SHA for d082103
src/graphics.rs
@@ -106,6 +106,7 @@ const EXTERNAL_DISPLAY_REQUIRES_NVIDIA: &[&str] = &[
106
"gaze16-3060-b",
107
"gaze17-3050",
108
"gaze17-3060-b",
109
+ "gaze19",
110
"kudu6",
111
"oryp4",
112
"oryp4-b",
src/hotplug/mod.rs
@@ -279,6 +279,12 @@ impl HotPlugDetect {
279
],
280
}),
281
282
+ "gaze19" => {
283
+ let gpios = vec![
284
+ 0x04, // HDMI
285
+ ];
286
+ Ok(Self { integrated: Integrated::Amd(Amd::new(gpios)?) })
287
+ },
288
"kudu6" => {
289
let gpios = vec![
290
0x02, // USB-C
0 commit comments