| 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_PPP if FWRT_PACKAGE_PPP && FWRT_PACKAGE_FWIFUPDOWN = y
|
|---|
| 9 | select FWIFUPDOWN_CONFIG_TUNTAP if FWRT_PACKAGE_TUNCTL || FWRT_PACKAGE_OPENVPN && FWRT_PACKAGE_FWIFUPDOWN = y
|
|---|
| 10 | select FWIFUPDOWN_CONFIG_VLAN if BUSYBOX_CONFIG_VCONFIG && FWRT_PACKAGE_FWIFUPDOWN = y
|
|---|
| 11 | select FWIFUPDOWN_CONFIG_WL_BROADCOM if FWRT_PACKAGE_BROADCOM_WL_UTIL && FWRT_PACKAGE_FWIFUPDOWN = y
|
|---|
| 12 | select FWIFUPDOWN_CONFIG_WL_ATHEROS if FWRT_PACKAGE_KMOD_MADWIFI && FWRT_PACKAGE_FWIFUPDOWN = y
|
|---|
| 13 |
|
|---|
| 14 | help
|
|---|
| 15 | helptext
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 | config FWIFUPDOWN_CONFIG_ALIAS
|
|---|
| 19 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 20 | bool "Alias support"
|
|---|
| 21 | default y
|
|---|
| 22 | help
|
|---|
| 23 | helptext
|
|---|
| 24 |
|
|---|
| 25 | config FWIFUPDOWN_CONFIG_BRIDGE
|
|---|
| 26 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 27 | bool "Bridge support"
|
|---|
| 28 | default n
|
|---|
| 29 | help
|
|---|
| 30 | helptext
|
|---|
| 31 |
|
|---|
| 32 | config FWIFUPDOWN_CONFIG_IFACE
|
|---|
| 33 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 34 | bool "Legecy iface support"
|
|---|
| 35 | default y
|
|---|
| 36 | help
|
|---|
| 37 | helptext
|
|---|
| 38 |
|
|---|
| 39 | config FWIFUPDOWN_CONFIG_PPP
|
|---|
| 40 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 41 | bool "PPP support"
|
|---|
| 42 | default n
|
|---|
| 43 | help
|
|---|
| 44 | helptext
|
|---|
| 45 |
|
|---|
| 46 | config FWIFUPDOWN_CONFIG_TUNTAP
|
|---|
| 47 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 48 | bool "Tuntap support"
|
|---|
| 49 | default n
|
|---|
| 50 | help
|
|---|
| 51 | helptext
|
|---|
| 52 |
|
|---|
| 53 | config FWIFUPDOWN_CONFIG_VLAN
|
|---|
| 54 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 55 | bool "Vlan support"
|
|---|
| 56 | default y
|
|---|
| 57 | help
|
|---|
| 58 | helptext
|
|---|
| 59 |
|
|---|
| 60 | config FWIFUPDOWN_CONFIG_WL_ATHEROS
|
|---|
| 61 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 62 | bool "Wl-Atheros support"
|
|---|
| 63 | default n
|
|---|
| 64 | help
|
|---|
| 65 | helptext
|
|---|
| 66 |
|
|---|
| 67 | config FWIFUPDOWN_CONFIG_WL_BROADCOM
|
|---|
| 68 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 69 | bool "Wl-Broadcom support"
|
|---|
| 70 | default n
|
|---|
| 71 | help
|
|---|
| 72 | helptext
|
|---|
| 73 |
|
|---|
| 74 |
|
|---|
| 75 | menu "Config"
|
|---|
| 76 | depends FWRT_PACKAGE_FWIFUPDOWN
|
|---|
| 77 |
|
|---|
| 78 | config FWIFUPDOWN_CONFIG_SHOW_CONFIG
|
|---|
| 79 | bool "Show iface config"
|
|---|
| 80 | default n
|
|---|
| 81 | help
|
|---|
| 82 | helptext
|
|---|
| 83 |
|
|---|
| 84 | config FWIFUPDOWN_CONFIG_PRINTING_OFF
|
|---|
| 85 | bool "Switch ui printing off"
|
|---|
| 86 | default n
|
|---|
| 87 | help
|
|---|
| 88 | Disable printing to STDOUT
|
|---|
| 89 |
|
|---|
| 90 | config FWIFUPDOWN_CONFIG_BUSYBOX_COMPAT
|
|---|
| 91 | bool "Busybox compatibility mode"
|
|---|
| 92 | default y
|
|---|
| 93 | help
|
|---|
| 94 | Busybox ifupdown will be used to avoid network misconfigurations if you have
|
|---|
| 95 | a custom network configration designed for busybox ifupdown.
|
|---|
| 96 |
|
|---|
| 97 | Edit your configuration file using the new config style and comment or remove
|
|---|
| 98 | CFG_BUSYBOX_COMPAT in /etc/conf.d/ifupdown.
|
|---|
| 99 | Switching compatibility mode off will overlay /etc/network/if-* at ifupdown runtime
|
|---|
| 100 | to make shure that no other hooks will be called by run-parts.
|
|---|
| 101 |
|
|---|
| 102 | endmenu
|
|---|
| 103 |
|
|---|
| 104 |
|
|---|
| 105 |
|
|---|