diff options
author | Raptor Engineering Development Team <support@raptorengineering.com> | 2019-09-16 16:06:08 -0500 |
---|---|---|
committer | Raptor Engineering Development Team <support@raptorengineering.com> | 2019-09-27 15:57:23 -0500 |
commit | 398a4b85d4374a35f580db998b854261a5a7db74 (patch) | |
tree | 9464d1f07b64b6357c08b923e7fb4ba1ff4bf7cd /package/whetstone | |
parent | ef2bf42027bd0bce7691bbdf9d2e7e67ef68fa79 (diff) | |
download | buildroot-2019.02-op-build.tar.gz buildroot-2019.02-op-build.zip |
Initial pass at removing binary-only, unlicensed, and proprietary packages from buildroot tree2019.02-op-build
Note that DAHDI is only being removed due to poor packaging -- it does not require binary
firmware on some cards, but the buildroot packaging for it unconditionally pulls in binary-only
firmware regardless.
Diffstat (limited to 'package/whetstone')
-rw-r--r-- | package/whetstone/Config.in | 6 | ||||
-rw-r--r-- | package/whetstone/whetstone.hash | 2 | ||||
-rw-r--r-- | package/whetstone/whetstone.mk | 23 |
3 files changed, 0 insertions, 31 deletions
diff --git a/package/whetstone/Config.in b/package/whetstone/Config.in deleted file mode 100644 index 7a68160da4..0000000000 --- a/package/whetstone/Config.in +++ /dev/null @@ -1,6 +0,0 @@ -config BR2_PACKAGE_WHETSTONE - bool "whetstone" - help - C Converted Whetstone Double Precision Benchmark - - http://www.netlib.org/benchmark/ diff --git a/package/whetstone/whetstone.hash b/package/whetstone/whetstone.hash deleted file mode 100644 index db9bbb4548..0000000000 --- a/package/whetstone/whetstone.hash +++ /dev/null @@ -1,2 +0,0 @@ -# Locally calculated -sha256 333e4ceca042c146f63eec605573d16ae8b07166cbc44a17bec1ea97c6f1efbf whetstone.c diff --git a/package/whetstone/whetstone.mk b/package/whetstone/whetstone.mk deleted file mode 100644 index 3b6ec3419b..0000000000 --- a/package/whetstone/whetstone.mk +++ /dev/null @@ -1,23 +0,0 @@ -################################################################################ -# -# whetstone -# -################################################################################ - -WHETSTONE_VERSION = 1.2 -WHETSTONE_SOURCE = whetstone.c -WHETSTONE_SITE = http://www.netlib.org/benchmark - -define WHETSTONE_EXTRACT_CMDS - cp $(WHETSTONE_DL_DIR)/$($(PKG)_SOURCE) $(@D)/ -endef - -define WHETSTONE_BUILD_CMDS - $(TARGET_CONFIGURE_OPTS) $(MAKE) LDLIBS="-lm" -C $(@D) whetstone -endef - -define WHETSTONE_INSTALL_TARGET_CMDS - $(INSTALL) -D $(@D)/whetstone $(TARGET_DIR)/usr/bin/whetstone -endef - -$(eval $(generic-package)) |