X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Flynxis%2Fomap.git;a=blobdiff_plain;f=package%2Fnetwork%2Futils%2Fiproute2%2FMakefile;h=0fa88b674d52c49b981f9371bd91d027bbee1c05;hp=f5b5f4e536b13f989159dad92a6c6e439facd496;hb=fc859fb44b4e7a38a1f1825b05b72b81e80f82a8;hpb=6de8a82f851874a4aeb62076f14606f6c543104e diff --git a/package/network/utils/iproute2/Makefile b/package/network/utils/iproute2/Makefile index f5b5f4e536..0fa88b674d 100644 --- a/package/network/utils/iproute2/Makefile +++ b/package/network/utils/iproute2/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=iproute2 -PKG_VERSION:=4.0.0 -PKG_RELEASE:=3 +PKG_VERSION:=4.4.0 +PKG_RELEASE:=9 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz -PKG_SOURCE_URL:=http://kernel.org/pub/linux/utils/net/iproute2/ -PKG_MD5SUM:=3adc263ade4ee76c35032e8f50b54108 +PKG_SOURCE_URL:=@KERNEL/linux/utils/net/iproute2 +PKG_HASH:=bc91c367288a19f78ef800cd6840363be1f22da8436fbae88e1a7250490d6514 PKG_BUILD_PARALLEL:=1 PKG_LICENSE:=GPL-2.0 @@ -30,18 +30,15 @@ define Package/iproute2/Default MAINTAINER:=Russell Senior DEPENDS:= +libnl-tiny VARIANT:=$(1) + PROVIDES:=$(3) endef -define Package/ip -$(call Package/iproute2/Default,tiny,Minimal) +define Package/ip-tiny +$(call Package/iproute2/Default,tiny,Minimal,ip) CONFLICTS:=ip-full endef -Package/ip-full=$(call Package/iproute2/Default,full,Full) - -define Package/ip-$(BUILD_VARIANT)/conffiles -$(Package/ip/conffiles) -endef +Package/ip-full:=$(call Package/iproute2/Default,full,Full,ip) define Package/tc $(call Package/iproute2/Default) @@ -64,6 +61,11 @@ $(call Package/iproute2/Default) TITLE:=Socket statistics utility endef +define Package/nstat +$(call Package/iproute2/Default) + TITLE:=Network statistics utility +endef + ifeq ($(BUILD_VARIANT),tiny) IP_CONFIG_TINY:=y endif @@ -74,20 +76,11 @@ define Build/Configure $(PKG_BUILD_DIR)/Makefile $(SED) "s,^LIBC_INCLUDE.*,LIBC_INCLUDE=$(STAGING_DIR)/include," \ $(PKG_BUILD_DIR)/Makefile - echo "static const char SNAPSHOT[] = \"$(PKG_VERSION)-$(PKG_RELEASE)-openwrt\";" \ + echo "static const char SNAPSHOT[] = \"$(PKG_VERSION)-$(PKG_RELEASE)-lede\";" \ > $(PKG_BUILD_DIR)/include/SNAPSHOT.h endef -ifdef CONFIG_USE_GLIBC - TARGET_CFLAGS += -DHAVE_SETNS -endif -ifdef CONFIG_USE_MUSL - TARGET_CFLAGS += -DHAVE_SETNS -endif -ifdef CONFIG_UCLIBC_USE_VERSION_NG - TARGET_CFLAGS += -DHAVE_SETNS -endif - +TARGET_CFLAGS += -DHAVE_SETNS TARGET_CFLAGS += -ffunction-sections -fdata-sections MAKE_FLAGS += \ @@ -104,12 +97,12 @@ endef define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include - $(CP) $(PKG_BUILD_DIR)/include/libnetlink.h $(1)/usr/include/ + $(CP) $(PKG_BUILD_DIR)/include/{libgenl,libnetlink,ll_map}.h $(1)/usr/include/ $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_BUILD_DIR)/lib/libnetlink.a $(1)/usr/lib/ endef -define Package/ip/install +define Package/ip-tiny/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_BUILD_DIR)/ip/ip $(1)/usr/bin/ endef @@ -141,9 +134,15 @@ define Package/ss/install $(INSTALL_BIN) $(PKG_BUILD_DIR)/misc/ss $(1)/usr/sbin/ endef -$(eval $(call BuildPackage,ip)) +define Package/nstat/install + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/misc/nstat $(1)/usr/sbin/ +endef + +$(eval $(call BuildPackage,ip-tiny)) $(eval $(call BuildPackage,ip-full)) $(eval $(call BuildPackage,tc)) $(eval $(call BuildPackage,genl)) $(eval $(call BuildPackage,ip-bridge)) $(eval $(call BuildPackage,ss)) +$(eval $(call BuildPackage,nstat))