Skip to content
Snippets Groups Projects
Commit a5c042c2 authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

Add gluon-simple-tc package

parent c73d52d7
No related branches found
No related tags found
No related merge requests found
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))
# 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
\ No newline at end of file
[ "$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'
../modules.d/30-gluon-simple-tc
\ No newline at end of file
sch_ingress
sch_tbf
cls_u32
act_police
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment