<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-java.git/conf, branch master</title>
<subtitle>[no description]</subtitle>
<id>https://git.enea.com/cgit/linux/meta-java.git/atom?h=master</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-java.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/'/>
<updated>2025-01-20T19:09:54+00:00</updated>
<entry>
<title>layer.conf: Mark as compatible with styhead</title>
<updated>2025-01-20T19:09:54+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2024-09-19T07:08:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=0601401b68090b0cf304393ced2072b3c3f0f206'/>
<id>urn:sha1:0601401b68090b0cf304393ced2072b3c3f0f206</id>
<content type='text'>
LAYERSERIES_COMPAT: replace scarthgap with styhead for Yocto 5.1

Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Tim Orling &lt;tim.orling@konsulko.com&gt;
</content>
</entry>
<entry>
<title>layer.conf: Mark as compatible with scarthgap</title>
<updated>2024-03-22T14:06:17+00:00</updated>
<author>
<name>Geoff Parker</name>
<email>geoffrey.parker@arthrex.com</email>
</author>
<published>2024-03-18T20:09:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=4799a6291223467311d24ed3e1af367aadea122e'/>
<id>urn:sha1:4799a6291223467311d24ed3e1af367aadea122e</id>
<content type='text'>
LAYERSERIES_COMPAT: replace nanbield with scarthgap for Yocto 5.0

Signed-off-by: Geoff Parker &lt;geoffrey.parker@arthrex.com&gt;
</content>
</entry>
<entry>
<title>layer.conf: Mark as compatible with nanbield</title>
<updated>2023-11-22T18:37:02+00:00</updated>
<author>
<name>AJ Bagwell</name>
<email>aj.bagwell@gmail.com</email>
</author>
<published>2023-11-22T13:58:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=4256a9e5b0b6ff687f3656f9659285c2b37e8aa2'/>
<id>urn:sha1:4256a9e5b0b6ff687f3656f9659285c2b37e8aa2</id>
<content type='text'>
Signed-off-by: AJ Bagwell &lt;anthony.bagwell@hivehome.com&gt;

LAYERSERIES_COMPAT: drop mickeldore, replace with nanbield
Signed-off-by: Tim Orling &lt;tim.orling@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Merge pull request #3 from kk6ho/master+mickledore</title>
<updated>2023-03-16T07:54:16+00:00</updated>
<author>
<name>Richard</name>
<email>g0hl1n@users.noreply.github.com</email>
</author>
<published>2023-03-16T07:54:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=e122acf3e9570ceb055e55feb41e5558463253e4'/>
<id>urn:sha1:e122acf3e9570ceb055e55feb41e5558463253e4</id>
<content type='text'>
layer.conf: Switch LAYERSERIES_COMPAT to mickledore</content>
</entry>
<entry>
<title>layer.conf: Switch LAYERSERIES_COMPAT to mickledore</title>
<updated>2023-01-16T20:17:44+00:00</updated>
<author>
<name>Geoff Parker</name>
<email>geoffrey.parker@arthrex.com</email>
</author>
<published>2023-01-08T02:33:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=2688da6d3725b67bb1a83b8bdc9a95be2789df32'/>
<id>urn:sha1:2688da6d3725b67bb1a83b8bdc9a95be2789df32</id>
<content type='text'>
Signed-off-by: Geoff Parker &lt;geoffrey.parker@arthrex.com&gt;
</content>
</entry>
<entry>
<title>conf: layer: add free(1) to HOSTTOOLS_NONFATAL for icedtea7-native</title>
<updated>2022-12-12T05:58:40+00:00</updated>
<author>
<name>Ahmad Fatoum</name>
<email>a.fatoum@pengutronix.de</email>
</author>
<published>2022-10-28T16:16:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=79df369e89ed72ebdfe84a4a520ed590751ae5d9'/>
<id>urn:sha1:79df369e89ed72ebdfe84a4a520ed590751ae5d9</id>
<content type='text'>
icedtea7-native build uses free -m (from the procfs suite of tools) to
determine memory bound during compile. This always fails for us,
because free is not passed through from the host environment.
This results in a few warnings in the logs:

  /bin/sh: line 1: free: command not found
    [..snip..]/Sanity-Settings.gmk:195: WARNING: MB_OF_MEMORY should not
    be empty [Sanity-Settings.gmk]

