Move all to deprecated folder.
This commit is contained in:
7
deprecated/firmware/buildroot/package/ramspeed/Config.in
Normal file
7
deprecated/firmware/buildroot/package/ramspeed/Config.in
Normal 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/
|
||||
14
deprecated/firmware/buildroot/package/ramspeed/Makefile
Normal file
14
deprecated/firmware/buildroot/package/ramspeed/Makefile
Normal 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
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 f84e2e42b2b6b221ef9b586f6ae63d863db4ff21858e0ce7c84622a7c9522950 ramspeed-2.6.0.tar.gz
|
||||
22
deprecated/firmware/buildroot/package/ramspeed/ramspeed.mk
Normal file
22
deprecated/firmware/buildroot/package/ramspeed/ramspeed.mk
Normal 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))
|
||||
Reference in New Issue
Block a user