Add gluon-simple-tc package

This commit is contained in:
Matthias Schiffer 2013-10-03 13:59:45 +02:00
parent de628af505
commit 7509a17ff4
5 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,36 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-simple-tc
PKG_VERSION:=1
PKG_RELEASE:=1
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/gluon-simple-tc
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=Bandwidth limit support
DEPENDS:=+gluon-core +tc +kmod-sched
endef
define Package/gluon-simple-tc/description
Gluon community wifi mesh firmware framework: tc support
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/gluon-simple-tc/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,gluon-simple-tc))

View File

@ -0,0 +1,7 @@
# Example config
config interface 'example'
option enabled '0'
option ifname 'eth0'
option limit_egress '1000' # 1000 Kbit/s
option limit_ingress '5000' # 5000 Kbit/s

View File

@ -0,0 +1,30 @@
[ "$ACTION" = 'add' ] || exit 0
config_load gluon-simple-tc
tc_interface() {
local iface="$1"
config_get ifname "$iface" ifname
[ "$INTERFACE" = "$ifname" ] || return
config_get_bool enabled "$iface" enabled 0
[ "$enabled" -eq 1 ] || return
config_get limit_egress "$iface" limit_egress
config_get limit_ingress "$iface" limit_ingress
if [ "$limit_egress" ]; then
tc qdisc add dev "$INTERFACE" root tbf rate "${limit_egress}kbit" latency 50ms burst 2k
fi
if [ "$limit_ingress" ]; then
tc qdisc add dev "$INTERFACE" handle ffff: ingress
tc filter add dev "$INTERFACE" parent ffff: u32 match u8 00 00 at 0 police rate "${limit_ingress}kbit" burst 10k drop flowid :1
fi
}
config_foreach tc_interface 'interface'

View File

@ -0,0 +1 @@
../modules.d/30-gluon-simple-tc

View File

@ -0,0 +1,4 @@
sch_ingress
sch_tbf
cls_u32
act_police