2016-05-31 18:01:09 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2016 LEDE
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
|
|
|
|
PKG_NAME:=sched-cake
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2017-01-28 16:38:59 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/dtaht/sch_cake.git
|
2018-03-22 11:43:04 +00:00
|
|
|
PKG_SOURCE_DATE:=2018-03-19
|
|
|
|
PKG_SOURCE_VERSION:=0afc1bee4e9fc5d75668cb10254ab5d2d02f0098
|
|
|
|
PKG_MIRROR_HASH:=b8ac95753d05ff602282ed5a799f9c953f60decebc5720ee8f0101344a5acfc4
|
2016-05-31 18:01:09 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define KernelPackage/sched-cake
|
|
|
|
SUBMENU:=Network Support
|
2016-06-29 12:56:38 +00:00
|
|
|
TITLE:=Cake fq_codel/blue derived shaper
|
2016-05-31 18:01:09 +00:00
|
|
|
URL:=https://github.com/dtaht/sch_cake
|
|
|
|
FILES:=$(PKG_BUILD_DIR)/sch_cake.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,75,sch_cake)
|
2016-12-25 14:15:55 +00:00
|
|
|
DEPENDS:=+kmod-ipt-conntrack @!LINUX_3_18
|
2016-05-31 18:01:09 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/kernel-defaults.mk
|
|
|
|
|
|
|
|
define KernelPackage/sched-cake/description
|
2016-06-29 12:56:38 +00:00
|
|
|
Common Applications Kept Enhanced fq_codel/blue derived shaper
|
2016-05-31 18:01:09 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2017-03-16 08:53:30 +00:00
|
|
|
$(KERNEL_MAKE) SUBDIRS="$(PKG_BUILD_DIR)" modules
|
2016-05-31 18:01:09 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sched-cake))
|