File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -2595,6 +2595,9 @@ fn test_linux(target: &str) {
2595
2595
// which is absent in musl, has to be defined.
2596
2596
"__exit_status" if musl => true ,
2597
2597
2598
+ // FIXME: CI's kernel header version is old.
2599
+ "sockaddr_can" => true ,
2600
+
2598
2601
_ => false ,
2599
2602
}
2600
2603
} ) ;
@@ -2701,9 +2704,10 @@ fn test_linux(target: &str) {
2701
2704
| "IFLA_PERM_ADDRESS"
2702
2705
| "IFLA_PROTO_DOWN_REASON" => true ,
2703
2706
2704
- // FIXME: J1939 requires kernel header version 5.4 or higher,
2705
- // the MIPS CI target has a lower version
2706
- "CAN_J1939" => true ,
2707
+ // FIXME: They require recent kernel header:
2708
+ | "CAN_J1939"
2709
+ | "CAN_RAW_FILTER_MAX"
2710
+ | "CAN_NPROTO" => true ,
2707
2711
2708
2712
_ => false ,
2709
2713
}
You can’t perform that action at this time.
0 commit comments