summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/util-linux/util-linux
diff options
context:
space:
mode:
authorZang Ruochen <zangrc.fnst@cn.fujitsu.com>2019-07-05 16:25:49 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-09 23:30:44 +0100
commitd44e5f18443f37e61f89a854b90200ab90d76a77 (patch)
treef4807299712074465762d8b3be0ae43f34fb383a /meta/recipes-core/util-linux/util-linux
parent85af5bb62891b321f2b36ec051c356859a8eaa42 (diff)
downloadpoky-d44e5f18443f37e61f89a854b90200ab90d76a77.tar.gz
util-linux:upgrade 2.33.2 -> 2.34
-Upgrade from util-linux_2.33.2.bb to util-linux_2.34.bb. -util-linux/check-for-_HAVE_STRUCT_TERMIOS_C_OSPEED.patch Removed since this is included in 2.34. (From OE-Core rev: c8685430d81b60c38d43ed20e480b2a0942dc768) Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/util-linux/util-linux')
-rw-r--r--meta/recipes-core/util-linux/util-linux/check-for-_HAVE_STRUCT_TERMIOS_C_OSPEED.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/meta/recipes-core/util-linux/util-linux/check-for-_HAVE_STRUCT_TERMIOS_C_OSPEED.patch b/meta/recipes-core/util-linux/util-linux/check-for-_HAVE_STRUCT_TERMIOS_C_OSPEED.patch
deleted file mode 100644
index c92c276ac1..0000000000
--- a/meta/recipes-core/util-linux/util-linux/check-for-_HAVE_STRUCT_TERMIOS_C_OSPEED.patch
+++ /dev/null
@@ -1,16 +0,0 @@
1Checking for exitence of the define is not enough since
2it will be defined with 0 or 1 value
3
4Upstream-Status: Pending
5Signed-off-by: Khem Raj <raj.khem@gmail.com>
6--- a/sys-utils/ldattach.c
7+++ b/sys-utils/ldattach.c
8@@ -242,7 +242,7 @@ static int my_cfsetspeed(struct termios
9 * -- we have to bypass glibc and set the speed manually (because glibc
10 * checks for speed and supports Bxxx bit rates only)...
11 */
12-#ifdef _HAVE_STRUCT_TERMIOS_C_ISPEED
13+#if _HAVE_STRUCT_TERMIOS_C_ISPEED
14 # define BOTHER 0010000 /* non standard rate */
15 dbg("using non-standard speeds");
16 ts->c_ospeed = ts->c_ispeed = speed;