mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-19 14:13:30 +00:00
add bridge support for IPSEC vpn
This commit is contained in:
parent
04ebaea4e4
commit
bd6c225de4
@ -6,10 +6,10 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=LuCI support for IPSec VPN Server (IKEv1 with PSK and Xauth)
|
||||
LUCI_DEPENDS:=+strongswan-minimal +strongswan-mod-xauth-generic
|
||||
LUCI_DEPENDS:=+strongswan-minimal +strongswan-mod-xauth-generic +kmod-br-netfilter
|
||||
LUCI_PKGARCH:=all
|
||||
PKG_VERSION:=2.0
|
||||
PKG_RELEASE:=8
|
||||
PKG_RELEASE:=9
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
|
@ -483,3 +483,4 @@ CONFIG_SYS_SUPPORTS_ZBOOT=y
|
||||
CONFIG_SYS_SUPPORTS_ZBOOT_UART_PROM=y
|
||||
CONFIG_TICK_CPU_ACCOUNTING=y
|
||||
CONFIG_USB_SUPPORT=y
|
||||
CONFIG_MIPS_FPU_EMULATOR=y
|
||||
|
@ -482,3 +482,4 @@ CONFIG_SYS_SUPPORTS_ZBOOT=y
|
||||
CONFIG_SYS_SUPPORTS_ZBOOT_UART_PROM=y
|
||||
CONFIG_TICK_CPU_ACCOUNTING=y
|
||||
CONFIG_USB_SUPPORT=y
|
||||
CONFIG_MIPS_FPU_EMULATOR=y
|
||||
|
@ -169,7 +169,7 @@ static struct gpio_keys_button fritz4020_gpio_keys[] __initdata = {
|
||||
.code = KEY_RFKILL,
|
||||
.debounce_interval = FRITZ4020_KEYS_DEBOUNCE_INTERVAL,
|
||||
.gpio = FRITZ4020_GPIO_BTN_WLAN,
|
||||
.active_low = 0,
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.desc = "WPS button",
|
||||
@ -177,7 +177,7 @@ static struct gpio_keys_button fritz4020_gpio_keys[] __initdata = {
|
||||
.code = KEY_WPS_BUTTON,
|
||||
.debounce_interval = FRITZ4020_KEYS_DEBOUNCE_INTERVAL,
|
||||
.gpio = FRITZ4020_GPIO_BTN_WPS,
|
||||
.active_low = 0,
|
||||
.active_low = 1,
|
||||
},
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user