<feed xmlns='http://www.w3.org/2005/Atom'>
<title>staging/chunkeey/package/utils, branch v19.07.5</title>
<subtitle>Staging tree of Christian Lamparter</subtitle>
<id>https://git.openwrt.org/openwrt/staging/chunkeey/atom?h=v19.07.5</id>
<link rel='self' href='https://git.openwrt.org/openwrt/staging/chunkeey/atom?h=v19.07.5'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/'/>
<updated>2020-08-12T09:10:16Z</updated>
<entry>
<title>busybox: delete redundant patch</title>
<updated>2020-08-12T09:10:16Z</updated>
<author>
<name>Magnus Kroken</name>
</author>
<published>2020-07-24T12:15:17Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/commit/?id=e754e0a143643d2d0460aec193fc20b6ca457614'/>
<id>urn:sha1:e754e0a143643d2d0460aec193fc20b6ca457614</id>
<content type='text'>
This problem has been fixed in upstream commit
6b6a3d9339f1c08efaa18a7fb7357e20b48bdc95. This patch now (harmlessly)
adds the same definition a second time.

Signed-off-by: Magnus Kroken &lt;mkroken@gmail.com&gt;
[bump PKG_RELEASE]
Signed-off-by: Adrian Schmutzler &lt;freifunk@adrianschmutzler.de&gt;
(cherry picked from commit 4165232c45df224f32a94f43b9938d13d643b2a8)
</content>
</entry>
<entry>
<title>upgs: Remove extra _DEFAULT_SOURCE definition</title>
<updated>2020-05-04T22:05:28Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2020-04-18T15:42:02Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/commit/?id=55ccb04046ea8b339f31be1f0adc3dc46120a0cf'/>
<id>urn:sha1:55ccb04046ea8b339f31be1f0adc3dc46120a0cf</id>
<content type='text'>
This extra _DEFAULT_SOURCE definition results in a double definition
which is a compile error.

This fixes the following compile error with glibc:
----------------------------------------------------------------------
ugps-2019-06-25-cd7eabcd/nmea.c:19: error: "_DEFAULT_SOURCE" redefined [-Werror]
 #define _DEFAULT_SOURCE

&lt;command-line&gt;: note: this is the location of the previous definition
cc1: all warnings being treated as errors

Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
(cherry picked from commit 70a962ca6f13e82d8d67f5c8ee65064a41f66a9c)
</content>
</entry>
<entry>
<title>busybox: enable truncate on bcm53xx target</title>
<updated>2020-04-07T13:49:56Z</updated>
<author>
<name>Rafał Miłecki</name>
</author>
<published>2020-02-20T12:40:54Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/commit/?id=55c29c398c2f4f290b5154c8daeff0f5069273b4'/>
<id>urn:sha1:55c29c398c2f4f290b5154c8daeff0f5069273b4</id>
<content type='text'>
It's needed for optimized sysupgrade. On host machine this change
increased busybox size by 4096 B.

Signed-off-by: Rafał Miłecki &lt;rafal@milecki.pl&gt;
(cherry picked from commit 547f1ec25af59f9e69ae3cb69d1312e63138d4bf)
</content>
</entry>
<entry>
<title>adb: fix for SuperSpeed devices</title>
<updated>2019-12-22T23:31:29Z</updated>
<author>
<name>Bjørn Mork</name>
</author>
<published>2019-11-19T13:37:24Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/commit/?id=6351205d7354117a9336fe4150ad264eb93f72e7'/>
<id>urn:sha1:6351205d7354117a9336fe4150ad264eb93f72e7</id>
<content type='text'>
The USB descriptor parsing in adb fails to detect SuperSpeed devices
because of the SuperSpeed Endpoint Companion Descriptor.  This
cherry-picks the upstream fix for the problem.

Unfortunately there never were a release with this fix before the
conversion to C++, so upgrading to a newer version isn't an option.

This makes adb work with SuperSpeed devices like the Sierra Wireless
EM7565.  Tested and verified.

Signed-off-by: Bjørn Mork &lt;bjorn@mork.no&gt;
(cherry picked from commit d034a1f4577108a465e8347d11a51dc0e5a29298)
</content>
</entry>
<entry>
<title>busybox: add glibc dependency for vi regex option</title>
<updated>2019-11-29T23:58:44Z</updated>
<author>
<name>Satadru Pramanik</name>
</author>
<published>2019-11-15T17:42:44Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/commit/?id=cde70954effe137fac830730105853f929e9d28a'/>
<id>urn:sha1:cde70954effe137fac830730105853f929e9d28a</id>
<content type='text'>
Build with musl libc fails with BUSYBOX_DEFAULT_FEATURE_VI_REGEX_SEARCH
enabled. Enabling BusyBox's vi regex search option depends upon GNU
regex.  Musl libc does not support GNU regex[1].

