mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-08 23:51:08 -09:00
package/connman: add option to enable wireguard support
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 2cb7786125)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
f506ce892a
commit
47fb01118e
@@ -31,6 +31,10 @@ config BR2_PACKAGE_CONNMAN_WIFI
|
||||
setup). ConnMan detects the start of wpa_supplicant
|
||||
automatically.
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_WIREGUARD
|
||||
bool "enable wireguard support"
|
||||
select BR2_PACKAGE_LIBMNL
|
||||
|
||||
config BR2_PACKAGE_CONNMAN_WISPR
|
||||
bool "enable WISPr support"
|
||||
depends on !BR2_STATIC_LIBS # gnutls
|
||||
|
||||
@@ -62,6 +62,13 @@ else
|
||||
CONNMAN_CONF_OPTS += --disable-wifi
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_CONNMAN_WIREGUARD),y)
|
||||
CONNMAN_CONF_OPTS += --enable-wireguard
|
||||
CONNMAN_DEPENDENCIES += libmnl
|
||||
else
|
||||
CONNMAN_CONF_OPTS += --disable-wireguard
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_CONNMAN_WISPR),y)
|
||||
CONNMAN_CONF_OPTS += --enable-wispr
|
||||
CONNMAN_DEPENDENCIES += gnutls
|
||||
|
||||
Reference in New Issue
Block a user