Skip to content

Commit a1247c3

Browse files
committed
Let users know about the supported BIOS version
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent a24ace3 commit a1247c3

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

framework_lib/src/chromium_ec/windows.rs

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,21 @@ fn init() -> bool {
5252
match platform {
5353
Some(platform @ Platform::IntelGen11)
5454
| Some(platform @ Platform::IntelGen12)
55-
| Some(platform @ Platform::IntelGen13)
56-
| Some(platform @ Platform::Framework13Amd7080)
57-
| Some(platform @ Platform::Framework16Amd7080) => {
55+
| Some(platform @ Platform::IntelGen13) => {
5856
println!("The windows driver is not enabled on {:?}.", platform);
5957
println!("Please stay tuned for future BIOS and driver updates.");
6058
println!();
6159
}
60+
Some(platform @ Platform::Framework13Amd7080) => {
61+
println!("The windows driver has been enabled since BIOS 3.16.");
62+
println!("Please install the latest BIOS and drivers");
63+
println!();
64+
}
65+
Some(platform @ Platform::Framework16Amd7080) => {
66+
println!("The windows driver has been enabled since BIOS 3.06.");
67+
println!("Please install the latest BIOS and drivers");
68+
println!();
69+
}
6270
_ => (),
6371
}
6472

0 commit comments

Comments
 (0)