But otherwise this is handled gracefully. Problems arise when building
icedtea7-native on hosts with more modest RAM sizes: Build process
will consume so much RAM that the OOM killer is invoked. Let us avoid
this by passing through free from the host environment.

We use HOSTTOOLS_NONFATAL instead of HOSTTOOLS as to not break
currently working setups that have enough RAM but lack free(1).
This needs to be done globally due to the way HOSTTOOLS_NONFATAL is
evaluated, we thus stick it into the layer.conf.

Signed-off-by: Ahmad Fatoum &lt;a.fatoum@pengutronix.de&gt;
Signed-off-by: Richard Leitner &lt;richard.leitner@skidata.com&gt;
</content>
</entry>
<entry>
<title>layer.conf: Mark as compatible with langdale</title>
<updated>2022-11-24T16:50:25+00:00</updated>
<author>
<name>Ulrich Ölmann</name>
<email>u.oelmann@pengutronix.de</email>
</author>
<published>2022-11-24T16:33:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=23416a77935d9168304c99d2c48e16e54d2d15e4'/>
<id>urn:sha1:23416a77935d9168304c99d2c48e16e54d2d15e4</id>
<content type='text'>
Signed-off-by: Ulrich Ölmann &lt;u.oelmann@pengutronix.de&gt;
Signed-off-by: Richard Leitner &lt;richard.leitner@skidata.com&gt;
</content>
</entry>
<entry>
<title>Switch compat to kirkstone</title>
<updated>2022-02-28T12:50:51+00:00</updated>
<author>
<name>Jeremy A. Puhlman</name>
<email>jpuhlman@mvista.com</email>
</author>
<published>2022-02-24T09:23:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=e553318b292354fc829ca53640d870ef3f5521f9'/>
<id>urn:sha1:e553318b292354fc829ca53640d870ef3f5521f9</id>
<content type='text'>
Signed-off-by: Jeremy A. Puhlman &lt;jpuhlman@mvista.com&gt;
Signed-off-by: Richard Leitner &lt;richard.leitner@skidata.com&gt;
</content>
</entry>
<entry>
<title>layer.conf: Update to new honister release name</title>
<updated>2021-08-11T05:19:46+00:00</updated>
<author>
<name>AJ Bagwell</name>
<email>anthony.bagwell@hivehome.com</email>
</author>
<published>2021-08-09T13:17:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=147677c986b60b3cf1457088c51e317b4120946d'/>
<id>urn:sha1:147677c986b60b3cf1457088c51e317b4120946d</id>
<content type='text'>
Signed-off-by: AJ Bagwell &lt;anthony.bagwell@hivehome.com&gt;
Signed-off-by: Richard Leitner &lt;richard.leitner@skidata.com&gt;
</content>
</entry>
<entry>
<title>layer.conf: Mark as compatible with hardknott</title>
<updated>2021-04-27T08:18:41+00:00</updated>
<author>
<name>Anthony Bagwell</name>
<email>aj.bagwell@gmail.com</email>
</author>
<published>2021-03-29T12:57:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=04377d10225360bd27d018007889176911bb7532'/>
<id>urn:sha1:04377d10225360bd27d018007889176911bb7532</id>
<content type='text'>
Signed-off-by: AJ Bagwell &lt;anthony.bagwell@hivehome.com&gt;
Signed-off-by: Richard Leitner &lt;richard.leitner@skidata.com&gt;
</content>
</entry>
</feed>
