blob: 85fa18421a587f62137f4f5c5d3fc9ea4b737beb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
menu "iproute2.......................... A collection of utilites for controlling TCP/IP networking and Traffic Control"
config BR2_COMPILE_IPROUTE2
bool
default n
depends BR2_PACKAGE_IPROUTE2_IP || BR2_PACKAGE_IPROUTE2_TC
config BR2_PACKAGE_IP
prompt "ip.............................. A routing control utility"
tristate
default m if CONFIG_DEVEL
select BR2_COMPILE_IPROUTE2
config BR2_PACKAGE_TC
prompt "tc.............................. A traffic control utility"
tristate
default m if CONFIG_DEVEL
select BR2_COMPILE_IPROUTE2
select BR2_PACKAGE_KMOD_SCHED
endmenu
|