Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,92 @@
|
||||
Add new targets for iozone:
|
||||
|
||||
linux-noaio is for linux targets without AIO (use case: uClibc)
|
||||
linux-noth is for linux target without threads or AIO
|
||||
|
||||
And make largefile support optional via CFLAGS.
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
|
||||
diff -Nura iozone3_414.orig/src/current/makefile iozone3_414/src/current/makefile
|
||||
--- iozone3_414.orig/src/current/makefile 2013-06-11 09:48:18.257837091 -0300
|
||||
+++ iozone3_414/src/current/makefile 2013-06-11 13:05:56.338162144 -0300
|
||||
@@ -166,10 +166,28 @@
|
||||
# GNU 'C' compiler Linux build with threads, largefiles, async I/O
|
||||
#
|
||||
linux: iozone_linux.o libasync.o libbif.o fileop_linux.o pit_server.o
|
||||
- $(CC) -O3 $(LDFLAGS) iozone_linux.o libasync.o libbif.o -lpthread \
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) iozone_linux.o libasync.o libbif.o \
|
||||
+ -lpthread -lrt -o iozone
|
||||
+ $(CC) $(CFLAGS) -Dlinux fileop_linux.o -o fileop
|
||||
+ $(CC) $(CFLAGS) -Dlinux pit_server.o -o pit_server
|
||||
+
|
||||
+#
|
||||
+# GNU 'C' compiler Linux build with threads, largefiles
|
||||
+#
|
||||
+linux-noaio: iozone_linux-noaio.o libbif.o fileop_linux.o pit_server.o
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) iozone_linux-noaio.o libbif.o \
|
||||
+ -lpthread -lrt -o iozone
|
||||
+ $(CC) $(CFLAGS) -Dlinux fileop_linux.o -o fileop
|
||||
+ $(CC) $(CFLAGS) -Dlinux pit_server.o -o pit_server
|
||||
+
|
||||
+#
|
||||
+# GNU 'C' compiler Linux build with largefiles
|
||||
+#
|
||||
+linux-noth: iozone_linux-noth.o libbif.o fileop_linux.o pit_server.o
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) iozone_linux-noth.o libbif.o \
|
||||
-lrt -o iozone
|
||||
- $(CC) -O3 -Dlinux fileop_linux.o -o fileop
|
||||
- $(CC) -O3 -Dlinux pit_server.o -o pit_server
|
||||
+ $(CC) $(CFLAGS) -Dlinux fileop_linux.o -o fileop
|
||||
+ $(CC) $(CFLAGS) -Dlinux pit_server.o -o pit_server
|
||||
|
||||
#
|
||||
# GNU 'C' compiler Linux build for powerpc chip with threads, largefiles, async I/O
|
||||
@@ -795,13 +813,33 @@
|
||||
@echo ""
|
||||
@echo "Building iozone for Linux"
|
||||
@echo ""
|
||||
- $(CC) -Wall -c -O3 -Dunix -DHAVE_ANSIC_C -DASYNC_IO -DHAVE_PREAD \
|
||||
- -DSHARED_MEM -Dlinux -D_LARGEFILE64_SOURCE $(CFLAGS) iozone.c \
|
||||
+ $(CC) -Wall -c -Dunix -DHAVE_ANSIC_C -DASYNC_IO -DHAVE_PREAD \
|
||||
+ -DSHARED_MEM -Dlinux $(CFLAGS) iozone.c \
|
||||
-DNAME='"linux"' -o iozone_linux.o
|
||||
- $(CC) -Wall -c -O3 -Dunix -DHAVE_ANSIC_C -DASYNC_IO -D_LARGEFILE64_SOURCE \
|
||||
+ $(CC) -Wall -c -Dunix -DHAVE_ANSIC_C -DASYNC_IO \
|
||||
+ -DSHARED_MEM -Dlinux $(CFLAGS) libbif.c -o libbif.o
|
||||
+ $(CC) -Wall -c -Dunix -Dlinux -DHAVE_ANSIC_C -DASYNC_IO \
|
||||
+ $(CFLAGS) libasync.c -o libasync.o
|
||||
+
|
||||
+iozone_linux-noaio.o: iozone.c libbif.c
|
||||
+ @echo ""
|
||||
+ @echo "Building iozone for Linux no AIO"
|
||||
+ @echo ""
|
||||
+ $(CC) -Wall -c -Dunix -DHAVE_ANSIC_C -DHAVE_PREAD \
|
||||
+ -DSHARED_MEM -Dlinux $(CFLAGS) iozone.c \
|
||||
+ -DNAME='"linux"' -o iozone_linux-noaio.o
|
||||
+ $(CC) -Wall -c -Dunix -DHAVE_ANSIC_C \
|
||||
+ -DSHARED_MEM -Dlinux $(CFLAGS) libbif.c -o libbif.o
|
||||
+
|
||||
+iozone_linux-noth.o: iozone.c libbif.c
|
||||
+ @echo ""
|
||||
+ @echo "Building iozone for Linux with no threads"
|
||||
+ @echo ""
|
||||
+ $(CC) -Wall -c -Dunix -DHAVE_ANSIC_C -DNO_THREADS -DHAVE_PREAD \
|
||||
+ -DSHARED_MEM -Dlinux $(CFLAGS) iozone.c \
|
||||
+ -DNAME='"linux"' -o iozone_linux-noth.o
|
||||
+ $(CC) -Wall -c -Dunix -DHAVE_ANSIC_C -DNO_THREADS \
|
||||
-DSHARED_MEM -Dlinux $(CFLAGS) libbif.c -o libbif.o
|
||||
- $(CC) -Wall -c -O3 -Dunix -Dlinux -DHAVE_ANSIC_C -DASYNC_IO \
|
||||
- -D_LARGEFILE64_SOURCE $(CFLAGS) libasync.c -o libasync.o
|
||||
|
||||
fileop_AIX.o: fileop.c
|
||||
@echo ""
|
||||
@@ -893,7 +931,7 @@
|
||||
@echo ""
|
||||
@echo "Building fileop for Linux"
|
||||
@echo ""
|
||||
- $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux.o
|
||||
+ $(CC) -Wall -c $(CFLAGS) fileop.c -o fileop_linux.o
|
||||
|
||||
fileop_openbsd.o: fileop.c
|
||||
@echo ""
|
||||
@@ -0,0 +1,37 @@
|
||||
Dummy pthread_setaffinity_np() when not available
|
||||
|
||||
On uClibc configurations that do not use the NPTL thread
|
||||
implementation, pthread_setaffinity_np() is not available. This patch
|
||||
defines a dummy (empty) implementation of this function for such
|
||||
cases.
|
||||
|
||||
The only few architectures that do not provide the NPTL thread
|
||||
implementation are very likely to be non-SMP architectures, and
|
||||
therefore, setting the affinity of the thread is not doing anything
|
||||
useful, so having an empty stub for pthread_setaffinity_np() is not a
|
||||
problem.
|
||||
|
||||
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||
|
||||
Index: b/src/current/iozone.c
|
||||
===================================================================
|
||||
--- a/src/current/iozone.c
|
||||
+++ b/src/current/iozone.c
|
||||
@@ -306,6 +306,17 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
+#if defined (__linux__)
|
||||
+#include <features.h>
|
||||
+#if defined (__UCLIBC__) && !defined (__UCLIBC_HAS_THREADS_NATIVE__)
|
||||
+static int pthread_setaffinity_np(pthread_t thread, size_t cpusetsize,
|
||||
+ const cpu_set_t *cpuset)
|
||||
+{
|
||||
+ return 0;
|
||||
+}
|
||||
+#endif
|
||||
+#endif
|
||||
+
|
||||
#if ((defined(solaris) && defined(__LP64__)) || defined(__s390x__))
|
||||
/* If we are building for 64-bit Solaris, all functions that return pointers
|
||||
* must be declared before they are used; otherwise the compiler will assume
|
||||
9
deprecated/firmware/buildroot/package/iozone/Config.in
Normal file
9
deprecated/firmware/buildroot/package/iozone/Config.in
Normal file
@@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_IOZONE
|
||||
bool "iozone"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
IOzone is a filesystem benchmark tool.
|
||||
The benchmark generates and measures a variety of file operations
|
||||
|
||||
http://www.iozone.org/
|
||||
2
deprecated/firmware/buildroot/package/iozone/iozone.hash
Normal file
2
deprecated/firmware/buildroot/package/iozone/iozone.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 e8388238326dc29359e5cb9f790d193f1e1bdadfbf260e010c50fa682387faed iozone3_430.tar
|
||||
33
deprecated/firmware/buildroot/package/iozone/iozone.mk
Normal file
33
deprecated/firmware/buildroot/package/iozone/iozone.mk
Normal file
@@ -0,0 +1,33 @@
|
||||
################################################################################
|
||||
#
|
||||
# iozone
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IOZONE_VERSION = 3_430
|
||||
IOZONE_SOURCE = iozone$(IOZONE_VERSION).tar
|
||||
IOZONE_SITE = http://www.iozone.org/src/current
|
||||
IOZONE_LICENSE = IOzone license (NO DERIVED WORKS ALLOWED)
|
||||
# IOzone license details can be found at:
|
||||
# http://www.iozone.org/docs/Iozone_License.txt
|
||||
|
||||
# No threading target is non-AIO as well
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),)
|
||||
IOZONE_TARGET = linux-noth
|
||||
# AIO support not available on uClibc, use the linux (non-aio) target.
|
||||
else ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
||||
IOZONE_TARGET = linux-noaio
|
||||
else
|
||||
IOZONE_TARGET = linux
|
||||
endif
|
||||
|
||||
define IOZONE_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) $(IOZONE_TARGET) -C $(@D)/src/current
|
||||
endef
|
||||
|
||||
define IOZONE_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 755 $(@D)/src/current/iozone \
|
||||
$(TARGET_DIR)/usr/bin/iozone
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user