- Dec 10, 2022
-
-
Gwenhael Goavec-Merou authored
With gnuradio 3.10 boost/filesystem was replaced by std::filesystem. This feature was introduced with gcc 8 (requirering -lstdc++fs (with gcc 9 explicit -lstdc++fs is no more explicitely required)). With gcc < 8 build fails with error: In file included from /home/br-user/work/instance-0/output-1/host/aarch64_be-buildroot-linux-gnu/sysroot/usr/include/boost/dll/runtime_symbol_info.hpp:11:0, from /home/br-user/work/instance-0/output-1/build/gnuradio-3.10.4.0/buildroot-build/gnuradio-runtime/lib/constants.cc:16: /home/br-user/work/instance-0/output-1/host/aarch64_be-buildroot-linux-gnu/sysroot/usr/include/boost/dll/config.hpp:42:10: fatal error: filesystem: No such file or directory #include <filesystem> ^~~~~~~~~~~~ compilation terminated. Add a dependency to gcc >= 8. BR2_TOOLCHAIN_HAS_GCC_BUG_64735 only affects gcc <7, so we drop it. Adding this restriction on gcc >= 8 also covers the dependency for volk, which requires gcc >= 7, which was not propagated to gnuradio so far. Tested with bootlin toolchain 2020.02-2 (gcc 8.3.0) Fixes: - http://autobuild.buildroot.net/results/6a82605c58f9ef9eb6c14603777dd8523dd00aa5/ - http://autobuild.buildroot.net/results/c7c4ae76954e388ab639b39fd521d90acfe4edc9/ Signed-off-by:
Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Norbert Lange authored
The permissions are now in sync with meson_post_install.py, and debian. Most importantly, polkit-agent-helper-1 is now setuid root, but also the rules.d directories rather than their parents are owned by polkitd. Signed-off-by:
Norbert Lange <nolange79@gmail.com> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Etienne Carriere authored
Bumps OP-TEE test package version to OP-TEE release 3.19.0. Signed-off-by:
Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Etienne Carriere authored
Bumps OP-TEE examples package version to OP-TEE release 3.19.0. Signed-off-by:
Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Etienne Carriere authored
Bumps OP-TEE client package version to OP-TEE release 3.19.0. This package introduces a mandatory dependency on util-linux and pk-config packages that were made optional in commit [1], following 3.19.0 release tag. The dependency is related to new library teeacl for access control list based login identification. This change picks that commit and defines the dependency only when TEEACL library is to be embedded. The patch will be removed once we dump to the next OP-TEE release tag, as state by new BR2 boolean config switch BR2_PACKAGE_OPTEE_CLIENT_TEEACL. Signed-off-by:
Etienne Carriere <etienne.carriere@linaro.org> [yann.morin.1998@free.fr: - actually backport upstream commit - don't default y for BR2_PACKAGE_OPTEE_CLIENT_TEEACL - select util-linux instead of depending on it - don't select util-linux-libs, there's no circular deps - squash both conditions together in .mk - fix check-package ] Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Etienne Carriere authored
Bumps OP-TEE benchmark package version to OP-TEE release 3.19.0. Signed-off-by:
Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Etienne Carriere authored
Bumps OP-TEE OS package version to OP-TEE release 3.19.0. Signed-off-by:
Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Fabrice Fontaine authored
Use pkg-config to retrieve libusb dependencies such as -latomic and avoid the following static build failure raised since bump of libusb to version 1.0.25 in commit aad60993: /nvmedata/autobuild/instance-29/output-1/per-package/libftdi1/host/bin/../lib/gcc/sparc-buildroot-linux-uclibc/10.3.0/../../../../sparc-buildroot-linux-uclibc/bin/ld: /nvmedata/autobuild/instance-29/output-1/per-package/libftdi1/host/sparc-buildroot-linux-uclibc/sysroot/lib/libusb-1.0.a(core.o): in function `libusb_unref_device': /nvmedata/autobuild/instance-29/output-1/build/libusb-1.0.25/libusb/core.c:1186: undefined reference to `__atomic_fetch_add_4' Fixes: - http://autobuild.buildroot.org/results/1ca7cd85ae60ad4797a6d8a83b2fb51d7eab96d9 Signed-off-by:
Fabrice Fontaine <fontaine.fabrice@gmail.com> Reviewed-by:
Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Fabrice Fontaine authored
libuwsc needs BR2_PACKAGE_WOLFSSL_ALL (which enables openssl compat layer) to avoid the following wolfssl build failure raised since the addition of the package in commit 120c0477: /home/br-user/work/instance-1/output-1/build/libuwsc-3.3.5/src/ssl.c:62:5: error: unknown type name 'SSL_CTX' 62 | SSL_CTX *ctx; | ^~~~~~~ Note that we do not select _ALL when wolfssl is enabled, because wolfssl is neither the only nor the preferred choice, so the condition would have to be a bit more complex: select BR2_PACKAGE_WOLFSSL_ALL if BR2_PACKAGE_WOLFSSL \ && !BR2_STATIC_LIBS && !BR2_PACKAGE_OPENSSL It is not overly complicated, but it is no longer trivial or obvious, and would easily break if the ordering of preferences were to change in the .mk fie in the future. Fixes: - http://autobuild.buildroot.org/results/6c2a6ed6fca1f92aab299f6ed9cd900b20e8d512 Signed-off-by:
Fabrice Fontaine <fontaine.fabrice@gmail.com> [yann.morin.1998@free.fr: explain why we don't select _ALL] Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Fabrice Fontaine authored
Fix CVE-2022-32292: In ConnMan through 1.41, remote attackers able to send HTTP requests to the gweb component are able to exploit a heap-based buffer overflow in received_data to execute code. Fix CVE-2022-32293: In ConnMan through 1.41, a man-in-the-middle attack against a WISPR HTTP query could be used to trigger a use-after-free in WISPR handling, leading to crashes or code execution. Signed-off-by:
Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
- Dec 09, 2022
-
-
Fabrice Fontaine authored
Drop patch (already in version) http://proftpd.org/docs/NEWS-1.3.8 http://proftpd.org/docs/RELEASE_NOTES-1.3.8 Signed-off-by:
Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Fabrice Fontaine authored
https://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2022q4/016767.html Signed-off-by:
Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Fabrice Fontaine authored
Fix CVE-2022-43705: In Botan before 2.19.3, it is possible to forge OCSP responses due to a certificate verification error. This issue was introduced in Botan 1.11.34 (November 2016). https://github.com/randombit/botan/security/advisories/GHSA-4v9w-qvcq-6q7w https://github.com/randombit/botan/blob/2.19.3/news.rst Signed-off-by:
Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Christian Stewart authored
Includes 2 security fixes following the security policy. - CVE-2022-41720: https://go.dev/issue/56694 - CVE-2022-41717: https://go.dev/issue/56350 https://groups.google.com/g/golang-nuts/c/rQgaDWEvUrE https://github.com/golang/go/issues?q=milestone%3AGo1.19.4+label%3ACherryPickApproved+ Signed-off-by:
Christian Stewart <christian@paral.in> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Bernd Kuhls authored
Building this package is broken with X.org xserver 21. Fixes: http://autobuild.buildroot.net/results/de5/de5efd922edb9eb7dc9981b5f10ea402487ee431/ Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
Building this package is broken with X.org xserver 21: https://gitlab.freedesktop.org/xorg/driver/xf86-video-glint/-/issues/1 Fixes: http://autobuild.buildroot.net/results/f9d/f9d650ccb4173085cfc8873f1e52ee56caf982fa/ Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-August/003197.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-August/003200.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-August/003203.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-August/003205.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-August/003206.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-August/003207.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-August/003208.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-September/003210.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-September/003213.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-September/003214.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003215.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003217.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003218.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003219.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003220.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003221.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003222.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003223.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003224.html Updated license hash due to upstream commits: https://gitlab.freedesktop.org/xorg/lib/libxmu/-/commit/621f61f7d3f5955a84e6aa8b7458699870fdee45 https://gitlab.freedesktop.org/xorg/lib/libxmu/-/commit/f84dcc7fef5e0842e6408f059c13d73975114ec4 Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003230.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003231.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003233.html Added license file. Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-
Bernd Kuhls authored
https://lists.x.org/archives/xorg-announce/2022-October/003234.html Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Yann E. MORIN <yann.morin.1998@free.fr>
-