9c49c937ab
kmod-sched-cake does not build on kernel 3.18, so add the dependency to not even try. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
#
|
|
# 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
|
|
PKG_SOURCE_URL:=https://github.com/kdarbyshirebryant/sch_cake.git
|
|
PKG_SOURCE_DATE:=2016-12-19
|
|
PKG_SOURCE_VERSION:=70c8eb766d5afcf3cf187594b7cd776da92bee3c
|
|
PKG_MIRROR_HASH:=16174db5dad0a5b5ba522d4cfc058cff9851ed013a3a05166b04eb127bb12a24
|
|
PKG_MAINTAINER:=Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/sched-cake
|
|
SUBMENU:=Network Support
|
|
TITLE:=Cake fq_codel/blue derived shaper
|
|
URL:=https://github.com/dtaht/sch_cake
|
|
FILES:=$(PKG_BUILD_DIR)/sch_cake.ko
|
|
AUTOLOAD:=$(call AutoLoad,75,sch_cake)
|
|
DEPENDS:=+kmod-ipt-conntrack @!LINUX_3_18
|
|
endef
|
|
|
|
include $(INCLUDE_DIR)/kernel-defaults.mk
|
|
|
|
define KernelPackage/sched-cake/description
|
|
Common Applications Kept Enhanced fq_codel/blue derived shaper
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) $(KERNEL_MAKEOPTS) SUBDIRS="$(PKG_BUILD_DIR)" modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,sched-cake))
|