diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-09-15 21:01:43 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-09-15 21:01:43 +0000 |
commit | ea48798b9fab8cf30f83eb3d397f6be5c3ba187a (patch) | |
tree | 60aaa10ad79c553f7204f63abe95a93279a21e41 /package/linux-atm/Makefile | |
parent | 5011d6129c138c5a2597357efe27ba5629058819 (diff) | |
download | upstream-ea48798b9fab8cf30f83eb3d397f6be5c3ba187a.tar.gz upstream-ea48798b9fab8cf30f83eb3d397f6be5c3ba187a.tar.bz2 upstream-ea48798b9fab8cf30f83eb3d397f6be5c3ba187a.zip |
Add support for IP over ATM
SVN-Revision: 8782
Diffstat (limited to 'package/linux-atm/Makefile')
-rw-r--r-- | package/linux-atm/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/linux-atm/Makefile b/package/linux-atm/Makefile index f7d52141f3..ecadb3d6ad 100644 --- a/package/linux-atm/Makefile +++ b/package/linux-atm/Makefile @@ -29,6 +29,18 @@ define Package/linux-atm/description This package contains a library for accessing the Linux ATM subsystem. endef +define Package/atm-tools + SECTION:=net + CATEGORY:=Network + DEPENDS:=linux-atm + TITLE:=Linux ATM tools + URL:=http://linux-atm.sourceforge.net/ +endef + +define Package/atm-tools/description + This package contains the Linux ATM tools. +endef + define Build/Configure $(call Build/Configure/Default) # prevent autoheader invocation @@ -62,4 +74,12 @@ define Package/linux-atm/install cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(1)/usr/lib endef +define Package/atm-tools/install + $(INSTALL_DIR) $(1)/usr/sbin/ + $(CP) $(PKG_INSTALL_DIR)/usr/sbin/atmarp{,d} $(1)/usr/sbin/ + $(INSTALL_DIR) $(1)/lib/network + $(INSTALL_BIN) ./files/ipoa.sh $(1)/lib/network/ +endef + $(eval $(call BuildPackage,linux-atm)) +$(eval $(call BuildPackage,atm-tools)) |