X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/09604cf8557a037186b543c417ad844458ea786b..afa88d44a3604a99423aad27bf13664842e9f5dd:/package/linux-atm/Makefile diff --git a/package/linux-atm/Makefile b/package/linux-atm/Makefile index b88928df8..b6b252d14 100644 --- a/package/linux-atm/Makefile +++ b/package/linux-atm/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2010 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=linux-atm PKG_VERSION:=2.5.2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/$(PKG_NAME) @@ -43,6 +43,18 @@ define Package/atm-tools/description This package contains the Linux ATM tools. endef +define Package/atm-diagnostics + SECTION:=net + CATEGORY:=Network + DEPENDS:=linux-atm + TITLE:=Linux ATM Diagnostics + URL:=http://linux-atm.sourceforge.net/ +endef + +define Package/atm-diagnostics/description + This package contains the Linux ATM diagnostics. +endef + define Package/br2684ctl SECTION:=net CATEGORY:=Network @@ -62,6 +74,7 @@ define Build/Configure endef TARGET_CFLAGS += -I$(LINUX_DIR)/include -I$(LINUX_DIR)/arch/$(LINUX_KARCH)/include +unexport PREFIX define Build/Compile # src/qgen is built with HOSTCC, which does not really like our LDFLAGS @@ -89,7 +102,6 @@ define Package/atm-tools/install $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/arpd/atmarp{,d} $(1)/usr/sbin/ $(INSTALL_DIR) $(1)/lib/network $(INSTALL_BIN) ./files/ipoa.sh $(1)/lib/network/ - $(INSTALL_DIR) $(1)/usr/bin/ # #The following is disabled by default but still useful for some debugging @@ -121,6 +133,14 @@ define Package/atm-tools/install # $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ttcp_atm $(1)/usr/bin/ endef +define Package/atm-diagnostics/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/aread $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/awrite $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/atmdiag $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/atmdump $(1)/usr/bin/ +endef + define Package/br2684ctl/install $(INSTALL_DIR) $(1)/etc/init.d/ $(INSTALL_BIN) ./files/br2684ctl $(1)/etc/init.d/ @@ -130,4 +150,5 @@ endef $(eval $(call BuildPackage,linux-atm)) $(eval $(call BuildPackage,atm-tools)) +$(eval $(call BuildPackage,atm-diagnostics)) $(eval $(call BuildPackage,br2684ctl))