Skip to content

Commit

Permalink
Drivers/Windows: signed the drivers
Browse files Browse the repository at this point in the history
Spent a lot of time with
http://www.davidegrayson.com/signing/#howto
to figure out how to sign these drivers
  • Loading branch information
Jason Kridner committed Jul 9, 2014
1 parent c799bbe commit 2c8995c
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
Binary file modified Drivers/Windows/BONE_D64.exe
Binary file not shown.
Binary file modified Drivers/Windows/BONE_DRV.exe
Binary file not shown.
Binary file modified Drivers/Windows/src/dpinst/dpinst.exe
Binary file not shown.
Binary file modified Drivers/Windows/src/dpinst64/dpinst.exe
Binary file not shown.
25 changes: 25 additions & 0 deletions Drivers/Windows/src/make.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
"C:\Program Files (x86)\Windows Kits\8.1\bin\x86\inf2cat" /v /driver:%~dp0\files\FTDI /os:XP_X86,Vista_X86,Vista_X64,7_X86,7_X64,8_X86,8_X64
"C:\Program Files (x86)\Windows Kits\8.1\bin\x86\inf2cat" /v /driver:%~dp0\files\RNDIS /os:XP_X86,Vista_X86,Vista_X64,7_X86,7_X64,8_X86,8_X64
"C:\Program Files (x86)\Windows Kits\8.1\bin\x86\inf2cat" /v /driver:%~dp0\files\CDCACM /os:XP_X86,Vista_X86,Vista_X64,7_X86,7_X64,8_X86,8_X64
"C:\Program Files (x86)\Windows Kits\8.0\bin\x86\signtool" sign /v /n "BeagleBoard.org Foundation" /ac "mscvr-cross-gdroot.crt" "files\FTDI\*.cat"
"C:\Program Files (x86)\Windows Kits\8.0\bin\x86\signtool" sign /v /n "BeagleBoard.org Foundation" /ac "mscvr-cross-gdroot.crt" "files\RNDIS\*.cat"
"C:\Program Files (x86)\Windows Kits\8.0\bin\x86\signtool" sign /v /n "BeagleBoard.org Foundation" /ac "mscvr-cross-gdroot.crt" "files\CDCACM\*.cat"
"C:\Program Files (x86)\Windows Kits\8.0\bin\x86\signtool" sign /v /n "BeagleBoard.org Foundation" /ac "mscvr-cross-gdroot.crt" /a dpinst\dpinst.exe
"C:\Program Files (x86)\Windows Kits\8.0\bin\x86\signtool" sign /v /n "BeagleBoard.org Foundation" /ac "mscvr-cross-gdroot.crt" /a dpinst64\dpinst.exe
del BONE_DRV.7z
del BONE_D64.7z
cd files
"c:\Program Files\7-Zip\7z.exe" a ..\BONE_DRV.7z *
cd ..
copy BONE_DRV.7z BONE_D64.7z
cd dpinst
"c:\Program Files\7-Zip\7z.exe" a ..\BONE_DRV.7z dpinst.exe
cd ..
cd dpinst64
"c:\Program Files\7-Zip\7z.exe" a ..\BONE_D64.7z dpinst.exe
cd ..
copy /b 7zSD.sfx + config.txt + BONE_DRV.7z ..\BONE_DRV.exe
copy /b 7zSD.sfx + config.txt + BONE_D64.7z ..\BONE_D64.exe
"C:\Program Files (x86)\Windows Kits\8.0\bin\x86\signtool" sign /v /n "BeagleBoard.org Foundation" /ac "mscvr-cross-gdroot.crt" ..\BONE_DRV.exe
"C:\Program Files (x86)\Windows Kits\8.0\bin\x86\signtool" sign /v /n "BeagleBoard.org Foundation" /ac "mscvr-cross-gdroot.crt" ..\BONE_D64.exe
pause

0 comments on commit 2c8995c

Please sign in to comment.