mirror of
https://github.com/outbackdingo/wwan-packages.git
synced 2026-01-27 18:20:51 +00:00
29 lines
491 B
Makefile
29 lines
491 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=modemband
|
|
PKG_VERSION:=20240616
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_LICENSE:=MIT
|
|
PKG_MAINTAINER:=Cezary Jackiewicz <cezary@eko.one.pl>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/modemband
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=WWAN
|
|
TITLE:=Setting LTE/5G bands for selected modems
|
|
DEPENDS:=+sms-tool
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/modemband/install
|
|
$(CP) ./files/* $(1)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,modemband))
|