summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorRichard Leitner <richard.leitner@skidata.com>2020-04-21 13:00:22 +0200
committerRichard Leitner <richard.leitner@skidata.com>2020-11-09 14:29:49 +0100
commitf66b83882e076f339dd89e88165bd7bac121f9ff (patch)
treeca7eafceb9735f4c5cb5d2d574bf94b42d6c29b6 /README
parent6e84638d77ac921aac46649095bca5ddbde94d2a (diff)
downloadmeta-java-f66b83882e076f339dd89e88165bd7bac121f9ff.tar.gz
openjdk-14: add 14.0.1g0hl1n/jdk14
Add support for OpenJDK and OpenJRE v14.0.1. This version of OpenJDK is bootstrapped from a host-provided JDK. The host provided JDK is used to build openjdk-14-native. The native build is then used as build-jdk for the cross version. Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Diffstat (limited to 'README')
-rw-r--r--README26
1 files changed, 18 insertions, 8 deletions
diff --git a/README b/README
index f97378d..d46bbc6 100644
--- a/README
+++ b/README
@@ -73,7 +73,6 @@ way is to add the following configuration to your local.conf:
73 73
74SANITY_TESTED_DISTROS = "" 74SANITY_TESTED_DISTROS = ""
75INHERIT += "testimage" 75INHERIT += "testimage"
76TESTIMAGE_AUTO = "1"
77 76
78Then you should be able to use the open{jre,jdk}-{7,8}-test-image recipes. 77Then you should be able to use the open{jre,jdk}-{7,8}-test-image recipes.
79Furthermore you could also include the tests provided in lib/oeqa/runtime/cases 78Furthermore you could also include the tests provided in lib/oeqa/runtime/cases
@@ -110,6 +109,19 @@ list at openembedded-devel@lists.openembedded.org.
110Usage instructions 109Usage instructions
111------------------ 110------------------
112 111
112Simply rely on openjdk-7-jre, openjdk-7, openjdk-8 or openjre-8.
113
114For conf/bblayers.conf you have to add
115
116BBLAYERS ?= " \
117 ...
118 path_to_source/meta-openembedded/meta-oe \
119 path_to_source/sources/meta-java \
120 "
121
122Extra usage instructions OpenJDK-7 & OpenJDK-8
123----------------------------------------------
124
113You should define at least the following variables in a distro include file or local.conf 125You should define at least the following variables in a distro include file or local.conf
114 126
115# Possible provider: cacao-initial-native and jamvm-initial-native 127# Possible provider: cacao-initial-native and jamvm-initial-native
@@ -121,15 +133,13 @@ PREFERRED_PROVIDER_virtual/java-native = "jamvm-native"
121# Optional since there is only one provider for now 133# Optional since there is only one provider for now
122PREFERRED_PROVIDER_virtual/javac-native = "ecj-bootstrap-native" 134PREFERRED_PROVIDER_virtual/javac-native = "ecj-bootstrap-native"
123 135
124Simply rely on openjdk-7-jre, openjdk-7, openjdk-8 or openjre-8. 136Extra usage instructions OpenJDK-14
137-----------------------------------
125 138
126For conf/bblayers.conf you have to add 139You should define at least the following variables in a distro include file or local.conf
127 140
128BBLAYERS ?= " \ 141# The boot-jdk used to bootstrap openjdk-14-native (needs to be jdk v13 || v14)
129 ... 142OPENJDK14_BOOT_JDK = "/path/to/boot-jdk"
130 path_to_source/meta-openembedded/meta-oe \
131 path_to_source/sources/meta-java \
132 "
133 143
134Build host dependencies 144Build host dependencies
135----------------------- 145-----------------------