On 8/8/25 22:16, Luca Bonissi wrote:
From: Luca Bonissi <q...@bonslack.org>
Date: Fri, 8 Aug 2025 13:30:19 +0200
Subject: [PATCH] Adding termios2 support
glibc 2.42 switched on some architectures (mips*, sh4, or1k) to termios2 ioctl syscalls
(TCGETS2, TCSETS2, TCSETSW2, TCSETSF2).
This patch add support to termios2 structure and releated ioctls.
Fixed also wrong TC*2 definition on mips (missing "target_" from "struct
termios2").
Signed-off-by: Luca Bonissi <q...@bonslack.org>
This looks plausible, but
(1) It does too much in one patch,
(2) It now needs updating for master,
(3) It came through email malformed.
You can do all of the generic #ifdef TARGET_TCGETS2 stuff first, then take care of each
architecture one by one.
r~