mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 10:51:55 +00:00
Update bsbf-resources to the GIT HEAD of 2026-03-24. Add bsbf-rate-limiting and make bsbf-bonding depend on bsbf-rate-limiting. Signed-off-by: Chester A. Unal <chester.a.unal@arinc9.com>
76 lines
2.2 KiB
Makefile
76 lines
2.2 KiB
Makefile
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# Copyright (C) 2025-2026 Chester A. Unal <chester.a.unal@arinc9.com>
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=bsbf-openwrt-resources
|
|
PKG_VERSION:=3
|
|
|
|
PKG_LICENSE:=AGPL-3.0-or-later
|
|
PKG_MAINTAINER:=Chester A. Unal <chester.a.unal@arinc9.com>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/bsbf-autoconf-cellular
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=bsbf-autoconf-cellular
|
|
URL:=https://github.com/bondingshouldbefree/
|
|
endef
|
|
|
|
define Package/bsbf-autoconf-cellular/description
|
|
bsbf-autoconf-cellular creates a network with MBIM or QMI protocol using a
|
|
newly created network interface. It uses metric values from 1 to 8.
|
|
endef
|
|
|
|
define Package/bsbf-autoconf-dhcp
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=bsbf-autoconf-dhcp
|
|
URL:=https://github.com/bondingshouldbefree/
|
|
endef
|
|
|
|
define Package/bsbf-autoconf-dhcp/description
|
|
bsbf-autoconf-dhcp creates a network with a DHCP client using a newly created
|
|
network interface. It uses metric values from 1 to 8.
|
|
endef
|
|
|
|
define Package/bsbf-bonding
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=bsbf-bonding
|
|
URL:=https://github.com/bondingshouldbefree/
|
|
DEPENDS:=+bsbf-mptcp +bsbf-plpmtu +bsbf-rate-limiting +bsbf-route \
|
|
+bsbf-tcp-in-udp +xray-core
|
|
endef
|
|
|
|
define Package/bsbf-bonding/description
|
|
bsbf-bonding configures the system for the BondingShouldBeFree bonding
|
|
solution client.
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/bsbf-autoconf-cellular/install
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/net
|
|
$(INSTALL_BIN) ./files/etc/hotplug.d/net/99-bsbf-autoconf-cellular $(1)/etc/hotplug.d/net
|
|
endef
|
|
|
|
define Package/bsbf-autoconf-dhcp/install
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/net
|
|
$(INSTALL_BIN) ./files/etc/hotplug.d/net/99-bsbf-autoconf-dhcp $(1)/etc/hotplug.d/net
|
|
endef
|
|
|
|
define Package/bsbf-bonding/install
|
|
$(INSTALL_DIR) $(1)/etc/nftables.d
|
|
$(INSTALL_DATA) ./files/etc/nftables.d/99-bsbf-bonding.nft $(1)/etc/nftables.d
|
|
|
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
|
$(INSTALL_BIN) ./files/etc/uci-defaults/99-bsbf-bonding $(1)/etc/uci-defaults
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,bsbf-autoconf-cellular))
|
|
$(eval $(call BuildPackage,bsbf-autoconf-dhcp))
|
|
$(eval $(call BuildPackage,bsbf-bonding))
|