initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
config BR2_PACKAGE_DACAPO
bool "dacapo"
depends on BR2_PACKAGE_OPENJDK
help
The DaCapo benchmark suite is intended as a tool for Java
benchmarking by the programming language, memory
management and computer architecture communities.
http://dacapobench.org/
comment "dacapo needs OpenJDK"
depends on !BR2_PACKAGE_OPENJDK
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 be3db084adcb2867760e1197b3ccf541c3213d918daa19386d8e236648d24be8 dacapo-9.12-MR1-bach.jar
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE
+21
View File
@@ -0,0 +1,21 @@
################################################################################
#
# dacapo
#
################################################################################
DACAPO_VERSION = 9.12-MR1-bach
DACAPO_SOURCE = dacapo-$(DACAPO_VERSION).jar
DACAPO_SITE = http://sourceforge.net/projects/dacapobench/files/9.12-bach-MR1
DACAPO_LICENSE = Apache-2.0
DACAPO_LICENSE_FILES = LICENSE
define DACAPO_EXTRACT_CMDS
unzip $(DACAPO_DL_DIR)/$(DACAPO_SOURCE) LICENSE -d $(@D)
endef
define DACAPO_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 755 $(DACAPO_DL_DIR)/$(DACAPO_SOURCE) $(TARGET_DIR)/usr/bin/$(DACAPO_SOURCE)
endef
$(eval $(generic-package))