Skip to content

Commit 1b0570b

Browse files
authored
Merge pull request #1317 from kernelkit/add-wireguard
Add wireguard support
2 parents 21e7980 + 7e5da21 commit 1b0570b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+6334
-45
lines changed

board/aarch64/linux_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y
244244
CONFIG_NETDEVICES=y
245245
CONFIG_BONDING=m
246246
CONFIG_DUMMY=m
247+
CONFIG_WIREGUARD=m
247248
CONFIG_MACVLAN=m
248249
CONFIG_MACVTAP=m
249250
CONFIG_IPVLAN=m

board/x86_64/linux_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y
191191
CONFIG_NETDEVICES=y
192192
CONFIG_BONDING=m
193193
CONFIG_DUMMY=m
194+
CONFIG_WIREGUARD=m
194195
CONFIG_MACVLAN=m
195196
CONFIG_MACVTAP=m
196197
CONFIG_IPVLAN=m

configs/aarch32_defconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ BR2_ROOTFS_POST_BUILD_SCRIPT="${BR2_EXTERNAL_INFIX_PATH}/board/common/post-build
2929
BR2_ROOTFS_POST_IMAGE_SCRIPT="${BR2_EXTERNAL_INFIX_PATH}/board/common/post-image.sh"
3030
BR2_LINUX_KERNEL=y
3131
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
32-
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.12.58"
32+
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.12.64"
3333
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
3434
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="${BR2_EXTERNAL_INFIX_PATH}/board/aarch32/linux_defconfig"
3535
BR2_LINUX_KERNEL_INSTALL_TARGET=y
@@ -82,6 +82,7 @@ BR2_PACKAGE_OPENSSH=y
8282
BR2_PACKAGE_SOCAT=y
8383
BR2_PACKAGE_TCPDUMP=y
8484
BR2_PACKAGE_WHOIS=y
85+
BR2_PACKAGE_WIREGUARD_TOOLS=y
8586
BR2_PACKAGE_BASH_COMPLETION=y
8687
BR2_PACKAGE_SUDO=y
8788
BR2_PACKAGE_GETENT=y

configs/aarch32_minimal_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ BR2_PACKAGE_OPENSSH=y
8282
BR2_PACKAGE_SOCAT=y
8383
BR2_PACKAGE_TCPDUMP=y
8484
BR2_PACKAGE_WHOIS=y
85+
BR2_PACKAGE_WIREGUARD_TOOLS=y
8586
BR2_PACKAGE_BASH_COMPLETION=y
8687
BR2_PACKAGE_SUDO=y
8788
BR2_PACKAGE_GETENT=y

configs/aarch64_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ BR2_PACKAGE_TCPDUMP=y
102102
BR2_PACKAGE_TRACEROUTE=y
103103
BR2_PACKAGE_ULOGD=y
104104
BR2_PACKAGE_WHOIS=y
105+
BR2_PACKAGE_WIREGUARD_TOOLS=y
105106
BR2_PACKAGE_BASH_COMPLETION=y
106107
BR2_PACKAGE_NEOFETCH=y
107108
BR2_PACKAGE_SUDO=y

configs/aarch64_minimal_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ BR2_PACKAGE_OPENSSH=y
8585
BR2_PACKAGE_SOCAT=y
8686
BR2_PACKAGE_TCPDUMP=y
8787
BR2_PACKAGE_WHOIS=y
88+
BR2_PACKAGE_WIREGUARD_TOOLS=y
8889
BR2_PACKAGE_BASH_COMPLETION=y
8990
BR2_PACKAGE_SUDO=y
9091
BR2_PACKAGE_KMOD_TOOLS=y

configs/x86_64_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ BR2_PACKAGE_TCPDUMP=y
9898
BR2_PACKAGE_TRACEROUTE=y
9999
BR2_PACKAGE_ULOGD=y
100100
BR2_PACKAGE_WHOIS=y
101+
BR2_PACKAGE_WIREGUARD_TOOLS=y
101102
BR2_PACKAGE_BASH_COMPLETION=y
102103
BR2_PACKAGE_NEOFETCH=y
103104
BR2_PACKAGE_SUDO=y

configs/x86_64_minimal_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ BR2_PACKAGE_OPENSSH=y
8080
BR2_PACKAGE_SOCAT=y
8181
BR2_PACKAGE_TCPDUMP=y
8282
BR2_PACKAGE_WHOIS=y
83+
BR2_PACKAGE_WIREGUARD_TOOLS=y
8384
BR2_PACKAGE_BASH_COMPLETION=y
8485
BR2_PACKAGE_SUDO=y
8586
BR2_PACKAGE_GETENT=y

doc/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ All notable changes to the project are documented in this file.
1919
>
2020
> - WiFi Access Point (AP) mode support with multi-SSID capability
2121
> - RIPv2 routing support
22+
> - WireGuard support
2223
2324
### Changes
2425

@@ -47,6 +48,7 @@ All notable changes to the project are documented in this file.
4748
moved to `wifi/station` container. Existing Wi-Fi interfaces will be
4849
removed during upgrade (for the rest of the configuration to apply)
4950
and you need to reconfigure them again. See [wifi.md](wifi.md) for details
51+
- Add support for WireGuard VPN tunnels.
5052

5153
### Fixes
5254

0 commit comments

Comments
 (0)