Skip to content

Commit 2c3c695

Browse files
committed
clean build.rs - update res list
1 parent a433ca4 commit 2c3c695

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

build.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ fn main() {
88

99
let mut fh = fs::File::create(&outfile).unwrap();
1010

11+
let now = chrono::Local::now();
1112
write!(
1213
fh,
1314
r#""v{} {}-{:02}-{:02}""#,
1415
env!("CARGO_PKG_VERSION"),
15-
chrono::Local::now().year(),
16-
chrono::Local::now().month(),
17-
chrono::Local::now().day()
16+
now.year(),
17+
now.month(),
18+
now.day()
1819
)
1920
.ok();
2021
}

tool_config_files/dyn_res_list.zip

21 Bytes
Binary file not shown.

tool_config_files/resource_list.json

+9
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,15 @@
448448
"VoodooPS2Trackpad.kext": {
449449
"parent": "VoodooPS2"
450450
},
451+
"VoodooRMI.kext": {
452+
"parent": "VoodooRMI"
453+
},
454+
"RMII2C.kext": {
455+
"parent": "VoodooRMI"
456+
},
457+
"RMISMBus.kext": {
458+
"parent": "VoodooRMI"
459+
},
451460
"WhateverGreen.kext": {
452461
"parent": "WhateverGreen"
453462
},

0 commit comments

Comments
 (0)