File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
framework_lib/src/chromium_ec Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -52,13 +52,21 @@ fn init() -> bool {
52
52
match platform {
53
53
Some ( platform @ Platform :: IntelGen11 )
54
54
| Some ( platform @ Platform :: IntelGen12 )
55
- | Some ( platform @ Platform :: IntelGen13 )
56
- | Some ( platform @ Platform :: Framework13Amd7080 )
57
- | Some ( platform @ Platform :: Framework16Amd7080 ) => {
55
+ | Some ( platform @ Platform :: IntelGen13 ) => {
58
56
println ! ( "The windows driver is not enabled on {:?}." , platform) ;
59
57
println ! ( "Please stay tuned for future BIOS and driver updates." ) ;
60
58
println ! ( ) ;
61
59
}
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
+ }
62
70
_ => ( ) ,
63
71
}
64
72
You can’t perform that action at this time.
0 commit comments