package/wireguard-linux-compat: tweak kernel-headers < 5.6 logic
authorPeter Korsgaard <peter@korsgaard.com>
Sat, 25 Apr 2020 09:50:06 +0000 (11:50 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Sat, 25 Apr 2020 09:56:03 +0000 (11:56 +0200)
The reason why the external wireguard kernel module is not allowed with
kernel headers >= 5.6 is that wireguard is included in the upstream kernel
since 5.6 rather than some kind of (fixable) incompatibility issue.  Adjust
the comment to make that clear.

While we're at it, drop the redundant !5.6 dependency on the kernel headers
dependency comment.  If headers are older than 3.10, then they are also
older than 5.6, so the statement is redundant.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/wireguard-linux-compat/Config.in

index 6e41a0951b68d774c8aa77a0afc903bd806e9fee..5a323a35e569aed106552944da32e372c43ee704 100644 (file)
@@ -3,7 +3,7 @@ config BR2_PACKAGE_WIREGUARD_LINUX_COMPAT
        depends on BR2_LINUX_KERNEL
        # kernel module requires 3.10+
        depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
-       # kernel module incompatible with 5.6+
+       # kernel module in upstream linux since 5.6
        depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_6
        help
          WireGuard is an extremely simple yet fast and modern VPN
@@ -23,5 +23,4 @@ config BR2_PACKAGE_WIREGUARD_LINUX_COMPAT
 
 comment "wireguard-linux-compat needs a toolchain w/ headers >= 3.10"
        depends on BR2_LINUX_KERNEL
-       depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_6
        depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10