diff --git a/src/app/ec.rs b/src/app/ec.rs index d273945..ef4d55e 100644 --- a/src/app/ec.rs +++ b/src/app/ec.rs @@ -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(),