mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-03 16:19:32 +08:00
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
# SPDX-Identifier-License: GPL-3.0-only
|
|
#
|
|
# Copyright (C) 2024 Lean <coolsnowwolf@gmail.com>
|
|
# Copyright (C) 2019-2022 ImmortalWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-turboacc
|
|
|
|
PKG_CONFIG_DEPENDS:= \
|
|
CONFIG_PACKAGE_TURBOACC_INCLUDE_NO_FASTPATH \
|
|
CONFIG_PACKAGE_TURBOACC_INCLUDE_FLOW_OFFLOADING \
|
|
CONFIG_PACKAGE_TURBOACC_INCLUDE_FAST_CLASSIFIER \
|
|
CONFIG_PACKAGE_TURBOACC_INCLUDE_SHORTCUT_FE_CM \
|
|
CONFIG_PACKAGE_TURBOACC_INCLUDE_BBR_CCA
|
|
|
|
PKG_LICENSE:=GPL-3.0-only
|
|
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>
|
|
|
|
LUCI_TITLE:=LuCI support for FastPath (FW3 or FW4)
|
|
LUCI_DEPENDS:= \
|
|
+PACKAGE_TURBOACC_INCLUDE_FLOW_OFFLOADING:kmod-ipt-offload \
|
|
+PACKAGE_TURBOACC_INCLUDE_FAST_CLASSIFIER:kmod-fast-classifier \
|
|
+PACKAGE_TURBOACC_INCLUDE_SHORTCUT_FE_CM:kmod-shortcut-fe-cm \
|
|
+PACKAGE_TURBOACC_INCLUDE_BBR_CCA:kmod-tcp-bbr
|
|
LUCI_PKGARCH:=all
|
|
|
|
define Package/luci-app-turboacc/config
|
|
choice
|
|
prompt "FastPath Engine"
|
|
default PACKAGE_TURBOACC_INCLUDE_FLOW_OFFLOADING if !(TARGET_qualcommax||TARGET_ipq50xx||TARGET_ipq53xx||TARGET_ipq60xx||TARGET_ipq807x||TARGET_ipq807x||TARGET_ipq95xx)
|
|
|
|
config PACKAGE_TURBOACC_INCLUDE_NO_FASTPATH
|
|
bool "Use NSS ECM" if (TARGET_qualcommax||TARGET_ipq50xx||TARGET_ipq53xx||TARGET_ipq60xx||TARGET_ipq807x||TARGET_ipq807x||TARGET_ipq95xx)
|
|
|
|
config PACKAGE_TURBOACC_INCLUDE_FLOW_OFFLOADING
|
|
bool "Use flow offloading"
|
|
|
|
config PACKAGE_TURBOACC_INCLUDE_FAST_CLASSIFIER
|
|
bool "Use fast classifier"
|
|
|
|
config PACKAGE_TURBOACC_INCLUDE_SHORTCUT_FE_CM
|
|
bool "Use shortcut-fe connection manager"
|
|
endchoice
|
|
|
|
config PACKAGE_TURBOACC_INCLUDE_BBR_CCA
|
|
bool "Enable BBR CCA"
|
|
default y
|
|
endef
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|