diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-06-30 13:12:44 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-06-30 13:48:13 +0200 |
commit | de3d64ca85fcd3fa4251a4d4719c452da2a56987 (patch) | |
tree | b453ce58b24fbf073c93872658d49d27e2d1e18c /sign-driver-on-windows.bat.in | |
parent | f72851a80c90960822c5498b717fac738a92971b (diff) |
Sign drivers on native Windows. Fixes #2.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'sign-driver-on-windows.bat.in')
-rw-r--r-- | sign-driver-on-windows.bat.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sign-driver-on-windows.bat.in b/sign-driver-on-windows.bat.in new file mode 100644 index 0000000..a6fe075 --- /dev/null +++ b/sign-driver-on-windows.bat.in @@ -0,0 +1,16 @@ +@echo off + +set MYDIR=%~dp0 +set FILENAME_PREFIX=mingw-w64-dpp +set DRIVER={{ DRIVER_NAME }} + +where signtool.exe >nul 2>&1 +IF %ERRORLEVEL% NEQ 0 ( + echo ERROR: signtool.exe not found, pleae add it to your PATH + pause + exit /b 1 +) + +signtool.exe sign /v /f "%MYDIR%/%FILENAME_PREFIX%.pfx" "%MYDIR%/%DRIVER%" + +pause |