mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 23:34:31 +04:00
Adopt the netperf package.
Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
This commit is contained in:
49
net/netperf/Makefile
Normal file
49
net/netperf/Makefile
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
#
|
||||||
|
# Copyright (C) 2006-2011 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=netperf
|
||||||
|
PKG_VERSION:=2.6.0
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_LICENSE:=Custom
|
||||||
|
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
|
PKG_SOURCE_URL:=ftp://ftp.netperf.org/netperf/
|
||||||
|
PKG_MD5SUM:=9654ffdfd4c4f2c93ce3733cd9ed9236
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/netperf
|
||||||
|
SECTION:=net
|
||||||
|
CATEGORY:=Network
|
||||||
|
TITLE:=Network performance measurement tool
|
||||||
|
URL:=http://www.netperf.org/
|
||||||
|
MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
|
||||||
|
endef
|
||||||
|
|
||||||
|
CONFIGURE_ARGS += --enable-demo
|
||||||
|
|
||||||
|
define Package/netperf/install
|
||||||
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||||||
|
$(INSTALL_BIN) ./files/netserver.init $(1)/etc/init.d/netserver
|
||||||
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/netperf $(1)/usr/bin/
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/netserver $(1)/usr/bin/
|
||||||
|
$(INSTALL_DIR) $(1)/lib/netperf
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/doc/examples/arr_script $(1)/lib/netperf
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/doc/examples/packet_byte_script $(1)/lib/netperf
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/doc/examples/sctp_stream_script $(1)/lib/netperf
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/doc/examples/snapshot_script $(1)/lib/netperf
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/doc/examples/tcp_range_script $(1)/lib/netperf
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/doc/examples/tcp_rr_script $(1)/lib/netperf
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/doc/examples/tcp_stream_script $(1)/lib/netperf
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/doc/examples/udp_rr_script $(1)/lib/netperf
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/doc/examples/udp_stream_script $(1)/lib/netperf
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,netperf))
|
||||||
12
net/netperf/files/netserver.init
Normal file
12
net/netperf/files/netserver.init
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/sh /etc/rc.common
|
||||||
|
# Copyright (C) 2006-2011 OpenWrt.org
|
||||||
|
|
||||||
|
START=50
|
||||||
|
|
||||||
|
start() {
|
||||||
|
service_start /usr/bin/netserver
|
||||||
|
}
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
service_stop /usr/bin/netserver
|
||||||
|
}
|
||||||
12
net/netperf/patches/001-musl-fix.patch
Normal file
12
net/netperf/patches/001-musl-fix.patch
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
diff --git a/src/netrt_rtnetlink.c b/src/netrt_rtnetlink.c
|
||||||
|
index 10e4750..318c0c2 100644
|
||||||
|
--- a/src/netrt_rtnetlink.c
|
||||||
|
+++ b/src/netrt_rtnetlink.c
|
||||||
|
@@ -5,7 +5,6 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
-#include <bits/sockaddr.h>
|
||||||
|
#include <asm/types.h>
|
||||||
|
#include <linux/rtnetlink.h>
|
||||||
|
#include <netinet/in.h>
|
||||||
Reference in New Issue
Block a user