Accepting request 1068510 from Base:System
OBS-URL: https://build.opensuse.org/request/show/1068510 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/util-linux?expand=0&rev=265
This commit is contained in:
commit
19e86033f8
24
util-linux-honor-noclear-when-reprint-issue.patch
Normal file
24
util-linux-honor-noclear-when-reprint-issue.patch
Normal file
@ -0,0 +1,24 @@
|
||||
Index: util-linux-2.38.1/term-utils/agetty.c
|
||||
===================================================================
|
||||
--- util-linux-2.38.1.orig/term-utils/agetty.c
|
||||
+++ util-linux-2.38.1/term-utils/agetty.c
|
||||
@@ -2066,7 +2066,8 @@ again:
|
||||
if (!wait_for_term_input(STDIN_FILENO)) {
|
||||
eval_issue_file(ie, op, tp);
|
||||
if (issue_is_changed(ie)) {
|
||||
- if (op->flags & F_VCONSOLE)
|
||||
+ if ((op->flags & F_VCONSOLE)
|
||||
+ && (op->flags & F_NOCLEAR) == 0)
|
||||
termio_clear(STDOUT_FILENO);
|
||||
goto again;
|
||||
}
|
||||
@@ -2207,7 +2208,8 @@ static char *get_logname(struct issue *i
|
||||
if (!issue_is_changed(ie))
|
||||
goto no_reload;
|
||||
tcflush(STDIN_FILENO, TCIFLUSH);
|
||||
- if (op->flags & F_VCONSOLE)
|
||||
+ if ((op->flags & F_VCONSOLE)
|
||||
+ && (op->flags & F_NOCLEAR) == 0)
|
||||
termio_clear(STDOUT_FILENO);
|
||||
bp = logname;
|
||||
*bp = '\0';
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 27 09:01:54 UTC 2023 - pgajdos@suse.com
|
||||
|
||||
- added patches
|
||||
agetty: don't ignore --noclear when re-print issue file
|
||||
https://github.com/util-linux/util-linux/commit/0c0fb46dcef6c63c74094486e499e376fdb33a04.diff
|
||||
[bsc#1194322]
|
||||
+ util-linux-honor-noclear-when-reprint-issue.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 14 16:07:27 UTC 2023 - Thorsten Kukuk <kukuk@suse.com>
|
||||
|
||||
|
@ -112,6 +112,8 @@ Patch2: Add-documentation-on-blacklisted-modules-to-mount-8-.patch
|
||||
Patch4: util-linux-bash-completion-su-chsh-l.patch
|
||||
# PATCH-FIX-SUSE util-linux-fix-tests-when-@-in-path.patch bsc#1194038 -- rpmbuild %checks fail when @ in the directory path
|
||||
Patch5: util-linux-fix-tests-when-at-symbol-in-path.patch
|
||||
# https://github.com/util-linux/util-linux/commit/0c0fb46dcef6c63c74094486e499e376fdb33a04.diff
|
||||
Patch6: util-linux-honor-noclear-when-reprint-issue.patch
|
||||
BuildRequires: audit-devel
|
||||
BuildRequires: bc
|
||||
BuildRequires: binutils-devel
|
||||
|
Loading…
Reference in New Issue
Block a user