Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
config BR2_PACKAGE_RAMSPEED
bool "ramspeed"
help
RAMspeed is a free open source command line utility
to measure cache and memory performance.
http://alasir.com/software/ramspeed/

View File

@@ -0,0 +1,14 @@
all: generic
generic: ramspeed.c fltmem.c fltmark.c intmem.c intmark.c
$(CC) $(CFLAGS) $(LDFLAGS) $^ -o ramspeed
i386: ramspeed.c i386/*.s i386/cpuinfo/*.s
$(CC) $(CFLAGS) -DI386_ASM $(LDFLAGS) $^ -o ramspeed
x86_64: ramspeed.c amd64/*.s
$(CC) $(CFLAGS) -DAMD64_ASM $(LDFLAGS) $^ -o ramspeed
clean:
rm -f *.o ramspeed

View File

@@ -0,0 +1,2 @@
# Locally computed
sha256 f84e2e42b2b6b221ef9b586f6ae63d863db4ff21858e0ce7c84622a7c9522950 ramspeed-2.6.0.tar.gz

View File

@@ -0,0 +1,22 @@
################################################################################
#
# ramspeed
#
################################################################################
RAMSPEED_VERSION = 2.6.0
RAMSPEED_SITE = http://www.alasir.com/software/ramspeed
RAMSPEED_ARCH = $(if $(BR2_i386),i386)$(if $(BR2_x86_64),x86_64)
RAMSPEED_LICENSE = Alasir License
RAMSPEED_LICENSE_FILES = LICENCE
define RAMSPEED_BUILD_CMDS
cp -f package/ramspeed/Makefile $(@D)
$(TARGET_CONFIGURE_OPTS) make -C $(@D) $(RAMSPEED_ARCH)
endef
define RAMSPEED_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 -D $(@D)/ramspeed $(TARGET_DIR)/usr/bin/ramspeed
endef
$(eval $(generic-package))