From 9f1304c40df70a99dd0660f022a1b9460e123a21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Fri, 21 Nov 2025 21:00:31 +0100 Subject: [PATCH 1/3] termios: Add OFILL Related to: https://github.com/uutils/coreutils/pull/9432 --- src/sys/termios.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/sys/termios.rs b/src/sys/termios.rs index bff981fad5..b7a693ab10 100644 --- a/src/sys/termios.rs +++ b/src/sys/termios.rs @@ -503,6 +503,17 @@ libc_bitflags! { target_os = "haiku", apple_targets))] OFDEL as tcflag_t; + #[cfg(any(linux_android, + target_os = "aix", + target_os = "cygwin", + target_os = "fuchsia", + target_os = "haiku", + target_os = "hurd", + target_os = "nto", + target_os = "redox", + solarish, + apple_targets))] + OFILL as tcflag_t; #[cfg(any(linux_android, target_os = "haiku", apple_targets))] From 6cfdec14d0011fb7e5a52835e7d47f7c3ff4d231 Mon Sep 17 00:00:00 2001 From: Steve Lau Date: Tue, 25 Nov 2025 13:19:49 +0800 Subject: [PATCH 2/3] changelog --- changelog/2701.added.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 changelog/2701.added.md diff --git a/changelog/2701.added.md b/changelog/2701.added.md new file mode 100644 index 0000000000..2383325f89 --- /dev/null +++ b/changelog/2701.added.md @@ -0,0 +1,2 @@ +Add termios `OutputFlags::OFILL` for Linux, Andord, Aix, Cygwin, Fuchsia, Haiku, +GNU/Hurd, Nto, Redox, Illumos, Solaris and Apple OSes. From 2e8afed1e4378eb66b5df19dd2d75422de410850 Mon Sep 17 00:00:00 2001 From: Steve Lau Date: Wed, 26 Nov 2025 09:11:51 +0800 Subject: [PATCH 3/3] typo: Android --- changelog/2701.added.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/2701.added.md b/changelog/2701.added.md index 2383325f89..6fd28ec8d0 100644 --- a/changelog/2701.added.md +++ b/changelog/2701.added.md @@ -1,2 +1,2 @@ -Add termios `OutputFlags::OFILL` for Linux, Andord, Aix, Cygwin, Fuchsia, Haiku, +Add termios `OutputFlags::OFILL` for Linux, Android, Aix, Cygwin, Fuchsia, Haiku, GNU/Hurd, Nto, Redox, Illumos, Solaris and Apple OSes.