diff --git a/Config.in.legacy b/Config.in.legacy index 674299470f..2e5bd3153f 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -317,6 +317,13 @@ config BR2_PACKAGE_QUAGGA The quagga package was removed as it is not maintained anymore and the upstream repo is gone. +config BR2_PACKAGE_RAMSMP + bool "ramsmp has been removed" + select BR2_LEGACY + help + The ramsmp package was removed as it is not maintained + anymore and the upstream repo is gone. + comment "Legacy options removed in 2024.11" config BR2_PACKAGE_BSDIFF diff --git a/DEVELOPERS b/DEVELOPERS index 0c9f2126a4..731f2a5d17 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -2057,7 +2057,6 @@ F: package/openvmtools/ N: Kelvin Cheung F: package/cpuload/ F: package/bwm-ng/ -F: package/ramsmp/ N: Kieran Bingham F: package/libcamera/ diff --git a/package/Config.in b/package/Config.in index b76d37e4a0..bc77878b08 100644 --- a/package/Config.in +++ b/package/Config.in @@ -144,7 +144,6 @@ menu "Debugging, profiling and benchmark" source "package/ptm2human/Config.in" source "package/pv/Config.in" source "package/racehound/Config.in" - source "package/ramsmp/Config.in" source "package/ramspeed/Config.in" source "package/rt-tests/Config.in" source "package/rwmem/Config.in" diff --git a/package/ramsmp/Config.in b/package/ramsmp/Config.in deleted file mode 100644 index 411e7de911..0000000000 --- a/package/ramsmp/Config.in +++ /dev/null @@ -1,9 +0,0 @@ -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/ diff --git a/package/ramsmp/Makefile b/package/ramsmp/Makefile deleted file mode 100644 index 5cd76e09d9..0000000000 --- a/package/ramsmp/Makefile +++ /dev/null @@ -1,14 +0,0 @@ - -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 diff --git a/package/ramsmp/ramsmp.hash b/package/ramsmp/ramsmp.hash deleted file mode 100644 index c5e29a3900..0000000000 --- a/package/ramsmp/ramsmp.hash +++ /dev/null @@ -1,3 +0,0 @@ -# Locally computed -sha256 39fb15493fb3c293575746d56f6ab9faaa1d876d8b1f0d8e5a4042d2ace95839 ramsmp-3.5.0.tar.gz -sha256 2c308cffbab01762f8f6b11725725a227080746ef865f2756c9c9e1591dddaad LICENCE diff --git a/package/ramsmp/ramsmp.mk b/package/ramsmp/ramsmp.mk deleted file mode 100644 index 6098376da5..0000000000 --- a/package/ramsmp/ramsmp.mk +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# -# 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))