Skip to content
Snippets Groups Projects
Commit 1df98fcd authored by John Crispin's avatar John Crispin
Browse files

comgt: split directip support into its own package


Signed-off-by: default avatarJohn Crispin <blogic@openwrt.org>

SVN-Revision: 42836
parent bb64826b
No related branches found
No related tags found
No related merge requests found
...@@ -22,14 +22,24 @@ PKG_CHECK_FORMAT_SECURITY:=0 ...@@ -22,14 +22,24 @@ PKG_CHECK_FORMAT_SECURITY:=0
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
define Package/comgt define Package/comgt/Default
SECTION:=utils SECTION:=utils
CATEGORY:=Utilities CATEGORY:=Utilities
endef
define Package/comgt
$(call Package/comgt/Default)
TITLE:=Option/Vodafone 3G/GPRS control tool TITLE:=Option/Vodafone 3G/GPRS control tool
DEPENDS:=+chat DEPENDS:=+chat
URL:=http://www.pharscape.org/comgt.html URL:=http://www.pharscape.org/comgt.html
endef endef
define Package/comgt-directip
$(call Package/comgt/Default)
TITLE:=Sierra Wireless Direct-IP support
DEPENDS:=+comgt +kmod-usb-serial +kmod-usb-serial-sierrawireless +kmod-usb-net +kmod-usb-net-sierrawireless
endef
define Package/comgt/description define Package/comgt/description
comgt is a scripting language interpreter useful for establishing comgt is a scripting language interpreter useful for establishing
communications on serial lines and through PCMCIA modems as well as GPRS communications on serial lines and through PCMCIA modems as well as GPRS
...@@ -59,13 +69,19 @@ define Package/comgt/install ...@@ -59,13 +69,19 @@ define Package/comgt/install
$(INSTALL_DATA) ./files/getcarrier.gcom $(1)/etc/gcom/getcarrier.gcom $(INSTALL_DATA) ./files/getcarrier.gcom $(1)/etc/gcom/getcarrier.gcom
$(INSTALL_DATA) ./files/getcnum.gcom $(1)/etc/gcom/getcnum.gcom $(INSTALL_DATA) ./files/getcnum.gcom $(1)/etc/gcom/getcnum.gcom
$(INSTALL_DATA) ./files/getimsi.gcom $(1)/etc/gcom/getimsi.gcom $(INSTALL_DATA) ./files/getimsi.gcom $(1)/etc/gcom/getimsi.gcom
$(INSTALL_DATA) ./files/directip.gcom $(1)/etc/gcom/directip.gcom
$(INSTALL_DATA) ./files/directip-stop.gcom $(1)/etc/gcom/directip-stop.gcom
$(INSTALL_DIR) $(1)/etc/hotplug.d/tty $(INSTALL_DIR) $(1)/etc/hotplug.d/tty
$(INSTALL_DATA) ./files/3g.usb $(1)/etc/hotplug.d/tty/30-3g $(INSTALL_DATA) ./files/3g.usb $(1)/etc/hotplug.d/tty/30-3g
$(INSTALL_DIR) $(1)/lib/netifd/proto $(INSTALL_DIR) $(1)/lib/netifd/proto
$(INSTALL_BIN) ./files/3g.sh $(1)/lib/netifd/proto/3g.sh $(INSTALL_BIN) ./files/3g.sh $(1)/lib/netifd/proto/3g.sh
endef
define Package/comgt-directip/install
$(INSTALL_DIR) $(1)/etc/gcom
$(INSTALL_DATA) ./files/directip.gcom $(1)/etc/gcom/directip.gcom
$(INSTALL_DATA) ./files/directip-stop.gcom $(1)/etc/gcom/directip-stop.gcom
$(INSTALL_DIR) $(1)/lib/netifd/proto
$(INSTALL_BIN) ./files/directip.sh $(1)/lib/netifd/proto/directip.sh $(INSTALL_BIN) ./files/directip.sh $(1)/lib/netifd/proto/directip.sh
endef endef
$(eval $(call BuildPackage,comgt)) $(eval $(call BuildPackage,comgt))
$(eval $(call BuildPackage,comgt-directip))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment