2019-07-29 15:12:42 +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
|
|
|
|
|
2020-03-30 17:52:09 +00:00
|
|
|
PKG_NAME:=sched-cake-oot
|
2019-07-29 15:12:42 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
PKG_SOURCE_URL:=https://github.com/dtaht/sch_cake.git
|
2020-07-04 16:18:10 +00:00
|
|
|
PKG_SOURCE_DATE:=2020-07-24
|
|
|
|
PKG_SOURCE_VERSION:=48979385757f3408c3427b3ebbf5963efdada5aa
|
|
|
|
PKG_MIRROR_HASH:=0e8ed53f55e28ad0c30f20293c16988876bae8d6f70f5629a43cf2ce1e49fc51
|
2019-07-29 15:12:42 +00:00
|
|
|
PKG_MAINTAINER:=Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2020-03-30 17:52:09 +00:00
|
|
|
define KernelPackage/sched-cake-oot
|
2019-07-29 15:12:42 +00:00
|
|
|
SUBMENU:=Network Support
|
2020-03-30 17:52:09 +00:00
|
|
|
TITLE:=OOT Cake fq_codel/blue derived shaper
|
2019-07-29 15:12:42 +00:00
|
|
|
URL:=https://github.com/dtaht/sch_cake
|
|
|
|
FILES:=$(PKG_BUILD_DIR)/sch_cake.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,75,sch_cake)
|
2019-07-29 15:54:02 +00:00
|
|
|
DEPENDS:=@LINUX_4_14 +kmod-sched-core +kmod-ipt-conntrack
|
2019-07-29 15:12:42 +00:00
|
|
|
endef
|
|
|
|
|
2020-05-06 19:58:30 +00:00
|
|
|
define KernelPackage/sched-cake-oot/description
|
2020-03-30 17:52:09 +00:00
|
|
|
O(ut) O(f) T(ree) Common Applications Kept Enhanced fq_codel/blue derived shaper
|
2019-07-29 15:12:42 +00:00
|
|
|
endef
|
|
|
|
|
2020-05-06 19:58:30 +00:00
|
|
|
define KernelPackage/sched-cake-virtual
|
|
|
|
SUBMENU:=Network Support
|
|
|
|
TITLE:=Virtual package for sched-cake
|
|
|
|
URL:=https://github.com/dtaht/sch_cake
|
|
|
|
DEPENDS:=+!LINUX_4_14:kmod-sched-cake +LINUX_4_14:kmod-sched-cake-oot
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sched-cake-virtual/description
|
|
|
|
Virtual package for resolving sch_cake dependencies
|
|
|
|
endef
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/kernel-defaults.mk
|
|
|
|
|
2019-07-29 15:12:42 +00:00
|
|
|
define Build/Compile
|
2020-01-20 14:42:00 +00:00
|
|
|
$(KERNEL_MAKE) M="$(PKG_BUILD_DIR)" modules
|
2019-07-29 15:12:42 +00:00
|
|
|
endef
|
|
|
|
|
2020-03-30 17:52:09 +00:00
|
|
|
$(eval $(call KernelPackage,sched-cake-oot))
|
2020-05-06 19:58:30 +00:00
|
|
|
$(eval $(call KernelPackage,sched-cake-virtual))
|