So this patch adds explicit dependency on GNU libc and while at it
remove the FIXME comment.

1. https://wiki.musl-libc.org/functional-differences-from-glibc.html

Ref: https://dev.archive.openwrt.org/ticket/21741.html
Ref: https://forum.openwrt.org/t/busybox-not-compiling/
Ref: https://github.com/openwrt/packages/issues/4453
Signed-off-by: Satadru Pramanik &lt;satadru@umich.edu&gt;
[commit subject/description tweaks, From: fix, USE_GLIBC fix, removed comments]
Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
(cherry picked from commit f1410902e6c089a53935ab44e83207e877445bc5)
</content>
</entry>
<entry>
<title>e2fsprogs: Fix CVE-2019-5094 in libsupport</title>
<updated>2019-11-22T21:54:28Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2019-11-22T21:43:25Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/commit/?id=e68d589e7b8cc151e311ba06ee17ec0ebc82acdc'/>
<id>urn:sha1:e68d589e7b8cc151e311ba06ee17ec0ebc82acdc</id>
<content type='text'>
This adds the following patch from debian:
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/commit/?h=debian/stable&amp;id=09fe1fd2a1f9efc3091b4fc61f1876d0785956a8
libsupport: add checks to prevent buffer overrun bugs in quota code

Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
(cherry picked from commit 0062aad8ecc9bbe36c55895fd78fcaf9a406b006)
</content>
</entry>
<entry>
<title>xfsprogs: Fix compilation with newer musl</title>
<updated>2019-11-09T19:42:04Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2019-11-07T22:55:10Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/commit/?id=963cee15e834816e4d6becfe51d3ea863ab66694'/>
<id>urn:sha1:963cee15e834816e4d6becfe51d3ea863ab66694</id>
<content type='text'>
Backported upstream patch.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
(cherry picked from commit 39035df71c37d474be2cb2a0fad8d70da095c68b)
</content>
</entry>
<entry>
<title>bzip2: add linker option LDFLAGS</title>
<updated>2019-10-19T12:29:44Z</updated>
<author>
<name>leo chung</name>
</author>
<published>2019-10-16T04:22:55Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/commit/?id=3b1d71ffd885531a961ed368ebfc07a71b828a0f'/>
<id>urn:sha1:3b1d71ffd885531a961ed368ebfc07a71b828a0f</id>
<content type='text'>
if gcc not linker whith this LDFLAGS, "file libbz2.so.1.0.8" will
recognize as pie executable ELF file ( which should be shared object).

this because the file command version before 5.36 not recognize
correctly.

Signed-off-by: leo chung &lt;gewalalb@gmail.com&gt;
(cherry picked from commit 56ab58fb6ce29329963619d5a4fffa9d5828176e)
</content>
</entry>
<entry>
<title>px5g: support EC keys</title>
<updated>2019-09-04T11:45:39Z</updated>
<author>
<name>Eneas U de Queiroz</name>
</author>
<published>2019-08-05T18:34:38Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/commit/?id=ad4af2b8dff7c6786db8b789fd9e138b1c1e0d2b'/>
<id>urn:sha1:ad4af2b8dff7c6786db8b789fd9e138b1c1e0d2b</id>
<content type='text'>
This adds an 'eckey' command to generate an EC key, with an optional
curve name argument, with P-256 as default.

For the 'selfsigned' command, it adds an 'ec' algorithm argument to the
'-newkey' option, and a '-pkeyopt ec_paramgen_curve:&lt;curvename&gt;' option,
mirroring the way openssl specifies the curve name.

Notice that curve names are not necessarily the same in mbedtls and
openssl.  In particular, secp256r1 works for mbedtls, but openssl uses
prime256v1 instead. px5g uses mbedtls, but short NIST curve names P-256
and P-384 are specifically supported.

Package size increased by about 900 bytes (arm).

Signed-off-by: Eneas U de Queiroz &lt;cotequeiroz@gmail.com&gt;
(cherry picked from commit a552ababd4ff8e91d3f03f7496f12d080a71ba28)
</content>
</entry>
<entry>
<title>ct-bugcheck: report to https://openwrt.org by default</title>
<updated>2019-09-04T11:41:30Z</updated>
<author>
<name>Yousong Zhou</name>
</author>
<published>2019-08-18T15:19:57Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/chunkeey/commit/?id=e62a6b661fce36ff9c77889b28ad3210bdaa90b4'/>
<id>urn:sha1:e62a6b661fce36ff9c77889b28ad3210bdaa90b4</id>
<content type='text'>
Signed-off-by: Yousong Zhou &lt;yszhou4tech@gmail.com&gt;
(cherry picked from commit 26615ededcdc7c6d30c72d77c3a890be1f777b32)
</content>
</entry>
</feed>
