diff options
author | Carlos Santos <casantos@datacom.com.br> | 2018-11-07 22:16:34 -0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-11-10 09:41:39 +0100 |
commit | dbb68d79732d59a5c3687b20a86602ce0987aaf9 (patch) | |
tree | d712bf01150a3169918326b47e3919daa4904c9f /package/util-linux/0002-agetty-fix-output-of-escaped-characters.patch | |
parent | 419fc6abca3911ee58ff5d092aa5e912ae65db93 (diff) | |
download | buildroot-dbb68d79732d59a5c3687b20a86602ce0987aaf9.tar.gz buildroot-dbb68d79732d59a5c3687b20a86602ce0987aaf9.zip |
util-linux: bump to version 2.33
- Update "basic set" help to include the new "choom" utility.
- Re-generate checksums for license files, whose names now follow the
SPDX License List.
- Pull a patch already applied upstream that make rtcwake use poweroff
if shutdown is not found (e.g. Busybox, which the default init system
on Buldroot).
- Pull a patch already submitted upstream to fix the output of escaped
characters by agetty.
Signed-off-by: Carlos Santos <casantos@datacom.com.br>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/util-linux/0002-agetty-fix-output-of-escaped-characters.patch')
-rw-r--r-- | package/util-linux/0002-agetty-fix-output-of-escaped-characters.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/util-linux/0002-agetty-fix-output-of-escaped-characters.patch b/package/util-linux/0002-agetty-fix-output-of-escaped-characters.patch new file mode 100644 index 0000000000..fcd9731348 --- /dev/null +++ b/package/util-linux/0002-agetty-fix-output-of-escaped-characters.patch @@ -0,0 +1,26 @@ +From 73c5a3cc748b853936319e6cdc94159a6974db52 Mon Sep 17 00:00:00 2001 +From: Christian Hesse <mail@eworm.de> +Date: Wed, 7 Nov 2018 13:55:06 +0100 +Subject: [PATCH] agetty: fix output of escaped characters + +Signed-off-by: Christian Hesse <mail@eworm.de> +--- + term-utils/agetty.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/term-utils/agetty.c b/term-utils/agetty.c +index 05a269abb..b9f08728e 100644 +--- a/term-utils/agetty.c ++++ b/term-utils/agetty.c +@@ -2755,7 +2755,7 @@ static void output_special_char(struct issue *ie, + break; + } + default: +- putchar(c); ++ putc(c, ie->output); + break; + } + } +-- +2.17.1 + |