mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
1e4751cdb7
Update bsbf-resources to the GIT HEAD of 2026-05-06. - Remove bsbf-route as bsbf-mptcp now includes the functionality it provides. - Remove bsbf-plpmtu as that functionality is now provided with the plp-mtu-discovery package. - Remove bsbf-tcp-in-udp as it's not a production-ready solution as it is. - Add bsbf-client-web. - Update the dependencies of bsbf-mptcp to curl, fping, ip-full, and mptcpize. - Remove files/etc/config/bsbf-mptcp as that functionality is now provided using the /etc/bsbf/bsbf-mptcp-subflow-backup file. - Remove files/etc/hotplug.d/iface/99-bsbf-mptcp as that functionality is now provided by the bsbf-mptcp service. - Update the dependencies of bsbf-bonding to bsbf-client-web, bsbf-mptcp, bsbf-rate-limiting, and xray-core. - Get rid of fw4 dependency and 99-bsbf-bonding.nft in favour of resources-client/bsbf_bonding.nft. Add a oneshot service to apply it at boot. - Move from bsbf-openwrt-resources to bsbf-resources directory as we now install resources-client/xray.json and resources-client/bsbf_bonding.nft. - Add the bsbf-bonding command. - Run `bsbf-bonding --enable` at the end on the uci-defaults script. - Add the tc package as a dependency for bsbf-rate-limiting. Fixes: https://github.com/openwrt/packages/issues/29306 Signed-off-by: Chester A. Unal <chester.a.unal@arinc9.com>
53 lines
1.5 KiB
Makefile
53 lines
1.5 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 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
|
|
|
|
$(eval $(call BuildPackage,bsbf-autoconf-cellular))
|
|
$(eval $(call BuildPackage,bsbf-autoconf-dhcp))
|