<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/poky.git/meta/recipes-support, branch morty-16.0.3</title>
<subtitle>Mirror of git.yoctoproject.org/poky</subtitle>
<id>https://git.enea.com/cgit/linux/poky.git/atom?h=morty-16.0.3</id>
<link rel='self' href='https://git.enea.com/cgit/linux/poky.git/atom?h=morty-16.0.3'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/'/>
<updated>2017-12-09T14:34:36+00:00</updated>
<entry>
<title>nspr: Fix build error due to missing stdint.h&gt; include</title>
<updated>2017-12-09T14:34:36+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2017-09-06T16:09:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=ddd1da619d7f10dba4af6a4b83d8f18e0d63e871'/>
<id>urn:sha1:ddd1da619d7f10dba4af6a4b83d8f18e0d63e871</id>
<content type='text'>
(From OE-Core rev: 2f95c71ba17a6d68d3805efe82097c10b6740244)

(From OE-Core rev: 4e257a7429e1a7525c1939d4f011e938d4ca32b1)

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Signed-off-by: Ross Burton &lt;ross.burton@intel.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>neon: fix fetch error</title>
<updated>2017-11-21T14:43:56+00:00</updated>
<author>
<name>Armin Kuster</name>
<email>akuster808@gmail.com</email>
</author>
<published>2017-11-21T01:43:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=80fe599578d6f1e59baba65a4ef40eab035c41f9'/>
<id>urn:sha1:80fe599578d6f1e59baba65a4ef40eab035c41f9</id>
<content type='text'>
ERROR: neon-native-0.30.1-r0 do_checkuri: Fetcher failure for URL: 'http://www.webdav.org/neon/neon-0.30.1.tar.gz'. URL http://www.webdav.org/neon/neon-0.30.1.tar.gz doesn't work
ERROR: neon-native-0.30.1-r0 do_checkuri: Function failed: do_checkuri

change to https and url to OSL.
www.webdav.org is down or dean

(From OE-Core rev: 5bf1ce30cbafe12b72e8215ed86d115cb22851c4)

Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>gmp_4.2.1: prevent calls to mpn_add_nc() if HAVE_NATIVE_mpn_sub_nc is false</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Andre McCurdy</name>
<email>armccurdy@gmail.com</email>
</author>
<published>2017-11-02T00:23:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=230407cab0395ec895579106bb5882f17f68217c'/>
<id>urn:sha1:230407cab0395ec895579106bb5882f17f68217c</id>
<content type='text'>
When building for aarch64 (ie relying only on generic C code rather
than asm) libgmp.so contains undefined references to __gmpn_add_nc
and __gmpn_sub_nc which causes attempts to link with -lgmp to fail:

 | .../usr/lib/libgmp.so: undefined reference to `__gmpn_sub_nc'
 | .../usr/lib/libgmp.so: undefined reference to `__gmpn_add_nc'

Solution based on a historical patch posted to the gmp mailing list:

  https://gmplib.org/list-archives/gmp-discuss/2006-May/002344.html

Cherry-pick from meta-gplv2:

  http://git.yoctoproject.org/cgit/cgit.cgi/meta-gplv2/commit/?id=d8668018d5d795be2297f878fd871a27edf532bf

(From OE-Core rev: 93af40ae113e9b505a9739ca2688360f12015fb7)

Signed-off-by: Andre McCurdy &lt;armccurdy@gmail.com&gt;
Signed-off-by: Ross Burton &lt;ross.burton@intel.com&gt;
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>libevdev: add libcheck dependency</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Andre McCurdy</name>
<email>armccurdy@gmail.com</email>
</author>
<published>2017-11-03T20:29:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=61d7b4aa038bae190105637c17094f226602f857'/>
<id>urn:sha1:61d7b4aa038bae190105637c17094f226602f857</id>
<content type='text'>
The libevdev configure script contains an unconditional check for
libcheck. If libcheck is found, libevdev unit tests will be built.

Without a dependency, the presence of libcheck in sysroot is non
deterministic (in morty and earlier) and builds can fail if libcheck
is available during do_configure but not during do_compile.

(In pyro and later, the libcheck dependency is not required to make
libevdev builds deterministic due to recipe specific sysroots).

(From OE-Core rev: 9dc52a9959b05c9fa548f1991366f29ae873a793)

