installer: fix typos
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
5094737f8c
commit
a0491c6b08
13
README.md
13
README.md
@ -53,7 +53,7 @@ msbuild wintun.proj [/t:<target>]
|
|||||||
|
|
||||||
- `DVL`: Runs the `SDV`, and creates a Driver Verification Log, only for AMD64 release configurations.
|
- `DVL`: Runs the `SDV`, and creates a Driver Verification Log, only for AMD64 release configurations.
|
||||||
|
|
||||||
- `MSM`: Builds Microsoft Installer Merge Modules in `<output folder>\wintun-<platform>-<version>.msm`. Requires WHLK signed driver (See: [Building Microsoft Installer Merge Modules]).
|
- `MSM`: Builds Microsoft Installer Merge Modules in `<output folder>\wintun-<platform>-<version>.msm`. Requires WHQL signed driver.
|
||||||
|
|
||||||
The driver output folders are:
|
The driver output folders are:
|
||||||
|
|
||||||
@ -68,11 +68,12 @@ ARM64 Release | `arm64\Release\wintun`
|
|||||||
|
|
||||||
### Building Microsoft Installer Merge Modules
|
### Building Microsoft Installer Merge Modules
|
||||||
|
|
||||||
1. `msbuild wintun.proj /t:DVL;Build`
|
1. `msbuild wintun.proj /t:DVL;Build`.
|
||||||
2. Perform Windows Hardware Lab Kit tests; Submit submission package to Microsoft; Get WHQL signed driver.
|
2. Perform Windows Hardware Lab Kit tests.
|
||||||
3. Copy WHQL signed driver to `whql\x86` and `whql\amd64` subfolders.
|
3. Submit submission package to Microsoft.
|
||||||
4. `msbuild wintun.proj /t:MSM`
|
4. Copy WHQL-signed driver to `whql\x86` and `whql\amd64` subfolders.
|
||||||
5. MSM files are placed in `dist` subfolder.
|
5. `msbuild wintun.proj /t:MSM`
|
||||||
|
6. MSM files are placed in `dist` subfolder.
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
@ -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 whwl_dir="whql\$(WintunPlatform)" $(LinkerAdditionalOptions)</LinkerAdditionalOptions>
|
<LinkerAdditionalOptions>-b output_dir="$(IntermediateOutputPath.TrimEnd('\'))" -b whql_dir="whql\$(WintunPlatform)" $(LinkerAdditionalOptions)</LinkerAdditionalOptions>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
||||||
<SuppressPdbOutput>true</SuppressPdbOutput>
|
<SuppressPdbOutput>true</SuppressPdbOutput>
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
<File
|
<File
|
||||||
Id="wintun.cat.whql"
|
Id="wintun.cat.whql"
|
||||||
Name="wintun.cat"
|
Name="wintun.cat"
|
||||||
Source="!(bindpath.whwl_dir)wintun.cat"
|
Source="!(bindpath.whql_dir)wintun.cat"
|
||||||
DefaultVersion="$(var.WINTUN_VERSION)"
|
DefaultVersion="$(var.WINTUN_VERSION)"
|
||||||
DefaultLanguage="0"/>
|
DefaultLanguage="0"/>
|
||||||
<diffx:Driver
|
<diffx:Driver
|
||||||
@ -77,7 +77,7 @@
|
|||||||
<File
|
<File
|
||||||
Id="wintun.sys.whql"
|
Id="wintun.sys.whql"
|
||||||
Name="wintun.sys"
|
Name="wintun.sys"
|
||||||
Source="!(bindpath.whwl_dir)wintun.sys"
|
Source="!(bindpath.whql_dir)wintun.sys"
|
||||||
DefaultVersion="$(var.WINTUN_VERSION)"
|
DefaultVersion="$(var.WINTUN_VERSION)"
|
||||||
DefaultLanguage="0"/>
|
DefaultLanguage="0"/>
|
||||||
</Component>
|
</Component>
|
||||||
|
Loading…
Reference in New Issue
Block a user