Brandon Maier
4b19a190a2
support/testing/infra/emulator.py: fix qemu prompt detection
...
The qemu.run() method can break when a command happens to output the
string "# " to stdout. This is because qemu.run() detects when a command
has completed by searching for the shell prompt, which by default is
"# ". It then captures everything before the "# " as the commands
output, causing the rest of output to be lost.
Instead use the pexpect libraries REPLWrapper to handle running
commands. It has hooks to set a custom prompt and avoid some other
pitfalls of wrapping a shell.
We unfortunately can't reuse replwrap._repl_sh directly, because it
tries to spawn a command while we already have a qemu started. So we
need to copy that code into _repl_sh_child. While we're at it, also
define our own prompt strings.
Signed-off-by: Brandon Maier <brandon.maier@collins.com >
[Arnout:
- Make all arguments to _repl_sh_spawn non-optional.
- Move non_printable_insert to a local variable instead of an argument,
we don't need to override it.
- Copy the comment from _repl_sh that explains why non_printable_insert
is needed.
- Add a comment about timeouts.
- Rename spawn to child (we don't actually spawn anything so this felt
more natural, even though the class
- Use single quotes instead of triple quotes, and explicitly escape the
nested quotes.
]
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit 0cad947b96 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-10-11 17:03:20 +02:00
Yann E. MORIN
939e1df1d0
utils/check-package: require exactly 1 TAB and 2 SP on help text 1st line
...
Test that the first line starts exactly with one TAB and exactly two
spaces before the text.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
Cc: Florian Fainelli <f.fainelli@gmail.com >
Cc: Ricardo Martincoski <ricardo.martincoski@datacom.com.br >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit f9e6d39e8e )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-10-11 15:00:44 +02:00
Adrian Perez de Castro
df7308ffef
package/wpewebkit: security bump to version 2.44.4
...
Fixes security issues CVE-2024-40776, CVE-2024-40779, CVE-2024-40780,
CVE-2024-40782, CVE-2024-40789, and CVE-2024-4558. Security advisory:
https://wpewebkit.org/security/WSA-2024-0004.html
Release notes:
https://wpewebkit.org/release/wpewebkit-2.44.3.html
https://wpewebkit.org/release/wpewebkit-2.44.4.html
Patch "0001-Remove-ARM-specific-declarations-in-FELighting.patch" has
been included as part of the fixes in version 2.44.3 and is therefore
removed.
Signed-off-by: Adrian Perez de Castro <aperez@igalia.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 064ddfc997 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-10-11 14:59:58 +02:00
Giulio Benetti
e055e7cf2c
package/cryptsetup: bump version to 2.7.5
...
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 9b9ac7f6c0 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-10-11 14:54:04 +02:00
Hugo Cornelis
2bfd0ffdfa
package/procps-ng: link the w command with systemd or elogin libs.
...
The build of procps-ng was broken when systemd was enabled. Applying
commit ca004d46 of procps-ng upstream to explictly link the 'w'
command to libsystemd or elogind even though libproc2 is linked to it.
This was (likely) broken since the upgrade to procps-ng v4.0.4 with
commit d79f40dbbe .
Fixes: https://gitlab.com/buildroot.org/buildroot/-/issues/28
Fixes: http://autobuild.buildroot.org/results/e8b/e8bae7bfd7d6a7987f3afa199d8d944429144817/build-end.log
Signed-off-by: Hugo Cornelis <hugo.cornelis@essensium.com >
[yann.morin.1998@free.fr: don't number patch 1/1; add fixes tag]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 3b870057c6 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-10-11 14:47:23 +02:00
Julien Olivain
d523f2b10c
support/testing: add pv runtime test
...
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 8c5e4be97c )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-10-03 16:45:25 +02:00
Julien Olivain
40499fc13a
support/testing: add exfatprogs runtime test
...
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit f366528987 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-10-03 16:31:17 +02:00
Yuriy Kolerov
947fc1b9d4
package/glibc: drop support of ARC 7x0 targets
...
Synopsys ARC 7x0 family is not supported by glibc. Thus, it is
necessary to prevent selecting glibc while configuring for that
processors family.
Fixes:
http://autobuild.buildroot.net/results/9f0a4d69aed71a840b1c278a9623c9687207ffc6/
http://autobuild.buildroot.org/results/fa9960365bd54872762d5e959b98882b86c5e956/
Signed-off-by: Yuriy Kolerov <ykolerov@synopsys.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 5aecb99902 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-10-03 16:30:19 +02:00
Julien Olivain
7a4f804207
boot/grub2: needs host-python3
...
When the build host does not have a Python interpreter installed,
host-grub2 is failing to configure due to this missing interpreter.
Note that host-grub2 is the first package to fail because it is a
dependency of grub2. The grub2 target package has the same dependency
requirement.
The issue can be quickly reproduced on a host without Python with the
commands:
cat <<EOF >.config
BR2_aarch64=y
BR2_TARGET_GRUB2=y
BR2_TOOLCHAIN_EXTERNAL=y
EOF
make olddefconfig
make grub2
grub2 autotools configure.ac search for a Python interpreter since
upstream commit [1] 8b467844e "python: Use AM_PATH_PYTHON to determine
interpreter for gentpl.py", first included in grub v2.04 released
on 2019-07-04. For reference, grub2 has been updated to that version
in commit [2] ea7ec41c "boot/grub2: bump to verson 2.04".
This commit fixes the issue by adding the host-python3 dependency to
host-grub2 and grub2.
Fixes:
checking for a Python interpreter with version >= 2.6... none
configure: error: no suitable Python interpreter found
[1] https://git.savannah.gnu.org/gitweb/?p=grub.git;a=commitdiff;h=8b467844e11170077c8ca727c39d2bd36eeb5f08
[2] ea7ec41cf6
Reported-by: Vincent Stehlé <vincent.stehle@arm.com >
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 86bb1b2360 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-10-03 11:29:57 +02:00
Peter Korsgaard
c4d4df57b3
package/nvidia-driver: fix targeting typo in patch description
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 812bb30412 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:09 +02:00
Peter Korsgaard
bad659bee2
package/nodejs-src: fix convenient typo in patch description
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 28a53f8f55 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:09 +02:00
Peter Korsgaard
b422e8ffba
package/nload: fix transferred typo in help text
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 7281269982 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:08 +02:00
Peter Korsgaard
5067cd99cc
package/nginx: fix symmetric typo
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit acbff44861 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:07 +02:00
Peter Korsgaard
9cd45deede
package/nginx-modsecurity: fix locally typo in hash comment
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 486358c959 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:07 +02:00
Peter Korsgaard
cc3cdca938
package/net-tools: fix appropriate typo
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 0353d68482 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:06 +02:00
Peter Korsgaard
c62ae9151a
package/musepack: fix occurring typo in patch description
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 66dbf094d3 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:05 +02:00
Peter Korsgaard
849af6337f
package/mrouted: fix typos and grammar
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Cc: Federico Pellegrin <fede@evolware.org >
[yann.morin.1998@free.fr: s/is/are/ (noticed by Federico)]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 271ea8be96 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:04 +02:00
Peter Korsgaard
cf62d1a1ec
package/mpg123: fix deactivate typo
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 21697b50db )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:04 +02:00
Peter Korsgaard
091d8c098b
package/minizip: fix typo in help text
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 4fd7aa3f4a )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:03 +02:00
Peter Korsgaard
f2e91ea0aa
package/makedevs/makedevs.c: fix typos
...
And replace Couldn't with 'Could not' for clarity.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 79d062ab99 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:02 +02:00
Peter Korsgaard
c58e9331b0
package/make: fix accidentally typo
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit b185bfccbf )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:01 +02:00
Peter Korsgaard
f33249f49c
package/madplay: fix typos in comments
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 2465cdb48a )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:01 +02:00
Peter Korsgaard
1237764fad
package/luabitop: fix typo in hash comment
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit f5ad59e948 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:34:00 +02:00
Peter Korsgaard
b3651bcde1
package/lua-augeaus: fix assignment typo
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Acked-by: Herve Codina <herve.codina@bootlin.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit edb2d45e05 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:33:59 +02:00
Peter Korsgaard
00378b5ae3
package/lmbench: fix 'timing out' typo in patch description
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 39b784bd57 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:33:58 +02:00
Peter Korsgaard
a37afd5c2e
package/lldpd: fix typo in help text
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 28cdb718ea )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:33:58 +02:00
Peter Korsgaard
f86b0d6d2a
package/linux-zigbee: fix these typo in patch description
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 1789b5feb6 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:33:57 +02:00
Peter Korsgaard
278be2f2a8
package/linux-fusion: fix version typo in patch description
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 42385486e7 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:33:56 +02:00
Peter Korsgaard
6733f2954c
package/linux-firmware: fix typo in Config.in prompt
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit abfefc0a14 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 12:33:55 +02:00
Thomas Petazzoni
041393b237
DEVELOPERS: drop Samuel Martin
...
Samuel Martin has not been around in the Buildroot community for many,
many years. His last posting on the mailing list was on July 2018. So
let's not pretend those packages are actually maintained, and let's
stop spamming Samuel with lots of patches and autobuilder failures.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit d8b83b861c )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 09:42:37 +02:00
Yann E. MORIN
6d9ecca957
package/genpart: change homepage and download location
...
The old homepage is no more, and the download location has changed.
Update both to the new download location.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 629c6254ce )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-20 09:36:04 +02:00
Dario Binacchi
82fbd44f3f
package/xenomai: fix build with gcc 11
...
The commit adds an upstream patch to fix the following build failure:
latency.c: In function 'dump_histo_gnuplot':
latency.c:415:9: error: 'fclose' called on pointer returned from a mismatched allocation function [-Werror=mismatched-dealloc]
415 | fclose(ifp);
| ^~~~~~~~~~~
latency.c:404:15: note: returned from 'popen'
404 | ifp = popen(xconf, "r");
| ^~~~~~~~~~~~~~~~~
Fixes:
- http://autobuild.buildroot.org/results/e15ccef2f2bd58482204b5061f77e76a8a540ebd
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 17642f5032 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 22:27:33 +02:00
Waldemar Brodkorb
e5b4c7980d
package/asterisk: security update to 20.9.3
...
See here for the Changelog:
https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.9.3.md
Fixes CVE-2024-42491.
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 4009736572 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 21:57:24 +02:00
Christian Stewart
b2c193295b
package/go: security bump to version 1.22.7
...
Fixes the following CVEs:
CVE-2024-34155: go/parser: stack exhaustion in all Parse* functions
CVE-2024-34156: encoding/gob: stack exhaustion in Decoder.Decode
CVE-2024-34158: go/build/constraint: stack exhaustion in Parse
https://go.dev/doc/devel/release#go1.22.7
Signed-off-by: Christian Stewart <christian@aperture.us >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 8d371dbe55 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 66425c8e14 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 14:07:58 +02:00
Christian Stewart
2a1114efd6
package/go: security bump version to go1.22.5
...
Fixes CVE:
CVE-2024-24791: net/http: denial of service due to improper 100-continue handling
https://go.dev/doc/devel/release#go1.22.5
Signed-off-by: Christian Stewart <christian@aperture.us >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 5d02277884 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 14:05:49 +02:00
Christian Stewart
be0b643727
package/go: security bump to go1.22.4
...
Fixes the following CVEs:
CVE-2024-24789: archive/zip: mishandling of corrupt central directory record
CVE-2024-24790: net/netip: unexpected behavior from Is methods for IPv4-mapped IPv6 addresses
View the release notes for more information:
https://go.dev/doc/devel/release#go1.22.4
Signed-off-by: Christian Stewart <christian@aperture.us >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit d6e0f1b622 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 14:04:41 +02:00
Christian Stewart
6c563e1d07
package/go: security bump version to go1.22.3
...
Fixes CVEs:
CVE-2024-24787: cmd/go: arbitrary code execution during build on darwin
CVE-2024-24788: net: malformed DNS message can cause infinite loop
https://go.dev/doc/devel/release#go1.22.3
Signed-off-by: Christian Stewart <christian@aperture.us >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit b74cb51c0f )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 14:04:21 +02:00
Christian Stewart
76af91e3c0
package/go: security bump to go1.22.2
...
CVE-2023-45288: http2: close connections when receiving too many headers
https://go.dev/doc/devel/release#go1.22.2
Signed-off-by: Christian Stewart <christian@aperture.us >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit aef5490fab )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 14:04:12 +02:00
Christian Stewart
6fef00bf43
package/go: bump to version go1.22.1
...
Upgrade Go to the latest v1.22.x point release, go1.22.1.
This requires go-bootstrap-stage3 at version go1.21.8:
See: https://go.dev/doc/go1.22#bootstrap
https://go.dev/doc/devel/release#go1.22.1
Signed-off-by: Christian Stewart <christian@aperture.us >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit 84caea5d58 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 14:03:52 +02:00
Romain Naour
5ef38affb9
package/go-bootstrap-stage3: fix go-bootstrap when parent dir contains invalid .git
...
Since go-bootstrap-stage3 package has been added to Buildroot [1], all
tests using go are failing only on Gitlab-ci jobs. The build succeed
if we use docker-run script.
Since the issue is only trigged by Gitlab-ci environment, the issue
is related to the ownership of the (buildroot) git tree, see [2].
go seems to ignore the .gitconfig set by before_script.
Anyway, go should not try to use git to retrieve some info since we
are not building it from the go repository.
go package was already patched for a similar issue when building
host-go within docker [3]. Apply the same patch to go-bootstrap-stage3
to disable VCS support.
See
http://lists.busybox.net/pipermail/buildroot/2024-May/691273.html
[1] f00eb37de9
[2] a016b693f7
[3] bc8e70a08b
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/6833307649 (tests.fs.test_oci.TestOci)
https://gitlab.com/buildroot.org/buildroot/-/jobs/6833307823 (tests.package.test_docker_compose.TestDockerCompose)
https://gitlab.com/buildroot.org/buildroot/-/jobs/6833308175 (tests.package.test_mender.TestMender)
Runtime tested:
https://gitlab.com/kubu93/buildroot/-/jobs/6860670292
Signed-off-by: Romain Naour <romain.naour@smile.fr >
Cc: Christian Stewart <christian@aperture.us >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 25991c843c )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 14:02:23 +02:00
Christian Stewart
1d2df1c2ae
package/go-bootstrap-stage3: add stage3 for go1.22 support
...
Add a third bootstrap stage with Go1.21.x necessary for go1.22 bootstrap.
go-bootstrap-stage1 is Go1.4.x, the final version to support bootstrap using a C
compiler (later versions require the Go compiler for bootstrapping).
See: https://go.dev/doc/install/source#bootstrapFromSource
go-bootstrap-stage2 is Go 1.19.13, the last version to support bootstrap using
the Go1.4.x compiler.
go-bootstrap-stage3 is Go 1.21.8, the last version to support bootstrap using
the Go1.19.13 compiler. Go 1.20 requires a minimum of go 1.17.13 to bootstrap.
See: https://go.dev/doc/go1.20#bootstrap
This patch is in preparation for bumping the host-go package to >go1.22.x, which
requires a minimum of Go1.20.x for bootstrap.
See: https://go.dev/doc/go1.22#bootstrap
Signed-off-by: Christian Stewart <christian@aperture.us >
[Arnout: add GOCACHE definition]
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit f00eb37de9 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 14:01:42 +02:00
Peter Korsgaard
78c72422b5
package/libxcrypt: fix insecure typo
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 893602e69d )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 13:56:37 +02:00
Peter Korsgaard
e5648e03b1
package/libvirt: fix typo in init script comment
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 6599d68a66 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 13:56:36 +02:00
Peter Korsgaard
aee689218b
package/libpeas: fix typo in help text
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit b4eb041af1 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 13:56:36 +02:00
Peter Korsgaard
2847fbdcce
package/libpam-nfc: fix typo in help text
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 415542a235 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 13:56:35 +02:00
Peter Korsgaard
2c740ee046
package/libnss: fix overridden typo in patch description
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 339c50ecdc )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 13:56:34 +02:00
Peter Korsgaard
cbec8ef6cd
package/libnetconf2: fix library typo
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit c805d1e7c7 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 13:56:34 +02:00
Peter Korsgaard
03a4c696cf
package/libmodsecurity: fix locally typo
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit f6e32b6910 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 13:56:33 +02:00
Peter Korsgaard
8bff22f1c0
package/libmad: fix deactivate typo
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 01cc093a98 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 13:56:32 +02:00
Peter Korsgaard
2222d10d49
package/libkrb5: fix deactivate typo
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 45bb5fbdae )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-09-19 13:56:31 +02:00