aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/lib
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2010-07-31 22:32:28 +0000
committerFlorian Fainelli <florian@openwrt.org>2010-07-31 22:32:28 +0000
commita86ba82e5b34b65f7518857b2f7f7dd0fa440617 (patch)
treedbed88b624d47747626008b4b05a3babe17c0e1a /package/base-files/files/lib
parentef5dc72b5cb05731045fa0b7c8125500c8e65f44 (diff)
downloadmaster-187ad058-a86ba82e5b34b65f7518857b2f7f7dd0fa440617.tar.gz
master-187ad058-a86ba82e5b34b65f7518857b2f7f7dd0fa440617.tar.bz2
master-187ad058-a86ba82e5b34b65f7518857b2f7f7dd0fa440617.zip
[package] add txqueuelen option, patch from Roberto Riggio
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22444 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/lib')
-rwxr-xr-xpackage/base-files/files/lib/network/config.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh
index 8321b191bf..22828f83bb 100755
--- a/package/base-files/files/lib/network/config.sh
+++ b/package/base-files/files/lib/network/config.sh
@@ -328,8 +328,9 @@ setup_interface() {
local mtu macaddr
config_get mtu "$config" mtu
config_get macaddr "$config" macaddr
+ config_get txqueuelen "$config" txqueuelen
[ -n "$macaddr" ] && $DEBUG ifconfig "$iface" down
- $DEBUG ifconfig "$iface" ${macaddr:+hw ether "$macaddr"} ${mtu:+mtu $mtu} up
+ $DEBUG ifconfig "$iface_main" ${macaddr:+hw ether "$macaddr"} ${mtu:+mtu $mtu} ${txqueuelen:+txqueuelen $txqueuelen} up
}
set_interface_ifname "$config" "$iface"