Signed-off-by: Andre McCurdy &lt;armccurdy@gmail.com&gt;
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>curl: Security fix for CVE-2017-1000101</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Rajkumar Veer</name>
<email>rveer@mvista.com</email>
</author>
<published>2017-11-04T15:15:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=fe8a56109b0c2c4f030994307bd86e406bfb1be3'/>
<id>urn:sha1:fe8a56109b0c2c4f030994307bd86e406bfb1be3</id>
<content type='text'>
Affected versions: curl 7.34.0 to and including 7.54.1
Not affected versions: curl &lt; 7.34.0 and &gt;= 7.55.0

(From OE-Core rev: 3cd67ae472cf163a592aac6ca783e451068fca0c)

Signed-off-by: Rajkumar Veer &lt;rveer@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>curl: Security fix for CVE-2017-1000100</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Rajkumar Veer</name>
<email>rveer@mvista.com</email>
</author>
<published>2017-11-04T15:13:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=dc96e5ae3f9dd73e5f000e637550b42fc630a021'/>
<id>urn:sha1:dc96e5ae3f9dd73e5f000e637550b42fc630a021</id>
<content type='text'>
Affected versions: libcurl 7.15.0 to and including 7.54.1
Not affected versions: libcurl &lt; 7.15.0 and &gt;= 7.55.0

(From OE-Core rev: 2ad0d34313b30f3f18d2f15879294fab310aa874)

Signed-off-by: Rajkumar Veer &lt;rveer@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>curl: Security fix for CVE-2016-9586</title>
<updated>2017-11-21T14:43:55+00:00</updated>
<author>
<name>Thiruvadi Rajaraman</name>
<email>trajaraman@mvista.com</email>
</author>
<published>2017-11-04T15:10:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=6131edc2c9de3d2fe03243a423e2441a6ec855ce'/>
<id>urn:sha1:6131edc2c9de3d2fe03243a423e2441a6ec855ce</id>
<content type='text'>
Affected versions: libcurl 7.1 to and including 7.51.0
Not affected versions: libcurl &gt;= 7.52.0

(From OE-Core rev: 559ccc284987846c5b266cc2bc5ecd91c1c155f9)

Signed-off-by: Thiruvadi Rajaraman &lt;trajaraman@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>curl: Security fix for CVE-2016-8624</title>
<updated>2017-11-21T14:43:54+00:00</updated>
<author>
<name>Thiruvadi Rajaraman</name>
<email>trajaraman@mvista.com</email>
</author>
<published>2017-11-04T15:08:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=c4339c0e748ca78580ff97a4b1b64840ae6ab12c'/>
<id>urn:sha1:c4339c0e748ca78580ff97a4b1b64840ae6ab12c</id>
<content type='text'>
Affected versions: curl 7.1 to and including 7.50.3
Not affected versions: curl &gt;= 7.51.0

(From OE-Core rev: 26e464767ab53cb78e4ede10c77fe12907a7daad)

Signed-off-by: Thiruvadi Rajaraman &lt;trajaraman@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>curl: Security fix for CVE-2016-8617</title>
<updated>2017-11-21T14:43:54+00:00</updated>
<author>
<name>Thiruvadi Rajaraman</name>
<email>trajaraman@mvista.com</email>
</author>
<published>2017-11-04T15:03:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=5affd0af1ffca0ceca95482c6cbfcac0096b424d'/>
<id>urn:sha1:5affd0af1ffca0ceca95482c6cbfcac0096b424d</id>
<content type='text'>
Affected versions: curl 7.1 to and including 7.50.3
Not affected versions: curl &gt;= 7.51.0

(From OE-Core rev: 3b73976716ee71a8040221f22c5fbda79512a958)

Signed-off-by: Thiruvadi Rajaraman &lt;trajaraman@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>curl: Security fix for CVE-2016-8623</title>
<updated>2017-11-21T14:43:54+00:00</updated>
<author>
<name>Thiruvadi Rajaraman</name>
<email>trajaraman@mvista.com</email>
</author>
<published>2017-11-04T15:01:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=b0827cbb4bac7c0c74e46a7b26a5827e01fd4cb9'/>
<id>urn:sha1:b0827cbb4bac7c0c74e46a7b26a5827e01fd4cb9</id>
<content type='text'>
Affected versions: curl 7.10.7 to and including 7.50.3
Not affected versions: curl &lt; 7.10.7 and curl &gt;= 7.51.0

(From OE-Core rev: 2da99dc9f7f3d8373cc3108c18300723ad4a243a)

Signed-off-by: Thiruvadi Rajaraman &lt;trajaraman@mvista.com&gt;
Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
</feed>
