diff options
| author | ruki <[email protected]> | 2025-08-14 10:18:40 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-14 10:18:40 +0800 |
| commit | 84fcc1fd63aec5b6126f35806305326e4ecb936f (patch) | |
| tree | 08d1028df578f31bbdf811da14e550762919a5af | |
| parent | 73909cc64059f30c56c3fb2d24451ccc60de3ebd (diff) | |
| parent | 74e371f802b1b767cd2e920c47cd1e23c72bd3b8 (diff) | |
Merge pull request #6695 from std-microblock/patch-3
add /uselocaltime to inf2cat args
| -rw-r--r-- | xmake/rules/wdk/sign/xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/wdk/sign/xmake.lua b/xmake/rules/wdk/sign/xmake.lua index 615bffd47..d82f632e0 100644 --- a/xmake/rules/wdk/sign/xmake.lua +++ b/xmake/rules/wdk/sign/xmake.lua @@ -127,7 +127,7 @@ rule("wdk.sign") -- do inf2cat local inf2cat_dir = path.directory(target:targetfile()) - local inf2cat_argv = {"/driver:" .. inf2cat_dir} + local inf2cat_argv = {"/driver:" .. inf2cat_dir, "/uselocaltime"} local inf2cat_os = target:values("wdk.inf2cat.os") or {"XP_" .. arch, "7_" .. arch, "8_" .. arch, "10_" .. arch} table.insert(inf2cat_argv, "/os:" .. table.concat(table.wrap(inf2cat_os), ',')) os.vrunv(inf2cat, inf2cat_argv) |
