Move all to deprecated folder.
This commit is contained in:
8
deprecated/firmware/buildroot/package/ramsmp/Config.in
Normal file
8
deprecated/firmware/buildroot/package/ramsmp/Config.in
Normal file
@@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_RAMSMP
|
||||
bool "ramspeed/smp"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
RAMspeed/SMP is a free open source command line utility
|
||||
to measure cache and memory performance of multiprocessor machines.
|
||||
|
||||
http://alasir.com/software/ramspeed/
|
||||
14
deprecated/firmware/buildroot/package/ramsmp/Makefile
Normal file
14
deprecated/firmware/buildroot/package/ramsmp/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
all: generic
|
||||
|
||||
generic: ramsmp.c fltmem.c fltmark.c intmem.c intmark.c
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $^ -o ramsmp
|
||||
|
||||
i386: ramsmp.c i386/*.s i386/cpuinfo/*.s
|
||||
$(CC) $(CFLAGS) -DI386_ASM $(LDFLAGS) $^ -o ramsmp
|
||||
|
||||
x86_64: ramsmp.c amd64/*.s
|
||||
$(CC) $(CFLAGS) -DAMD64_ASM $(LDFLAGS) $^ -o ramsmp
|
||||
|
||||
clean:
|
||||
rm -f *.o ramsmp
|
||||
2
deprecated/firmware/buildroot/package/ramsmp/ramsmp.hash
Normal file
2
deprecated/firmware/buildroot/package/ramsmp/ramsmp.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 39fb15493fb3c293575746d56f6ab9faaa1d876d8b1f0d8e5a4042d2ace95839 ramsmp-3.5.0.tar.gz
|
||||
22
deprecated/firmware/buildroot/package/ramsmp/ramsmp.mk
Normal file
22
deprecated/firmware/buildroot/package/ramsmp/ramsmp.mk
Normal file
@@ -0,0 +1,22 @@
|
||||
################################################################################
|
||||
#
|
||||
# ramsmp
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RAMSMP_VERSION = 3.5.0
|
||||
RAMSMP_SITE = http://www.alasir.com/software/ramspeed
|
||||
RAMSMP_ARCH = $(if $(BR2_i386),i386)$(if $(BR2_x86_64),x86_64)
|
||||
RAMSMP_LICENSE = Alasir License
|
||||
RAMSMP_LICENSE_FILES = LICENCE
|
||||
|
||||
define RAMSMP_BUILD_CMDS
|
||||
cp -f package/ramsmp/Makefile $(@D)
|
||||
$(TARGET_CONFIGURE_OPTS) make -C $(@D) $(RAMSMP_ARCH)
|
||||
endef
|
||||
|
||||
define RAMSMP_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0755 -D $(@D)/ramsmp $(TARGET_DIR)/usr/bin/ramsmp
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user