aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2021-10-21 11:37:55 +0200
committerSimon Rozman <simon@rozman.si>2021-10-21 11:44:09 +0200
commit3fa1a8c60f74ad70899b7d3081ef534e6e053fcb (patch)
tree5af1067278bf4beb5db08cc4d8e4de667bccc7f8
parentdriver: PEER_UPDATE is supposed to be UPDATE_ONLY (diff)
downloadwireguard-nt-3fa1a8c60f74ad70899b7d3081ef534e6e053fcb.tar.xz
wireguard-nt-3fa1a8c60f74ad70899b7d3081ef534e6e053fcb.zip
proj: stop building for arm32
This does not remove 32-bit ARM compilation support out of the project yet. Shipping of 32-bit ARM drivers became a real challenge: - Microsoft changed policy to prohibit EV-signed drivers - Attestation signing is not supported for this platform - Setting up Windows 8 ARM HCK to get WHQL certification requires a lot of effort if doable in 2021 at all. Signed-off-by: Simon Rozman <simon@rozman.si>
-rw-r--r--README.md2
-rw-r--r--wireguard-nt.proj5
2 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index cfe7a9d..b9f9f3f 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# [WireGuard](https://www.wireguard.com/) for the NT Kernel
### High performance in-kernel WireGuard implementation for Windows
-WireGuardNT is an implementation of WireGuard, for the NT Kernel as used in Windows 7, 8, 8.1, 10, and 11, supporting AMD64, x86, ARM64, and ARM processors.
+WireGuardNT is an implementation of WireGuard, for the NT Kernel as used in Windows 7, 8, 8.1, 10, and 11, supporting AMD64, x86, and ARM64 processors.
#### Not the droids you're looking for
diff --git a/wireguard-nt.proj b/wireguard-nt.proj
index f809e53..e66f34f 100644
--- a/wireguard-nt.proj
+++ b/wireguard-nt.proj
@@ -15,8 +15,8 @@
<Import Project="wireguard-nt.props" />
<Import Project="wireguard-nt.props.user" Condition="exists('wireguard-nt.props.user')" />
- <Target Name="Driver" DependsOnTargets="Driver-x86;Driver-amd64;Driver-arm;Driver-arm64" />
- <Target Name="Dll" DependsOnTargets="Dll-x86;Dll-amd64;Dll-arm;Dll-arm64" />
+ <Target Name="Driver" DependsOnTargets="Driver-x86;Driver-amd64;Driver-arm64" />
+ <Target Name="Dll" DependsOnTargets="Dll-x86;Dll-amd64;Dll-arm64" />
<Target Name="Clean">
<RemoveDir Directories="$(Configuration)\amd64\" />
<RemoveDir Directories="$(Configuration)\arm\" />
@@ -77,7 +77,6 @@
<ZipFilesSrc Include="README.md" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\README.md" />
<ZipFilesSrc Include="api\wireguard.h" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\include\wireguard.h" />
<ZipFilesSrc Include="$(Configuration)\amd64\wireguard.dll" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\bin\amd64\wireguard.dll" />
- <ZipFilesSrc Include="$(Configuration)\arm\wireguard.dll" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\bin\arm\wireguard.dll" />
<ZipFilesSrc Include="$(Configuration)\arm64\wireguard.dll" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\bin\arm64\wireguard.dll" />
<ZipFilesSrc Include="$(Configuration)\x86\wireguard.dll" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\bin\x86\wireguard.dll" />
</ItemGroup>