| 1 | config FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 2 | tristate "fwifupdown........................... FreeWRT ifupdown"
|
|---|
| 3 | default y
|
|---|
| 4 |
|
|---|
| 5 | select FWIFUPDOWN_CONFIG_ALIAS if FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 6 | select FWIFUPDOWN_CONFIG_BRIDGE if FWRT_PACKAGE_BRIDGE_UTILS && FWRT_PACKAGE_FWIFUPDOWN = y
|
|---|
| 7 | select FWIFUPDOWN_CONFIG_IFACE if FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 8 | select FWIFUPDOWN_CONFIG_TUNTAP if FWRT_PACKAGE_TUNCTL || FWRT_PACKAGE_OPENVPN && FWRT_PACKAGE_FWIFUPDOWN = y
|
|---|
| 9 | select FWIFUPDOWN_CONFIG_VLAN if BUSYBOX_CONFIG_VCONFIG && FWRT_PACKAGE_FWIFUPDOWN = y
|
|---|
| 10 |
|
|---|
| 11 | help
|
|---|
| 12 | helptext
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 | config FWIFUPDOWN_CONFIG_ALIAS
|
|---|
| 16 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 17 | bool "Alias support"
|
|---|
| 18 | default y
|
|---|
| 19 | help
|
|---|
| 20 | helptext
|
|---|
| 21 |
|
|---|
| 22 | config FWIFUPDOWN_CONFIG_BRIDGE
|
|---|
| 23 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 24 | bool "Bridge support"
|
|---|
| 25 | default n
|
|---|
| 26 | help
|
|---|
| 27 | helptext
|
|---|
| 28 |
|
|---|
| 29 | config FWIFUPDOWN_CONFIG_IFACE
|
|---|
| 30 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 31 | bool "Legacy iface support"
|
|---|
| 32 | default y
|
|---|
| 33 | help
|
|---|
| 34 | helptext
|
|---|
| 35 |
|
|---|
| 36 | config FWIFUPDOWN_CONFIG_TUNTAP
|
|---|
| 37 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 38 | bool "tun/tap support"
|
|---|
| 39 | default n
|
|---|
| 40 | help
|
|---|
| 41 | helptext
|
|---|
| 42 |
|
|---|
| 43 | config FWIFUPDOWN_CONFIG_VLAN
|
|---|
| 44 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 45 | bool "VLAN support"
|
|---|
| 46 | default y
|
|---|
| 47 | help
|
|---|
| 48 | helptext
|
|---|
| 49 |
|
|---|
| 50 | menu "Config"
|
|---|
| 51 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 52 |
|
|---|
| 53 | config FWIFUPDOWN_CONFIG_PRINTING_OFF
|
|---|
| 54 | bool "Switch UI printing off"
|
|---|
| 55 | default n
|
|---|
| 56 | help
|
|---|
| 57 | Disable printing to STDOUT
|
|---|
| 58 |
|
|---|
| 59 | config FWIFUPDOWN_CONFIG_PRINTING_FANCY
|
|---|
| 60 | bool "Format UI printing"
|
|---|
| 61 | default n
|
|---|
| 62 | help
|
|---|
| 63 | Set this to n if your terminal lacks ansi escape support
|
|---|
| 64 | or if you prefer simpler ifupdown messages
|
|---|
| 65 |
|
|---|
| 66 | endmenu
|
|---|