mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
This versions changes the default value of use_mq to off, as a cautionary measure. Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=sqm-scripts
|
|
PKG_SOURCE_VERSION:=20ba92639546075d8e39346dcb88a3cdfe8ee903
|
|
PKG_VERSION:=1.7.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/tohojo/sqm-scripts
|
|
PKG_MIRROR_HASH:=578f7cbf5268a9f7e1689fd6365c11d8d9baebf46773237f46393088d792d8ce
|
|
|
|
PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
|
|
PKG_LICENSE:=GPL-2.0-only
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/sqm-scripts
|
|
SECTION:=net
|
|
CATEGORY:=Base system
|
|
DEPENDS:=+tc +ip +kmod-sched-cake +kmod-ifb +iptables +iptables-mod-ipopt
|
|
TITLE:=SQM Scripts (QoS)
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Package/sqm-scripts/description
|
|
A set of scripts that does simple SQM configuration.
|
|
endef
|
|
|
|
define Package/sqm-scripts/conffiles
|
|
/etc/config/sqm
|
|
/etc/sqm/sqm.conf
|
|
endef
|
|
|
|
define Package/sqm-scripts/install
|
|
make -C $(PKG_BUILD_DIR) DESTDIR=$(1) PLATFORM=openwrt install
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,sqm-scripts))
|