Skip to content

Commit 19bb779

Browse files
committed
Let users know about the supported BIOS version
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent a24ace3 commit 19bb779

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

framework_lib/src/chromium_ec/windows.rs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,19 @@ 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+
Some(platform @ Platform::Framework16Amd7080) => {
65+
println!("The windows driver has been enabled since BIOS 3.06.");
66+
println!("Please install the latest BIOS and drivers");
67+
println!();
6268
_ => (),
6369
}
6470

0 commit comments

Comments
 (0)