<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/poky.git/documentation/poky.yaml, branch hardknott-3.3.3</title>
<subtitle>Mirror of git.yoctoproject.org/poky</subtitle>
<id>https://git.enea.com/cgit/linux/poky.git/atom?h=hardknott-3.3.3</id>
<link rel='self' href='https://git.enea.com/cgit/linux/poky.git/atom?h=hardknott-3.3.3'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/'/>
<updated>2021-09-01T15:28:04+00:00</updated>
<entry>
<title>documentation: prepare for 3.3.3 release</title>
<updated>2021-09-01T15:28:04+00:00</updated>
<author>
<name>Anuj Mittal</name>
<email>anuj.mittal@intel.com</email>
</author>
<published>2021-09-01T08:04:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=52994ada6e6bd408baac6f03ff94568881f69942'/>
<id>urn:sha1:52994ada6e6bd408baac6f03ff94568881f69942</id>
<content type='text'>
Also add a link for documentation to just release 3.1.10 release.

(From yocto-docs rev: d890e8fcf0c43ea911c04e84b80c250432236010)

Signed-off-by: Anuj Mittal &lt;anuj.mittal@intel.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>documentation: prepare for 3.3.2 release</title>
<updated>2021-07-20T18:07:26+00:00</updated>
<author>
<name>Anuj Mittal</name>
<email>anuj.mittal@intel.com</email>
</author>
<published>2021-07-20T15:49:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=f3014b1bbbf1444ea571bbd13dcdf8d962123016'/>
<id>urn:sha1:f3014b1bbbf1444ea571bbd13dcdf8d962123016</id>
<content type='text'>
Include updates to versions for dunfell releases as well.

(From yocto-docs rev: dae6a0209d69c267d3cbace6589b0ac73e06abce)

Signed-off-by: Anuj Mittal &lt;anuj.mittal@intel.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>documentation: prepare for 3.3.1 release</title>
<updated>2021-05-17T08:47:53+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>richard.purdie@linuxfoundation.org</email>
</author>
<published>2021-05-17T08:46:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=05a8aad57ce250b124db16705acec557819905ae'/>
<id>urn:sha1:05a8aad57ce250b124db16705acec557819905ae</id>
<content type='text'>
Include update to previous releases.

(From yocto-docs rev: eb19a2b5687f11c22c7fc26d3efabbf65adb572e)

Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Use variables for minimum host versions and bump Python to 3.6</title>
<updated>2021-04-15T19:18:57+00:00</updated>
<author>
<name>Paul Eggleton</name>
<email>paul.eggleton@microsoft.com</email>
</author>
<published>2021-04-12T01:44:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=83960012388c9b08e293ccdb8e4a4ef95f14887a'/>
<id>urn:sha1:83960012388c9b08e293ccdb8e4a4ef95f14887a</id>
<content type='text'>
Minimum Git, tar, Python and gcc versions are specified in quite a few
different places. Let's add some variables for these so there's no
chance of missing one if they're updated in future. Additionally, for
hardknott the minimum Python version is 3.6 so set that as the value for
Python.

(From yocto-docs rev: 9a802bc4bb0438c2540f360a08c7787caf64408a)

Signed-off-by: Paul Eggleton &lt;paul.eggleton@microsoft.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>poky.yaml: Use git instead of git-core for Ubunti</title>
<updated>2021-04-06T21:29:49+00:00</updated>
<author>
<name>Janne Kiiskila</name>
<email>janne.kiiskila@pelion.com</email>
</author>
<published>2021-03-23T18:11:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=5480a85f016474371fe249b58e48b4de1971296b'/>
<id>urn:sha1:5480a85f016474371fe249b58e48b4de1971296b</id>
<content type='text'>
Ubuntu has changed packaging and git-core is not available anymore,
it is now just plain git.

$ sudo apt-get install git-core
[sudo] password for jankii01:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'git' instead of 'git-core'
git is already the newest version (1:2.17.1-1ubuntu0.8).
The following package was automatically installed and is no longer required:
  linux-hwe-5.4-headers-5.4.0-65
Use 'sudo apt autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 13 not upgraded.

Documentation should match the current package name to avoid confusion/warnings.

Change can be verified by running the following script

