Skip to content

Commit 01cb29b

Browse files
committed
Add Intel Core Ultra Series 3 detection
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent 60fd58b commit 01cb29b

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

framework_lib/src/commandline/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -678,6 +678,7 @@ fn print_versions(ec: &CrosEc) {
678678
| Some(Platform::IntelGen12)
679679
| Some(Platform::IntelGen13)
680680
| Some(Platform::IntelCoreUltra1)
681+
| Some(Platform::IntelCoreUltra3)
681682
);
682683
let mut left_retimer: Option<u32> = None;
683684
let mut right_retimer: Option<u32> = None;

framework_lib/src/smbios.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ pub fn get_platform() -> Option<Platform> {
208208
"Laptop 13 (AMD Ryzen AI 300 Series)" => Some(Platform::Framework13AmdAi300),
209209
"Laptop 12 (13th Gen Intel Core)" => Some(Platform::Framework12IntelGen13),
210210
"Laptop 13 (Intel Core Ultra Series 1)" => Some(Platform::IntelCoreUltra1),
211+
"Framework Laptop 13 Pro (Intel Core Ultra Series 3)" => Some(Platform::IntelCoreUltra3),
211212
"Laptop 16 (AMD Ryzen 7040 Series)" => Some(Platform::Framework16Amd7080),
212213
"Laptop 16 (AMD Ryzen AI 300 Series)" => Some(Platform::Framework16AmdAi300),
213214
"Desktop (AMD Ryzen AI Max 300 Series)" => Some(Platform::FrameworkDesktopAmdAiMax300),

0 commit comments

Comments
 (0)