mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
0001-Avoid-shebang-overflow-on-python-config.py.patch 0001-Makefile.pre-use-qemu-wrapper-when-gathering-profile.patch 0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch 0001-gh-114492-Initialize-struct-termios-before-calling-t.patch 0001-python3-use-cc_basename-to-replace-CC-for-checking-c.patch 0001-skip-no_stdout_fileno-test-due-to-load-variability.patch 0001-test_xml_etree.py-Fix-for-Expat-2.6.0-with-reparse-d.patch 0020-configure.ac-setup.py-do-not-add-a-c refreshed for 3.12.2 Changelog: https://docs.python.org/3.12/whatsnew/3.12.html (From OE-Core rev: 288bdc342035f18451509b6c27e3b88b546dc984) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
1.3 KiB
Diff
27 lines
1.3 KiB
Diff
From 439aa02f42d6e6715c172076261757fcb89a936a Mon Sep 17 00:00:00 2001
|
|
From: "Miss Islington (bot)"
|
|
<31488909+miss-islington@users.noreply.github.com>
|
|
Date: Tue, 23 Jan 2024 23:02:02 +0100
|
|
Subject: [PATCH] gh-114492: Initialize struct termios before calling
|
|
tcgetattr() (GH-114495) (GH-114502)
|
|
|
|
On Alpine Linux it could leave some field non-initialized.
|
|
(cherry picked from commit d22c066b802592932f9eb18434782299e80ca42e)
|
|
|
|
Upstream-Status: Backport [https://github.com/python/cpython/commit/386c72d9928c51aa2c855ce592bd8022da3b407f]
|
|
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
.../next/Library/2024-01-23-21-20-40.gh-issue-114492.vKxl5o.rst | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
create mode 100644 Misc/NEWS.d/next/Library/2024-01-23-21-20-40.gh-issue-114492.vKxl5o.rst
|
|
|
|
diff --git a/Misc/NEWS.d/next/Library/2024-01-23-21-20-40.gh-issue-114492.vKxl5o.rst b/Misc/NEWS.d/next/Library/2024-01-23-21-20-40.gh-issue-114492.vKxl5o.rst
|
|
new file mode 100644
|
|
index 0000000..8df8299
|
|
--- /dev/null
|
|
+++ b/Misc/NEWS.d/next/Library/2024-01-23-21-20-40.gh-issue-114492.vKxl5o.rst
|
|
@@ -0,0 +1,2 @@
|
|
+Make the result of :func:`termios.tcgetattr` reproducible on Alpine Linux.
|
|
+Previously it could leave a random garbage in some fields.
|