Import buildroot 2016.02.01

This commit is contained in:
2016-02-24 22:35:39 +01:00
parent a6ee09dea4
commit 828befcf3c
7393 changed files with 390887 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
config BR2_PACKAGE_NETPERF
bool "netperf"
help
Network performance benchmark tool
http://www.netperf.org/

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 842af17655835c8be7203808c3393e6cb327a8067f3ed1f1053eb78b4e40375a netperf-2.7.0.tar.bz2

View File

@@ -0,0 +1,25 @@
################################################################################
#
# netperf
#
################################################################################
NETPERF_VERSION = 2.7.0
NETPERF_SITE = ftp://ftp.netperf.org/netperf
NETPERF_SOURCE = netperf-$(NETPERF_VERSION).tar.bz2
# gcc 5+ defaults to gnu99 which breaks netperf
NETPERF_CONF_ENV = \
ac_cv_func_setpgrp_void=set \
CFLAGS="$(TARGET_CFLAGS) -std=gnu89"
NETPERF_CONF_OPTS = --enable-demo=yes
NETPERF_LICENSE = netperf license
NETPERF_LICENSE_FILES = COPYING
define NETPERF_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 $(@D)/src/netperf \
$(TARGET_DIR)/usr/bin/netperf
$(INSTALL) -m 0755 $(@D)/src/netserver \
$(TARGET_DIR)/usr/bin/netserver
endef
$(eval $(autotools-package))