set -ex

distros=("debian:8" "debian:9" "debian:10" "ubuntu:16.04" "ubuntu:18.04" "ubuntu:20.04")
for i in "${distros[@]}"
do
   folder="${i/:/.}"      # change : to .
   mkdir -p $folder
   cd $folder
   echo FROM $i &gt; Dockerfile
   echo RUN apt-get update \&amp;\&amp; apt-get install -y git &gt;&gt; Dockerfile
   echo
   cat Dockerfile
   docker build -t test-$folder .
   cd ..
   rm $folder/Dockerfile
   rmdir $folder
done

(From yocto-docs rev: 8cf3acb3b639ef0373c2f77daf0a4323a7f404b0)

Signed-off-by: Janne Kiiskila &lt;janne.kiiskila@pelion.com&gt;
Reviewed-by: Michael Opdenacker &lt;michael.opdenacker@bootlin.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>poky.yaml: change gcc-multilib to gcc</title>
<updated>2021-04-06T14:07:55+00:00</updated>
<author>
<name>Ross Burton</name>
<email>ross@burtonini.com</email>
</author>
<published>2021-04-06T10:53:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=07c7bdc6c24974dfd4fdc50d142a5d2049966f5f'/>
<id>urn:sha1:07c7bdc6c24974dfd4fdc50d142a5d2049966f5f</id>
<content type='text'>
None of the other distributions install compilers for 32-bit compilation,
and this package isn't available on arm64 Ubuntu systems.

(From yocto-docs rev: 5036fea7854c3152a0c148d8ab1668e01b38697d)

Signed-off-by: Ross Burton &lt;ross.burton@arm.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>documentation/poky.yaml: Fix latest 3.2 series tag reference</title>
<updated>2021-04-06T14:07:55+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>richard.purdie@linuxfoundation.org</email>
</author>
<published>2021-04-06T14:05:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=7ca303cdc6d37c8ecc55a42c3863add033c1756b'/>
<id>urn:sha1:7ca303cdc6d37c8ecc55a42c3863add033c1756b</id>
<content type='text'>
This was accidentally missed in the last release update, fix it.

(From yocto-docs rev: 8a671976818381d97ae01499e9d7deb571312f7d)

Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>releases: update to include 3.2.3</title>
<updated>2021-04-06T08:45:39+00:00</updated>
<author>
<name>Michael Halstead</name>
<email>mhalstead@linuxfoundation.org</email>
</author>
<published>2021-04-02T22:27:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=e8e10f27b20f331622b7fdb3eb4e60f0850ea876'/>
<id>urn:sha1:e8e10f27b20f331622b7fdb3eb4e60f0850ea876</id>
<content type='text'>
Updating to build 3.2.3 docs and add missing 3.0.4 release line.

(From yocto-docs rev: 95972458c4c5ecea38676975f69afca7f0c91e35)

Signed-off-by: Michael Halstead &lt;mhalstead@linuxfoundation.org&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>releases: update to include 3.1.6</title>
<updated>2021-02-26T22:36:56+00:00</updated>
<author>
<name>Michael Halstead</name>
<email>mhalstead@linuxfoundation.org</email>
</author>
<published>2021-02-26T19:32:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=41ee3602ed54776a3130333e70bf36437c0bae19'/>
<id>urn:sha1:41ee3602ed54776a3130333e70bf36437c0bae19</id>
<content type='text'>
(From yocto-docs rev: 05580e574e78039f577d58648b4ee3817c0f09cc)

Signed-off-by: Michael Halstead &lt;mhalstead@linuxfoundation.org&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>releases: update to include 3.2.2</title>
<updated>2021-02-26T15:21:21+00:00</updated>
<author>
<name>Michael Halstead</name>
<email>mhalstead@linuxfoundation.org</email>
</author>
<published>2021-02-23T18:30:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=5f69bf12e5af95a16546906c662ae046aef136c5'/>
<id>urn:sha1:5f69bf12e5af95a16546906c662ae046aef136c5</id>
<content type='text'>
(From yocto-docs rev: 1770c9c1e1ce9d28f6d211061010c4a802522c16)

Signed-off-by: Michael Halstead &lt;mhalstead@linuxfoundation.org&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
</feed>
