mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-31 16:35:44 +00:00
c45c7606cc
If system has more then one and different wwan interface (modem). Then the wwan protohandler will always take the modem which is discovered first. The protohandler will always setup the same interface. To fix this add a new usb "bus" option which is associated with wwan device and so will set the specified interface up. With this change more then one interface could be mananged by the wwan protohandler. If the "bus" option is not set in the uci network config then the protohandler behaves as before the change. The protohanldler will take the first interface which he founds. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=wwan
|
|
PKG_VERSION:=2019-04-29
|
|
PKG_RELEASE=1
|
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_LICENSE_FILES:=
|
|
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/wwan
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Generic OpenWrt 3G/4G proto handler
|
|
endef
|
|
|
|
define Build/Compile
|
|
true
|
|
endef
|
|
|
|
define Package/wwan/install
|
|
$(INSTALL_DIR) $(1)/lib/netifd/proto/
|
|
$(CP) ./files/wwan.sh $(1)/lib/netifd/proto/
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/usb
|
|
$(INSTALL_BIN) ./files/wwan.usb $(1)/etc/hotplug.d/usb/00_wwan.sh
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/usbmisc
|
|
$(INSTALL_BIN) ./files/wwan.usbmisc $(1)/etc/hotplug.d/usbmisc/00_wwan.sh
|
|
$(INSTALL_DIR) $(1)/lib/network/wwan/
|
|
$(INSTALL_DATA) ./files/data/* $(1)/lib/network/wwan/
|
|
#in order to keep the Lede GIT repo free of filenames with colons,
|
|
#we name the files xxxx-yyyy
|
|
# and rename here after copying to the build directory
|
|
shopt -s nullglob ; \
|
|
for filevar in $(1)/lib/network/wwan/*-* ; \
|
|
do \
|
|
FILENAME=$$$$(basename $$$$filevar) ; \
|
|
NEWNAME=$$$${FILENAME//-/:} ; \
|
|
mv "$(1)/lib/network/wwan/$$$$FILENAME" "$(1)/lib/network/wwan/$$$$NEWNAME" ; \
|
|
done
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,wwan))
|