forked from buildroot/buildroot
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2023.02.x #2
Open
tigerinus
wants to merge
1,167
commits into
IceWhaleTech:2023.02.x-zima
Choose a base branch
from
buildroot:2023.02.x
base: 2023.02.x-zima
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
2023.02.x #2
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
With [1], [2] & [3] we made sure Buildroot packages get built with proper MMU page size assumed. This was done nicely through insertion of required flags into the toolchain wrapper so that there's no need to pass these flags to each and every package separately - toolchain wrapper used for real building has all set internally and so proper flags are implicitly used. But there's yet another corner case which is not handled that way - these are binaries or rather libraries which are being used as a part of GCC compilation: libgcc_s.so.1 and libstdc++.so. And so to make sure both the libraries get built properly we need to set TARGET_CFLAGS (cures libgcc_s.so) & TARGET_LDFLAGS (cures libstdc++.so). In case of ARM by defaut 64 KiB page size seems to be used, as w/o that patch we see the following for BR2_ARM64_PAGE_SIZE_4K=y: --------------------------->8---------------------------- $ ./output/host/bin/aarch64-linux-readelf -l ./output/target/lib/libgcc_s.so.1 Elf file type is DYN (Shared object file) Entry point 0x0 There are 6 program headers, starting at offset 64 Program Headers: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flags Align LOAD 0x0000000000000000 0x0000000000000000 0x0000000000000000 0x0000000000013d1c 0x0000000000013d1c R E 0x10000 LOAD 0x000000000001fd98 0x000000000002fd98 0x000000000002fd98 0x0000000000000438 0x00000000000005c8 RW 0x10000 DYNAMIC 0x000000000001fdb8 0x000000000002fdb8 0x000000000002fdb8 0x0000000000000200 0x0000000000000200 RW 0x8 $ ./output/host/bin/aarch64-linux-readelf -l ./output/target/usr/lib/libstdc++.so.6.0.32 Elf file type is DYN (Shared object file) Entry point 0x0 There are 7 program headers, starting at offset 64 Program Headers: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flags Align LOAD 0x0000000000000000 0x0000000000000000 0x0000000000000000 0x00000000001d3462 0x00000000001d3462 R E 0x10000 LOAD 0x00000000001d5760 0x00000000001e5760 0x00000000001e5760 0x000000000000e528 0x0000000000012de8 RW 0x10000 DYNAMIC 0x00000000001deef0 0x00000000001eeef0 0x00000000001eeef0 0x0000000000000240 0x0000000000000240 RW 0x8 --------------------------->8---------------------------- Note alignment of 0x10000 in sections marked for loading. And with the patch applied we get expected alignment of 0x1000 (4 KiB): --------------------------->8---------------------------- $ ./output/host/bin/aarch64-linux-readelf -l ./output/target/lib/libgcc_s.so.1 Elf file type is DYN (Shared object file) Entry point 0x0 There are 6 program headers, starting at offset 64 Program Headers: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flags Align LOAD 0x0000000000000000 0x0000000000000000 0x0000000000000000 0x0000000000013d1c 0x0000000000013d1c R E 0x1000 LOAD 0x0000000000013d98 0x0000000000014d98 0x0000000000014d98 0x0000000000000438 0x00000000000005c8 RW 0x1000 DYNAMIC 0x0000000000013db8 0x0000000000014db8 0x0000000000014db8 0x0000000000000200 0x0000000000000200 RW 0x8 $ ./output/host/bin/aarch64-linux-readelf -l ./output/target/usr/lib/libstdc++.so.6.0.32 Elf file type is DYN (Shared object file) Entry point 0x0 There are 7 program headers, starting at offset 64 Program Headers: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flags Align LOAD 0x0000000000000000 0x0000000000000000 0x0000000000000000 0x00000000001d3462 0x00000000001d3462 R E 0x1000 LOAD 0x00000000001d3760 0x00000000001d4760 0x00000000001d4760 0x000000000000e528 0x0000000000012de8 RW 0x1000 DYNAMIC 0x00000000001dcef0 0x00000000001ddef0 0x00000000001ddef0 0x0000000000000240 0x0000000000000240 RW 0x8 --------------------------->8---------------------------- A nice side effect is that we can get rid of the special handling of "-matomic" as it's already part of ARCH_TOOLCHAIN_WRAPPER_OPTS. [1] https://git.buildroot.net/buildroot/commit/?id=3cc2c6d19ab2e1bb4634f26f9318da9b07df5fff [2] https://git.buildroot.net/buildroot/commit/?id=dcb74db89e74e512e36b32cea6f574a1a1ca84c4 [3] https://git.buildroot.net/buildroot/commit/?id=5e52c28397b79f8c4c99552217cbe95202166626 Signed-off-by: Alexey Brodkin <[email protected]> Signed-off-by: Vladimir Isaev <[email protected]> Signed-off-by: Pavel Kozlov <[email protected]> Cc: Thomas Petazzoni <[email protected]> Cc: Yann E. MORIN <[email protected]> Cc: Arnout Vandecappelle <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]> (cherry picked from commit 747dff5) Signed-off-by: Peter Korsgaard <[email protected]>
openssl is an optional dependency since bump to version 2.4.2 in commit 433fd54 and OpenPrinting/cups@3e9f2c0 Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]> (cherry picked from commit f2c76fb) Signed-off-by: Peter Korsgaard <[email protected]>
--{dis,en}able-systemd is unrecognized since bump to version 2.4.0 in commit 07230bf and OpenPrinting/cups@796bd7c: configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --with-xmlto, --with-fop, --disable-dependency-tracking, --enable-ipv6, --disable-nls, --disable-systemd, --disable-avahi Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]> (cherry picked from commit 3ebd3bf) Signed-off-by: Peter Korsgaard <[email protected]>
--{dis,en}able-avahi is unrecognized since bump to version 2.3.3op2 in commit 8cf034a (which switched upstream location from apple to openprinting): configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --with-xmlto, --with-fop, --disable-dependency-tracking, --enable-ipv6, --disable-nls, --disable-systemd, --disable-avahi Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]> (cherry picked from commit 36743d6) Signed-off-by: Peter Korsgaard <[email protected]>
libaio is only needed for standard install Signed-off-by: Fabrice Fontaine <[email protected]> [[email protected]: fix check-package] Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit ee9c92e) Signed-off-by: Peter Korsgaard <[email protected]>
Update LIBREPLAYGAIN_VERSION to match what is returned by https://release-monitoring.org/project/370816 Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit 558a259) Signed-off-by: Peter Korsgaard <[email protected]>
Update MUSEPACK_VERSION to match what is returned by https://release-monitoring.org/project/21865 Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit c740676) Signed-off-by: Peter Korsgaard <[email protected]>
Fix the following build failure without neon raised since bump to version 1.4.0 in commit 2f7f8f3 and jgaeddert/liquid-dsp@c821187: /home/peko/autobuild/instance-0/output-1/host/bin/arm-none-linux-gnueabi-gcc -std=gnu11 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g0 -D_FORTIFY_SOURCE=2 -ffast-math -mcpu=cortex-a7 -mfloat-abi=hard -mfpu=neon-vfpv4 -Wall -fPIC -Wno-deprecated -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I. -Iinclude -c -o src/audio/src/cvsd.o src/audio/src/cvsd.c In file included from /home/peko/autobuild/instance-0/output-1/host/arm-buildroot-linux-gnueabi/sysroot/usr/include/features.h:388:0, from /home/peko/autobuild/instance-0/output-1/host/arm-buildroot-linux-gnueabi/sysroot/usr/include/stdlib.h:24, from src/libliquid.c:25: /home/peko/autobuild/instance-0/output-1/host/arm-buildroot-linux-gnueabi/sysroot/usr/include/gnu/stubs.h:10:29: fatal error: gnu/stubs-hard.h: No such file or directory # include <gnu/stubs-hard.h> ^ Indeed, upstream considers that NEON is available on all ARM platforms, and their configure.ac contains that code snippet: 239 arm|armv7*|armv8*) 240 # assume neon instructions are available 241 # TODO: check for Neon availability 242 243 # ARM architecture : use neon extensions Fixes: - http://autobuild.buildroot.org/results/36b3c2220c462e7a20262fd1b9064d9aeb6c9ec4 - http://autobuild.buildroot.org/results/881826b4b6c141e59a0da2d7d1ad55d3709fdb95 Signed-off-by: Fabrice Fontaine <[email protected]> [[email protected]: - refactor with LIQUID_DSP_SIMDOVERRIDE - add comment about --disable-simdoverride - extend commit log with upstream code snippet ] Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit 9501bc8) Signed-off-by: Peter Korsgaard <[email protected]>
We switched to new upstream since commit f9e9c63 ("package/rng-tools: bump to 6.7"). Update the website URL as well. Signed-off-by: Baruch Siach <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit 717fe9d) Signed-off-by: Peter Korsgaard <[email protected]>
This usage of <PKG>_NAME was introduced in commit f9e9c63 ("package/rng-tools: bump to 6.7"). No other package uses <PKG>_NAME this way. Signed-off-by: Baruch Siach <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit a2b8596) Signed-off-by: Peter Korsgaard <[email protected]>
Fixes the following security issue: CVE-2022-28737: There's a possible overflow in handle_image() when shim tries to load and execute crafted EFI executables GHSA-hmxr-46w2-jjwh Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit f29cbc6) Signed-off-by: Peter Korsgaard <[email protected]>
Update site to avoid redirections (HSTS, etc.) Version 5.0.3 - 12/17/2023 A memory leak fix in the prior version wasn't applied correctly, resulting in an invalid memory access causing a crash. Bug fixed. Version 5.0.2 - 11/8/2023 Fixed bug that caused crash when a CLIENT_KEY arrived out of order Fixed option handling on Windows when an argument is missing https://sourceforge.net/projects/uftp-multicast/files/Changes.txt/download Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit bfe2fe2) Signed-off-by: Peter Korsgaard <[email protected]>
- Switch to cmake-package - Fix CVE-2023-38857 and CVE-2023-38858 https://github.com/knik0/faad2/blob/2.11.1/ChangeLog Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit 358a379) Signed-off-by: Peter Korsgaard <[email protected]>
- Use official tarball - Update hash of license file (some packages have been added or removed but the list of licenses is the same) - Fix CVE-2023-7158: A vulnerability was found in MicroPython up to 1.21.0. It has been classified as critical. Affected is the function slice_indices of the file objslice.c. The manipulation leads to heap-based buffer overflow. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used. Upgrading to version 1.22.0 is able to address this issue. It is recommended to upgrade the affected component. The identifier of this vulnerability is VDB-249180. Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit 1e12b7d) Signed-off-by: Peter Korsgaard <[email protected]>
Fix the following build failure raised because madplay uses mad_f_mul which is defined in usr/include/mad.h (installed by libmad which has been fixed by a similar workaround in commit 0aaadd5, unfortunately the fix works for compiled code, not mad_f_mul define): /tmp/cc5SGGoU.s:102: Error: selected processor does not support `smull r8,r9,r2,r4' in Thumb mode Fixes: - http://autobuild.buildroot.org/results/0c0955d4f6726b50cad721f4d3437dabde316e70 Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit a9da692) Signed-off-by: Peter Korsgaard <[email protected]>
go1.20.13 (released 2024-01-09) includes fixes to the runtime and the crypto/tls package. Signed-off-by: Peter Korsgaard <[email protected]>
Upstream added optional support for execinfo https://git.exim.org/exim.git/commitdiff/204a7a2c2e8601558905dc34c576a627045a9f21 https://git.exim.org/exim.git/commitdiff/48ea675fee2d5fee8d33c525e28727b69114cfce in version 4.97 which was added to buildroot with commit faec3ca Fixes: http://autobuild.buildroot.net/results/282/282882371e1d8c224c457bf65016f8abd11f8c45/ Signed-off-by: Bernd Kuhls <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]> (cherry picked from commit 22b6297) Signed-off-by: Peter Korsgaard <[email protected]>
Upstream added various utilities, for example exim_id_update with commit Exim/exim@46a36af which is a "Utility for one-time upgrage/downgrade between exim message- id formats, around the 4.97 transition" which would add a dependency to host-perl/perl so we build and install only the needed exim binary. Fixes: http://autobuild.buildroot.net/results/111302dc3b4763befe9b159ae59b1b72de9162ea/ Signed-off-by: Bernd Kuhls <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]> (cherry picked from commit 9bf9cac) Signed-off-by: Peter Korsgaard <[email protected]>
Commit 768f9f8 (support/download: generate even more reproducible tarballs) causes non-reproducibility in tarballs we previousy generated, especially the archives for two cargo-vendored packages, ripgrep and sentry-cli. The cause is that those two pakcages eventually vendor a file that has the u+x bit set, but is otehrwise go-x. With 768f9f8, the files are now go+x, so the hash for those generated archives has changed. Besides, that commit was wrong: it did not account for the 'r' bit for go part, leaving some non-reproducibility still unaccounted for. So, to generate really reproducible archives, we would need to fix that read bit as well, and that has the potential to affect all the archives we generated so far. If we wanted to do so, we'd need a way to version all generated archives, like we do for git and svn, but now for all the different CVSes, as well as for all the vendoring post-processes. For 768f9f8, all that was of conern was the working copies of CVSes (i.e. git, svn, cvs...) that we cache in the Buildroot download dir, not the temporary files during post-processing. Indeed, in that latter case, the user has virtually no way to mangle with the mode of the intermediate extract before repack. And we do have a big fat warning that users should not attempt to meddle with the git tree that Buildroot caches. As 768f9f8 however demonstrates, is that it took quite a long time between the introduction of the git caching, and the time someone eventually discovered they could meddle in there. This shows that the issue it not actually critical in most setups. Also, the tar manual [0] hints at a better solution to handle reproducibility, which even avoids touching the files on disk which is even nicer: ‘--mode='go+u,go-w'’ Omit irrelevant information about file permissions. If we were to actually handle the mode bit for reproducibility, we'd need to: - introduce archive versioning for all download backends and prost-processing - use the tar officially suggested method So, revert that change, as it was incomplete, was not really fixing much issues, and causes actual issues. This reverts commit 768f9f8. [0] https://www.gnu.org/software/tar/manual/tar.html#Reproducibility Thanks to Vincent and Arnout for pointing at the tar manual. Reported-by: Antoine Coutant <[email protected]> Reported-by: Thomas Petazzoni <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> Cc: Vincent Fazio <[email protected]> Cc: Arnout Vandecappelle (Essensium/Mind) <[email protected]> Tested-by: Romain Naour <[email protected]> Signed-off-by: Antoine Coutant <[email protected]> (cherry picked from commit 9fbd3d8) Signed-off-by: Peter Korsgaard <[email protected]>
A number of packages try to detect if they are running in a git repo and run git describe at build time instead of using the hard coded version number if it succeed, leading to odd version numbers as they end up picking up the Buildroot git version if building inside a Buildroot git checkout, E.G.: rauc --version rauc 2023.11-562-g9c954953b4+ This is because rauc builds with meson and uses vcs_tag: https://github.com/rauc/rauc/blob/v1.11/meson.build#L168-L171 https://mesonbuild.com/Reference-manual_functions.html#vcs_tag Another example is micropython, where we already work around it by passing GIT_DIR=. In the context of Buildroot the packages are never built in their own git checkout, so pass GIT_DIR=. to ensure git doesn't walk back up the directory tree and finds the Buildroot git repo, which fixes the rauc (and similar) issues. >>> rauc 1.11 Building .. ninja: Entering directory `/home/peko/source/buildroot/output-rauc/build/rauc-1.11//build' [1/29] Generating version.h with a custom command fatal: not a git repository: '.' cat output-rauc/build/rauc-1.11/build/version.h #define PACKAGE_STRING "rauc 1.11" #define PACKAGE_VERSION "1.11" Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit c07aafa) Signed-off-by: Peter Korsgaard <[email protected]>
Now that it is handled globally in TARGET_MAKE_ENV. Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit 9024e18) Signed-off-by: Peter Korsgaard <[email protected]>
…}.x series Signed-off-by: Bernd Kuhls <[email protected]> Signed-off-by: Peter Korsgaard <[email protected]> (cherry picked from commit 069da87) [Peter: drop 6.6.x bump] Signed-off-by: Peter Korsgaard <[email protected]>
Fix CVE-2023-6174: SSH dissector crash in Wireshark 4.0.0 to 4.0.10 allows denial of service via packet injection or crafted capture file https://www.wireshark.org/security/wnpa-sec-2023-28 https://www.wireshark.org/security/wnpa-sec-2023-29 https://www.wireshark.org/docs/relnotes/wireshark-4.0.11.html Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Peter Korsgaard <[email protected]> (cherry picked from commit df812ac) Signed-off-by: Peter Korsgaard <[email protected]>
- GVCP dissector crash. CVE-2024-0208. - IEEE 1609.2 dissector crash. CVE-2024-0209. https://www.wireshark.org/security/wnpa-sec-2024-01 https://www.wireshark.org/security/wnpa-sec-2024-02 https://www.wireshark.org/docs/relnotes/wireshark-4.0.12 Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Peter Korsgaard <[email protected]> (cherry picked from commit 1e3d206) Signed-off-by: Peter Korsgaard <[email protected]>
The condition checking whether the webrtc-audio-processing package is enabled, added in commit 3ccd3b4 ("package/pipewire: bump to version 0.3.32") is obviously incorrect, and can never be true. Fix the condition to use the correct variable instead. Signed-off-by: Thomas Petazzoni <[email protected]> Signed-off-by: Peter Korsgaard <[email protected]> (cherry picked from commit 52f8db4) Signed-off-by: Peter Korsgaard <[email protected]>
- Fix #27: possible buffer overrun in uev_run() - Update hash of LICENSE file (update in year with troglobit/libuev@0f59096) https://github.com/troglobit/libuev/blob/v2.4.1/ChangeLog.md Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Joachim Wiberg <[email protected]> Signed-off-by: Peter Korsgaard <[email protected]> (cherry picked from commit e3518dd) Signed-off-by: Peter Korsgaard <[email protected]>
cpe:2.3:a:duktape_project:duktape:2.7.0:*:*:*:*:*:*:* is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/detail/DEAF95D7-0DAB-4025-8C5A-9CCF80D75CF2 Signed-off-by: Christian Hitz <[email protected]> Signed-off-by: Peter Korsgaard <[email protected]> (cherry picked from commit e8edf25) Signed-off-by: Peter Korsgaard <[email protected]>
cpe:2.3:a:libaio_project:libaio:-:*:*:*:*:*:*:*is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/detail/69B8039E-7837-4DE3-8DFE-C2E4D834EE78 Signed-off-by: Christian Hitz <[email protected]> Signed-off-by: Peter Korsgaard <[email protected]> (cherry picked from commit 0d615aa) Signed-off-by: Peter Korsgaard <[email protected]>
As found out by Yann E. Morin in [1], apcupsd configure script is ugly, and uses gcc to do the link line-wrapping which will raise the following build failure with gcc 13: /home/buildroot/autobuild/instance-1/output-1/host/opt/ext-toolchain/bin/../lib/gcc/powerpc64le-buildroot-linux-gnu/13.2.0/../../../../powerpc64le-buildroot-linux-gnu/bin/ld: /home/buildroot/autobuild/instance-1/output-1/host/opt/ext-toolchain/bin/../lib/gcc/powerpc64le-buildroot-linux-gnu/13.2.0/../../../../powerpc64le-buildroot-linux-gnu/lib/../lib64/libsupc++.a(eh_alloc.o): in function `std::basic_string_view<char, std::char_traits<char> >::compare(unsigned long, unsigned long, char const*, unsigned long) const': eh_alloc.cc:(.text._ZNKSt17basic_string_viewIcSt11char_traitsIcEE7compareEmmPKcm[_ZNKSt17basic_string_viewIcSt11char_traitsIcEE7compareEmmPKcm]+0x44): undefined reference to `std::__throw_out_of_range_fmt(char const*, ...)' It will also raise the following build failure on sparc/arc: /home/autobuild/autobuild/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/arceb-snps-linux-uclibc/9.2.1/../../../../arceb-snps-linux-uclibc/bin/ld: /home/autobuild/autobuild/instance-3/output-1/host/arceb-buildroot-linux-uclibc/sysroot/lib/libsupc++.a(eh_throw.o): in function `__exchange_and_add_dispatch': /SCRATCH/arcjenkins2/slaves/ru20-custom-arcgnu2/workspace/arcoss_verification/arc_gnu_toolchain_release/arc_gnu_toolchain_release/bd-uclibceb/gcc-stage2/arceb-snps-linux-uclibc/libstdc++-v3/include/ext/atomicity.h:82: undefined reference to `__gnu_cxx::__exchange_and_add(int volatile*, int)' /home/autobuild/autobuild/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/arceb-snps-linux-uclibc/9.2.1/../../../../arceb-snps-linux-uclibc/bin/ld: /SCRATCH/arcjenkins2/slaves/ru20-custom-arcgnu2/workspace/arcoss_verification/arc_gnu_toolchain_release/arc_gnu_toolchain_release/bd-uclibceb/gcc-stage2/arceb-snps-linux-uclibc/libstdc++-v3/include/ext/atomicity.h:82: undefined reference to `__gnu_cxx::__exchange_and_add(int volatile*, int)' Instead of trying to patch the configure script as advocated by Yann E. Morin, set LD to TARGET_CXX as: - this solution is quicker - usptream is dead (last release in 2016) - this solution has already been used in other packages (nodejs, zmqpp) [1]: https://patchwork.ozlabs.org/project/buildroot/patch/[email protected]/ Fixes: - http://autobuild.buildroot.org/results/6096c3ddc5edf3204635c2c90246c2e8c8e074e7 - http://autobuild.buildroot.org/results/d8a/d8a3ab31c5b86871c7e1117f4ffa7b6cedfcb7e0/build-end.log Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit cd2dcaa) Signed-off-by: Peter Korsgaard <[email protected]>
cpe:2.3:a:micropython:micropython is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/detail/853A709B-B8CB-4E8C-BF5E-6621C3A1D994 Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Peter Korsgaard <[email protected]> (cherry picked from commit 30d5d1a) Signed-off-by: Peter Korsgaard <[email protected]>
Fix the following build failure when the configuration files are installed as root: id: 'privoxy': no such user ****************************************************************** WARNING! WARNING! installing config files as root! It is strongly recommended to run privoxy as a non-root user, and to install the config files as that user and/or group! Please read INSTALL, and create a privoxy user and group! ******************************************************************* make[1]: *** [GNUmakefile:861: install] Error 1 This failure is probably raised since the addition of the package in commit f8a263f and https://www.privoxy.org/gitweb/?p=privoxy.git;a=commit;h=26baf6bcc0b5db47b8cf5c55eece0614712b5180 Fixes: - http://autobuild.buildroot.org/results/28d8ca6f0e2d81d62196a0958c9274ad2c8c9871 Signed-off-by: Fabrice Fontaine <[email protected]> Signed-off-by: Arnout Vandecappelle <[email protected]> (cherry picked from commit b681603) Signed-off-by: Peter Korsgaard <[email protected]>
…available Commit 24e996d (package/xvisor: fix build without python interpreter) added a dependency on host-python3 for the d2c.py script, but this script does not use any non-standard python modules so we can instead use BR2_PYTHON3_HOST_DEPENDENCY to only build host-python3 if the build host does not have python3. Signed-off-by: Peter Korsgaard <[email protected]> (cherry picked from commit 7f08dc6) Signed-off-by: Peter Korsgaard <[email protected]>
This reverts commit 3daacad. The libdrm tests also include the useful command line utilities such as modetest and modeprint, so leave them enabled. Signed-off-by: Peter Korsgaard <[email protected]>
Signed-off-by: Peter Korsgaard <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 "support/scripts/apply-patches.sh: set the maximum fuzz factor to 0" reduced the fuzz factor. Due to this change, libgsm fails to build with output: Applying 0001-misc-fixes-from-archlinux.patch using patch: patching file Makefile Hunk #2 FAILED at 96. Hunk #7 FAILED at 424. 2 out of 8 hunks FAILED -- saving rejects to file Makefile.rej This commit refreshes the package patch on the current package version. Fixes: - http://autobuild.buildroot.org/results/b27/b271ade6069fd25c1877e1e74648d92e88c459c4 Signed-off-by: Julien Olivain <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 "support/scripts/apply-patches.sh: set the maximum fuzz factor to 0" reduced the fuzz factor. Due to this change, exim fails to build with output: Applying 0004-exim_lock-fix-lstat-related-build-errors.patch using patch: patching file src/exim_lock.c Hunk #1 FAILED at 13. Hunk #2 succeeded at 27 (offset 1 line). 1 out of 2 hunks FAILED -- saving rejects to file src/exim_lock.c.rej This commit rebases the package patches on the current package version when needed. Fixes: http://autobuild.buildroot.net/results/ff27d5ebd7f24ac8cb236b83c67c2c75255e51c6/ Signed-off-by: Bernd Kuhls <[email protected]> Reviewed-by: Luca Ceresoli <[email protected]> Reviewed-by: Yann E. MORIN <[email protected]> Tested-by: Yann E. MORIN <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 "support/scripts/apply-patches.sh: set the maximum fuzz factor to 0" reduced the fuzz factor. Due to this change, rrdtool fails to build with output: patching file src/rrd_tool.c Hunk #2 FAILED at 42. Hunk buildroot#3 succeeded at 435 (offset -8 lines). Hunk #4 succeeded at 518 (offset -8 lines). Hunk buildroot#5 succeeded at 564 (offset -8 lines). Hunk buildroot#6 succeeded at 879 (offset -8 lines). 1 out of 6 hunks FAILED -- saving rejects to file src/rrd_tool.c.rej Because this was caused by an upstream patch we do not change it but add another upstream patch to be applied before our current patch to avoid the problem. Fixes: http://autobuild.buildroot.net/results/6996dbd764b0066da49dd009f1385196342c89dc/ Signed-off-by: Bernd Kuhls <[email protected]> Reviewed-by: Yann E. MORIN <[email protected]> Tested-by: Yann E. MORIN <[email protected]> [[email protected]: - add comment as suggested by [email protected] ] Signed-off-by: Yann E. MORIN <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 "support/scripts/apply-patches.sh: set the maximum fuzz factor to 0" reduced the fuzz factor. Due to this change, eigen fails to build with output: Applying 0001-Adds-new-CMake-Options-for-controlling-build-components.patch using patch: patching file CMakeLists.txt Hunk #1 succeeded at 495 (offset 18 lines). Hunk #2 succeeded at 615 (offset 1 line). Hunk buildroot#3 succeeded at 652 (offset -8 lines). patching file blas/CMakeLists.txt patching file lapack/CMakeLists.txt Hunk #1 FAILED at 1. Hunk #2 succeeded at 450 (offset -7 lines). 1 out of 2 hunks FAILED -- saving rejects to file lapack/CMakeLists.txt.rej This commit refreshes the package patch on the current package version. Since the patch file name changed in the regeneration, the ".checkpackageignore" entry is updated accordingly. Fixes: http://autobuild.buildroot.org/results/6fd059b4e7f83a38683341ea1ea02e13d1a92449 Signed-off-by: Julien Olivain <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 "support/scripts/apply-patches.sh: set the maximum fuzz factor to 0" reduced the fuzz factor. Due to this change, sox fails to build with output: Applying 0001-uclibc.patch using patch: patching file src/formats.c Hunk #1 FAILED at 409. Hunk #2 succeeded at 477 (offset 60 lines). 1 out of 2 hunks FAILED -- saving rejects to file src/formats.c.rej This commit refreshes the package patch on the current package version. Note 1: the failing patch 0001 was regenerated with "git format-patch". Since the patch file 0001 name changed in the regeneration, the ".checkpackageignore" entry is also updated accordingly. Note 2: patch 0002 did not require any update. Fixes: http://autobuild.buildroot.org/results/1bc396386aa3321fe48101caf9635ae41feb057b Signed-off-by: Julien Olivain <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 "support/scripts/apply-patches.sh: set the maximum fuzz factor to 0" reduced the fuzz factor. Due to this change, host-clang fails to build with output: Applying 0001-lib-Driver-ToolChains-Gnu-Use-GCC_INSTALL_PREFIX-in-.patch using patch: patching file lib/Driver/ToolChains/Gnu.cpp Hunk #1 FAILED at 1725. Hunk #2 succeeded at 2011 (offset 277 lines). 1 out of 2 hunks FAILED -- saving rejects to file lib/Driver/ToolChains/Gnu.cpp.rej Rebase the patch to fix the problem. Fixes: http://autobuild.buildroot.net/results/75b/75baa62275d64c699d9757f7c756fc03ea717877/ Signed-off-by: Bernd Kuhls <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 "support/scripts/apply-patches.sh: set the maximum fuzz factor to 0" reduced the fuzz factor. Due to this change, sylpheed fails to build with output: Applying 0001-harden-link-checker-before-accepting-click.patch using patch: patching file src/textview.c Hunk #1 FAILED at 2885. Hunk #2 FAILED at 2922. 2 out of 2 hunks FAILED -- saving rejects to file src/textview.c.rej This commit refreshes the package patch on the current package version. Signed-off-by: Julien Olivain <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, freerdp fails to build with output: Applying 0001-Fix-variable-declaration-in-loop.patch using patch: patching file client/X11/xf_graphics.c Hunk #1 FAILED at 386. Hunk #2 succeeded at 456 (offset 61 lines). 1 out of 2 hunks FAILED -- saving rejects to file client/X11/xf_graphics.c.rej Applying 0002-Fixed-variable-declaration-in-loop.patch using patch: patching file client/X11/xf_graphics.c Hunk #1 succeeded at 246 (offset 6 lines). Hunk #2 FAILED at 255. 1 out of 2 hunks FAILED -- saving rejects to file client/X11/xf_graphics.c.rej This commit refreshes the package patches on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Arnout Vandecappelle <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, grpc fails to build with output: Applying 0003-host-grpc-only-cpp-plugin.patch using patch: patching file CMakeLists.txt Hunk #2 succeeded at 567 (offset 8 lines). Hunk buildroot#3 succeeded at 580 (offset 7 lines). Hunk #4 succeeded at 1315 (offset 79 lines). Hunk buildroot#5 succeeded at 1368 (offset 79 lines). Hunk buildroot#6 FAILED at 1462. Hunk #7 succeeded at 2515 (offset 131 lines). Hunk #8 succeeded at 2631 (offset 107 lines). Hunk buildroot#9 succeeded at 3117 (offset 186 lines). Hunk buildroot#10 succeeded at 3202 (offset 198 lines). Hunk buildroot#11 succeeded at 3654 (offset 172 lines). Hunk #12 succeeded at 3909 (offset 184 lines). Hunk #13 succeeded at 4203 (offset 158 lines). Hunk buildroot#14 succeeded at 4263 (offset 158 lines). Hunk buildroot#15 succeeded at 4347 (offset 158 lines). Hunk #16 FAILED at 4281. Hunk #17 succeeded at 11110 (offset -143 lines). Hunk #18 succeeded at 11140 (offset -143 lines). Hunk #19 succeeded at 23153 (offset 3325 lines). Hunk buildroot#20 succeeded at 23250 (offset 3325 lines). 2 out of 20 hunks FAILED -- saving rejects to file CMakeLists.txt.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Arnout Vandecappelle <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, leveldb fails to build with output: Applying 0002-CMake-install-libmemenv.a.patch using patch: patching file CMakeLists.txt Hunk #1 succeeded at 209 (offset 22 lines). Hunk #2 succeeded at 469 (offset 27 lines). Hunk buildroot#3 FAILED at 495. 1 out of 3 hunks FAILED -- saving rejects to file CMakeLists.txt.rej Applying 0004-cmake-Use-find_package-to-find-Snappy.patch using patch: patching file CMakeLists.txt Hunk #2 FAILED at 34. Hunk buildroot#3 succeeded at 301 (offset 22 lines). 1 out of 3 hunks FAILED -- saving rejects to file CMakeLists.txt.rej This commit refreshes the package patches on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Romain Naour <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, libsvg fails to build with output: Applying 0001-fix-expat-static-declaration.patch using patch: patching file src/svg_parser_expat.c Hunk #2 FAILED at 44. 1 out of 2 hunks FAILED -- saving rejects to file src/svg_parser_expat.c.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Romain Naour <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, libssh2 fails to build with output: Applying 0002-src-add-strict-KEX-to-fix-CVE-2023-48795-Terrapin-Attack.patch using patch: patching file src/kex.c Hunk #1 succeeded at 3037 (offset 5 lines). Hunk #2 succeeded at 3062 (offset 5 lines). Hunk buildroot#3 succeeded at 3315 (offset 5 lines). Hunk #4 succeeded at 3406 (offset 5 lines). Hunk buildroot#5 succeeded at 3440 (offset 5 lines). Hunk buildroot#6 succeeded at 3476 (offset 5 lines). Hunk #7 succeeded at 3489 (offset 5 lines). Hunk #8 succeeded at 3523 (offset 5 lines). Hunk buildroot#9 succeeded at 3569 (offset 5 lines). Hunk buildroot#10 succeeded at 3591 (offset 5 lines). Hunk buildroot#11 succeeded at 3633 (offset 5 lines). Hunk #12 succeeded at 3654 (offset 5 lines). Hunk #13 succeeded at 3687 (offset 5 lines). Hunk buildroot#14 succeeded at 3709 (offset 5 lines). Hunk buildroot#15 succeeded at 3892 (offset 5 lines). Hunk #16 succeeded at 3918 (offset 5 lines). Hunk #17 succeeded at 3967 (offset 5 lines). patching file src/libssh2_priv.h Hunk #1 succeeded at 699 (offset -37 lines). Hunk #2 succeeded at 873 (offset -38 lines). Hunk buildroot#3 succeeded at 914 (offset -38 lines). Hunk #4 succeeded at 1149 (offset -38 lines). patching file src/packet.c Hunk #1 succeeded at 605 (offset -19 lines). Hunk #2 succeeded at 656 (offset -19 lines). Hunk buildroot#3 succeeded at 1404 (offset -23 lines). Hunk #4 succeeded at 1474 (offset -23 lines). patching file src/packet.h Hunk #1 FAILED at 72. 1 out of 1 hunk FAILED -- saving rejects to file src/packet.h.rej This commit refreshes the package patches on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Romain Naour <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, lxc fails to build with output: Applying 0001-src-lxc-syscall_numbers.h-drop-define-1.patch using patch: patching file src/lxc/syscall_numbers.h Hunk #1 FAILED at 53. Hunk #2 FAILED at 92. Hunk buildroot#3 FAILED at 129. Hunk #4 FAILED at 166. Hunk buildroot#5 FAILED at 203. Hunk buildroot#6 FAILED at 272. Hunk #7 FAILED at 309. Hunk #8 FAILED at 346. Hunk buildroot#9 FAILED at 383. Hunk buildroot#10 FAILED at 440. Hunk buildroot#11 FAILED at 477. Hunk #12 FAILED at 518. Hunk #13 FAILED at 759. 13 out of 13 hunks FAILED -- saving rejects to file src/lxc/syscall_numbers.h.rej This commit refreshes the package patch on the current package version. As you can see from [1], the patch was created for version v6.0.0 but has been backported in Buildroot without being rebased on lxc v5.0.0, where loongarch64 support was not yet merged. This is further evidence of the importance of applying patches with fuzz 0. [1] lxc/lxc@82fe018 Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Romain Naour <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, ncmpc fails to build with output: Applying 0001-meson.build-add-atomic-dependency-for-sparc.patch using patch: patching file meson.build Hunk #1 succeeded at 232 (offset 58 lines). Hunk #2 FAILED at 355. 1 out of 2 hunks FAILED -- saving rejects to file meson.build.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Romain Naour <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, janus-gateway fails to build with output: Applying 0002-Add-test-for-Wunused-but-set-variable.patch using patch: patching file src/Makefile.am Hunk #1 succeeded at 132 (offset -19 lines). patching file configure.ac Hunk #1 succeeded at 12 (offset -1 lines). Hunk #2 FAILED at 67. 1 out of 2 hunks FAILED -- saving rejects to file configure.ac.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, dahdi-tools fails to build with output: Applying 0002-no-perl-manpages.patch using patch: patching file xpp/Makefile.am Hunk #2 FAILED at 58. Hunk buildroot#3 succeeded at 149 (offset 3 lines). 1 out of 3 hunks FAILED -- saving rejects to file xpp/Makefile.am.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, yajl fails to build with output: Applying 0002-cmake-disable-shared-library-build-when-BUILD_SHARED.patch using patch: patching file src/CMakeLists.txt Hunk #1 FAILED at 37. Hunk #2 succeeded at 52 (offset 1 line). Hunk buildroot#3 succeeded at 79 (offset 1 line). 1 out of 3 hunks FAILED -- saving rejects to file src/CMakeLists.txt.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, freeradius-server fails to build with output: Applying 0001-jlibtool-cross-with-host-CC.patch using patch: patching file scripts/libtool.mk Hunk #1 FAILED at 43. 1 out of 1 hunk FAILED -- saving rejects to file scripts/libtool.mk.rej Applying 0009-src-modules-rlm_python-fix-build-with-Ofast.patch using patch: patching file src/modules/rlm_python3/configure.ac Hunk #1 succeeded at 44 (offset -15 lines). Hunk #2 FAILED at 73. 1 out of 2 hunks FAILED -- saving rejects to file src/modules/rlm_python3/configure.ac.rej This commit refreshes the package patches on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, nushell fails to build with output: Applying 0001-uucore-add-support-for-sparc64.patch using patch: patching file VENDOR/uucore/src/lib/features/fs.rs Hunk #1 FAILED at 121. Hunk #2 FAILED at 137. 2 out of 2 hunks FAILED -- saving rejects to file VENDOR/uucore/src/lib/features/fs.rs.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, haserl fails to build with output: Applying 0001-add-haserl_lualib.inc.patch using patch: patching file src/haserl_lualib.inc patching file src/Makefile.in Hunk #1 succeeded at 86 (offset 54 lines). Hunk #2 FAILED at 514. 1 out of 2 hunks FAILED -- saving rejects to file src/Makefile.in.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, snort fails to build with output: Applying 0005-fix-sparc.patch using patch: patching file configure.in Hunk #1 FAILED at 942. Hunk #2 succeeded at 915 (offset -42 lines). 1 out of 2 hunks FAILED -- saving rejects to file configure.in.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, vtun fails to build with output: Applying 0002-fix-ssl-headers-checks.patch using patch: patching file configure.in Hunk #1 succeeded at 169 (offset 3 lines). Hunk #2 succeeded at 179 (offset 3 lines). Hunk buildroot#3 FAILED at 193. Hunk #4 FAILED at 208. 2 out of 4 hunks FAILED -- saving rejects to file configure.in.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, openvmtools fails to build with output: Applying 0007-Use-configure-to-test-for-feature-instead-of-platfor.patch using patch: patching file configure.ac Hunk #1 succeeded at 940 (offset 142 lines). Hunk #2 succeeded at 1150 (offset 86 lines). patching file lib/misc/idLinux.c Hunk #2 succeeded at 1022 (offset 28 lines). patching file lib/nicInfo/nicInfoPosix.c Hunk #1 FAILED at 34. 1 out of 1 hunk FAILED -- saving rejects to file lib/nicInfo/nicInfoPosix.c.rej This commit refreshes the package patch on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 ("support/scripts/apply-patches.sh: set the maximum fuzz factor to 0") reduced the fuzz factor. Due to this change, pulseview fails to build with output: Applying 0001-Replace-obsolete-deprecated-Qt-methods.patch using patch: patching file pv/util.cpp Hunk #2 succeeded at 175 (offset 4 lines). Hunk buildroot#3 succeeded at 285 (offset 4 lines). patching file pv/util.hpp Hunk #2 succeeded at 139 (offset 1 line). patching file pv/views/trace/decodetrace.cpp Hunk #1 FAILED at 103. 1 out of 1 hunk FAILED -- saving rejects to file pv/views/trace/decodetrace.cpp.rej Applying 0003-Support-glibmm-2.68.patch using patch: patching file CMakeLists.txt Hunk buildroot#3 FAILED at 231. Hunk #4 FAILED at 492. 2 out of 4 hunks FAILED -- saving rejects to file CMakeLists.txt.rej This commit refreshes the package patches on the current package version. Signed-off-by: Dario Binacchi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 "support/scripts/apply-patches.sh: set the maximum fuzz factor to 0" reduced the fuzz factor. Due to this change, rdesktop fails to build with output: Applying 0001-8bit-colors.patch using patch: patching file xwin.c Hunk #1 succeeded at 1801 (offset 340 lines). Hunk #2 FAILED at 1568. 1 out of 2 hunks FAILED -- saving rejects to file xwin.c.rej This commit refreshes the package patches on the current package version. The original patch was not generated with "git format-patch", and had no information (no commit log, no author, no date, ...). Since it was introduced in commit [1], the author and date is set to this commit. The "Upstream:" tag is also added to the patch, mentioning the upstream project is reported as unmaintained on its homepage (at the time of this commit). Finally, the ".checkpackageignore" entry is removed, since it is no longer needed. [1] https://gitlab.com/buildroot.org/buildroot/-/commit/e2dde9c7cdc2f9ed851acfb7daa858ffa1744246 Signed-off-by: Julien Olivain <[email protected]> Signed-off-by: Romain Naour <[email protected]>
jerrykuku
pushed a commit
that referenced
this pull request
Aug 12, 2024
Commit 8f88a64 "support/scripts/apply-patches.sh: set the maximum fuzz factor to 0" reduced the fuzz factor. Due to this change, exim fails to build with output: Applying 0004-exim_lock-fix-lstat-related-build-errors.patch using patch: patching file src/exim_lock.c Hunk #1 FAILED at 13. Hunk #2 succeeded at 27 (offset 1 line). 1 out of 2 hunks FAILED -- saving rejects to file src/exim_lock.c.rej This commit rebases the package patches on the current package version when needed. Fixes: http://autobuild.buildroot.net/results/ff27d5ebd7f24ac8cb236b83c67c2c75255e51c6/ Signed-off-by: Bernd Kuhls <[email protected]> Reviewed-by: Luca Ceresoli <[email protected]> Reviewed-by: Yann E. MORIN <[email protected]> Tested-by: Yann E. MORIN <[email protected]> Signed-off-by: Yann E. MORIN <[email protected]> (cherry picked from commit 2097314) Signed-off-by: Peter Korsgaard <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.