Skip to content

Commit

Permalink
Add support for darp10-b
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 authored and crawfxrd committed May 2, 2024
1 parent b7c3f6e commit 012632d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/app/ec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,14 @@ impl EcComponent {
"NS50MU" => "system76/darp7".to_string(),
"NS50_70PU" => "system76/darp8".to_string(),
"NS50_70AU" => "system76/darp9".to_string(),
"V5x0TU" => "system76/darp10".to_string(),
"V5x0TU" => {
// If the EC version starts with 1.07. then this is the 16 inch variant
if self.version.starts_with("1.07.") {
"system76/darp10".to_string()
} else {
"system76/darp10-b".to_string()
}
},
"NV40Mx" | "NV40Mx-DV" | "NV40MJ" => "system76/galp5".to_string(),
"NV4xPZ" => "system76/galp6".to_string(),
"NV40RZ" => "system76/galp7".to_string(),
Expand Down

0 comments on commit 012632d

Please sign in to comment.