2010-03-14 09:56:33 +08:00
|
|
|
#
|
2015-01-17 18:58:22 +08:00
|
|
|
# Copyright (C) 2006-2015 OpenWrt.org
|
2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
|
#
|
2005-03-21 16:12:49 +08:00
|
|
|
|
2005-03-06 11:34:52 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
|
|
PKG_NAME:=iproute2
|
2016-02-02 02:03:54 +08:00
|
|
|
PKG_VERSION:=4.4.0
|
2017-05-02 22:45:18 +08:00
|
|
|
PKG_RELEASE:=10
|
2005-03-21 16:12:49 +08:00
|
|
|
|
2013-07-29 07:27:35 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2016-05-24 21:13:48 +08:00
|
|
|
PKG_SOURCE_URL:=@KERNEL/linux/utils/net/iproute2
|
2016-12-17 00:32:10 +08:00
|
|
|
PKG_HASH:=bc91c367288a19f78ef800cd6840363be1f22da8436fbae88e1a7250490d6514
|
2010-09-10 05:50:07 +08:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2014-11-02 20:20:54 +08:00
|
|
|
PKG_LICENSE:=GPL-2.0
|
2007-09-07 16:34:51 +08:00
|
|
|
|
2014-03-09 21:32:59 +08:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2006-06-21 10:32:39 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2006-09-24 01:39:46 +08:00
|
|
|
define Package/iproute2/Default
|
|
|
|
|
SECTION:=net
|
|
|
|
|
CATEGORY:=Network
|
2014-06-17 20:43:30 +08:00
|
|
|
URL:=http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2
|
2011-03-12 15:27:57 +08:00
|
|
|
SUBMENU:=Routing and Redirection
|
2014-06-17 20:43:30 +08:00
|
|
|
MAINTAINER:=Russell Senior <russell@personaltelco.net>
|
2012-04-03 00:25:51 +08:00
|
|
|
DEPENDS:= +libnl-tiny
|
2006-05-11 03:06:22 +08:00
|
|
|
endef
|
|
|
|
|
|
2016-10-13 09:07:21 +08:00
|
|
|
define Package/ip-tiny
|
2017-03-04 19:37:43 +08:00
|
|
|
$(call Package/iproute2/Default)
|
|
|
|
|
TITLE:=Routing control utility (Minimal)
|
|
|
|
|
VARIANT:=tiny
|
|
|
|
|
PROVIDES:=ip
|
|
|
|
|
ALTERNATIVES:=200:/sbin/ip:/sbin/ip-tiny
|
2014-10-06 01:13:34 +08:00
|
|
|
endef
|
|
|
|
|
|
2017-03-04 19:37:43 +08:00
|
|
|
define Package/ip-full
|
|
|
|
|
$(call Package/iproute2/Default)
|
|
|
|
|
TITLE:=Routing control utility (Full)
|
|
|
|
|
VARIANT:=full
|
|
|
|
|
PROVIDES:=ip
|
|
|
|
|
ALTERNATIVES:=300:/sbin/ip:/sbin/ip-full
|
|
|
|
|
endef
|
2014-03-09 21:32:59 +08:00
|
|
|
|
2006-05-11 03:06:22 +08:00
|
|
|
define Package/tc
|
2007-09-07 16:34:51 +08:00
|
|
|
$(call Package/iproute2/Default)
|
2006-09-24 01:39:46 +08:00
|
|
|
TITLE:=Traffic control utility
|
2012-05-17 20:36:00 +08:00
|
|
|
DEPENDS:=+kmod-sched-core
|
2006-05-11 03:06:22 +08:00
|
|
|
endef
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2007-06-09 21:17:46 +08:00
|
|
|
define Package/genl
|
2007-09-07 16:34:51 +08:00
|
|
|
$(call Package/iproute2/Default)
|
2007-06-09 21:17:46 +08:00
|
|
|
TITLE:=General netlink utility frontend
|
|
|
|
|
endef
|
|
|
|
|
|
2015-01-17 18:58:34 +08:00
|
|
|
define Package/ip-bridge
|
|
|
|
|
$(call Package/iproute2/Default)
|
|
|
|
|
TITLE:=Bridge configuration utility from iproute2
|
|
|
|
|
endef
|
|
|
|
|
|
2012-04-03 00:25:51 +08:00
|
|
|
define Package/ss
|
|
|
|
|
$(call Package/iproute2/Default)
|
|
|
|
|
TITLE:=Socket statistics utility
|
|
|
|
|
endef
|
|
|
|
|
|
2016-04-27 17:13:59 +08:00
|
|
|
define Package/nstat
|
|
|
|
|
$(call Package/iproute2/Default)
|
|
|
|
|
TITLE:=Network statistics utility
|
|
|
|
|
endef
|
|
|
|
|
|
2014-03-09 21:32:59 +08:00
|
|
|
ifeq ($(BUILD_VARIANT),tiny)
|
|
|
|
|
IP_CONFIG_TINY:=y
|
|
|
|
|
endif
|
|
|
|
|
|
2006-05-11 03:06:22 +08:00
|
|
|
define Build/Configure
|
2005-03-06 11:34:52 +08:00
|
|
|
$(SED) "s,-I/usr/include/db3,," $(PKG_BUILD_DIR)/Makefile
|
|
|
|
|
$(SED) "s,^KERNEL_INCLUDE.*,KERNEL_INCLUDE=$(LINUX_DIR)/include," \
|
|
|
|
|
$(PKG_BUILD_DIR)/Makefile
|
|
|
|
|
$(SED) "s,^LIBC_INCLUDE.*,LIBC_INCLUDE=$(STAGING_DIR)/include," \
|
|
|
|
|
$(PKG_BUILD_DIR)/Makefile
|
2016-03-25 05:40:13 +08:00
|
|
|
echo "static const char SNAPSHOT[] = \"$(PKG_VERSION)-$(PKG_RELEASE)-lede\";" \
|
2010-09-09 08:40:25 +08:00
|
|
|
> $(PKG_BUILD_DIR)/include/SNAPSHOT.h
|
2006-05-11 03:06:22 +08:00
|
|
|
endef
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2015-11-03 02:12:23 +08:00
|
|
|
TARGET_CFLAGS += -DHAVE_SETNS
|
2013-12-17 23:59:29 +08:00
|
|
|
TARGET_CFLAGS += -ffunction-sections -fdata-sections
|
|
|
|
|
|
2009-11-06 06:29:14 +08:00
|
|
|
MAKE_FLAGS += \
|
2012-04-03 00:25:51 +08:00
|
|
|
EXTRA_CCOPTS="$(TARGET_CFLAGS) -I../include -I$(STAGING_DIR)/usr/include/libnl-tiny" \
|
2009-11-06 06:29:14 +08:00
|
|
|
KERNEL_INCLUDE="$(LINUX_DIR)/include" \
|
2013-12-17 23:59:29 +08:00
|
|
|
SHARED_LIBS="" \
|
2015-06-19 21:30:18 +08:00
|
|
|
LDFLAGS="$(TARGET_LDFLAGS) -Wl,--gc-sections" \
|
2014-03-09 21:32:59 +08:00
|
|
|
IP_CONFIG_TINY=$(IP_CONFIG_TINY) \
|
2014-07-02 20:41:36 +08:00
|
|
|
FPIC="$(FPIC)"
|
2009-11-06 06:29:14 +08:00
|
|
|
|
2006-05-11 03:06:22 +08:00
|
|
|
define Build/Compile
|
2012-09-23 17:50:01 +08:00
|
|
|
+$(MAKE_VARS) $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS)
|
2006-05-11 03:06:22 +08:00
|
|
|
endef
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2009-05-27 05:58:24 +08:00
|
|
|
define Build/InstallDev
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
2017-04-09 02:40:56 +08:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/include/{libgenl,libnetlink,ll_map}.h $(1)/usr/include/
|
2009-05-27 05:58:24 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/lib/libnetlink.a $(1)/usr/lib/
|
|
|
|
|
endef
|
|
|
|
|
|
2016-10-13 09:07:21 +08:00
|
|
|
define Package/ip-tiny/install
|
2017-03-04 19:37:43 +08:00
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ip/ip $(1)/sbin/ip-tiny
|
2006-05-11 03:06:22 +08:00
|
|
|
endef
|
2005-11-06 09:14:15 +08:00
|
|
|
|
2015-09-09 01:44:17 +08:00
|
|
|
define Package/ip-full/install
|
2017-03-04 19:37:43 +08:00
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ip/ip $(1)/sbin/ip-full
|
2014-03-09 21:32:59 +08:00
|
|
|
endef
|
|
|
|
|
|
2006-05-11 03:06:22 +08:00
|
|
|
define Package/tc/install
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/tc/tc $(1)/usr/sbin/
|
2012-04-16 23:04:42 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
2012-12-02 21:04:03 +08:00
|
|
|
$(INSTALL_BIN) ./files/15-teql $(1)/etc/hotplug.d/iface/
|
2006-05-11 03:06:22 +08:00
|
|
|
endef
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2007-06-09 21:17:46 +08:00
|
|
|
define Package/genl/install
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/genl/genl $(1)/usr/sbin/
|
|
|
|
|
endef
|
|
|
|
|
|
2015-01-17 18:58:34 +08:00
|
|
|
define Package/ip-bridge/install
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bridge/bridge $(1)/usr/sbin/
|
|
|
|
|
endef
|
|
|
|
|
|
2012-04-03 00:25:51 +08:00
|
|
|
define Package/ss/install
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/misc/ss $(1)/usr/sbin/
|
|
|
|
|
endef
|
|
|
|
|
|
2016-04-27 17:13:59 +08:00
|
|
|
define Package/nstat/install
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/misc/nstat $(1)/usr/sbin/
|
|
|
|
|
endef
|
|
|
|
|
|
2016-10-13 09:07:21 +08:00
|
|
|
$(eval $(call BuildPackage,ip-tiny))
|
2014-03-09 21:32:59 +08:00
|
|
|
$(eval $(call BuildPackage,ip-full))
|
2006-05-31 21:00:11 +08:00
|
|
|
$(eval $(call BuildPackage,tc))
|
2007-06-09 21:17:46 +08:00
|
|
|
$(eval $(call BuildPackage,genl))
|
2015-01-17 18:58:34 +08:00
|
|
|
$(eval $(call BuildPackage,ip-bridge))
|
2012-04-03 00:25:51 +08:00
|
|
|
$(eval $(call BuildPackage,ss))
|
2016-04-27 17:13:59 +08:00
|
|
|
$(eval $(call BuildPackage,nstat))
|