Changes between v2.35 and v2.35.1 -------------------------------------------- commit 77efaa9761df88f7bef842ac53ac1e9a1718b67e Author: Karel Zak Date: Fri Jan 31 10:22:38 2020 +0100 build-sys: release++ (v2.35.1) Signed-off-by: Karel Zak NEWS | 4 ++++ configure.ac | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) commit 2e1c77ec1894230892c0eff2d8124a2e3631f241 Author: Karel Zak Date: Fri Jan 31 10:19:42 2020 +0100 po: merge changes Signed-off-by: Karel Zak po/ca.po | 511 ++++++++++++++++----------------- po/cs.po | 511 ++++++++++++++++----------------- po/da.po | 511 ++++++++++++++++----------------- po/de.po | 511 ++++++++++++++++----------------- po/es.po | 511 ++++++++++++++++----------------- po/et.po | 511 ++++++++++++++++----------------- po/eu.po | 511 ++++++++++++++++----------------- po/fi.po | 511 ++++++++++++++++----------------- po/fr.po | 511 ++++++++++++++++----------------- po/gl.po | 511 ++++++++++++++++----------------- po/hr.po | 511 ++++++++++++++++----------------- po/hu.po | 511 ++++++++++++++++----------------- po/id.po | 511 ++++++++++++++++----------------- po/it.po | 511 ++++++++++++++++----------------- po/ja.po | 511 ++++++++++++++++----------------- po/nl.po | 511 ++++++++++++++++----------------- po/pl.po | 511 ++++++++++++++++----------------- po/pt.po | 511 ++++++++++++++++----------------- po/pt_BR.po | 511 ++++++++++++++++----------------- po/ru.po | 511 ++++++++++++++++----------------- po/sl.po | 511 ++++++++++++++++----------------- po/sv.po | 511 ++++++++++++++++----------------- po/tr.po | 511 ++++++++++++++++----------------- po/uk.po | 821 +++++++++++++++++++++++++++--------------------------- po/util-linux.pot | 513 +++++++++++++++++----------------- po/vi.po | 511 ++++++++++++++++----------------- po/zh_CN.po | 511 ++++++++++++++++----------------- po/zh_TW.po | 511 ++++++++++++++++----------------- 28 files changed, 7381 insertions(+), 7239 deletions(-) commit be926184939ba1ebddaf213647ed254f99cad561 Author: Karel Zak Date: Fri Jan 31 10:19:16 2020 +0100 docs: update v2.35.1-ReleaseNotes Signed-off-by: Karel Zak Documentation/releases/v2.35.1-ReleaseNotes | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) commit 635067d44f221c4209f0e28940f02ea789bd43e3 Author: jonnyh64 <60403537+jonnyh64@users.noreply.github.com> Date: Wed Jan 29 22:24:16 2020 +0100 chrt: Use sched_setscheduler system call directly musl libc does not support the sched_setscheduler library function because the underlying Linux system call does not confirm to Posix; this patch makes chrt use the system call directly [kzak@redhat.com: - note that musl libc implements sched_setscheduler() but returns -ENOSYS all time... - add ifdefs to the patch - make sure we include syscall.h] References: http://git.musl-libc.org/cgit/musl/commit/src/sched/sched_setscheduler.c?id=1e21e78bf7a5c24c217446d8760be7b7188711c2 Addresses: https://github.com/karelzak/util-linux/issues/943 Signed-off-by: Karel Zak schedutils/chrt.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 75b5e69ec43eafaf52081d2dedc76d297c2696e8 Author: Karel Zak Date: Tue Jan 28 12:46:39 2020 +0100 libfdisk: fix __copy_partition() The code called free() for pointers copied from the source partition. Addresses: https://github.com/systemd/systemd/pull/14677 Signed-off-by: Karel Zak libfdisk/src/partition.c | 11 +++++++++++ 1 file changed, 11 insertions(+) commit bf7a4b03b841958153e7893d87b4259cea93ad3e Author: Karel Zak Date: Tue Jan 28 12:30:23 2020 +0100 lib/randutils: use explicit data types for bit ops ASAN is pretty unhappy with getpid() << 16, it seems better to save into unsigned int and than do the bit-op. Addresses: https://github.com/karelzak/util-linux/issues/942 Signed-off-by: Karel Zak lib/randutils.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 1776ed1027b777ea42d52ee421e16fa5cb407b3e Author: Karel Zak Date: Tue Jan 28 12:29:44 2020 +0100 libfdisk: make sure we use NULL after free Signed-off-by: Karel Zak libfdisk/src/context.c | 1 + 1 file changed, 1 insertion(+) commit d4dd19beb8c3fbfa104f436e42395d830c61f854 Author: Karel Zak Date: Tue Jan 28 10:45:07 2020 +0100 libmount: fix x- options use for non-root users libmount returns EPERM for all X- and x- mount options for non-root users when evaluate X-mount.mkdir. It's bug, we need to be sensitive to only X-mount.mkdir and only if the target directory is missing. Addresses: https://github.com/karelzak/util-linux/issues/941 Signed-off-by: Karel Zak libmount/src/context.c | 41 ++++++++++++++++++++++------------------- sys-utils/mount.8 | 6 +++--- 2 files changed, 25 insertions(+), 22 deletions(-) commit 72652d49eca03f689f3fee503fdfe1e78aeb579e Author: Karel Zak Date: Mon Jan 27 16:17:10 2020 +0100 build-sys: add --disable-hwclock-gplv3 The currently used date/time parser (for hwclock --set --date ) is gnulib based code with GPLv3. This patch allows to avoid this code and replace it with minimalistic date/time parser. Addresses: https://github.com/karelzak/util-linux/issues/891 Reported-by: Carlos Santos Signed-off-by: Karel Zak configure.ac | 9 +++++++++ sys-utils/Makemodule.am | 5 ++++- sys-utils/hwclock.c | 17 ++++++++++++++--- 3 files changed, 27 insertions(+), 4 deletions(-) commit a02591c6670684d263915d05bccbe82e4d7fcc96 Author: Yuri Chornoivan Date: Wed Jan 22 20:52:11 2020 +0200 po: update uk.po (from translationproject.org) po/uk.po | 956 ++++++++++++++++++++++++++++----------------------------------- 1 file changed, 429 insertions(+), 527 deletions(-) commit 9fabc6d5fae3da9106d41c40af6fbef6265ae11b Author: Karel Zak Date: Thu Jan 23 15:07:32 2020 +0100 sfdisk: remove broken step alignment for --move * remove unnecessary and broken step alignment * improve reported information in move log * improve final progress bar update Addresses: https://github.com/karelzak/util-linux/issues/938 Signed-off-by: Karel Zak disk-utils/sfdisk.c | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) commit 2b26438c4bf90b7836111cc49d847ee89e49bfa8 Author: Karel Zak Date: Thu Jan 23 12:44:58 2020 +0100 sfdisk: make sure we do not overlap on --move The area we need to move does not have to be aligned to optimal I/O size (step size) -- we need to be sure we do not move data after/before the area. Addresses: https://github.com/karelzak/util-linux/issues/938 Signed-off-by: Karel Zak disk-utils/sfdisk.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-)