installer: put whql assets in reasonable place
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
c91cac07f9
commit
aeb0657dff
4
.gitignore
vendored
4
.gitignore
vendored
@ -18,7 +18,3 @@
|
|||||||
|
|
||||||
# Driver Verification Log
|
# Driver Verification Log
|
||||||
/wintun.DVL.XML
|
/wintun.DVL.XML
|
||||||
|
|
||||||
# WHQL Driver
|
|
||||||
/whql/x86
|
|
||||||
/whql/amd64
|
|
||||||
|
@ -71,7 +71,7 @@ ARM64 Release | `arm64\Release\wintun`
|
|||||||
1. `msbuild wintun.proj /t:DVL;Build`.
|
1. `msbuild wintun.proj /t:DVL;Build`.
|
||||||
2. Perform Windows Hardware Lab Kit tests.
|
2. Perform Windows Hardware Lab Kit tests.
|
||||||
3. Submit submission package to Microsoft.
|
3. Submit submission package to Microsoft.
|
||||||
4. Copy WHQL-signed driver to `whql\x86` and `whql\amd64` subfolders.
|
4. Copy WHQL-signed driver to `x86\Release\whql\` and `amd64\Release\whql\` subfolders.
|
||||||
5. `msbuild wintun.proj /t:MSM`
|
5. `msbuild wintun.proj /t:MSM`
|
||||||
6. MSM files are placed in `dist` subfolder.
|
6. MSM files are placed in `dist` subfolder.
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
<SuppressSpecificWarnings>1006;1086;$(SuppressSpecificWarnings)</SuppressSpecificWarnings>
|
<SuppressSpecificWarnings>1006;1086;$(SuppressSpecificWarnings)</SuppressSpecificWarnings>
|
||||||
<LinkerSuppressSpecificWarnings>1103;$(LinkerSuppressSpecificWarnings)</LinkerSuppressSpecificWarnings>
|
<LinkerSuppressSpecificWarnings>1103;$(LinkerSuppressSpecificWarnings)</LinkerSuppressSpecificWarnings>
|
||||||
<SuppressIces>ICE30;$(SuppressIces)</SuppressIces>
|
<SuppressIces>ICE30;$(SuppressIces)</SuppressIces>
|
||||||
<LinkerAdditionalOptions>-b output_dir="$(IntermediateOutputPath.TrimEnd('\'))" -b whql_dir="whql\$(WintunPlatform)" $(LinkerAdditionalOptions)</LinkerAdditionalOptions>
|
<LinkerAdditionalOptions>-b output_dir="$(IntermediateOutputPath.TrimEnd('\'))" -b whql_dir="$(WintunPlatform)\$(Configuration)\whql" $(LinkerAdditionalOptions)</LinkerAdditionalOptions>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
||||||
<SuppressPdbOutput>true</SuppressPdbOutput>
|
<SuppressPdbOutput>true</SuppressPdbOutput>
|
||||||
|
Loading…
Reference in New Issue
Block a user