forked from pool/util-linux
Accepting request 448913 from Base:System
- don't install bash-completions for uninstalled binaries (chfn, chsh, newgrp, pg) - for now remove procps dependency which is only needed for tests because it pulls systemd Note the util-linux bash completions are incompatible to the installed binaries from the shadow package. We could use the completions from bash-completion package or we could switch to the binaries from util-linux. They seem to have more features and being backward compatible. I've reverted the previous procps fix. It was not mwerged to Factory yet. (forwarded request 448848 from rudi_m) OBS-URL: https://build.opensuse.org/request/show/448913 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/util-linux?expand=0&rev=215
This commit is contained in:
commit
1c00006f1d
@ -1,7 +1,7 @@
|
|||||||
--- util-linux-2.23.1/login-utils/su-common.c
|
--- a/login-utils/su-common.c
|
||||||
+++ util-linux-2.23.1/login-utils/su-common.c 2013-06-06 08:46:59.575872090 +0000
|
+++ b/login-utils/su-common.c
|
||||||
@@ -473,6 +473,117 @@ set_path(const struct passwd* pw)
|
@@ -523,6 +523,117 @@ set_path(const struct passwd* pw)
|
||||||
err (EXIT_FAILURE, _("failed to set PATH"));
|
err (EXIT_FAILURE, _("failed to set the %s environment variable"), "PATH");
|
||||||
}
|
}
|
||||||
|
|
||||||
+/* Add or clear /sbin and /usr/sbin for the su command
|
+/* Add or clear /sbin and /usr/sbin for the su command
|
||||||
@ -118,7 +118,7 @@
|
|||||||
/* Update `environ' for the new shell based on PW, with SHELL being
|
/* Update `environ' for the new shell based on PW, with SHELL being
|
||||||
the value for the SHELL environment variable. */
|
the value for the SHELL environment variable. */
|
||||||
|
|
||||||
@@ -508,6 +619,22 @@ modify_environment (const struct passwd
|
@@ -560,6 +671,22 @@ modify_environment (const struct passwd *pw, const char *shell)
|
||||||
xsetenv ("SHELL", shell, 1);
|
xsetenv ("SHELL", shell, 1);
|
||||||
if (getlogindefs_bool ("ALWAYS_SET_PATH", 0))
|
if (getlogindefs_bool ("ALWAYS_SET_PATH", 0))
|
||||||
set_path(pw);
|
set_path(pw);
|
||||||
|
@ -1,3 +1,50 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 12:34:33 UTC 2017 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
|
- don't install bash-completions for uninstalled binaries (chfn,
|
||||||
|
chsh, newgrp, pg)
|
||||||
|
- for now remove procps dependency which is only needed for tests
|
||||||
|
because it pulls systemd
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 15 09:26:01 UTC 2016 - fbui@suse.com
|
||||||
|
|
||||||
|
- Replace pkgconfig(libsystemd-*) with pkgconfig(libsystemd)
|
||||||
|
|
||||||
|
libsystemd-* libs were deprecated and are gone now.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 7 16:12:55 CET 2016 - sbrabec@suse.com
|
||||||
|
|
||||||
|
- Remove no more supported --enable-libmount-force-mountinfo.
|
||||||
|
There is --enable-libmount-support-mtab, disabled by default,
|
||||||
|
exactly as we need.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 8 15:11:37 UTC 2016 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
|
- Update to version 2.29
|
||||||
|
* cal: possible to specify month by name (e.g. "cal January
|
||||||
|
2017") and use relative placeholders (cal "+1 month")
|
||||||
|
* fdisk(8) allows to wipe newly created partitions; the feature
|
||||||
|
is possible to control by new command line option
|
||||||
|
--wipe-partitions[==auto|never|default].
|
||||||
|
* findmnt --verify: the command scans /etc/fstab and tries to
|
||||||
|
verify the configuration.
|
||||||
|
* mount(8) now rejects requests to create another device and
|
||||||
|
mount filesystem for the same backing file. The command
|
||||||
|
`losetup --nooverlap` reuses loop device if already exists
|
||||||
|
for the same backing file. All the functionality calculate
|
||||||
|
with offset and sizelimit options of course, so it's fine to
|
||||||
|
have multiple regions (partitions) in the same image file and
|
||||||
|
mount all of them in the same time. The restriction is that
|
||||||
|
the regions should not overlap.
|
||||||
|
* lscpu supports the "drawer" topology for IBM S/390.
|
||||||
|
* More details at:
|
||||||
|
http://karelzak.blogspot.de/2016/10/util-linux-v229-whats-new.html
|
||||||
|
https://www.kernel.org/pub/linux/utils/util-linux/v2.29/v2.29-ReleaseNotes
|
||||||
|
- refresh make-sure-sbin-resp-usr-sbin-are-in-PATH.diff
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 7 12:43:31 UTC 2016 - sweet_f_a@gmx.de
|
Wed Sep 7 12:43:31 UTC 2016 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
@ -62,7 +109,7 @@ Wed Apr 13 21:29:00 UTC 2016 - sweet_f_a@gmx.de
|
|||||||
|
|
||||||
- fix build for openSUSE >= 13.1 (inclusive SLE 12)
|
- fix build for openSUSE >= 13.1 (inclusive SLE 12)
|
||||||
- drop build for openSUSE < 13.1
|
- drop build for openSUSE < 13.1
|
||||||
- remove old build conditions: sysvinit_tools, enable_su and
|
- remove old build conditions: sysvinit_tools, enable_su and
|
||||||
enable_eject
|
enable_eject
|
||||||
- cosmetics: reorder configure options
|
- cosmetics: reorder configure options
|
||||||
|
|
||||||
@ -194,7 +241,7 @@ Fri Mar 13 15:57:56 UTC 2015 - sweet_f_a@gmx.de
|
|||||||
* cal(1): do not segfault when TERM is not defined or wrong
|
* cal(1): do not segfault when TERM is not defined or wrong
|
||||||
(bnc#903440)
|
(bnc#903440)
|
||||||
* logger(1): major fixes and enhancements
|
* logger(1): major fixes and enhancements
|
||||||
* agetty(8): support /usr/lib/os-release too
|
* agetty(8): support /usr/lib/os-release too
|
||||||
* some more fixes, mostly minor ones, see ReleaseNotes
|
* some more fixes, mostly minor ones, see ReleaseNotes
|
||||||
- re-enable fixed tests (fdisk/bsd, ppc64le)
|
- re-enable fixed tests (fdisk/bsd, ppc64le)
|
||||||
|
|
||||||
@ -242,7 +289,7 @@ Wed Feb 25 20:43:28 CET 2015 - sbrabec@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 22 17:15:41 UTC 2015 - crrodriguez@opensuse.org
|
Sun Feb 22 17:15:41 UTC 2015 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- Build with FULL RELRO.
|
- Build with FULL RELRO.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 10 15:26:55 UTC 2015 - sweet_f_a@gmx.de
|
Tue Feb 10 15:26:55 UTC 2015 - sweet_f_a@gmx.de
|
||||||
@ -440,7 +487,7 @@ Fri May 16 15:10:53 UTC 2014 - sweet_f_a@gmx.de
|
|||||||
Thu May 8 08:15:04 UTC 2014 - werner@suse.de
|
Thu May 8 08:15:04 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Modify patch support-other-tty-lines-not-vconsole.patch to
|
- Modify patch support-other-tty-lines-not-vconsole.patch to
|
||||||
make it work on virtual console
|
make it work on virtual console
|
||||||
- Modify patch agetty-on-s390-on-dev-3270-tty1-line.patch
|
- Modify patch agetty-on-s390-on-dev-3270-tty1-line.patch
|
||||||
to add the missed 3270 support upstream
|
to add the missed 3270 support upstream
|
||||||
|
|
||||||
@ -448,7 +495,7 @@ Thu May 8 08:15:04 UTC 2014 - werner@suse.de
|
|||||||
Wed May 7 14:12:32 UTC 2014 - werner@suse.de
|
Wed May 7 14:12:32 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Add patch support-other-tty-lines-not-vconsole.patch
|
- Add patch support-other-tty-lines-not-vconsole.patch
|
||||||
to be able to support console lines like xvc and hvc
|
to be able to support console lines like xvc and hvc
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 24 11:33:36 UTC 2014 - sweet_f_a@gmx.de
|
Thu Apr 24 11:33:36 UTC 2014 - sweet_f_a@gmx.de
|
||||||
@ -661,7 +708,7 @@ Mon Mar 17 22:36:58 CET 2014 - sbrabec@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 6 09:43:34 UTC 2014 - werner@suse.de
|
Thu Mar 6 09:43:34 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Modify the patches
|
- Modify the patches
|
||||||
agetty-fooled-on-serial-line-due-plymouth.patch
|
agetty-fooled-on-serial-line-due-plymouth.patch
|
||||||
sulogin-fooled-on-tty-line-due-plymouth.patch
|
sulogin-fooled-on-tty-line-due-plymouth.patch
|
||||||
to be able to disable plymouth if not already terminated due to
|
to be able to disable plymouth if not already terminated due to
|
||||||
@ -672,7 +719,7 @@ Sun Feb 9 21:20:31 UTC 2014 - andreas.stieger@gmx.de
|
|||||||
|
|
||||||
- util-linux 2.24.1
|
- util-linux 2.24.1
|
||||||
- agetty:
|
- agetty:
|
||||||
* support the special terminal on first serial line on a S/390
|
* support the special terminal on first serial line on a S/390
|
||||||
- blkdiscard:
|
- blkdiscard:
|
||||||
* BLKSSZGET fills in an int, not a uint64
|
* BLKSSZGET fills in an int, not a uint64
|
||||||
- blkid:
|
- blkid:
|
||||||
@ -806,14 +853,14 @@ Tue Feb 4 10:24:02 UTC 2014 - werner@suse.de
|
|||||||
|
|
||||||
- Modify patch agetty-on-s390-on-dev--3270-tty1-line.patch and
|
- Modify patch agetty-on-s390-on-dev--3270-tty1-line.patch and
|
||||||
patch tty3270-on-serial-line-of-s390.patch to handle 3270
|
patch tty3270-on-serial-line-of-s390.patch to handle 3270
|
||||||
terminals
|
terminals
|
||||||
- Really do not verify /usr/bin/eject
|
- Really do not verify /usr/bin/eject
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 3 16:16:36 UTC 2014 - werner@suse.de
|
Mon Feb 3 16:16:36 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Add patch agetty-on-s390-on-dev--3270-tty1-line.patch
|
- Add patch agetty-on-s390-on-dev--3270-tty1-line.patch
|
||||||
to let agetty detect /dev/3270/tty1 as device not as baud rate
|
to let agetty detect /dev/3270/tty1 as device not as baud rate
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 28 09:37:57 UTC 2014 - speilicke@suse.com
|
Tue Jan 28 09:37:57 UTC 2014 - speilicke@suse.com
|
||||||
@ -918,7 +965,7 @@ Tue Dec 10 16:10:27 UTC 2013 - sweet_f_a@gmx.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 29 13:46:21 UTC 2013 - werner@suse.de
|
Fri Nov 29 13:46:21 UTC 2013 - werner@suse.de
|
||||||
|
|
||||||
- Add patch
|
- Add patch
|
||||||
tty3270-on-serial-line-of-s390.patch
|
tty3270-on-serial-line-of-s390.patch
|
||||||
to better support the first and second serial line on s390/x
|
to better support the first and second serial line on s390/x
|
||||||
|
|
||||||
@ -959,7 +1006,7 @@ Fri Sep 27 16:58:40 UTC 2013 - mgorse@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Sep 13 07:06:19 UTC 2013 - werner@suse.de
|
Fri Sep 13 07:06:19 UTC 2013 - werner@suse.de
|
||||||
|
|
||||||
- Avoid build require gpg-offline twice
|
- Avoid build require gpg-offline twice
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 11 20:54:24 CEST 2013 - sbrabec@suse.cz
|
Wed Sep 11 20:54:24 CEST 2013 - sbrabec@suse.cz
|
||||||
@ -1102,7 +1149,7 @@ Wed Jun 5 12:30:45 UTC 2013 - werner@suse.de
|
|||||||
+ Release highlights (2.22)
|
+ Release highlights (2.22)
|
||||||
su(1):
|
su(1):
|
||||||
* has been merged from coreutils into util-linux
|
* has been merged from coreutils into util-linux
|
||||||
* utils-linux version uses /etc/pam.d/su-l PAM config file for --login
|
* utils-linux version uses /etc/pam.d/su-l PAM config file for --login
|
||||||
(e.g. "su -") session.
|
(e.g. "su -") session.
|
||||||
sulogin(8):
|
sulogin(8):
|
||||||
* has been merged from sysvinit into util-linux
|
* has been merged from sysvinit into util-linux
|
||||||
@ -1112,12 +1159,12 @@ Wed Jun 5 12:30:45 UTC 2013 - werner@suse.de
|
|||||||
* has been merged from inactive upstream from sf.net and Fedora into util-linux
|
* has been merged from inactive upstream from sf.net and Fedora into util-linux
|
||||||
* supports new options --manualeject, --force and --no-partitions-unmount
|
* supports new options --manualeject, --force and --no-partitions-unmount
|
||||||
lslocks(1)
|
lslocks(1)
|
||||||
* this NEW COMMAND prints local system locks and it's replacement to very
|
* this NEW COMMAND prints local system locks and it's replacement to very
|
||||||
long time unmaintained lslk(1)
|
long time unmaintained lslk(1)
|
||||||
wdctl(8):
|
wdctl(8):
|
||||||
* this NEW COMMAND shows hardware watchdog status
|
* this NEW COMMAND shows hardware watchdog status
|
||||||
libuuid:
|
libuuid:
|
||||||
* does NOT EXECUTE uuidd on demand, the daemon has to be started by
|
* does NOT EXECUTE uuidd on demand, the daemon has to be started by
|
||||||
init scripts / systemd
|
init scripts / systemd
|
||||||
uuidd:
|
uuidd:
|
||||||
* supports socket activation (for systemd)
|
* supports socket activation (for systemd)
|
||||||
@ -1173,7 +1220,7 @@ Sat Feb 16 17:48:29 UTC 2013 - schwab@suse.de
|
|||||||
Tue Feb 5 14:32:49 UTC 2013 - crrodriguez@opensuse.org
|
Tue Feb 5 14:32:49 UTC 2013 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- 0001-Test-for-secure_getenv-too.patch:
|
- 0001-Test-for-secure_getenv-too.patch:
|
||||||
Current glibc in 12.3/factory no longer exports internal
|
Current glibc in 12.3/factory no longer exports internal
|
||||||
function __secure_getenv() but has secure_getenv() instead.
|
function __secure_getenv() but has secure_getenv() instead.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -1188,7 +1235,7 @@ Mon Jan 7 13:26:15 UTC 2013 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 28 04:30:58 UTC 2012 - crrodriguez@opensuse.org
|
Fri Dec 28 04:30:58 UTC 2012 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- 0001-include-bitops.h-Use-the-operating-system-byteswappi.patch
|
- 0001-include-bitops.h-Use-the-operating-system-byteswappi.patch
|
||||||
Use OS byteswapping macros, this patch is functionally identical
|
Use OS byteswapping macros, this patch is functionally identical
|
||||||
to the version submitted upstream with the exception it excludes
|
to the version submitted upstream with the exception it excludes
|
||||||
code that target non-linux systems.
|
code that target non-linux systems.
|
||||||
@ -1203,7 +1250,7 @@ Wed Sep 19 19:41:10 UTC 2012 - jslaby@suse.com
|
|||||||
Fri Jun 22 09:37:20 CEST 2012 - kukuk@suse.de
|
Fri Jun 22 09:37:20 CEST 2012 - kukuk@suse.de
|
||||||
|
|
||||||
- Remove pam_lastlog from login.pamd, login is doing it itself.
|
- Remove pam_lastlog from login.pamd, login is doing it itself.
|
||||||
[bnc#768067]
|
[bnc#768067]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 20 09:22:50 UTC 2012 - lnussel@suse.de
|
Wed Jun 20 09:22:50 UTC 2012 - lnussel@suse.de
|
||||||
@ -1240,13 +1287,13 @@ Thu May 31 10:04:23 UTC 2012 - sweet_f_a@gmx.de
|
|||||||
|
|
||||||
- require binutils-devel because "which" wants to find libiberty.a
|
- require binutils-devel because "which" wants to find libiberty.a
|
||||||
- remove which-lib64.patch because it's broken and couldn't find
|
- remove which-lib64.patch because it's broken and couldn't find
|
||||||
libiberty.a whithin /usr/lib64
|
libiberty.a whithin /usr/lib64
|
||||||
- which doesn't need autoreconf anymore
|
- which doesn't need autoreconf anymore
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 29 09:28:55 UTC 2012 - puzel@suse.com
|
Tue May 29 09:28:55 UTC 2012 - puzel@suse.com
|
||||||
|
|
||||||
- switch to new libmount-based mount(8)
|
- switch to new libmount-based mount(8)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 25 12:12:09 UTC 2012 - puzel@suse.com
|
Fri May 25 12:12:09 UTC 2012 - puzel@suse.com
|
||||||
@ -1259,7 +1306,7 @@ Fri May 25 12:12:09 UTC 2012 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 25 12:03:07 UTC 2012 - puzel@suse.com
|
Fri May 25 12:03:07 UTC 2012 - puzel@suse.com
|
||||||
|
|
||||||
- build with RPM_OPT_FLAGS again (removed by mistake)
|
- build with RPM_OPT_FLAGS again (removed by mistake)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 12 09:09:05 UTC 2012 - puzel@suse.com
|
Thu Apr 12 09:09:05 UTC 2012 - puzel@suse.com
|
||||||
@ -1325,7 +1372,7 @@ Tue Feb 21 13:46:25 UTC 2012 - puzel@suse.com
|
|||||||
--online to list all, offline or online CPUs
|
--online to list all, offline or online CPUs
|
||||||
- supports s390 topology description (polarization, books, ...)
|
- supports s390 topology description (polarization, books, ...)
|
||||||
partx(8):
|
partx(8):
|
||||||
- supports partitioned loop devices
|
- supports partitioned loop devices
|
||||||
wipefs(8):
|
wipefs(8):
|
||||||
- allows to zap partition tables
|
- allows to zap partition tables
|
||||||
- supports new command line option "--type <list>" to wipe only
|
- supports new command line option "--type <list>" to wipe only
|
||||||
@ -1377,7 +1424,7 @@ Wed Nov 9 08:27:17 UTC 2011 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 8 09:36:41 UTC 2011 - puzel@suse.com
|
Tue Nov 8 09:36:41 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- add fsck-use-FS-blacklist-for-non-all-mode-too.patch (bnc#728645)
|
- add fsck-use-FS-blacklist-for-non-all-mode-too.patch (bnc#728645)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 2 09:37:12 UTC 2011 - puzel@suse.com
|
Wed Nov 2 09:37:12 UTC 2011 - puzel@suse.com
|
||||||
@ -1388,7 +1435,7 @@ Wed Nov 2 09:37:12 UTC 2011 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 20 13:01:22 UTC 2011 - puzel@suse.com
|
Thu Oct 20 13:01:22 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- update to util-linux-2.20.1
|
- update to util-linux-2.20.1
|
||||||
- bugfix release
|
- bugfix release
|
||||||
- drop patches (in upstream):
|
- drop patches (in upstream):
|
||||||
- util-linux-sfdisk-manpage-fix.patch
|
- util-linux-sfdisk-manpage-fix.patch
|
||||||
@ -1398,7 +1445,7 @@ Thu Oct 20 13:01:22 UTC 2011 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 12 09:26:40 UTC 2011 - puzel@suse.com
|
Wed Oct 12 09:26:40 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- add fdisk-dont-shorten-long-path-to-disk.patch (bnc#722959)
|
- add fdisk-dont-shorten-long-path-to-disk.patch (bnc#722959)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 4 11:32:11 UTC 2011 - uli@suse.com
|
Tue Oct 4 11:32:11 UTC 2011 - uli@suse.com
|
||||||
@ -1411,12 +1458,12 @@ Tue Oct 4 11:32:11 UTC 2011 - uli@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 13 09:10:43 UTC 2011 - puzel@suse.com
|
Tue Sep 13 09:10:43 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- add util-linux-lib-sysfs-deinit.patch (bnc#714151)
|
- add util-linux-lib-sysfs-deinit.patch (bnc#714151)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 29 14:57:57 UTC 2011 - puzel@suse.com
|
Mon Aug 29 14:57:57 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- update to util-linux-2.20
|
- update to util-linux-2.20
|
||||||
- cleanups, bugfixes
|
- cleanups, bugfixes
|
||||||
- build with --enable-ddate
|
- build with --enable-ddate
|
||||||
- add util-linux-sfdisk-manpage-fix.patch
|
- add util-linux-sfdisk-manpage-fix.patch
|
||||||
@ -1429,7 +1476,7 @@ Thu Aug 25 14:12:15 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 17 10:37:20 UTC 2011 - puzel@novell.com
|
Wed Aug 17 10:37:20 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.20-rc2
|
- update to util-linux-2.20-rc2
|
||||||
- bugfixes
|
- bugfixes
|
||||||
- drop patches:
|
- drop patches:
|
||||||
- util-linux-fix-manpages.patch
|
- util-linux-fix-manpages.patch
|
||||||
@ -1441,22 +1488,22 @@ Wed Aug 17 10:37:20 UTC 2011 - puzel@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 10 13:42:33 UTC 2011 - puzel@novell.com
|
Wed Aug 10 13:42:33 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-2.20-rc1-hexdump-segfault.patch (bnc#710877)
|
- add util-linux-2.20-rc1-hexdump-segfault.patch (bnc#710877)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 10 12:20:41 UTC 2011 - puzel@novell.com
|
Wed Aug 10 12:20:41 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-2.20-rc-fix-dmesg.patch (bnc#710417)
|
- add util-linux-2.20-rc-fix-dmesg.patch (bnc#710417)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 10 11:06:15 UTC 2011 - puzel@novell.com
|
Wed Aug 10 11:06:15 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-2.20-rc1-agetty-fixes.patch (bnc#711240)
|
- add util-linux-2.20-rc1-agetty-fixes.patch (bnc#711240)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 1 13:44:21 UTC 2011 - puzel@novell.com
|
Mon Aug 1 13:44:21 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.20-rc1
|
- update to util-linux-2.20-rc1
|
||||||
- Release highlights
|
- Release highlights
|
||||||
agetty(8):
|
agetty(8):
|
||||||
- mingetty features have been merged to agetty
|
- mingetty features have been merged to agetty
|
||||||
@ -1486,7 +1533,7 @@ Mon Aug 1 13:44:21 UTC 2011 - puzel@novell.com
|
|||||||
- supports real-time signals in formats RT<n>, RTMIN+<n> and
|
- supports real-time signals in formats RT<n>, RTMIN+<n> and
|
||||||
RTMAX-<n>
|
RTMAX-<n>
|
||||||
lsblk(8):
|
lsblk(8):
|
||||||
- supports new columns
|
- supports new columns
|
||||||
- supports new command line option "-D" to print device discard
|
- supports new command line option "-D" to print device discard
|
||||||
topology
|
topology
|
||||||
lscpu(8):
|
lscpu(8):
|
||||||
@ -1508,7 +1555,7 @@ Tue May 3 09:39:37 UTC 2011 - puzel@novell.com
|
|||||||
- update to util-linux-2.19.1
|
- update to util-linux-2.19.1
|
||||||
- numerous bugfixes, including (bnc#690486 and bnc#690488)
|
- numerous bugfixes, including (bnc#690486 and bnc#690488)
|
||||||
- drop umount-by-imgname.patch (merged upstream)
|
- drop umount-by-imgname.patch (merged upstream)
|
||||||
- cleanup: do not register ipc.info.gz (not provided by
|
- cleanup: do not register ipc.info.gz (not provided by
|
||||||
this package)
|
this package)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -1520,12 +1567,12 @@ Thu Apr 14 16:27:27 UTC 2011 - puzel@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 21 16:28:38 UTC 2011 - puzel@novell.com
|
Mon Feb 21 16:28:38 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add umount-by-imgname.patch (bnc#666161)
|
- add umount-by-imgname.patch (bnc#666161)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 10 11:01:40 UTC 2011 - puzel@novell.com
|
Thu Feb 10 11:01:40 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.19
|
- update to util-linux-2.19
|
||||||
- uuid fixes
|
- uuid fixes
|
||||||
- cleanups, documentation and translation updates
|
- cleanups, documentation and translation updates
|
||||||
- drop util-linux-2.19-rc1-loop-offset.diff (fixed in upstream, by
|
- drop util-linux-2.19-rc1-loop-offset.diff (fixed in upstream, by
|
||||||
@ -1556,7 +1603,7 @@ Tue Jan 18 09:47:11 UTC 2011 - bwiedemann@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.19-rc1
|
- update to util-linux-2.19-rc1
|
||||||
- important changes:
|
- important changes:
|
||||||
* lsblk(8):
|
* lsblk(8):
|
||||||
- this NEW COMMAND lists information about all or selected block
|
- this NEW COMMAND lists information about all or selected block
|
||||||
@ -1585,7 +1632,7 @@ Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
|||||||
* fsck(8):
|
* fsck(8):
|
||||||
- supports new command line option "-l" to lock whole-disk device
|
- supports new command line option "-l" to lock whole-disk device
|
||||||
by exclusive flock(2). This option is recommended when more
|
by exclusive flock(2). This option is recommended when more
|
||||||
fsck(8) instances are executed in the same time.
|
fsck(8) instances are executed in the same time.
|
||||||
* rtcwake(8):
|
* rtcwake(8):
|
||||||
- supports new mode "show" to print the current RTC alarm time
|
- supports new mode "show" to print the current RTC alarm time
|
||||||
* fstrim(8):
|
* fstrim(8):
|
||||||
@ -1600,7 +1647,7 @@ Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
|||||||
- util-linux-agetty-s-option.patch
|
- util-linux-agetty-s-option.patch
|
||||||
- util-linux-fsck-l-option.patch
|
- util-linux-fsck-l-option.patch
|
||||||
- util-linux-2.18-no-canonicalize-fix.patch
|
- util-linux-2.18-no-canonicalize-fix.patch
|
||||||
- util-linux-swapon-canonicalize-swap-device.patch
|
- util-linux-swapon-canonicalize-swap-device.patch
|
||||||
- fix uuidd Summary and Description
|
- fix uuidd Summary and Description
|
||||||
- build with --enable-libmount-mount (new option)
|
- build with --enable-libmount-mount (new option)
|
||||||
- use set_permissions macros
|
- use set_permissions macros
|
||||||
@ -1626,12 +1673,12 @@ Thu Dec 2 15:23:36 CET 2010 - mszeredi@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 12:19:53 UTC 2010 - puzel@novell.com
|
Tue Nov 30 12:19:53 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- update util-linux-2.17.1-mount_losetup_crypto.patch (bnc#655804)
|
- update util-linux-2.17.1-mount_losetup_crypto.patch (bnc#655804)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 26 19:10:27 CET 2010 - kay.sievers@novell.com
|
Fri Nov 26 19:10:27 CET 2010 - kay.sievers@novell.com
|
||||||
|
|
||||||
- add Provides: fsck-with-dev-lock
|
- add Provides: fsck-with-dev-lock
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 25 13:37:43 CET 2010 - kay.sievers@novell.com
|
Thu Nov 25 13:37:43 CET 2010 - kay.sievers@novell.com
|
||||||
@ -1641,7 +1688,7 @@ Thu Nov 25 13:37:43 CET 2010 - kay.sievers@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 16 16:08:48 UTC 2010 - cristian.rodriguez@opensuse.org
|
Tue Nov 16 16:08:48 UTC 2010 - cristian.rodriguez@opensuse.org
|
||||||
|
|
||||||
- disable silent rules
|
- disable silent rules
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 11 10:36:35 CET 2010 - kay.sievers@novell.com
|
Thu Nov 11 10:36:35 CET 2010 - kay.sievers@novell.com
|
||||||
@ -1667,7 +1714,7 @@ Fri Jul 9 06:23:27 UTC 2010 - puzel@novell.com
|
|||||||
- full release notes:
|
- full release notes:
|
||||||
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.18/v2.18-ReleaseNotes
|
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.18/v2.18-ReleaseNotes
|
||||||
- update to adjtimex-1.28
|
- update to adjtimex-1.28
|
||||||
- update to which-2.20
|
- update to which-2.20
|
||||||
- drop util-linux-2.14.1-mount_skip_sync.patch (fixed upstream)
|
- drop util-linux-2.14.1-mount_skip_sync.patch (fixed upstream)
|
||||||
- drop util-linux-addpart-use-atoll.patch (fixed upstream)
|
- drop util-linux-addpart-use-atoll.patch (fixed upstream)
|
||||||
- drop util-linux-mount-detect-ro-mount.patch (fixed upstream)
|
- drop util-linux-mount-detect-ro-mount.patch (fixed upstream)
|
||||||
@ -1692,24 +1739,24 @@ Tue Jun 22 16:48:29 UTC 2010 - bg@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 1 14:23:23 UTC 2010 - puzel@novell.com
|
Tue Jun 1 14:23:23 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- do not run uuidd as root, but uuidd:uuidd (bnc#604168)
|
- do not run uuidd as root, but uuidd:uuidd (bnc#604168)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 28 13:24:43 UTC 2010 - puzel@novell.com
|
Fri May 28 13:24:43 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-mount-detect-ro-mount.patch (bnc#481123)
|
- add util-linux-mount-detect-ro-mount.patch (bnc#481123)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 11 13:58:49 UTC 2010 - puzel@novell.com
|
Tue May 11 13:58:49 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-addpart-use-atoll.patch (bnc#603328)
|
- add util-linux-addpart-use-atoll.patch (bnc#603328)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 6 13:22:37 UTC 2010 - hvogel@novell.com
|
Tue Apr 6 13:22:37 UTC 2010 - hvogel@novell.com
|
||||||
|
|
||||||
- update to version 2.17.2
|
- update to version 2.17.2
|
||||||
- fix small typo in v2.17.1-ReleaseNotes
|
- fix small typo in v2.17.1-ReleaseNotes
|
||||||
- fix -b <sectorsize> fdisk
|
- fix -b <sectorsize> fdisk
|
||||||
- fix typo in ionice
|
- fix typo in ionice
|
||||||
- fix display of device size, fix infinite loop when probe chain
|
- fix display of device size, fix infinite loop when probe chain
|
||||||
bails out early, more robust minix probing, remove "0x" prefix
|
bails out early, more robust minix probing, remove "0x" prefix
|
||||||
@ -1721,7 +1768,7 @@ Tue Apr 6 13:22:37 UTC 2010 - hvogel@novell.com
|
|||||||
/etc/filesystems in mount
|
/etc/filesystems in mount
|
||||||
- update ja.po, pl.po, update vi.po
|
- update ja.po, pl.po, update vi.po
|
||||||
- remove " (deleted)" from filenames from /proc/swaps
|
- remove " (deleted)" from filenames from /proc/swaps
|
||||||
- cleanup usage() and man page of wipefs
|
- cleanup usage() and man page of wipefs
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 10 23:11:42 CET 2010 - jeffm@suse.de
|
Wed Mar 10 23:11:42 CET 2010 - jeffm@suse.de
|
||||||
@ -1770,7 +1817,7 @@ Sun Nov 15 14:04:48 CET 2009 - meissner@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 26 17:45:53 UTC 2009 - crrodriguez@opensuse.org
|
Mon Oct 26 17:45:53 UTC 2009 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- fsck during boot up fails with Too many open files [bnc#503008]
|
- fsck during boot up fails with Too many open files [bnc#503008]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 20 12:14:24 CEST 2009 - dmueller@suse.de
|
Tue Oct 20 12:14:24 CEST 2009 - dmueller@suse.de
|
||||||
@ -1787,7 +1834,7 @@ Tue Sep 29 12:58:37 UTC 2009 - hvogel@novell.com
|
|||||||
|
|
||||||
- finaly remove the mount mtab locking patch:
|
- finaly remove the mount mtab locking patch:
|
||||||
* util-linux-2.14.1-mount_race.patch
|
* util-linux-2.14.1-mount_race.patch
|
||||||
It causes too much regressions.
|
It causes too much regressions.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 13 14:21:07 CEST 2009 - kay.sievers@novell.com
|
Mon Jul 13 14:21:07 CEST 2009 - kay.sievers@novell.com
|
||||||
@ -1837,7 +1884,7 @@ Thu Apr 16 14:55:22 CEST 2009 - werner@suse.de
|
|||||||
Mon Feb 16 12:35:00 CET 2009 - mkoenig@suse.de
|
Mon Feb 16 12:35:00 CET 2009 - mkoenig@suse.de
|
||||||
|
|
||||||
- remove util-linux-2.14.1-fdisk_cylinder.patch
|
- remove util-linux-2.14.1-fdisk_cylinder.patch
|
||||||
fixed upstream
|
fixed upstream
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 12 17:12:28 CET 2009 - mkoenig@suse.de
|
Thu Feb 12 17:12:28 CET 2009 - mkoenig@suse.de
|
||||||
@ -1886,13 +1933,13 @@ Sat Feb 7 18:28:58 CET 2009 - schwab@suse.de
|
|||||||
Wed Jan 7 15:42:38 CET 2009 - mkoenig@suse.de
|
Wed Jan 7 15:42:38 CET 2009 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix locking problem for external mount helpers when type
|
- fix locking problem for external mount helpers when type
|
||||||
is not given [bnc#459839]
|
is not given [bnc#459839]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 2 12:23:37 CET 2008 - mkoenig@suse.de
|
Tue Dec 2 12:23:37 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- raw: do not stat the raw devices when binding, since they
|
- raw: do not stat the raw devices when binding, since they
|
||||||
are created dynamically [bnc#450675]
|
are created dynamically [bnc#450675]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 27 01:27:19 CET 2008 - dmueller@suse.de
|
Thu Nov 27 01:27:19 CET 2008 - dmueller@suse.de
|
||||||
@ -1903,7 +1950,7 @@ Thu Nov 27 01:27:19 CET 2008 - dmueller@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 24 15:24:11 CET 2008 - mkoenig@suse.de
|
Mon Nov 24 15:24:11 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- mount: fix locking patch to not break -n [bnc#447937]
|
- mount: fix locking patch to not break -n [bnc#447937]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 20 18:08:33 CET 2008 - mkoenig@suse.de
|
Thu Nov 20 18:08:33 CET 2008 - mkoenig@suse.de
|
||||||
@ -1921,7 +1968,7 @@ Fri Nov 7 14:50:00 CET 2008 - mkoenig@suse.de
|
|||||||
|
|
||||||
- fdisk: support +cylinder notation [bnc#441871]
|
- fdisk: support +cylinder notation [bnc#441871]
|
||||||
- check for EACCES when using ro fallback when loop mounting
|
- check for EACCES when using ro fallback when loop mounting
|
||||||
a readonly image
|
a readonly image
|
||||||
- fix uninitialized variable in swapon pagesize detection
|
- fix uninitialized variable in swapon pagesize detection
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -1950,7 +1997,7 @@ Wed Sep 24 11:28:07 CEST 2008 - mkoenig@suse.de
|
|||||||
|
|
||||||
- add new tool /bin/hypervisor for x86, x86_64
|
- add new tool /bin/hypervisor for x86, x86_64
|
||||||
from Ky Srinivasan <ksrinivasan@novell.com>
|
from Ky Srinivasan <ksrinivasan@novell.com>
|
||||||
to detect the presence of a hypervisor [fate#303051]
|
to detect the presence of a hypervisor [fate#303051]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 10 15:58:52 CEST 2008 - mkoenig@suse.de
|
Wed Sep 10 15:58:52 CEST 2008 - mkoenig@suse.de
|
||||||
@ -1968,7 +2015,7 @@ Wed Sep 10 15:58:52 CEST 2008 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 20 15:20:06 CEST 2008 - mkoenig@suse.de
|
Wed Aug 20 15:20:06 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- enable SELinux support [fate#303662]
|
- enable SELinux support [fate#303662]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 18 18:13:10 CEST 2008 - mrueckert@suse.de
|
Mon Aug 18 18:13:10 CEST 2008 - mrueckert@suse.de
|
||||||
@ -1978,7 +2025,7 @@ Mon Aug 18 18:13:10 CEST 2008 - mrueckert@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 18 12:36:39 CEST 2008 - mkoenig@suse.de
|
Mon Aug 18 12:36:39 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- raw: fix init script tags
|
- raw: fix init script tags
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 7 15:13:24 CEST 2008 - mkoenig@suse.de
|
Mon Jul 7 15:13:24 CEST 2008 - mkoenig@suse.de
|
||||||
@ -1987,7 +2034,7 @@ Mon Jul 7 15:13:24 CEST 2008 - mkoenig@suse.de
|
|||||||
* Upgraded code from bash to version 3.2. This DOES has influence
|
* Upgraded code from bash to version 3.2. This DOES has influence
|
||||||
on how Which behaves under certain circumstances.
|
on how Which behaves under certain circumstances.
|
||||||
* When the environment variable HOME is not set, the home directory
|
* When the environment variable HOME is not set, the home directory
|
||||||
is now read from /etc/passwd or set to '/' if no home directory
|
is now read from /etc/passwd or set to '/' if no home directory
|
||||||
could be found (this now matches the tilde lib used in bash)
|
could be found (this now matches the tilde lib used in bash)
|
||||||
* Changed the license to GPLv3
|
* Changed the license to GPLv3
|
||||||
* Add support for shells that output '{' on the same line as the
|
* Add support for shells that output '{' on the same line as the
|
||||||
@ -1999,7 +2046,7 @@ Wed Jul 2 15:47:08 CEST 2008 - mkoenig@suse.de
|
|||||||
|
|
||||||
- replace util-linux-2.14-mount_ignore_ENXIO_in_del_loop.patch
|
- replace util-linux-2.14-mount_ignore_ENXIO_in_del_loop.patch
|
||||||
with upstream version
|
with upstream version
|
||||||
util-linux-2.14-loop_autoclear.patch
|
util-linux-2.14-loop_autoclear.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 27 17:05:46 CEST 2008 - schwab@suse.de
|
Fri Jun 27 17:05:46 CEST 2008 - schwab@suse.de
|
||||||
@ -2009,7 +2056,7 @@ Fri Jun 27 17:05:46 CEST 2008 - schwab@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 25 14:26:49 CEST 2008 - mkoenig@suse.de
|
Wed Jun 25 14:26:49 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to version 2.14
|
- update to version 2.14
|
||||||
most important changes:
|
most important changes:
|
||||||
* new command ldattach
|
* new command ldattach
|
||||||
mount:
|
mount:
|
||||||
@ -2059,18 +2106,18 @@ Sun Mar 23 11:13:13 CET 2008 - coolo@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 13 10:21:42 CET 2008 - bg@suse.de
|
Wed Feb 13 10:21:42 CET 2008 - bg@suse.de
|
||||||
|
|
||||||
- don't try to package parisc*.8 manual pages
|
- don't try to package parisc*.8 manual pages
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 11 17:49:04 CET 2008 - mkoenig@suse.de
|
Mon Feb 11 17:49:04 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to version 2.13.1 again
|
- update to version 2.13.1 again
|
||||||
- fix broken util-linux-2.13.1-getfs_fix.patch
|
- fix broken util-linux-2.13.1-getfs_fix.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 10 18:11:07 CET 2008 - lrupp@suse.de
|
Sun Feb 10 18:11:07 CET 2008 - lrupp@suse.de
|
||||||
|
|
||||||
- revert to 2.13.0.1+git20071121
|
- revert to 2.13.0.1+git20071121
|
||||||
breaks current 'mount' call in Buildservice
|
breaks current 'mount' call in Buildservice
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2093,7 +2140,7 @@ Thu Feb 7 12:41:25 CET 2008 - mkoenig@suse.de
|
|||||||
- mount: fix problem with device canonicalization when using
|
- mount: fix problem with device canonicalization when using
|
||||||
persistent name in fstab but call mount with real bd name
|
persistent name in fstab but call mount with real bd name
|
||||||
- patches merged:
|
- patches merged:
|
||||||
util-linux-2.13-mount_fd_leak.patch
|
util-linux-2.13-mount_fd_leak.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 18 15:55:19 CET 2007 - mkoenig@suse.de
|
Tue Dec 18 15:55:19 CET 2007 - mkoenig@suse.de
|
||||||
@ -2104,7 +2151,7 @@ Tue Dec 18 15:55:19 CET 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 3 11:03:57 CET 2007 - ro@suse.de
|
Mon Dec 3 11:03:57 CET 2007 - ro@suse.de
|
||||||
|
|
||||||
- remove "arch", in coreutils now
|
- remove "arch", in coreutils now
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 29 17:51:17 CET 2007 - lnussel@suse.de
|
Thu Nov 29 17:51:17 CET 2007 - lnussel@suse.de
|
||||||
@ -2127,16 +2174,16 @@ Wed Nov 21 13:43:31 CET 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 20 17:49:35 CET 2007 - mkoenig@suse.de
|
Tue Nov 20 17:49:35 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix raw path in init script
|
- fix raw path in init script
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 6 16:11:02 CET 2007 - mkoenig@suse.de
|
Tue Nov 6 16:11:02 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to 2.13.0.1+git20071106
|
- update to 2.13.0.1+git20071106
|
||||||
- prevent loop mounting the same file twice [#240653]
|
- prevent loop mounting the same file twice [#240653]
|
||||||
- merged upstream:
|
- merged upstream:
|
||||||
util-linux-2.13-mount_helper_fix.patch
|
util-linux-2.13-mount_helper_fix.patch
|
||||||
util-linux-2.13-hwclock_rtc_option.patch
|
util-linux-2.13-hwclock_rtc_option.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 4 22:24:04 CEST 2007 - bg@suse.de
|
Thu Oct 4 22:24:04 CEST 2007 - bg@suse.de
|
||||||
@ -2152,7 +2199,7 @@ Mon Oct 1 17:08:06 CEST 2007 - mkoenig@suse.de
|
|||||||
util-linux-2.13-loop.patch
|
util-linux-2.13-loop.patch
|
||||||
util-linux-2.13-mount_create_mtab.patch
|
util-linux-2.13-mount_create_mtab.patch
|
||||||
util-linux-2.13-schedutils_error_handling.patch
|
util-linux-2.13-schedutils_error_handling.patch
|
||||||
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
||||||
- fix hwclock --rtc option [#326106]
|
- fix hwclock --rtc option [#326106]
|
||||||
- fix setuid/setgid mixup and error checking [#327022]
|
- fix setuid/setgid mixup and error checking [#327022]
|
||||||
|
|
||||||
@ -2160,12 +2207,12 @@ Mon Oct 1 17:08:06 CEST 2007 - mkoenig@suse.de
|
|||||||
Fri Sep 14 11:24:33 CEST 2007 - mkoenig@suse.de
|
Fri Sep 14 11:24:33 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- link cfdisk against libncursesw instead libncurses to fix
|
- link cfdisk against libncursesw instead libncurses to fix
|
||||||
broken utf-8 characters [#307353]
|
broken utf-8 characters [#307353]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 29 12:22:21 CEST 2007 - mkoenig@suse.de
|
Wed Aug 29 12:22:21 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix fd leaks in previous patch
|
- fix fd leaks in previous patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 28 16:42:04 CEST 2007 - lnussel@suse.de
|
Tue Aug 28 16:42:04 CEST 2007 - lnussel@suse.de
|
||||||
@ -2177,20 +2224,20 @@ Tue Aug 28 16:42:04 CEST 2007 - lnussel@suse.de
|
|||||||
Fri Aug 24 14:09:19 CEST 2007 - mkoenig@suse.de
|
Fri Aug 24 14:09:19 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- avoid duplicates of root fs if defined with LABEL in fstab
|
- avoid duplicates of root fs if defined with LABEL in fstab
|
||||||
[#297959]
|
[#297959]
|
||||||
- fix ionice error handling [#301675]
|
- fix ionice error handling [#301675]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 16 18:34:30 CEST 2007 - ssommer@suse.de
|
Thu Aug 16 18:34:30 CEST 2007 - ssommer@suse.de
|
||||||
|
|
||||||
- free loop devices when mount fails [#297172]
|
- free loop devices when mount fails [#297172]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jul 25 18:43:42 CEST 2007 - mkoenig@suse.de
|
Wed Jul 25 18:43:42 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to git20070725
|
- update to git20070725
|
||||||
- removed patches (merged upstream):
|
- removed patches (merged upstream):
|
||||||
util-linux-2.12r-mount_mount.8_xfs_update.patch
|
util-linux-2.12r-mount_mount.8_xfs_update.patch
|
||||||
util-linux-2.12r-sys_utils_readprofile_mapfile.patch
|
util-linux-2.12r-sys_utils_readprofile_mapfile.patch
|
||||||
util-linux-2.12r-disk_utils_mkswap_fix.patch
|
util-linux-2.12r-disk_utils_mkswap_fix.patch
|
||||||
util-linux-2.13-schedutils_ionice_idle.patch
|
util-linux-2.13-schedutils_ionice_idle.patch
|
||||||
@ -2199,8 +2246,8 @@ Wed Jul 25 18:43:42 CEST 2007 - mkoenig@suse.de
|
|||||||
Tue Jul 17 10:44:18 CEST 2007 - mkoenig@suse.de
|
Tue Jul 17 10:44:18 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- updated to version 2.13-rc2:
|
- updated to version 2.13-rc2:
|
||||||
* add wakertc
|
* add wakertc
|
||||||
- cleanup ionice usage [#270251]
|
- cleanup ionice usage [#270251]
|
||||||
- enable hwclock audit support [#280113]
|
- enable hwclock audit support [#280113]
|
||||||
- removed patches (merged/fixed upstream)
|
- removed patches (merged/fixed upstream)
|
||||||
util-linux-login_utils_wall.patch
|
util-linux-login_utils_wall.patch
|
||||||
@ -2221,17 +2268,17 @@ Fri Jul 13 12:31:56 CEST 2007 - mkoenig@suse.de
|
|||||||
util-linux-2.11z-hwclock_geteuid.patch
|
util-linux-2.11z-hwclock_geteuid.patch
|
||||||
it is intentional that suid hwclock capabilities are limited
|
it is intentional that suid hwclock capabilities are limited
|
||||||
- removed patch (fixed upstream)
|
- removed patch (fixed upstream)
|
||||||
util-linux-2.12q-mount_--move.patch
|
util-linux-2.12q-mount_--move.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 9 11:34:33 CEST 2007 - mkoenig@suse.de
|
Mon Jul 9 11:34:33 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- add libuuid-devel to BuildRequires to let mkswap use UUIDs
|
- add libuuid-devel to BuildRequires to let mkswap use UUIDs
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jul 5 16:08:58 CEST 2007 - mkoenig@suse.de
|
Thu Jul 5 16:08:58 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- use %config(noreplace) for /etc/filesystems
|
- use %config(noreplace) for /etc/filesystems
|
||||||
- Keep rdev stuff for x86_64
|
- Keep rdev stuff for x86_64
|
||||||
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
||||||
- removed patches (merged upstream)
|
- removed patches (merged upstream)
|
||||||
@ -2264,21 +2311,21 @@ Thu Jun 21 14:50:58 CEST 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 14 10:52:25 CEST 2007 - mkoenig@suse.de
|
Thu Jun 14 10:52:25 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- mkzimage_cmdline: activate commandline if used with -s [#279935]
|
- mkzimage_cmdline: activate commandline if used with -s [#279935]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 13 12:33:59 CEST 2007 - mkoenig@suse.de
|
Wed Jun 13 12:33:59 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- schedutils: let chrt accept pid 0 for current process and
|
- schedutils: let chrt accept pid 0 for current process and
|
||||||
fix some documentation bugs [#266879]
|
fix some documentation bugs [#266879]
|
||||||
util-linux-2.13-schedutils_chrt.patch
|
util-linux-2.13-schedutils_chrt.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 6 16:15:43 CEST 2007 - mkoenig@suse.de
|
Wed Jun 6 16:15:43 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to git20070530
|
- update to git20070530
|
||||||
- removed patches
|
- removed patches
|
||||||
util-linux-2.13-mount_volume_id.patch
|
util-linux-2.13-mount_volume_id.patch
|
||||||
util-linux-2.12r-mount_by_uuid.patch
|
util-linux-2.12r-mount_by_uuid.patch
|
||||||
util-linux-2.13-build_gnu_source.patch
|
util-linux-2.13-build_gnu_source.patch
|
||||||
- fix build with ncurses
|
- fix build with ncurses
|
||||||
@ -2323,7 +2370,7 @@ Mon Apr 23 16:49:00 CEST 2007 - mkoenig@suse.de
|
|||||||
|
|
||||||
- update to git20070412
|
- update to git20070412
|
||||||
- remove chkdupexe and scriptreplay to get rid of the
|
- remove chkdupexe and scriptreplay to get rid of the
|
||||||
perl dependency [#265757]
|
perl dependency [#265757]
|
||||||
util-linux-2.13-build_no_perl_dependency.patch
|
util-linux-2.13-build_no_perl_dependency.patch
|
||||||
- upstream integration of umount helper support [#252089]
|
- upstream integration of umount helper support [#252089]
|
||||||
- merged patches:
|
- merged patches:
|
||||||
@ -2341,9 +2388,9 @@ Tue Apr 10 17:25:34 CEST 2007 - mkoenig@suse.de
|
|||||||
|
|
||||||
- update to version git20070330 of new forked development tree
|
- update to version git20070330 of new forked development tree
|
||||||
- removed Suse crypto patches for losetup [FATE#302001]
|
- removed Suse crypto patches for losetup [FATE#302001]
|
||||||
- removed binaries:
|
- removed binaries:
|
||||||
/bin/guessfstype
|
/bin/guessfstype
|
||||||
/sbin/sln
|
/sbin/sln
|
||||||
/usr/bin/setfdprm
|
/usr/bin/setfdprm
|
||||||
- removed obsolete patches:
|
- removed obsolete patches:
|
||||||
* guessfstype2.patch
|
* guessfstype2.patch
|
||||||
@ -2382,7 +2429,7 @@ Tue Apr 10 17:25:34 CEST 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 4 12:55:40 CEST 2007 - mkoenig@suse.de
|
Wed Apr 4 12:55:40 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- add Supplements line [FATE#301966]
|
- add Supplements line [FATE#301966]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 26 15:49:09 CEST 2007 - rguenther@suse.de
|
Mon Mar 26 15:49:09 CEST 2007 - rguenther@suse.de
|
||||||
@ -2392,13 +2439,13 @@ Mon Mar 26 15:49:09 CEST 2007 - rguenther@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 17:24:34 CET 2007 - mkoenig@suse.de
|
Thu Mar 15 17:24:34 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- mount: Let swapon automatically reinitialize a suspended
|
- mount: Let swapon automatically reinitialize a suspended
|
||||||
swap partition [#254437]
|
swap partition [#254437]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 9 11:00:11 CET 2007 - mkoenig@suse.de
|
Thu Mar 9 11:00:11 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- mount: fix mtablock patch to avoid mtab corruption [#226783]
|
- mount: fix mtablock patch to avoid mtab corruption [#226783]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 8 17:27:22 CET 2007 - mkoenig@suse.de
|
Thu Mar 8 17:27:22 CET 2007 - mkoenig@suse.de
|
||||||
@ -2413,8 +2460,8 @@ Wed Mar 7 16:58:08 CET 2007 - rguenther@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 27 10:58:46 CET 2007 - mkoenig@suse.de
|
Tue Feb 27 10:58:46 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix missing return code in
|
- fix missing return code in
|
||||||
util-linux-2.12r-losetup_password.patch
|
util-linux-2.12r-losetup_password.patch
|
||||||
- mount: fix race condition in mount -o loop [#242750]
|
- mount: fix race condition in mount -o loop [#242750]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2430,7 +2477,7 @@ Fri Feb 2 13:27:31 CET 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 31 12:06:55 CET 2007 - mkoenig@suse.de
|
Wed Jan 31 12:06:55 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- let mkfs tools open with O_EXCL [#238687]
|
- let mkfs tools open with O_EXCL [#238687]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 12 11:04:07 CET 2006 - mkoenig@suse.de
|
Tue Dec 12 11:04:07 CET 2006 - mkoenig@suse.de
|
||||||
@ -2451,14 +2498,14 @@ Tue Dec 5 18:13:32 CET 2006 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 7 13:09:45 CET 2006 - mkoenig@suse.de
|
Tue Nov 7 13:09:45 CET 2006 - mkoenig@suse.de
|
||||||
|
|
||||||
- enable partx [#214992]
|
- enable partx [#214992]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 18:17:42 CEST 2006 - mkoenig@suse.de
|
Tue Oct 10 18:17:42 CEST 2006 - mkoenig@suse.de
|
||||||
|
|
||||||
- Round up partition end LBA to a cylinder boundary during
|
- Round up partition end LBA to a cylinder boundary during
|
||||||
add_partition() [#174892]
|
add_partition() [#174892]
|
||||||
- Fix readprofile on ppc64 [#179122]
|
- Fix readprofile on ppc64 [#179122]
|
||||||
- Fix cal formatting bug [#203469]
|
- Fix cal formatting bug [#203469]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2470,7 +2517,7 @@ Mon Oct 9 12:27:33 CEST 2006 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 21 12:10:01 CEST 2006 - mkoenig@suse.de
|
Mon Aug 21 12:10:01 CEST 2006 - mkoenig@suse.de
|
||||||
|
|
||||||
- Added sysfs to list of filesystems not to unmount with
|
- Added sysfs to list of filesystems not to unmount with
|
||||||
umount -a, resolves #190385
|
umount -a, resolves #190385
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2571,14 +2618,14 @@ Wed Feb 1 03:58:58 CET 2006 - olh@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 1 02:20:17 CET 2006 - ro@suse.de
|
Wed Feb 1 02:20:17 CET 2006 - ro@suse.de
|
||||||
|
|
||||||
- fix typo in previous change, binary negation is "~"
|
- fix typo in previous change, binary negation is "~"
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 27 13:02:36 CET 2006 - sscheler@suse.de
|
Fri Jan 27 13:02:36 CET 2006 - sscheler@suse.de
|
||||||
|
|
||||||
- fixed mount hotplug option (#143352). now we don't send the
|
- fixed mount hotplug option (#143352). now we don't send the
|
||||||
MS_HOTPLUG flag to the kernel any longer, because the kernel
|
MS_HOTPLUG flag to the kernel any longer, because the kernel
|
||||||
doesn't know this option (EINVAL) and actually doesn't need to
|
doesn't know this option (EINVAL) and actually doesn't need to
|
||||||
know about it.
|
know about it.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -3222,7 +3269,7 @@ Mon Oct 13 21:44:43 CEST 2003 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 11:31:14 CEST 2003 - kukuk@suse.de
|
Thu Oct 2 11:31:14 CEST 2003 - kukuk@suse.de
|
||||||
|
|
||||||
- Fix compiling with kernel 2.6.0-test6 header files
|
- Fix compiling with kernel 2.6.0-test6 header files
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 12 15:27:20 CEST 2003 - mmj@suse.de
|
Tue Aug 12 15:27:20 CEST 2003 - mmj@suse.de
|
||||||
@ -3291,7 +3338,7 @@ Mon Mar 3 16:19:04 CET 2003 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 3 12:27:01 CET 2003 - ro@suse.de
|
Mon Mar 3 12:27:01 CET 2003 - ro@suse.de
|
||||||
|
|
||||||
- add missing info dir entries
|
- add missing info dir entries
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 18 14:29:45 CET 2003 - agruen@suse.de
|
Tue Feb 18 14:29:45 CET 2003 - agruen@suse.de
|
||||||
@ -3323,7 +3370,7 @@ Fri Feb 7 01:30:53 CET 2003 - ro@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 4 22:34:10 CET 2003 - ro@suse.de
|
Tue Feb 4 22:34:10 CET 2003 - ro@suse.de
|
||||||
|
|
||||||
- don't package /bin/kill (part of coreutils now)
|
- don't package /bin/kill (part of coreutils now)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 4 12:40:00 CET 2003 - meissner@suse.de
|
Tue Feb 4 12:40:00 CET 2003 - meissner@suse.de
|
||||||
@ -3383,7 +3430,7 @@ Wed Nov 27 11:01:52 CET 2002 - mmj@suse.de
|
|||||||
o fdisk,cfdisk: cosmetic fixes
|
o fdisk,cfdisk: cosmetic fixes
|
||||||
o mount,umount: fix LABEL= handling for non-root [#17322]
|
o mount,umount: fix LABEL= handling for non-root [#17322]
|
||||||
o more: kill external help file
|
o more: kill external help file
|
||||||
o simpleinit: security: refuse initctl_fd if setting FD_CLOEXEC
|
o simpleinit: security: refuse initctl_fd if setting FD_CLOEXEC
|
||||||
fails (patch we had, now folded upstream)
|
fails (patch we had, now folded upstream)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -3421,7 +3468,7 @@ Thu Oct 31 14:59:11 CET 2002 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 31 00:40:09 CET 2002 - ro@suse.de
|
Thu Oct 31 00:40:09 CET 2002 - ro@suse.de
|
||||||
|
|
||||||
- hack time to build on alpha
|
- hack time to build on alpha
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 22 16:13:36 CEST 2002 - mmj@suse.de
|
Tue Oct 22 16:13:36 CEST 2002 - mmj@suse.de
|
||||||
@ -3565,7 +3612,7 @@ Mon Jul 8 21:16:07 CEST 2002 - mmj@suse.de
|
|||||||
* fdformat: remove test on major
|
* fdformat: remove test on major
|
||||||
* fdisk, hwclock and swap polishing
|
* fdisk, hwclock and swap polishing
|
||||||
* Lots of translations
|
* Lots of translations
|
||||||
* cramfs tools includes from the kernel
|
* cramfs tools includes from the kernel
|
||||||
* swap{on,off} honours /proc/swaps
|
* swap{on,off} honours /proc/swaps
|
||||||
* mount small fixups
|
* mount small fixups
|
||||||
|
|
||||||
@ -3648,7 +3695,7 @@ Mon Jan 28 13:59:26 CET 2002 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 24 10:16:37 CET 2002 - ro@suse.de
|
Thu Jan 24 10:16:37 CET 2002 - ro@suse.de
|
||||||
|
|
||||||
- modified fillup_and_insserv call (perl-hack not needed here)
|
- modified fillup_and_insserv call (perl-hack not needed here)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 21 17:08:17 CET 2002 - mmj@suse.de
|
Mon Jan 21 17:08:17 CET 2002 - mmj@suse.de
|
||||||
@ -3658,7 +3705,7 @@ Mon Jan 21 17:08:17 CET 2002 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 10 14:18:21 CET 2002 - ro@suse.de
|
Thu Jan 10 14:18:21 CET 2002 - ro@suse.de
|
||||||
|
|
||||||
- removed ACTIVATE_RAW_DEV
|
- removed ACTIVATE_RAW_DEV
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 31 19:05:45 UTC 2001 - adrian@suse.de
|
Mon Dec 31 19:05:45 UTC 2001 - adrian@suse.de
|
||||||
@ -3818,7 +3865,7 @@ Mon Feb 12 15:23:14 CET 2001 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 6 11:54:34 CET 2001 - ro@suse.de
|
Tue Feb 6 11:54:34 CET 2001 - ro@suse.de
|
||||||
|
|
||||||
- wall.c: include time.h
|
- wall.c: include time.h
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 5 11:13:56 CET 2001 - kukuk@suse.de
|
Mon Feb 5 11:13:56 CET 2001 - kukuk@suse.de
|
||||||
@ -3837,14 +3884,14 @@ Fri Feb 2 12:18:56 CET 2001 - werner@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 25 00:37:22 CET 2001 - ro@suse.de
|
Thu Jan 25 00:37:22 CET 2001 - ro@suse.de
|
||||||
|
|
||||||
- added Provides: util
|
- added Provides: util
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 12 10:08:29 MET 2001 - garloff@suse.de
|
Fri Jan 12 10:08:29 MET 2001 - garloff@suse.de
|
||||||
|
|
||||||
- Apply patch to lomount to allow all kerneli crypt algos to be
|
- Apply patch to lomount to allow all kerneli crypt algos to be
|
||||||
passed and allow to pass passwd with -k.
|
passed and allow to pass passwd with -k.
|
||||||
- losetup seems to support >2GB files just fine (#5433)
|
- losetup seems to support >2GB files just fine (#5433)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 2 12:04:33 CET 2001 - kukuk@suse.de
|
Tue Jan 2 12:04:33 CET 2001 - kukuk@suse.de
|
||||||
@ -3864,9 +3911,9 @@ Tue Dec 5 11:24:34 CET 2000 - kukuk@suse.de
|
|||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 5 11:10:10 CET 2000 - schwab@suse.de
|
Tue Dec 5 11:10:10 CET 2000 - schwab@suse.de
|
||||||
|
|
||||||
- Don't use _syscallX on ia64.
|
- Don't use _syscallX on ia64.
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 4 09:27:28 CET 2000 - olh@suse.de
|
Mon Dec 4 09:27:28 CET 2000 - olh@suse.de
|
||||||
@ -3876,7 +3923,7 @@ Mon Dec 4 09:27:28 CET 2000 - olh@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Dec 3 00:09:16 CET 2000 - olh@suse.de
|
Sun Dec 3 00:09:16 CET 2000 - olh@suse.de
|
||||||
|
|
||||||
- no segfaults with AIX disklabels
|
- no segfaults with AIX disklabels
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 29 18:21:25 CET 2000 - uli@suse.de
|
Wed Nov 29 18:21:25 CET 2000 - uli@suse.de
|
||||||
@ -3937,7 +3984,7 @@ Wed Sep 27 11:30:21 CEST 2000 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 26 17:54:23 CEST 2000 - kukuk@suse.de
|
Tue Sep 26 17:54:23 CEST 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- Fix mount for new NFS kernel patch
|
- Fix mount for new NFS kernel patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Sep 9 17:36:24 CEST 2000 - kukuk@suse.de
|
Sat Sep 9 17:36:24 CEST 2000 - kukuk@suse.de
|
||||||
@ -4040,7 +4087,7 @@ Thu Mar 9 21:25:15 CET 2000 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 7 17:23:57 CET 2000 - kukuk@suse.de
|
Tue Mar 7 17:23:57 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- etc/filesystems: Add minix and reiserfs
|
- etc/filesystems: Add minix and reiserfs
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 7 11:49:23 CET 2000 - kukuk@suse.de
|
Tue Mar 7 11:49:23 CET 2000 - kukuk@suse.de
|
||||||
@ -4070,23 +4117,23 @@ Thu Feb 3 14:42:23 CET 2000 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 3 11:14:29 CET 2000 - kukuk@suse.de
|
Thu Feb 3 11:14:29 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- util-linux: Update to 2.10f (mount security fix)
|
- util-linux: Update to 2.10f (mount security fix)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 23 15:45:08 CET 2000 - kukuk@suse.de
|
Sun Jan 23 15:45:08 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- util-linux: Update to 2.10e
|
- util-linux: Update to 2.10e
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 18 19:18:08 CET 2000 - kukuk@suse.de
|
Tue Jan 18 19:18:08 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- mount now looks at first in /etc/filesystems and then in
|
- mount now looks at first in /etc/filesystems and then in
|
||||||
/proc/filesystems
|
/proc/filesystems
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 18 16:32:05 CET 2000 - ro@suse.de
|
Tue Jan 18 16:32:05 CET 2000 - ro@suse.de
|
||||||
|
|
||||||
- fixed pmac-utils to build with 2.3 as well
|
- fixed pmac-utils to build with 2.3 as well
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 18 14:56:22 CET 2000 - kukuk@suse.de
|
Tue Jan 18 14:56:22 CET 2000 - kukuk@suse.de
|
||||||
@ -4099,7 +4146,7 @@ Mon Jan 17 18:23:56 CET 2000 - kukuk@suse.de
|
|||||||
- Fix setserial for Linux 2.3.40
|
- Fix setserial for Linux 2.3.40
|
||||||
- Remove write, is now in nkitb
|
- Remove write, is now in nkitb
|
||||||
- Build minix and bfs tools for SPARC
|
- Build minix and bfs tools for SPARC
|
||||||
- Fix some buffer overflows in fdisk
|
- Fix some buffer overflows in fdisk
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 17 15:00:19 MET 1999 - kukuk@suse.de
|
Fri Dec 17 15:00:19 MET 1999 - kukuk@suse.de
|
||||||
@ -4121,7 +4168,7 @@ Tue Nov 30 17:49:27 MET 1999 - uli@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 15 12:39:41 MET 1999 - kukuk@suse.de
|
Mon Nov 15 12:39:41 MET 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- util-linux: Update to 2.10b
|
- util-linux: Update to 2.10b
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Nov 13 15:36:37 MET 1999 - kukuk@suse.de
|
Sat Nov 13 15:36:37 MET 1999 - kukuk@suse.de
|
||||||
@ -4148,7 +4195,7 @@ Sat Oct 16 16:40:13 MEST 1999 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 8 10:58:48 MEST 1999 - kukuk@suse.de
|
Fri Oct 8 10:58:48 MEST 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- Update to util-linux-2.9y (execpt fdisk)
|
- Update to util-linux-2.9y (execpt fdisk)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 14 18:14:53 CEST 1999 - uli@suse.de
|
Tue Sep 14 18:14:53 CEST 1999 - uli@suse.de
|
||||||
@ -4163,12 +4210,12 @@ Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 26 15:05:03 CEST 1999 - uli@suse.de
|
Thu Aug 26 15:05:03 CEST 1999 - uli@suse.de
|
||||||
|
|
||||||
- disabled hayesesp for PPC
|
- disabled hayesesp for PPC
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 25 18:04:35 MEST 1999 - kukuk@suse.de
|
Wed Aug 25 18:04:35 MEST 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- Don't install tsort, its now in textutils 2.0
|
- Don't install tsort, its now in textutils 2.0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 24 10:11:06 MEST 1999 - kukuk@suse.de
|
Tue Aug 24 10:11:06 MEST 1999 - kukuk@suse.de
|
||||||
@ -4194,7 +4241,7 @@ Mon Jul 12 12:11:45 MEST 1999 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 6 12:23:47 MEST 1999 - kukuk@suse.de
|
Tue Jul 6 12:23:47 MEST 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- update to util-linux-2.9t
|
- update to util-linux-2.9t
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 25 14:44:30 MEST 1999 - kukuk@suse.de
|
Fri Jun 25 14:44:30 MEST 1999 - kukuk@suse.de
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-libmount
|
# spec file for package python-libmount
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -94,8 +94,7 @@ BuildRequires: librtas-devel
|
|||||||
%if %build_util_linux_systemd
|
%if %build_util_linux_systemd
|
||||||
BuildRequires: socat
|
BuildRequires: socat
|
||||||
BuildRequires: systemd-rpm-macros
|
BuildRequires: systemd-rpm-macros
|
||||||
BuildRequires: pkgconfig(libsystemd-daemon)
|
BuildRequires: pkgconfig(libsystemd)
|
||||||
BuildRequires: pkgconfig(libsystemd-journal)
|
|
||||||
%endif
|
%endif
|
||||||
%if %build_python_libmount
|
%if %build_python_libmount
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
@ -113,7 +112,7 @@ BuildRequires: libmount-devel
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
#END SECOND STAGE DEPENDENCIES
|
#END SECOND STAGE DEPENDENCIES
|
||||||
Version: 2.28.2
|
Version: 2.29
|
||||||
Release: 0
|
Release: 0
|
||||||
# util-linux is a base package and uuidd pre-requiring pwdutils pulls
|
# util-linux is a base package and uuidd pre-requiring pwdutils pulls
|
||||||
# that into the core build cycle. pwdutils also pulls in the whole
|
# that into the core build cycle. pwdutils also pulls in the whole
|
||||||
@ -122,7 +121,7 @@ Release: 0
|
|||||||
# these tools as well
|
# these tools as well
|
||||||
#!BuildIgnore: pwdutils
|
#!BuildIgnore: pwdutils
|
||||||
Url: https://www.kernel.org/pub/linux/utils/util-linux/
|
Url: https://www.kernel.org/pub/linux/utils/util-linux/
|
||||||
Source: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.28/%{_name}-%{version}.tar.xz
|
Source: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.29/%{_name}-%{version}.tar.xz
|
||||||
Source1: util-linux-rpmlintrc
|
Source1: util-linux-rpmlintrc
|
||||||
Source4: raw.init
|
Source4: raw.init
|
||||||
Source5: etc.raw
|
Source5: etc.raw
|
||||||
@ -132,7 +131,7 @@ Source8: login.pamd
|
|||||||
Source9: remote.pamd
|
Source9: remote.pamd
|
||||||
Source10: su.pamd
|
Source10: su.pamd
|
||||||
Source11: su.default
|
Source11: su.default
|
||||||
Source12: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.28/%{_name}-%{version}.tar.sign
|
Source12: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.29/%{_name}-%{version}.tar.sign
|
||||||
Source13: %{_name}.keyring
|
Source13: %{_name}.keyring
|
||||||
Source14: runuser.pamd
|
Source14: runuser.pamd
|
||||||
# klogconsole, http://opensuse.github.com/kiwi, 7.02.25, git 859dc050
|
# klogconsole, http://opensuse.github.com/kiwi, 7.02.25, git 859dc050
|
||||||
@ -519,12 +518,11 @@ AUTOPOINT=true autoreconf -vfi
|
|||||||
--docdir=%{_docdir}/%{_name} \
|
--docdir=%{_docdir}/%{_name} \
|
||||||
--with-audit \
|
--with-audit \
|
||||||
--with-gnu-ld \
|
--with-gnu-ld \
|
||||||
--with-ncurses \
|
--with-ncursesw \
|
||||||
--with-selinux \
|
--with-selinux \
|
||||||
$uhead \
|
$uhead \
|
||||||
--with-bashcompletiondir=%{_datadir}/bash-completion/completions \
|
--with-bashcompletiondir=%{_datadir}/bash-completion/completions \
|
||||||
--with-systemdsystemunitdir=%{_unitdir} \
|
--with-systemdsystemunitdir=%{_unitdir} \
|
||||||
--enable-libmount-force-mountinfo \
|
|
||||||
--enable-libuuid-force-uuidd \
|
--enable-libuuid-force-uuidd \
|
||||||
--enable-sulogin-emergency-mount \
|
--enable-sulogin-emergency-mount \
|
||||||
--disable-use-tty-group \
|
--disable-use-tty-group \
|
||||||
@ -532,6 +530,10 @@ AUTOPOINT=true autoreconf -vfi
|
|||||||
--disable-rpath \
|
--disable-rpath \
|
||||||
--enable-all-programs \
|
--enable-all-programs \
|
||||||
--disable-reset \
|
--disable-reset \
|
||||||
|
--disable-chfn-chsh \
|
||||||
|
--disable-newgrp \
|
||||||
|
--disable-vipw \
|
||||||
|
--disable-pg \
|
||||||
%if %{without enable_last}
|
%if %{without enable_last}
|
||||||
--disable-last \
|
--disable-last \
|
||||||
%endif
|
%endif
|
||||||
@ -570,6 +572,7 @@ export TS_OPT_fdisk_gpt_known_fail="yes"
|
|||||||
export TS_OPT_fdisk_oddinput_known_fail="yes"
|
export TS_OPT_fdisk_oddinput_known_fail="yes"
|
||||||
export TS_OPT_fdisk_sunlabel_known_fail="yes"
|
export TS_OPT_fdisk_sunlabel_known_fail="yes"
|
||||||
export TS_OPT_libfdisk_gpt_known_fail="yes"
|
export TS_OPT_libfdisk_gpt_known_fail="yes"
|
||||||
|
export TS_OPT_misc_flock_known_fail="yes"
|
||||||
export TS_OPT_misc_ionice_known_fail="yes"
|
export TS_OPT_misc_ionice_known_fail="yes"
|
||||||
export TS_OPT_misc_swaplabel_known_fail="yes"
|
export TS_OPT_misc_swaplabel_known_fail="yes"
|
||||||
export TS_OPT_kill_name_to_number_known_fail="yes"
|
export TS_OPT_kill_name_to_number_known_fail="yes"
|
||||||
@ -676,17 +679,6 @@ ln -sf ../..%{_sysconfdir}/init.d/raw %{buildroot}%{_sbindir}/rcraw
|
|||||||
mv %{buildroot}%{_docdir}/%{_name}/getopt %{buildroot}%{_datadir}/
|
mv %{buildroot}%{_docdir}/%{_name}/getopt %{buildroot}%{_datadir}/
|
||||||
# Stupid hack so we don't have a tcsh dependency
|
# Stupid hack so we don't have a tcsh dependency
|
||||||
chmod 644 %{buildroot}%{_datadir}/getopt/getopt*.tcsh
|
chmod 644 %{buildroot}%{_datadir}/getopt/getopt*.tcsh
|
||||||
# Following files we don't want to package, so remove them
|
|
||||||
rm -f %{buildroot}%{_bindir}/pg
|
|
||||||
rm -f %{buildroot}%{_mandir}/man1/pg.1*
|
|
||||||
# Do not package these files to get rid of the perl dependency
|
|
||||||
rm -f %{buildroot}%{_bindir}/chkdupexe
|
|
||||||
rm -f %{buildroot}%{_mandir}/man1/chkdupexe.1
|
|
||||||
# we use this tools from pwdutils
|
|
||||||
rm -f %{buildroot}%{_bindir}/{chfn,chsh,newgrp}
|
|
||||||
rm -f %{buildroot}%{_sbindir}/{vigr,vipw}
|
|
||||||
rm -f %{buildroot}%{_mandir}/man1/{chfn.1*,chsh.1*,newgrp.1*}
|
|
||||||
rm -f %{buildroot}%{_mandir}/man8/{vigr.8*,vipw.8*}
|
|
||||||
# login is always and only in /bin
|
# login is always and only in /bin
|
||||||
mv %{buildroot}%{_bindir}/login %{buildroot}/bin/
|
mv %{buildroot}%{_bindir}/login %{buildroot}/bin/
|
||||||
# arch dependent
|
# arch dependent
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
Version: GnuPG v2
|
|
||||||
|
|
||||||
iQIcBAABCAAGBQJX0ACaAAoJEOS3HV7sOcKEkCMP/2TEulMSidpCzZm/AxHcsshN
|
|
||||||
nhOZygZtjmjvVgOrPfQjNyuOOpd/lJn39hB9j3amq7fDkWZXcjYcKjYG5v1ex3ok
|
|
||||||
4Xgn0eH9uW3fIskldiFl0agYrIvkov75G8bEhLkluY8b66OwKmzRvd8CV5nQPfQk
|
|
||||||
9RNCdluw+0Qy5044+QX24Bro3QIGHyXHe5soRe5LYbqKsuEj48iCgi10ClkmkfAv
|
|
||||||
TnelecI4Ck0OcmLqq4jygDBgufR32XnHvBdjHyA7TqFE7fHdOAUZqhJ27OyDdg1b
|
|
||||||
ABfGPBjL/nLtLjjW5BDrrFaRB/5iJyRrAke7UH0N/Si+2xm2aP2yqhy3+vDTnzfA
|
|
||||||
gP/1HMg42w62JA3sF7Z/vbMF/qhLVS3jhR0mCNMr2IY9ClnDQfrh5y+XaBTsXPvS
|
|
||||||
aIv6aEHt02JFPOoKoImdaq2sq9krKkR2cabqd3kxfKLSo/6yw/K8ZZiOEMlNSWc0
|
|
||||||
/tfYuk84hcGFwmHv+ESx3x/JG9XoUsxWmvW/1l6eLHKnJ2Q1CP+/uLml4BHQZTrH
|
|
||||||
LKSU37B/7l9UMWCq/sq9Wfbm6wDI0x8h637iCiSquCv/fzFFmYBtNqZaR4RVjyK9
|
|
||||||
KJgqzv9OJCDk89VhvfbhfpAU2unF3UAE0ho6eOSNMDrubeEQNiEj4vDKo0HccMZo
|
|
||||||
2ulDt0G0OBm6U7aIYHRn
|
|
||||||
=15U5
|
|
||||||
-----END PGP SIGNATURE-----
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b89d37146f20bede93a42c847bce881a17e6dbd8066ff2db2bee733fa409f0cd
|
|
||||||
size 4149700
|
|
17
util-linux-2.29.tar.sign
Normal file
17
util-linux-2.29.tar.sign
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
Version: GnuPG v2
|
||||||
|
|
||||||
|
iQIcBAABCAAGBQJYIa+yAAoJEOS3HV7sOcKEkPEQAJ6qcx836hUP93e+q8lH7Anf
|
||||||
|
6odYlxYWC5Pgb8Qopn1KDMh5c3GAbPrnbSoVRKS3jvc24uZuhlCCwYnJbcmEt/+L
|
||||||
|
am+/zQyIF9T5ZwTadnGD2bkYXI5N9eS4R5O0N/OdBTgsVr9rjZ318zHg+8YCUZN0
|
||||||
|
hCh4e1UlUC8uL7C/WgeLW/+kN+D+/1KJISDerkw+u5FFPZGWcPcYPh7ofi4ZyV/h
|
||||||
|
OPgvaEHt3/IxsZnuUNtIEVhFBpabjdwLkXm1LQ26XLnkdipBuuadVB8jaSLUz29J
|
||||||
|
rkNVI0iiH9vq5abE0wDIzQ2Lt4Lv65fQM7dmw/Ek188tZn9MyX8vT+C5Vyu+EFtU
|
||||||
|
K+1BwMVNqfW5hZHPM2z7izO/ml77wnydEFGy9GZZpLqQAzUGgsQDC3JbiczC7Qfq
|
||||||
|
bTFGhz32sHp/2gyOqciwhLPzWxD6jOLVG84vC9Obvtm+xQEfvLa71FnHdcLU3uZA
|
||||||
|
uZHt50WSuusZJtCWDhhLgfV6NV7c+YB1tELfrStlXAHyZT3Ws0pNPv+5Sue81dGt
|
||||||
|
uYVOOlXd+5qVpcgJRs5ai86yzv65kCeqmDsSAiHMIwPfFYBOeYessiRmWpqJXTt2
|
||||||
|
S38j00fHFbNh5qqgDyso6myan4ZNLVIpihZLT2JLJqxEnf4ILZVV7krNW9p09teq
|
||||||
|
afEkNizqGL/NF2I7ltpe
|
||||||
|
=5e/s
|
||||||
|
-----END PGP SIGNATURE-----
|
3
util-linux-2.29.tar.xz
Normal file
3
util-linux-2.29.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2c59ea67cc7b564104f60532f6e0a95fe17a91acb870ba8fd7e986f273abf9e7
|
||||||
|
size 4249020
|
@ -1,3 +1,50 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 12:34:33 UTC 2017 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
|
- don't install bash-completions for uninstalled binaries (chfn,
|
||||||
|
chsh, newgrp, pg)
|
||||||
|
- for now remove procps dependency which is only needed for tests
|
||||||
|
because it pulls systemd
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 15 09:26:01 UTC 2016 - fbui@suse.com
|
||||||
|
|
||||||
|
- Replace pkgconfig(libsystemd-*) with pkgconfig(libsystemd)
|
||||||
|
|
||||||
|
libsystemd-* libs were deprecated and are gone now.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 7 16:12:55 CET 2016 - sbrabec@suse.com
|
||||||
|
|
||||||
|
- Remove no more supported --enable-libmount-force-mountinfo.
|
||||||
|
There is --enable-libmount-support-mtab, disabled by default,
|
||||||
|
exactly as we need.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 8 15:11:37 UTC 2016 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
|
- Update to version 2.29
|
||||||
|
* cal: possible to specify month by name (e.g. "cal January
|
||||||
|
2017") and use relative placeholders (cal "+1 month")
|
||||||
|
* fdisk(8) allows to wipe newly created partitions; the feature
|
||||||
|
is possible to control by new command line option
|
||||||
|
--wipe-partitions[==auto|never|default].
|
||||||
|
* findmnt --verify: the command scans /etc/fstab and tries to
|
||||||
|
verify the configuration.
|
||||||
|
* mount(8) now rejects requests to create another device and
|
||||||
|
mount filesystem for the same backing file. The command
|
||||||
|
`losetup --nooverlap` reuses loop device if already exists
|
||||||
|
for the same backing file. All the functionality calculate
|
||||||
|
with offset and sizelimit options of course, so it's fine to
|
||||||
|
have multiple regions (partitions) in the same image file and
|
||||||
|
mount all of them in the same time. The restriction is that
|
||||||
|
the regions should not overlap.
|
||||||
|
* lscpu supports the "drawer" topology for IBM S/390.
|
||||||
|
* More details at:
|
||||||
|
http://karelzak.blogspot.de/2016/10/util-linux-v229-whats-new.html
|
||||||
|
https://www.kernel.org/pub/linux/utils/util-linux/v2.29/v2.29-ReleaseNotes
|
||||||
|
- refresh make-sure-sbin-resp-usr-sbin-are-in-PATH.diff
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 7 12:43:31 UTC 2016 - sweet_f_a@gmx.de
|
Wed Sep 7 12:43:31 UTC 2016 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
@ -62,7 +109,7 @@ Wed Apr 13 21:29:00 UTC 2016 - sweet_f_a@gmx.de
|
|||||||
|
|
||||||
- fix build for openSUSE >= 13.1 (inclusive SLE 12)
|
- fix build for openSUSE >= 13.1 (inclusive SLE 12)
|
||||||
- drop build for openSUSE < 13.1
|
- drop build for openSUSE < 13.1
|
||||||
- remove old build conditions: sysvinit_tools, enable_su and
|
- remove old build conditions: sysvinit_tools, enable_su and
|
||||||
enable_eject
|
enable_eject
|
||||||
- cosmetics: reorder configure options
|
- cosmetics: reorder configure options
|
||||||
|
|
||||||
@ -194,7 +241,7 @@ Fri Mar 13 15:57:56 UTC 2015 - sweet_f_a@gmx.de
|
|||||||
* cal(1): do not segfault when TERM is not defined or wrong
|
* cal(1): do not segfault when TERM is not defined or wrong
|
||||||
(bnc#903440)
|
(bnc#903440)
|
||||||
* logger(1): major fixes and enhancements
|
* logger(1): major fixes and enhancements
|
||||||
* agetty(8): support /usr/lib/os-release too
|
* agetty(8): support /usr/lib/os-release too
|
||||||
* some more fixes, mostly minor ones, see ReleaseNotes
|
* some more fixes, mostly minor ones, see ReleaseNotes
|
||||||
- re-enable fixed tests (fdisk/bsd, ppc64le)
|
- re-enable fixed tests (fdisk/bsd, ppc64le)
|
||||||
|
|
||||||
@ -242,7 +289,7 @@ Wed Feb 25 20:43:28 CET 2015 - sbrabec@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 22 17:15:41 UTC 2015 - crrodriguez@opensuse.org
|
Sun Feb 22 17:15:41 UTC 2015 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- Build with FULL RELRO.
|
- Build with FULL RELRO.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 10 15:26:55 UTC 2015 - sweet_f_a@gmx.de
|
Tue Feb 10 15:26:55 UTC 2015 - sweet_f_a@gmx.de
|
||||||
@ -440,7 +487,7 @@ Fri May 16 15:10:53 UTC 2014 - sweet_f_a@gmx.de
|
|||||||
Thu May 8 08:15:04 UTC 2014 - werner@suse.de
|
Thu May 8 08:15:04 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Modify patch support-other-tty-lines-not-vconsole.patch to
|
- Modify patch support-other-tty-lines-not-vconsole.patch to
|
||||||
make it work on virtual console
|
make it work on virtual console
|
||||||
- Modify patch agetty-on-s390-on-dev-3270-tty1-line.patch
|
- Modify patch agetty-on-s390-on-dev-3270-tty1-line.patch
|
||||||
to add the missed 3270 support upstream
|
to add the missed 3270 support upstream
|
||||||
|
|
||||||
@ -448,7 +495,7 @@ Thu May 8 08:15:04 UTC 2014 - werner@suse.de
|
|||||||
Wed May 7 14:12:32 UTC 2014 - werner@suse.de
|
Wed May 7 14:12:32 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Add patch support-other-tty-lines-not-vconsole.patch
|
- Add patch support-other-tty-lines-not-vconsole.patch
|
||||||
to be able to support console lines like xvc and hvc
|
to be able to support console lines like xvc and hvc
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 24 11:33:36 UTC 2014 - sweet_f_a@gmx.de
|
Thu Apr 24 11:33:36 UTC 2014 - sweet_f_a@gmx.de
|
||||||
@ -661,7 +708,7 @@ Mon Mar 17 22:36:58 CET 2014 - sbrabec@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 6 09:43:34 UTC 2014 - werner@suse.de
|
Thu Mar 6 09:43:34 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Modify the patches
|
- Modify the patches
|
||||||
agetty-fooled-on-serial-line-due-plymouth.patch
|
agetty-fooled-on-serial-line-due-plymouth.patch
|
||||||
sulogin-fooled-on-tty-line-due-plymouth.patch
|
sulogin-fooled-on-tty-line-due-plymouth.patch
|
||||||
to be able to disable plymouth if not already terminated due to
|
to be able to disable plymouth if not already terminated due to
|
||||||
@ -672,7 +719,7 @@ Sun Feb 9 21:20:31 UTC 2014 - andreas.stieger@gmx.de
|
|||||||
|
|
||||||
- util-linux 2.24.1
|
- util-linux 2.24.1
|
||||||
- agetty:
|
- agetty:
|
||||||
* support the special terminal on first serial line on a S/390
|
* support the special terminal on first serial line on a S/390
|
||||||
- blkdiscard:
|
- blkdiscard:
|
||||||
* BLKSSZGET fills in an int, not a uint64
|
* BLKSSZGET fills in an int, not a uint64
|
||||||
- blkid:
|
- blkid:
|
||||||
@ -806,14 +853,14 @@ Tue Feb 4 10:24:02 UTC 2014 - werner@suse.de
|
|||||||
|
|
||||||
- Modify patch agetty-on-s390-on-dev--3270-tty1-line.patch and
|
- Modify patch agetty-on-s390-on-dev--3270-tty1-line.patch and
|
||||||
patch tty3270-on-serial-line-of-s390.patch to handle 3270
|
patch tty3270-on-serial-line-of-s390.patch to handle 3270
|
||||||
terminals
|
terminals
|
||||||
- Really do not verify /usr/bin/eject
|
- Really do not verify /usr/bin/eject
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 3 16:16:36 UTC 2014 - werner@suse.de
|
Mon Feb 3 16:16:36 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Add patch agetty-on-s390-on-dev--3270-tty1-line.patch
|
- Add patch agetty-on-s390-on-dev--3270-tty1-line.patch
|
||||||
to let agetty detect /dev/3270/tty1 as device not as baud rate
|
to let agetty detect /dev/3270/tty1 as device not as baud rate
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 28 09:37:57 UTC 2014 - speilicke@suse.com
|
Tue Jan 28 09:37:57 UTC 2014 - speilicke@suse.com
|
||||||
@ -918,7 +965,7 @@ Tue Dec 10 16:10:27 UTC 2013 - sweet_f_a@gmx.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 29 13:46:21 UTC 2013 - werner@suse.de
|
Fri Nov 29 13:46:21 UTC 2013 - werner@suse.de
|
||||||
|
|
||||||
- Add patch
|
- Add patch
|
||||||
tty3270-on-serial-line-of-s390.patch
|
tty3270-on-serial-line-of-s390.patch
|
||||||
to better support the first and second serial line on s390/x
|
to better support the first and second serial line on s390/x
|
||||||
|
|
||||||
@ -959,7 +1006,7 @@ Fri Sep 27 16:58:40 UTC 2013 - mgorse@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Sep 13 07:06:19 UTC 2013 - werner@suse.de
|
Fri Sep 13 07:06:19 UTC 2013 - werner@suse.de
|
||||||
|
|
||||||
- Avoid build require gpg-offline twice
|
- Avoid build require gpg-offline twice
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 11 20:54:24 CEST 2013 - sbrabec@suse.cz
|
Wed Sep 11 20:54:24 CEST 2013 - sbrabec@suse.cz
|
||||||
@ -1102,7 +1149,7 @@ Wed Jun 5 12:30:45 UTC 2013 - werner@suse.de
|
|||||||
+ Release highlights (2.22)
|
+ Release highlights (2.22)
|
||||||
su(1):
|
su(1):
|
||||||
* has been merged from coreutils into util-linux
|
* has been merged from coreutils into util-linux
|
||||||
* utils-linux version uses /etc/pam.d/su-l PAM config file for --login
|
* utils-linux version uses /etc/pam.d/su-l PAM config file for --login
|
||||||
(e.g. "su -") session.
|
(e.g. "su -") session.
|
||||||
sulogin(8):
|
sulogin(8):
|
||||||
* has been merged from sysvinit into util-linux
|
* has been merged from sysvinit into util-linux
|
||||||
@ -1112,12 +1159,12 @@ Wed Jun 5 12:30:45 UTC 2013 - werner@suse.de
|
|||||||
* has been merged from inactive upstream from sf.net and Fedora into util-linux
|
* has been merged from inactive upstream from sf.net and Fedora into util-linux
|
||||||
* supports new options --manualeject, --force and --no-partitions-unmount
|
* supports new options --manualeject, --force and --no-partitions-unmount
|
||||||
lslocks(1)
|
lslocks(1)
|
||||||
* this NEW COMMAND prints local system locks and it's replacement to very
|
* this NEW COMMAND prints local system locks and it's replacement to very
|
||||||
long time unmaintained lslk(1)
|
long time unmaintained lslk(1)
|
||||||
wdctl(8):
|
wdctl(8):
|
||||||
* this NEW COMMAND shows hardware watchdog status
|
* this NEW COMMAND shows hardware watchdog status
|
||||||
libuuid:
|
libuuid:
|
||||||
* does NOT EXECUTE uuidd on demand, the daemon has to be started by
|
* does NOT EXECUTE uuidd on demand, the daemon has to be started by
|
||||||
init scripts / systemd
|
init scripts / systemd
|
||||||
uuidd:
|
uuidd:
|
||||||
* supports socket activation (for systemd)
|
* supports socket activation (for systemd)
|
||||||
@ -1173,7 +1220,7 @@ Sat Feb 16 17:48:29 UTC 2013 - schwab@suse.de
|
|||||||
Tue Feb 5 14:32:49 UTC 2013 - crrodriguez@opensuse.org
|
Tue Feb 5 14:32:49 UTC 2013 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- 0001-Test-for-secure_getenv-too.patch:
|
- 0001-Test-for-secure_getenv-too.patch:
|
||||||
Current glibc in 12.3/factory no longer exports internal
|
Current glibc in 12.3/factory no longer exports internal
|
||||||
function __secure_getenv() but has secure_getenv() instead.
|
function __secure_getenv() but has secure_getenv() instead.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -1188,7 +1235,7 @@ Mon Jan 7 13:26:15 UTC 2013 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 28 04:30:58 UTC 2012 - crrodriguez@opensuse.org
|
Fri Dec 28 04:30:58 UTC 2012 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- 0001-include-bitops.h-Use-the-operating-system-byteswappi.patch
|
- 0001-include-bitops.h-Use-the-operating-system-byteswappi.patch
|
||||||
Use OS byteswapping macros, this patch is functionally identical
|
Use OS byteswapping macros, this patch is functionally identical
|
||||||
to the version submitted upstream with the exception it excludes
|
to the version submitted upstream with the exception it excludes
|
||||||
code that target non-linux systems.
|
code that target non-linux systems.
|
||||||
@ -1203,7 +1250,7 @@ Wed Sep 19 19:41:10 UTC 2012 - jslaby@suse.com
|
|||||||
Fri Jun 22 09:37:20 CEST 2012 - kukuk@suse.de
|
Fri Jun 22 09:37:20 CEST 2012 - kukuk@suse.de
|
||||||
|
|
||||||
- Remove pam_lastlog from login.pamd, login is doing it itself.
|
- Remove pam_lastlog from login.pamd, login is doing it itself.
|
||||||
[bnc#768067]
|
[bnc#768067]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 20 09:22:50 UTC 2012 - lnussel@suse.de
|
Wed Jun 20 09:22:50 UTC 2012 - lnussel@suse.de
|
||||||
@ -1240,13 +1287,13 @@ Thu May 31 10:04:23 UTC 2012 - sweet_f_a@gmx.de
|
|||||||
|
|
||||||
- require binutils-devel because "which" wants to find libiberty.a
|
- require binutils-devel because "which" wants to find libiberty.a
|
||||||
- remove which-lib64.patch because it's broken and couldn't find
|
- remove which-lib64.patch because it's broken and couldn't find
|
||||||
libiberty.a whithin /usr/lib64
|
libiberty.a whithin /usr/lib64
|
||||||
- which doesn't need autoreconf anymore
|
- which doesn't need autoreconf anymore
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 29 09:28:55 UTC 2012 - puzel@suse.com
|
Tue May 29 09:28:55 UTC 2012 - puzel@suse.com
|
||||||
|
|
||||||
- switch to new libmount-based mount(8)
|
- switch to new libmount-based mount(8)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 25 12:12:09 UTC 2012 - puzel@suse.com
|
Fri May 25 12:12:09 UTC 2012 - puzel@suse.com
|
||||||
@ -1259,7 +1306,7 @@ Fri May 25 12:12:09 UTC 2012 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 25 12:03:07 UTC 2012 - puzel@suse.com
|
Fri May 25 12:03:07 UTC 2012 - puzel@suse.com
|
||||||
|
|
||||||
- build with RPM_OPT_FLAGS again (removed by mistake)
|
- build with RPM_OPT_FLAGS again (removed by mistake)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 12 09:09:05 UTC 2012 - puzel@suse.com
|
Thu Apr 12 09:09:05 UTC 2012 - puzel@suse.com
|
||||||
@ -1325,7 +1372,7 @@ Tue Feb 21 13:46:25 UTC 2012 - puzel@suse.com
|
|||||||
--online to list all, offline or online CPUs
|
--online to list all, offline or online CPUs
|
||||||
- supports s390 topology description (polarization, books, ...)
|
- supports s390 topology description (polarization, books, ...)
|
||||||
partx(8):
|
partx(8):
|
||||||
- supports partitioned loop devices
|
- supports partitioned loop devices
|
||||||
wipefs(8):
|
wipefs(8):
|
||||||
- allows to zap partition tables
|
- allows to zap partition tables
|
||||||
- supports new command line option "--type <list>" to wipe only
|
- supports new command line option "--type <list>" to wipe only
|
||||||
@ -1377,7 +1424,7 @@ Wed Nov 9 08:27:17 UTC 2011 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 8 09:36:41 UTC 2011 - puzel@suse.com
|
Tue Nov 8 09:36:41 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- add fsck-use-FS-blacklist-for-non-all-mode-too.patch (bnc#728645)
|
- add fsck-use-FS-blacklist-for-non-all-mode-too.patch (bnc#728645)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 2 09:37:12 UTC 2011 - puzel@suse.com
|
Wed Nov 2 09:37:12 UTC 2011 - puzel@suse.com
|
||||||
@ -1388,7 +1435,7 @@ Wed Nov 2 09:37:12 UTC 2011 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 20 13:01:22 UTC 2011 - puzel@suse.com
|
Thu Oct 20 13:01:22 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- update to util-linux-2.20.1
|
- update to util-linux-2.20.1
|
||||||
- bugfix release
|
- bugfix release
|
||||||
- drop patches (in upstream):
|
- drop patches (in upstream):
|
||||||
- util-linux-sfdisk-manpage-fix.patch
|
- util-linux-sfdisk-manpage-fix.patch
|
||||||
@ -1398,7 +1445,7 @@ Thu Oct 20 13:01:22 UTC 2011 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 12 09:26:40 UTC 2011 - puzel@suse.com
|
Wed Oct 12 09:26:40 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- add fdisk-dont-shorten-long-path-to-disk.patch (bnc#722959)
|
- add fdisk-dont-shorten-long-path-to-disk.patch (bnc#722959)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 4 11:32:11 UTC 2011 - uli@suse.com
|
Tue Oct 4 11:32:11 UTC 2011 - uli@suse.com
|
||||||
@ -1411,12 +1458,12 @@ Tue Oct 4 11:32:11 UTC 2011 - uli@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 13 09:10:43 UTC 2011 - puzel@suse.com
|
Tue Sep 13 09:10:43 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- add util-linux-lib-sysfs-deinit.patch (bnc#714151)
|
- add util-linux-lib-sysfs-deinit.patch (bnc#714151)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 29 14:57:57 UTC 2011 - puzel@suse.com
|
Mon Aug 29 14:57:57 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- update to util-linux-2.20
|
- update to util-linux-2.20
|
||||||
- cleanups, bugfixes
|
- cleanups, bugfixes
|
||||||
- build with --enable-ddate
|
- build with --enable-ddate
|
||||||
- add util-linux-sfdisk-manpage-fix.patch
|
- add util-linux-sfdisk-manpage-fix.patch
|
||||||
@ -1429,7 +1476,7 @@ Thu Aug 25 14:12:15 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 17 10:37:20 UTC 2011 - puzel@novell.com
|
Wed Aug 17 10:37:20 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.20-rc2
|
- update to util-linux-2.20-rc2
|
||||||
- bugfixes
|
- bugfixes
|
||||||
- drop patches:
|
- drop patches:
|
||||||
- util-linux-fix-manpages.patch
|
- util-linux-fix-manpages.patch
|
||||||
@ -1441,22 +1488,22 @@ Wed Aug 17 10:37:20 UTC 2011 - puzel@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 10 13:42:33 UTC 2011 - puzel@novell.com
|
Wed Aug 10 13:42:33 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-2.20-rc1-hexdump-segfault.patch (bnc#710877)
|
- add util-linux-2.20-rc1-hexdump-segfault.patch (bnc#710877)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 10 12:20:41 UTC 2011 - puzel@novell.com
|
Wed Aug 10 12:20:41 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-2.20-rc-fix-dmesg.patch (bnc#710417)
|
- add util-linux-2.20-rc-fix-dmesg.patch (bnc#710417)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 10 11:06:15 UTC 2011 - puzel@novell.com
|
Wed Aug 10 11:06:15 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-2.20-rc1-agetty-fixes.patch (bnc#711240)
|
- add util-linux-2.20-rc1-agetty-fixes.patch (bnc#711240)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 1 13:44:21 UTC 2011 - puzel@novell.com
|
Mon Aug 1 13:44:21 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.20-rc1
|
- update to util-linux-2.20-rc1
|
||||||
- Release highlights
|
- Release highlights
|
||||||
agetty(8):
|
agetty(8):
|
||||||
- mingetty features have been merged to agetty
|
- mingetty features have been merged to agetty
|
||||||
@ -1486,7 +1533,7 @@ Mon Aug 1 13:44:21 UTC 2011 - puzel@novell.com
|
|||||||
- supports real-time signals in formats RT<n>, RTMIN+<n> and
|
- supports real-time signals in formats RT<n>, RTMIN+<n> and
|
||||||
RTMAX-<n>
|
RTMAX-<n>
|
||||||
lsblk(8):
|
lsblk(8):
|
||||||
- supports new columns
|
- supports new columns
|
||||||
- supports new command line option "-D" to print device discard
|
- supports new command line option "-D" to print device discard
|
||||||
topology
|
topology
|
||||||
lscpu(8):
|
lscpu(8):
|
||||||
@ -1508,7 +1555,7 @@ Tue May 3 09:39:37 UTC 2011 - puzel@novell.com
|
|||||||
- update to util-linux-2.19.1
|
- update to util-linux-2.19.1
|
||||||
- numerous bugfixes, including (bnc#690486 and bnc#690488)
|
- numerous bugfixes, including (bnc#690486 and bnc#690488)
|
||||||
- drop umount-by-imgname.patch (merged upstream)
|
- drop umount-by-imgname.patch (merged upstream)
|
||||||
- cleanup: do not register ipc.info.gz (not provided by
|
- cleanup: do not register ipc.info.gz (not provided by
|
||||||
this package)
|
this package)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -1520,12 +1567,12 @@ Thu Apr 14 16:27:27 UTC 2011 - puzel@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 21 16:28:38 UTC 2011 - puzel@novell.com
|
Mon Feb 21 16:28:38 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add umount-by-imgname.patch (bnc#666161)
|
- add umount-by-imgname.patch (bnc#666161)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 10 11:01:40 UTC 2011 - puzel@novell.com
|
Thu Feb 10 11:01:40 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.19
|
- update to util-linux-2.19
|
||||||
- uuid fixes
|
- uuid fixes
|
||||||
- cleanups, documentation and translation updates
|
- cleanups, documentation and translation updates
|
||||||
- drop util-linux-2.19-rc1-loop-offset.diff (fixed in upstream, by
|
- drop util-linux-2.19-rc1-loop-offset.diff (fixed in upstream, by
|
||||||
@ -1556,7 +1603,7 @@ Tue Jan 18 09:47:11 UTC 2011 - bwiedemann@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.19-rc1
|
- update to util-linux-2.19-rc1
|
||||||
- important changes:
|
- important changes:
|
||||||
* lsblk(8):
|
* lsblk(8):
|
||||||
- this NEW COMMAND lists information about all or selected block
|
- this NEW COMMAND lists information about all or selected block
|
||||||
@ -1585,7 +1632,7 @@ Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
|||||||
* fsck(8):
|
* fsck(8):
|
||||||
- supports new command line option "-l" to lock whole-disk device
|
- supports new command line option "-l" to lock whole-disk device
|
||||||
by exclusive flock(2). This option is recommended when more
|
by exclusive flock(2). This option is recommended when more
|
||||||
fsck(8) instances are executed in the same time.
|
fsck(8) instances are executed in the same time.
|
||||||
* rtcwake(8):
|
* rtcwake(8):
|
||||||
- supports new mode "show" to print the current RTC alarm time
|
- supports new mode "show" to print the current RTC alarm time
|
||||||
* fstrim(8):
|
* fstrim(8):
|
||||||
@ -1600,7 +1647,7 @@ Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
|||||||
- util-linux-agetty-s-option.patch
|
- util-linux-agetty-s-option.patch
|
||||||
- util-linux-fsck-l-option.patch
|
- util-linux-fsck-l-option.patch
|
||||||
- util-linux-2.18-no-canonicalize-fix.patch
|
- util-linux-2.18-no-canonicalize-fix.patch
|
||||||
- util-linux-swapon-canonicalize-swap-device.patch
|
- util-linux-swapon-canonicalize-swap-device.patch
|
||||||
- fix uuidd Summary and Description
|
- fix uuidd Summary and Description
|
||||||
- build with --enable-libmount-mount (new option)
|
- build with --enable-libmount-mount (new option)
|
||||||
- use set_permissions macros
|
- use set_permissions macros
|
||||||
@ -1626,12 +1673,12 @@ Thu Dec 2 15:23:36 CET 2010 - mszeredi@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 12:19:53 UTC 2010 - puzel@novell.com
|
Tue Nov 30 12:19:53 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- update util-linux-2.17.1-mount_losetup_crypto.patch (bnc#655804)
|
- update util-linux-2.17.1-mount_losetup_crypto.patch (bnc#655804)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 26 19:10:27 CET 2010 - kay.sievers@novell.com
|
Fri Nov 26 19:10:27 CET 2010 - kay.sievers@novell.com
|
||||||
|
|
||||||
- add Provides: fsck-with-dev-lock
|
- add Provides: fsck-with-dev-lock
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 25 13:37:43 CET 2010 - kay.sievers@novell.com
|
Thu Nov 25 13:37:43 CET 2010 - kay.sievers@novell.com
|
||||||
@ -1641,7 +1688,7 @@ Thu Nov 25 13:37:43 CET 2010 - kay.sievers@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 16 16:08:48 UTC 2010 - cristian.rodriguez@opensuse.org
|
Tue Nov 16 16:08:48 UTC 2010 - cristian.rodriguez@opensuse.org
|
||||||
|
|
||||||
- disable silent rules
|
- disable silent rules
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 11 10:36:35 CET 2010 - kay.sievers@novell.com
|
Thu Nov 11 10:36:35 CET 2010 - kay.sievers@novell.com
|
||||||
@ -1667,7 +1714,7 @@ Fri Jul 9 06:23:27 UTC 2010 - puzel@novell.com
|
|||||||
- full release notes:
|
- full release notes:
|
||||||
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.18/v2.18-ReleaseNotes
|
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.18/v2.18-ReleaseNotes
|
||||||
- update to adjtimex-1.28
|
- update to adjtimex-1.28
|
||||||
- update to which-2.20
|
- update to which-2.20
|
||||||
- drop util-linux-2.14.1-mount_skip_sync.patch (fixed upstream)
|
- drop util-linux-2.14.1-mount_skip_sync.patch (fixed upstream)
|
||||||
- drop util-linux-addpart-use-atoll.patch (fixed upstream)
|
- drop util-linux-addpart-use-atoll.patch (fixed upstream)
|
||||||
- drop util-linux-mount-detect-ro-mount.patch (fixed upstream)
|
- drop util-linux-mount-detect-ro-mount.patch (fixed upstream)
|
||||||
@ -1692,24 +1739,24 @@ Tue Jun 22 16:48:29 UTC 2010 - bg@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 1 14:23:23 UTC 2010 - puzel@novell.com
|
Tue Jun 1 14:23:23 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- do not run uuidd as root, but uuidd:uuidd (bnc#604168)
|
- do not run uuidd as root, but uuidd:uuidd (bnc#604168)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 28 13:24:43 UTC 2010 - puzel@novell.com
|
Fri May 28 13:24:43 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-mount-detect-ro-mount.patch (bnc#481123)
|
- add util-linux-mount-detect-ro-mount.patch (bnc#481123)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 11 13:58:49 UTC 2010 - puzel@novell.com
|
Tue May 11 13:58:49 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-addpart-use-atoll.patch (bnc#603328)
|
- add util-linux-addpart-use-atoll.patch (bnc#603328)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 6 13:22:37 UTC 2010 - hvogel@novell.com
|
Tue Apr 6 13:22:37 UTC 2010 - hvogel@novell.com
|
||||||
|
|
||||||
- update to version 2.17.2
|
- update to version 2.17.2
|
||||||
- fix small typo in v2.17.1-ReleaseNotes
|
- fix small typo in v2.17.1-ReleaseNotes
|
||||||
- fix -b <sectorsize> fdisk
|
- fix -b <sectorsize> fdisk
|
||||||
- fix typo in ionice
|
- fix typo in ionice
|
||||||
- fix display of device size, fix infinite loop when probe chain
|
- fix display of device size, fix infinite loop when probe chain
|
||||||
bails out early, more robust minix probing, remove "0x" prefix
|
bails out early, more robust minix probing, remove "0x" prefix
|
||||||
@ -1721,7 +1768,7 @@ Tue Apr 6 13:22:37 UTC 2010 - hvogel@novell.com
|
|||||||
/etc/filesystems in mount
|
/etc/filesystems in mount
|
||||||
- update ja.po, pl.po, update vi.po
|
- update ja.po, pl.po, update vi.po
|
||||||
- remove " (deleted)" from filenames from /proc/swaps
|
- remove " (deleted)" from filenames from /proc/swaps
|
||||||
- cleanup usage() and man page of wipefs
|
- cleanup usage() and man page of wipefs
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 10 23:11:42 CET 2010 - jeffm@suse.de
|
Wed Mar 10 23:11:42 CET 2010 - jeffm@suse.de
|
||||||
@ -1770,7 +1817,7 @@ Sun Nov 15 14:04:48 CET 2009 - meissner@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 26 17:45:53 UTC 2009 - crrodriguez@opensuse.org
|
Mon Oct 26 17:45:53 UTC 2009 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- fsck during boot up fails with Too many open files [bnc#503008]
|
- fsck during boot up fails with Too many open files [bnc#503008]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 20 12:14:24 CEST 2009 - dmueller@suse.de
|
Tue Oct 20 12:14:24 CEST 2009 - dmueller@suse.de
|
||||||
@ -1787,7 +1834,7 @@ Tue Sep 29 12:58:37 UTC 2009 - hvogel@novell.com
|
|||||||
|
|
||||||
- finaly remove the mount mtab locking patch:
|
- finaly remove the mount mtab locking patch:
|
||||||
* util-linux-2.14.1-mount_race.patch
|
* util-linux-2.14.1-mount_race.patch
|
||||||
It causes too much regressions.
|
It causes too much regressions.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 13 14:21:07 CEST 2009 - kay.sievers@novell.com
|
Mon Jul 13 14:21:07 CEST 2009 - kay.sievers@novell.com
|
||||||
@ -1837,7 +1884,7 @@ Thu Apr 16 14:55:22 CEST 2009 - werner@suse.de
|
|||||||
Mon Feb 16 12:35:00 CET 2009 - mkoenig@suse.de
|
Mon Feb 16 12:35:00 CET 2009 - mkoenig@suse.de
|
||||||
|
|
||||||
- remove util-linux-2.14.1-fdisk_cylinder.patch
|
- remove util-linux-2.14.1-fdisk_cylinder.patch
|
||||||
fixed upstream
|
fixed upstream
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 12 17:12:28 CET 2009 - mkoenig@suse.de
|
Thu Feb 12 17:12:28 CET 2009 - mkoenig@suse.de
|
||||||
@ -1886,13 +1933,13 @@ Sat Feb 7 18:28:58 CET 2009 - schwab@suse.de
|
|||||||
Wed Jan 7 15:42:38 CET 2009 - mkoenig@suse.de
|
Wed Jan 7 15:42:38 CET 2009 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix locking problem for external mount helpers when type
|
- fix locking problem for external mount helpers when type
|
||||||
is not given [bnc#459839]
|
is not given [bnc#459839]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 2 12:23:37 CET 2008 - mkoenig@suse.de
|
Tue Dec 2 12:23:37 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- raw: do not stat the raw devices when binding, since they
|
- raw: do not stat the raw devices when binding, since they
|
||||||
are created dynamically [bnc#450675]
|
are created dynamically [bnc#450675]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 27 01:27:19 CET 2008 - dmueller@suse.de
|
Thu Nov 27 01:27:19 CET 2008 - dmueller@suse.de
|
||||||
@ -1903,7 +1950,7 @@ Thu Nov 27 01:27:19 CET 2008 - dmueller@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 24 15:24:11 CET 2008 - mkoenig@suse.de
|
Mon Nov 24 15:24:11 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- mount: fix locking patch to not break -n [bnc#447937]
|
- mount: fix locking patch to not break -n [bnc#447937]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 20 18:08:33 CET 2008 - mkoenig@suse.de
|
Thu Nov 20 18:08:33 CET 2008 - mkoenig@suse.de
|
||||||
@ -1921,7 +1968,7 @@ Fri Nov 7 14:50:00 CET 2008 - mkoenig@suse.de
|
|||||||
|
|
||||||
- fdisk: support +cylinder notation [bnc#441871]
|
- fdisk: support +cylinder notation [bnc#441871]
|
||||||
- check for EACCES when using ro fallback when loop mounting
|
- check for EACCES when using ro fallback when loop mounting
|
||||||
a readonly image
|
a readonly image
|
||||||
- fix uninitialized variable in swapon pagesize detection
|
- fix uninitialized variable in swapon pagesize detection
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -1950,7 +1997,7 @@ Wed Sep 24 11:28:07 CEST 2008 - mkoenig@suse.de
|
|||||||
|
|
||||||
- add new tool /bin/hypervisor for x86, x86_64
|
- add new tool /bin/hypervisor for x86, x86_64
|
||||||
from Ky Srinivasan <ksrinivasan@novell.com>
|
from Ky Srinivasan <ksrinivasan@novell.com>
|
||||||
to detect the presence of a hypervisor [fate#303051]
|
to detect the presence of a hypervisor [fate#303051]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 10 15:58:52 CEST 2008 - mkoenig@suse.de
|
Wed Sep 10 15:58:52 CEST 2008 - mkoenig@suse.de
|
||||||
@ -1968,7 +2015,7 @@ Wed Sep 10 15:58:52 CEST 2008 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 20 15:20:06 CEST 2008 - mkoenig@suse.de
|
Wed Aug 20 15:20:06 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- enable SELinux support [fate#303662]
|
- enable SELinux support [fate#303662]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 18 18:13:10 CEST 2008 - mrueckert@suse.de
|
Mon Aug 18 18:13:10 CEST 2008 - mrueckert@suse.de
|
||||||
@ -1978,7 +2025,7 @@ Mon Aug 18 18:13:10 CEST 2008 - mrueckert@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 18 12:36:39 CEST 2008 - mkoenig@suse.de
|
Mon Aug 18 12:36:39 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- raw: fix init script tags
|
- raw: fix init script tags
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 7 15:13:24 CEST 2008 - mkoenig@suse.de
|
Mon Jul 7 15:13:24 CEST 2008 - mkoenig@suse.de
|
||||||
@ -1987,7 +2034,7 @@ Mon Jul 7 15:13:24 CEST 2008 - mkoenig@suse.de
|
|||||||
* Upgraded code from bash to version 3.2. This DOES has influence
|
* Upgraded code from bash to version 3.2. This DOES has influence
|
||||||
on how Which behaves under certain circumstances.
|
on how Which behaves under certain circumstances.
|
||||||
* When the environment variable HOME is not set, the home directory
|
* When the environment variable HOME is not set, the home directory
|
||||||
is now read from /etc/passwd or set to '/' if no home directory
|
is now read from /etc/passwd or set to '/' if no home directory
|
||||||
could be found (this now matches the tilde lib used in bash)
|
could be found (this now matches the tilde lib used in bash)
|
||||||
* Changed the license to GPLv3
|
* Changed the license to GPLv3
|
||||||
* Add support for shells that output '{' on the same line as the
|
* Add support for shells that output '{' on the same line as the
|
||||||
@ -1999,7 +2046,7 @@ Wed Jul 2 15:47:08 CEST 2008 - mkoenig@suse.de
|
|||||||
|
|
||||||
- replace util-linux-2.14-mount_ignore_ENXIO_in_del_loop.patch
|
- replace util-linux-2.14-mount_ignore_ENXIO_in_del_loop.patch
|
||||||
with upstream version
|
with upstream version
|
||||||
util-linux-2.14-loop_autoclear.patch
|
util-linux-2.14-loop_autoclear.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 27 17:05:46 CEST 2008 - schwab@suse.de
|
Fri Jun 27 17:05:46 CEST 2008 - schwab@suse.de
|
||||||
@ -2009,7 +2056,7 @@ Fri Jun 27 17:05:46 CEST 2008 - schwab@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 25 14:26:49 CEST 2008 - mkoenig@suse.de
|
Wed Jun 25 14:26:49 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to version 2.14
|
- update to version 2.14
|
||||||
most important changes:
|
most important changes:
|
||||||
* new command ldattach
|
* new command ldattach
|
||||||
mount:
|
mount:
|
||||||
@ -2059,18 +2106,18 @@ Sun Mar 23 11:13:13 CET 2008 - coolo@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 13 10:21:42 CET 2008 - bg@suse.de
|
Wed Feb 13 10:21:42 CET 2008 - bg@suse.de
|
||||||
|
|
||||||
- don't try to package parisc*.8 manual pages
|
- don't try to package parisc*.8 manual pages
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 11 17:49:04 CET 2008 - mkoenig@suse.de
|
Mon Feb 11 17:49:04 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to version 2.13.1 again
|
- update to version 2.13.1 again
|
||||||
- fix broken util-linux-2.13.1-getfs_fix.patch
|
- fix broken util-linux-2.13.1-getfs_fix.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 10 18:11:07 CET 2008 - lrupp@suse.de
|
Sun Feb 10 18:11:07 CET 2008 - lrupp@suse.de
|
||||||
|
|
||||||
- revert to 2.13.0.1+git20071121
|
- revert to 2.13.0.1+git20071121
|
||||||
breaks current 'mount' call in Buildservice
|
breaks current 'mount' call in Buildservice
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2093,7 +2140,7 @@ Thu Feb 7 12:41:25 CET 2008 - mkoenig@suse.de
|
|||||||
- mount: fix problem with device canonicalization when using
|
- mount: fix problem with device canonicalization when using
|
||||||
persistent name in fstab but call mount with real bd name
|
persistent name in fstab but call mount with real bd name
|
||||||
- patches merged:
|
- patches merged:
|
||||||
util-linux-2.13-mount_fd_leak.patch
|
util-linux-2.13-mount_fd_leak.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 18 15:55:19 CET 2007 - mkoenig@suse.de
|
Tue Dec 18 15:55:19 CET 2007 - mkoenig@suse.de
|
||||||
@ -2104,7 +2151,7 @@ Tue Dec 18 15:55:19 CET 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 3 11:03:57 CET 2007 - ro@suse.de
|
Mon Dec 3 11:03:57 CET 2007 - ro@suse.de
|
||||||
|
|
||||||
- remove "arch", in coreutils now
|
- remove "arch", in coreutils now
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 29 17:51:17 CET 2007 - lnussel@suse.de
|
Thu Nov 29 17:51:17 CET 2007 - lnussel@suse.de
|
||||||
@ -2127,16 +2174,16 @@ Wed Nov 21 13:43:31 CET 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 20 17:49:35 CET 2007 - mkoenig@suse.de
|
Tue Nov 20 17:49:35 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix raw path in init script
|
- fix raw path in init script
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 6 16:11:02 CET 2007 - mkoenig@suse.de
|
Tue Nov 6 16:11:02 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to 2.13.0.1+git20071106
|
- update to 2.13.0.1+git20071106
|
||||||
- prevent loop mounting the same file twice [#240653]
|
- prevent loop mounting the same file twice [#240653]
|
||||||
- merged upstream:
|
- merged upstream:
|
||||||
util-linux-2.13-mount_helper_fix.patch
|
util-linux-2.13-mount_helper_fix.patch
|
||||||
util-linux-2.13-hwclock_rtc_option.patch
|
util-linux-2.13-hwclock_rtc_option.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 4 22:24:04 CEST 2007 - bg@suse.de
|
Thu Oct 4 22:24:04 CEST 2007 - bg@suse.de
|
||||||
@ -2152,7 +2199,7 @@ Mon Oct 1 17:08:06 CEST 2007 - mkoenig@suse.de
|
|||||||
util-linux-2.13-loop.patch
|
util-linux-2.13-loop.patch
|
||||||
util-linux-2.13-mount_create_mtab.patch
|
util-linux-2.13-mount_create_mtab.patch
|
||||||
util-linux-2.13-schedutils_error_handling.patch
|
util-linux-2.13-schedutils_error_handling.patch
|
||||||
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
||||||
- fix hwclock --rtc option [#326106]
|
- fix hwclock --rtc option [#326106]
|
||||||
- fix setuid/setgid mixup and error checking [#327022]
|
- fix setuid/setgid mixup and error checking [#327022]
|
||||||
|
|
||||||
@ -2160,12 +2207,12 @@ Mon Oct 1 17:08:06 CEST 2007 - mkoenig@suse.de
|
|||||||
Fri Sep 14 11:24:33 CEST 2007 - mkoenig@suse.de
|
Fri Sep 14 11:24:33 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- link cfdisk against libncursesw instead libncurses to fix
|
- link cfdisk against libncursesw instead libncurses to fix
|
||||||
broken utf-8 characters [#307353]
|
broken utf-8 characters [#307353]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 29 12:22:21 CEST 2007 - mkoenig@suse.de
|
Wed Aug 29 12:22:21 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix fd leaks in previous patch
|
- fix fd leaks in previous patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 28 16:42:04 CEST 2007 - lnussel@suse.de
|
Tue Aug 28 16:42:04 CEST 2007 - lnussel@suse.de
|
||||||
@ -2177,20 +2224,20 @@ Tue Aug 28 16:42:04 CEST 2007 - lnussel@suse.de
|
|||||||
Fri Aug 24 14:09:19 CEST 2007 - mkoenig@suse.de
|
Fri Aug 24 14:09:19 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- avoid duplicates of root fs if defined with LABEL in fstab
|
- avoid duplicates of root fs if defined with LABEL in fstab
|
||||||
[#297959]
|
[#297959]
|
||||||
- fix ionice error handling [#301675]
|
- fix ionice error handling [#301675]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 16 18:34:30 CEST 2007 - ssommer@suse.de
|
Thu Aug 16 18:34:30 CEST 2007 - ssommer@suse.de
|
||||||
|
|
||||||
- free loop devices when mount fails [#297172]
|
- free loop devices when mount fails [#297172]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jul 25 18:43:42 CEST 2007 - mkoenig@suse.de
|
Wed Jul 25 18:43:42 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to git20070725
|
- update to git20070725
|
||||||
- removed patches (merged upstream):
|
- removed patches (merged upstream):
|
||||||
util-linux-2.12r-mount_mount.8_xfs_update.patch
|
util-linux-2.12r-mount_mount.8_xfs_update.patch
|
||||||
util-linux-2.12r-sys_utils_readprofile_mapfile.patch
|
util-linux-2.12r-sys_utils_readprofile_mapfile.patch
|
||||||
util-linux-2.12r-disk_utils_mkswap_fix.patch
|
util-linux-2.12r-disk_utils_mkswap_fix.patch
|
||||||
util-linux-2.13-schedutils_ionice_idle.patch
|
util-linux-2.13-schedutils_ionice_idle.patch
|
||||||
@ -2199,8 +2246,8 @@ Wed Jul 25 18:43:42 CEST 2007 - mkoenig@suse.de
|
|||||||
Tue Jul 17 10:44:18 CEST 2007 - mkoenig@suse.de
|
Tue Jul 17 10:44:18 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- updated to version 2.13-rc2:
|
- updated to version 2.13-rc2:
|
||||||
* add wakertc
|
* add wakertc
|
||||||
- cleanup ionice usage [#270251]
|
- cleanup ionice usage [#270251]
|
||||||
- enable hwclock audit support [#280113]
|
- enable hwclock audit support [#280113]
|
||||||
- removed patches (merged/fixed upstream)
|
- removed patches (merged/fixed upstream)
|
||||||
util-linux-login_utils_wall.patch
|
util-linux-login_utils_wall.patch
|
||||||
@ -2221,17 +2268,17 @@ Fri Jul 13 12:31:56 CEST 2007 - mkoenig@suse.de
|
|||||||
util-linux-2.11z-hwclock_geteuid.patch
|
util-linux-2.11z-hwclock_geteuid.patch
|
||||||
it is intentional that suid hwclock capabilities are limited
|
it is intentional that suid hwclock capabilities are limited
|
||||||
- removed patch (fixed upstream)
|
- removed patch (fixed upstream)
|
||||||
util-linux-2.12q-mount_--move.patch
|
util-linux-2.12q-mount_--move.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 9 11:34:33 CEST 2007 - mkoenig@suse.de
|
Mon Jul 9 11:34:33 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- add libuuid-devel to BuildRequires to let mkswap use UUIDs
|
- add libuuid-devel to BuildRequires to let mkswap use UUIDs
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jul 5 16:08:58 CEST 2007 - mkoenig@suse.de
|
Thu Jul 5 16:08:58 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- use %config(noreplace) for /etc/filesystems
|
- use %config(noreplace) for /etc/filesystems
|
||||||
- Keep rdev stuff for x86_64
|
- Keep rdev stuff for x86_64
|
||||||
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
||||||
- removed patches (merged upstream)
|
- removed patches (merged upstream)
|
||||||
@ -2264,21 +2311,21 @@ Thu Jun 21 14:50:58 CEST 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 14 10:52:25 CEST 2007 - mkoenig@suse.de
|
Thu Jun 14 10:52:25 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- mkzimage_cmdline: activate commandline if used with -s [#279935]
|
- mkzimage_cmdline: activate commandline if used with -s [#279935]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 13 12:33:59 CEST 2007 - mkoenig@suse.de
|
Wed Jun 13 12:33:59 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- schedutils: let chrt accept pid 0 for current process and
|
- schedutils: let chrt accept pid 0 for current process and
|
||||||
fix some documentation bugs [#266879]
|
fix some documentation bugs [#266879]
|
||||||
util-linux-2.13-schedutils_chrt.patch
|
util-linux-2.13-schedutils_chrt.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 6 16:15:43 CEST 2007 - mkoenig@suse.de
|
Wed Jun 6 16:15:43 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to git20070530
|
- update to git20070530
|
||||||
- removed patches
|
- removed patches
|
||||||
util-linux-2.13-mount_volume_id.patch
|
util-linux-2.13-mount_volume_id.patch
|
||||||
util-linux-2.12r-mount_by_uuid.patch
|
util-linux-2.12r-mount_by_uuid.patch
|
||||||
util-linux-2.13-build_gnu_source.patch
|
util-linux-2.13-build_gnu_source.patch
|
||||||
- fix build with ncurses
|
- fix build with ncurses
|
||||||
@ -2323,7 +2370,7 @@ Mon Apr 23 16:49:00 CEST 2007 - mkoenig@suse.de
|
|||||||
|
|
||||||
- update to git20070412
|
- update to git20070412
|
||||||
- remove chkdupexe and scriptreplay to get rid of the
|
- remove chkdupexe and scriptreplay to get rid of the
|
||||||
perl dependency [#265757]
|
perl dependency [#265757]
|
||||||
util-linux-2.13-build_no_perl_dependency.patch
|
util-linux-2.13-build_no_perl_dependency.patch
|
||||||
- upstream integration of umount helper support [#252089]
|
- upstream integration of umount helper support [#252089]
|
||||||
- merged patches:
|
- merged patches:
|
||||||
@ -2341,9 +2388,9 @@ Tue Apr 10 17:25:34 CEST 2007 - mkoenig@suse.de
|
|||||||
|
|
||||||
- update to version git20070330 of new forked development tree
|
- update to version git20070330 of new forked development tree
|
||||||
- removed Suse crypto patches for losetup [FATE#302001]
|
- removed Suse crypto patches for losetup [FATE#302001]
|
||||||
- removed binaries:
|
- removed binaries:
|
||||||
/bin/guessfstype
|
/bin/guessfstype
|
||||||
/sbin/sln
|
/sbin/sln
|
||||||
/usr/bin/setfdprm
|
/usr/bin/setfdprm
|
||||||
- removed obsolete patches:
|
- removed obsolete patches:
|
||||||
* guessfstype2.patch
|
* guessfstype2.patch
|
||||||
@ -2382,7 +2429,7 @@ Tue Apr 10 17:25:34 CEST 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 4 12:55:40 CEST 2007 - mkoenig@suse.de
|
Wed Apr 4 12:55:40 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- add Supplements line [FATE#301966]
|
- add Supplements line [FATE#301966]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 26 15:49:09 CEST 2007 - rguenther@suse.de
|
Mon Mar 26 15:49:09 CEST 2007 - rguenther@suse.de
|
||||||
@ -2392,13 +2439,13 @@ Mon Mar 26 15:49:09 CEST 2007 - rguenther@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 17:24:34 CET 2007 - mkoenig@suse.de
|
Thu Mar 15 17:24:34 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- mount: Let swapon automatically reinitialize a suspended
|
- mount: Let swapon automatically reinitialize a suspended
|
||||||
swap partition [#254437]
|
swap partition [#254437]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 9 11:00:11 CET 2007 - mkoenig@suse.de
|
Thu Mar 9 11:00:11 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- mount: fix mtablock patch to avoid mtab corruption [#226783]
|
- mount: fix mtablock patch to avoid mtab corruption [#226783]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 8 17:27:22 CET 2007 - mkoenig@suse.de
|
Thu Mar 8 17:27:22 CET 2007 - mkoenig@suse.de
|
||||||
@ -2413,8 +2460,8 @@ Wed Mar 7 16:58:08 CET 2007 - rguenther@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 27 10:58:46 CET 2007 - mkoenig@suse.de
|
Tue Feb 27 10:58:46 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix missing return code in
|
- fix missing return code in
|
||||||
util-linux-2.12r-losetup_password.patch
|
util-linux-2.12r-losetup_password.patch
|
||||||
- mount: fix race condition in mount -o loop [#242750]
|
- mount: fix race condition in mount -o loop [#242750]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2430,7 +2477,7 @@ Fri Feb 2 13:27:31 CET 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 31 12:06:55 CET 2007 - mkoenig@suse.de
|
Wed Jan 31 12:06:55 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- let mkfs tools open with O_EXCL [#238687]
|
- let mkfs tools open with O_EXCL [#238687]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 12 11:04:07 CET 2006 - mkoenig@suse.de
|
Tue Dec 12 11:04:07 CET 2006 - mkoenig@suse.de
|
||||||
@ -2451,14 +2498,14 @@ Tue Dec 5 18:13:32 CET 2006 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 7 13:09:45 CET 2006 - mkoenig@suse.de
|
Tue Nov 7 13:09:45 CET 2006 - mkoenig@suse.de
|
||||||
|
|
||||||
- enable partx [#214992]
|
- enable partx [#214992]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 18:17:42 CEST 2006 - mkoenig@suse.de
|
Tue Oct 10 18:17:42 CEST 2006 - mkoenig@suse.de
|
||||||
|
|
||||||
- Round up partition end LBA to a cylinder boundary during
|
- Round up partition end LBA to a cylinder boundary during
|
||||||
add_partition() [#174892]
|
add_partition() [#174892]
|
||||||
- Fix readprofile on ppc64 [#179122]
|
- Fix readprofile on ppc64 [#179122]
|
||||||
- Fix cal formatting bug [#203469]
|
- Fix cal formatting bug [#203469]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2470,7 +2517,7 @@ Mon Oct 9 12:27:33 CEST 2006 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 21 12:10:01 CEST 2006 - mkoenig@suse.de
|
Mon Aug 21 12:10:01 CEST 2006 - mkoenig@suse.de
|
||||||
|
|
||||||
- Added sysfs to list of filesystems not to unmount with
|
- Added sysfs to list of filesystems not to unmount with
|
||||||
umount -a, resolves #190385
|
umount -a, resolves #190385
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2571,14 +2618,14 @@ Wed Feb 1 03:58:58 CET 2006 - olh@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 1 02:20:17 CET 2006 - ro@suse.de
|
Wed Feb 1 02:20:17 CET 2006 - ro@suse.de
|
||||||
|
|
||||||
- fix typo in previous change, binary negation is "~"
|
- fix typo in previous change, binary negation is "~"
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 27 13:02:36 CET 2006 - sscheler@suse.de
|
Fri Jan 27 13:02:36 CET 2006 - sscheler@suse.de
|
||||||
|
|
||||||
- fixed mount hotplug option (#143352). now we don't send the
|
- fixed mount hotplug option (#143352). now we don't send the
|
||||||
MS_HOTPLUG flag to the kernel any longer, because the kernel
|
MS_HOTPLUG flag to the kernel any longer, because the kernel
|
||||||
doesn't know this option (EINVAL) and actually doesn't need to
|
doesn't know this option (EINVAL) and actually doesn't need to
|
||||||
know about it.
|
know about it.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -3222,7 +3269,7 @@ Mon Oct 13 21:44:43 CEST 2003 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 11:31:14 CEST 2003 - kukuk@suse.de
|
Thu Oct 2 11:31:14 CEST 2003 - kukuk@suse.de
|
||||||
|
|
||||||
- Fix compiling with kernel 2.6.0-test6 header files
|
- Fix compiling with kernel 2.6.0-test6 header files
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 12 15:27:20 CEST 2003 - mmj@suse.de
|
Tue Aug 12 15:27:20 CEST 2003 - mmj@suse.de
|
||||||
@ -3291,7 +3338,7 @@ Mon Mar 3 16:19:04 CET 2003 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 3 12:27:01 CET 2003 - ro@suse.de
|
Mon Mar 3 12:27:01 CET 2003 - ro@suse.de
|
||||||
|
|
||||||
- add missing info dir entries
|
- add missing info dir entries
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 18 14:29:45 CET 2003 - agruen@suse.de
|
Tue Feb 18 14:29:45 CET 2003 - agruen@suse.de
|
||||||
@ -3323,7 +3370,7 @@ Fri Feb 7 01:30:53 CET 2003 - ro@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 4 22:34:10 CET 2003 - ro@suse.de
|
Tue Feb 4 22:34:10 CET 2003 - ro@suse.de
|
||||||
|
|
||||||
- don't package /bin/kill (part of coreutils now)
|
- don't package /bin/kill (part of coreutils now)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 4 12:40:00 CET 2003 - meissner@suse.de
|
Tue Feb 4 12:40:00 CET 2003 - meissner@suse.de
|
||||||
@ -3383,7 +3430,7 @@ Wed Nov 27 11:01:52 CET 2002 - mmj@suse.de
|
|||||||
o fdisk,cfdisk: cosmetic fixes
|
o fdisk,cfdisk: cosmetic fixes
|
||||||
o mount,umount: fix LABEL= handling for non-root [#17322]
|
o mount,umount: fix LABEL= handling for non-root [#17322]
|
||||||
o more: kill external help file
|
o more: kill external help file
|
||||||
o simpleinit: security: refuse initctl_fd if setting FD_CLOEXEC
|
o simpleinit: security: refuse initctl_fd if setting FD_CLOEXEC
|
||||||
fails (patch we had, now folded upstream)
|
fails (patch we had, now folded upstream)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -3421,7 +3468,7 @@ Thu Oct 31 14:59:11 CET 2002 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 31 00:40:09 CET 2002 - ro@suse.de
|
Thu Oct 31 00:40:09 CET 2002 - ro@suse.de
|
||||||
|
|
||||||
- hack time to build on alpha
|
- hack time to build on alpha
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 22 16:13:36 CEST 2002 - mmj@suse.de
|
Tue Oct 22 16:13:36 CEST 2002 - mmj@suse.de
|
||||||
@ -3565,7 +3612,7 @@ Mon Jul 8 21:16:07 CEST 2002 - mmj@suse.de
|
|||||||
* fdformat: remove test on major
|
* fdformat: remove test on major
|
||||||
* fdisk, hwclock and swap polishing
|
* fdisk, hwclock and swap polishing
|
||||||
* Lots of translations
|
* Lots of translations
|
||||||
* cramfs tools includes from the kernel
|
* cramfs tools includes from the kernel
|
||||||
* swap{on,off} honours /proc/swaps
|
* swap{on,off} honours /proc/swaps
|
||||||
* mount small fixups
|
* mount small fixups
|
||||||
|
|
||||||
@ -3648,7 +3695,7 @@ Mon Jan 28 13:59:26 CET 2002 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 24 10:16:37 CET 2002 - ro@suse.de
|
Thu Jan 24 10:16:37 CET 2002 - ro@suse.de
|
||||||
|
|
||||||
- modified fillup_and_insserv call (perl-hack not needed here)
|
- modified fillup_and_insserv call (perl-hack not needed here)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 21 17:08:17 CET 2002 - mmj@suse.de
|
Mon Jan 21 17:08:17 CET 2002 - mmj@suse.de
|
||||||
@ -3658,7 +3705,7 @@ Mon Jan 21 17:08:17 CET 2002 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 10 14:18:21 CET 2002 - ro@suse.de
|
Thu Jan 10 14:18:21 CET 2002 - ro@suse.de
|
||||||
|
|
||||||
- removed ACTIVATE_RAW_DEV
|
- removed ACTIVATE_RAW_DEV
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 31 19:05:45 UTC 2001 - adrian@suse.de
|
Mon Dec 31 19:05:45 UTC 2001 - adrian@suse.de
|
||||||
@ -3818,7 +3865,7 @@ Mon Feb 12 15:23:14 CET 2001 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 6 11:54:34 CET 2001 - ro@suse.de
|
Tue Feb 6 11:54:34 CET 2001 - ro@suse.de
|
||||||
|
|
||||||
- wall.c: include time.h
|
- wall.c: include time.h
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 5 11:13:56 CET 2001 - kukuk@suse.de
|
Mon Feb 5 11:13:56 CET 2001 - kukuk@suse.de
|
||||||
@ -3837,14 +3884,14 @@ Fri Feb 2 12:18:56 CET 2001 - werner@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 25 00:37:22 CET 2001 - ro@suse.de
|
Thu Jan 25 00:37:22 CET 2001 - ro@suse.de
|
||||||
|
|
||||||
- added Provides: util
|
- added Provides: util
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 12 10:08:29 MET 2001 - garloff@suse.de
|
Fri Jan 12 10:08:29 MET 2001 - garloff@suse.de
|
||||||
|
|
||||||
- Apply patch to lomount to allow all kerneli crypt algos to be
|
- Apply patch to lomount to allow all kerneli crypt algos to be
|
||||||
passed and allow to pass passwd with -k.
|
passed and allow to pass passwd with -k.
|
||||||
- losetup seems to support >2GB files just fine (#5433)
|
- losetup seems to support >2GB files just fine (#5433)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 2 12:04:33 CET 2001 - kukuk@suse.de
|
Tue Jan 2 12:04:33 CET 2001 - kukuk@suse.de
|
||||||
@ -3864,9 +3911,9 @@ Tue Dec 5 11:24:34 CET 2000 - kukuk@suse.de
|
|||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 5 11:10:10 CET 2000 - schwab@suse.de
|
Tue Dec 5 11:10:10 CET 2000 - schwab@suse.de
|
||||||
|
|
||||||
- Don't use _syscallX on ia64.
|
- Don't use _syscallX on ia64.
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 4 09:27:28 CET 2000 - olh@suse.de
|
Mon Dec 4 09:27:28 CET 2000 - olh@suse.de
|
||||||
@ -3876,7 +3923,7 @@ Mon Dec 4 09:27:28 CET 2000 - olh@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Dec 3 00:09:16 CET 2000 - olh@suse.de
|
Sun Dec 3 00:09:16 CET 2000 - olh@suse.de
|
||||||
|
|
||||||
- no segfaults with AIX disklabels
|
- no segfaults with AIX disklabels
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 29 18:21:25 CET 2000 - uli@suse.de
|
Wed Nov 29 18:21:25 CET 2000 - uli@suse.de
|
||||||
@ -3937,7 +3984,7 @@ Wed Sep 27 11:30:21 CEST 2000 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 26 17:54:23 CEST 2000 - kukuk@suse.de
|
Tue Sep 26 17:54:23 CEST 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- Fix mount for new NFS kernel patch
|
- Fix mount for new NFS kernel patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Sep 9 17:36:24 CEST 2000 - kukuk@suse.de
|
Sat Sep 9 17:36:24 CEST 2000 - kukuk@suse.de
|
||||||
@ -4040,7 +4087,7 @@ Thu Mar 9 21:25:15 CET 2000 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 7 17:23:57 CET 2000 - kukuk@suse.de
|
Tue Mar 7 17:23:57 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- etc/filesystems: Add minix and reiserfs
|
- etc/filesystems: Add minix and reiserfs
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 7 11:49:23 CET 2000 - kukuk@suse.de
|
Tue Mar 7 11:49:23 CET 2000 - kukuk@suse.de
|
||||||
@ -4070,23 +4117,23 @@ Thu Feb 3 14:42:23 CET 2000 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 3 11:14:29 CET 2000 - kukuk@suse.de
|
Thu Feb 3 11:14:29 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- util-linux: Update to 2.10f (mount security fix)
|
- util-linux: Update to 2.10f (mount security fix)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 23 15:45:08 CET 2000 - kukuk@suse.de
|
Sun Jan 23 15:45:08 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- util-linux: Update to 2.10e
|
- util-linux: Update to 2.10e
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 18 19:18:08 CET 2000 - kukuk@suse.de
|
Tue Jan 18 19:18:08 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- mount now looks at first in /etc/filesystems and then in
|
- mount now looks at first in /etc/filesystems and then in
|
||||||
/proc/filesystems
|
/proc/filesystems
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 18 16:32:05 CET 2000 - ro@suse.de
|
Tue Jan 18 16:32:05 CET 2000 - ro@suse.de
|
||||||
|
|
||||||
- fixed pmac-utils to build with 2.3 as well
|
- fixed pmac-utils to build with 2.3 as well
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 18 14:56:22 CET 2000 - kukuk@suse.de
|
Tue Jan 18 14:56:22 CET 2000 - kukuk@suse.de
|
||||||
@ -4099,7 +4146,7 @@ Mon Jan 17 18:23:56 CET 2000 - kukuk@suse.de
|
|||||||
- Fix setserial for Linux 2.3.40
|
- Fix setserial for Linux 2.3.40
|
||||||
- Remove write, is now in nkitb
|
- Remove write, is now in nkitb
|
||||||
- Build minix and bfs tools for SPARC
|
- Build minix and bfs tools for SPARC
|
||||||
- Fix some buffer overflows in fdisk
|
- Fix some buffer overflows in fdisk
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 17 15:00:19 MET 1999 - kukuk@suse.de
|
Fri Dec 17 15:00:19 MET 1999 - kukuk@suse.de
|
||||||
@ -4121,7 +4168,7 @@ Tue Nov 30 17:49:27 MET 1999 - uli@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 15 12:39:41 MET 1999 - kukuk@suse.de
|
Mon Nov 15 12:39:41 MET 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- util-linux: Update to 2.10b
|
- util-linux: Update to 2.10b
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Nov 13 15:36:37 MET 1999 - kukuk@suse.de
|
Sat Nov 13 15:36:37 MET 1999 - kukuk@suse.de
|
||||||
@ -4148,7 +4195,7 @@ Sat Oct 16 16:40:13 MEST 1999 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 8 10:58:48 MEST 1999 - kukuk@suse.de
|
Fri Oct 8 10:58:48 MEST 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- Update to util-linux-2.9y (execpt fdisk)
|
- Update to util-linux-2.9y (execpt fdisk)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 14 18:14:53 CEST 1999 - uli@suse.de
|
Tue Sep 14 18:14:53 CEST 1999 - uli@suse.de
|
||||||
@ -4163,12 +4210,12 @@ Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 26 15:05:03 CEST 1999 - uli@suse.de
|
Thu Aug 26 15:05:03 CEST 1999 - uli@suse.de
|
||||||
|
|
||||||
- disabled hayesesp for PPC
|
- disabled hayesesp for PPC
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 25 18:04:35 MEST 1999 - kukuk@suse.de
|
Wed Aug 25 18:04:35 MEST 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- Don't install tsort, its now in textutils 2.0
|
- Don't install tsort, its now in textutils 2.0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 24 10:11:06 MEST 1999 - kukuk@suse.de
|
Tue Aug 24 10:11:06 MEST 1999 - kukuk@suse.de
|
||||||
@ -4194,7 +4241,7 @@ Mon Jul 12 12:11:45 MEST 1999 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 6 12:23:47 MEST 1999 - kukuk@suse.de
|
Tue Jul 6 12:23:47 MEST 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- update to util-linux-2.9t
|
- update to util-linux-2.9t
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 25 14:44:30 MEST 1999 - kukuk@suse.de
|
Fri Jun 25 14:44:30 MEST 1999 - kukuk@suse.de
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package util-linux-systemd
|
# spec file for package util-linux-systemd
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -94,8 +94,7 @@ BuildRequires: librtas-devel
|
|||||||
%if %build_util_linux_systemd
|
%if %build_util_linux_systemd
|
||||||
BuildRequires: socat
|
BuildRequires: socat
|
||||||
BuildRequires: systemd-rpm-macros
|
BuildRequires: systemd-rpm-macros
|
||||||
BuildRequires: pkgconfig(libsystemd-daemon)
|
BuildRequires: pkgconfig(libsystemd)
|
||||||
BuildRequires: pkgconfig(libsystemd-journal)
|
|
||||||
%endif
|
%endif
|
||||||
%if %build_python_libmount
|
%if %build_python_libmount
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
@ -113,7 +112,7 @@ BuildRequires: libmount-devel
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
#END SECOND STAGE DEPENDENCIES
|
#END SECOND STAGE DEPENDENCIES
|
||||||
Version: 2.28.2
|
Version: 2.29
|
||||||
Release: 0
|
Release: 0
|
||||||
# util-linux is a base package and uuidd pre-requiring pwdutils pulls
|
# util-linux is a base package and uuidd pre-requiring pwdutils pulls
|
||||||
# that into the core build cycle. pwdutils also pulls in the whole
|
# that into the core build cycle. pwdutils also pulls in the whole
|
||||||
@ -122,7 +121,7 @@ Release: 0
|
|||||||
# these tools as well
|
# these tools as well
|
||||||
#!BuildIgnore: pwdutils
|
#!BuildIgnore: pwdutils
|
||||||
Url: https://www.kernel.org/pub/linux/utils/util-linux/
|
Url: https://www.kernel.org/pub/linux/utils/util-linux/
|
||||||
Source: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.28/%{_name}-%{version}.tar.xz
|
Source: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.29/%{_name}-%{version}.tar.xz
|
||||||
Source1: util-linux-rpmlintrc
|
Source1: util-linux-rpmlintrc
|
||||||
Source4: raw.init
|
Source4: raw.init
|
||||||
Source5: etc.raw
|
Source5: etc.raw
|
||||||
@ -132,7 +131,7 @@ Source8: login.pamd
|
|||||||
Source9: remote.pamd
|
Source9: remote.pamd
|
||||||
Source10: su.pamd
|
Source10: su.pamd
|
||||||
Source11: su.default
|
Source11: su.default
|
||||||
Source12: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.28/%{_name}-%{version}.tar.sign
|
Source12: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.29/%{_name}-%{version}.tar.sign
|
||||||
Source13: %{_name}.keyring
|
Source13: %{_name}.keyring
|
||||||
Source14: runuser.pamd
|
Source14: runuser.pamd
|
||||||
# klogconsole, http://opensuse.github.com/kiwi, 7.02.25, git 859dc050
|
# klogconsole, http://opensuse.github.com/kiwi, 7.02.25, git 859dc050
|
||||||
@ -519,12 +518,11 @@ AUTOPOINT=true autoreconf -vfi
|
|||||||
--docdir=%{_docdir}/%{_name} \
|
--docdir=%{_docdir}/%{_name} \
|
||||||
--with-audit \
|
--with-audit \
|
||||||
--with-gnu-ld \
|
--with-gnu-ld \
|
||||||
--with-ncurses \
|
--with-ncursesw \
|
||||||
--with-selinux \
|
--with-selinux \
|
||||||
$uhead \
|
$uhead \
|
||||||
--with-bashcompletiondir=%{_datadir}/bash-completion/completions \
|
--with-bashcompletiondir=%{_datadir}/bash-completion/completions \
|
||||||
--with-systemdsystemunitdir=%{_unitdir} \
|
--with-systemdsystemunitdir=%{_unitdir} \
|
||||||
--enable-libmount-force-mountinfo \
|
|
||||||
--enable-libuuid-force-uuidd \
|
--enable-libuuid-force-uuidd \
|
||||||
--enable-sulogin-emergency-mount \
|
--enable-sulogin-emergency-mount \
|
||||||
--disable-use-tty-group \
|
--disable-use-tty-group \
|
||||||
@ -532,6 +530,10 @@ AUTOPOINT=true autoreconf -vfi
|
|||||||
--disable-rpath \
|
--disable-rpath \
|
||||||
--enable-all-programs \
|
--enable-all-programs \
|
||||||
--disable-reset \
|
--disable-reset \
|
||||||
|
--disable-chfn-chsh \
|
||||||
|
--disable-newgrp \
|
||||||
|
--disable-vipw \
|
||||||
|
--disable-pg \
|
||||||
%if %{without enable_last}
|
%if %{without enable_last}
|
||||||
--disable-last \
|
--disable-last \
|
||||||
%endif
|
%endif
|
||||||
@ -570,6 +572,7 @@ export TS_OPT_fdisk_gpt_known_fail="yes"
|
|||||||
export TS_OPT_fdisk_oddinput_known_fail="yes"
|
export TS_OPT_fdisk_oddinput_known_fail="yes"
|
||||||
export TS_OPT_fdisk_sunlabel_known_fail="yes"
|
export TS_OPT_fdisk_sunlabel_known_fail="yes"
|
||||||
export TS_OPT_libfdisk_gpt_known_fail="yes"
|
export TS_OPT_libfdisk_gpt_known_fail="yes"
|
||||||
|
export TS_OPT_misc_flock_known_fail="yes"
|
||||||
export TS_OPT_misc_ionice_known_fail="yes"
|
export TS_OPT_misc_ionice_known_fail="yes"
|
||||||
export TS_OPT_misc_swaplabel_known_fail="yes"
|
export TS_OPT_misc_swaplabel_known_fail="yes"
|
||||||
export TS_OPT_kill_name_to_number_known_fail="yes"
|
export TS_OPT_kill_name_to_number_known_fail="yes"
|
||||||
@ -676,17 +679,6 @@ ln -sf ../..%{_sysconfdir}/init.d/raw %{buildroot}%{_sbindir}/rcraw
|
|||||||
mv %{buildroot}%{_docdir}/%{_name}/getopt %{buildroot}%{_datadir}/
|
mv %{buildroot}%{_docdir}/%{_name}/getopt %{buildroot}%{_datadir}/
|
||||||
# Stupid hack so we don't have a tcsh dependency
|
# Stupid hack so we don't have a tcsh dependency
|
||||||
chmod 644 %{buildroot}%{_datadir}/getopt/getopt*.tcsh
|
chmod 644 %{buildroot}%{_datadir}/getopt/getopt*.tcsh
|
||||||
# Following files we don't want to package, so remove them
|
|
||||||
rm -f %{buildroot}%{_bindir}/pg
|
|
||||||
rm -f %{buildroot}%{_mandir}/man1/pg.1*
|
|
||||||
# Do not package these files to get rid of the perl dependency
|
|
||||||
rm -f %{buildroot}%{_bindir}/chkdupexe
|
|
||||||
rm -f %{buildroot}%{_mandir}/man1/chkdupexe.1
|
|
||||||
# we use this tools from pwdutils
|
|
||||||
rm -f %{buildroot}%{_bindir}/{chfn,chsh,newgrp}
|
|
||||||
rm -f %{buildroot}%{_sbindir}/{vigr,vipw}
|
|
||||||
rm -f %{buildroot}%{_mandir}/man1/{chfn.1*,chsh.1*,newgrp.1*}
|
|
||||||
rm -f %{buildroot}%{_mandir}/man8/{vigr.8*,vipw.8*}
|
|
||||||
# login is always and only in /bin
|
# login is always and only in /bin
|
||||||
mv %{buildroot}%{_bindir}/login %{buildroot}/bin/
|
mv %{buildroot}%{_bindir}/login %{buildroot}/bin/
|
||||||
# arch dependent
|
# arch dependent
|
||||||
|
@ -1,3 +1,50 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 12:34:33 UTC 2017 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
|
- don't install bash-completions for uninstalled binaries (chfn,
|
||||||
|
chsh, newgrp, pg)
|
||||||
|
- for now remove procps dependency which is only needed for tests
|
||||||
|
because it pulls systemd
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 15 09:26:01 UTC 2016 - fbui@suse.com
|
||||||
|
|
||||||
|
- Replace pkgconfig(libsystemd-*) with pkgconfig(libsystemd)
|
||||||
|
|
||||||
|
libsystemd-* libs were deprecated and are gone now.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 7 16:12:55 CET 2016 - sbrabec@suse.com
|
||||||
|
|
||||||
|
- Remove no more supported --enable-libmount-force-mountinfo.
|
||||||
|
There is --enable-libmount-support-mtab, disabled by default,
|
||||||
|
exactly as we need.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 8 15:11:37 UTC 2016 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
|
- Update to version 2.29
|
||||||
|
* cal: possible to specify month by name (e.g. "cal January
|
||||||
|
2017") and use relative placeholders (cal "+1 month")
|
||||||
|
* fdisk(8) allows to wipe newly created partitions; the feature
|
||||||
|
is possible to control by new command line option
|
||||||
|
--wipe-partitions[==auto|never|default].
|
||||||
|
* findmnt --verify: the command scans /etc/fstab and tries to
|
||||||
|
verify the configuration.
|
||||||
|
* mount(8) now rejects requests to create another device and
|
||||||
|
mount filesystem for the same backing file. The command
|
||||||
|
`losetup --nooverlap` reuses loop device if already exists
|
||||||
|
for the same backing file. All the functionality calculate
|
||||||
|
with offset and sizelimit options of course, so it's fine to
|
||||||
|
have multiple regions (partitions) in the same image file and
|
||||||
|
mount all of them in the same time. The restriction is that
|
||||||
|
the regions should not overlap.
|
||||||
|
* lscpu supports the "drawer" topology for IBM S/390.
|
||||||
|
* More details at:
|
||||||
|
http://karelzak.blogspot.de/2016/10/util-linux-v229-whats-new.html
|
||||||
|
https://www.kernel.org/pub/linux/utils/util-linux/v2.29/v2.29-ReleaseNotes
|
||||||
|
- refresh make-sure-sbin-resp-usr-sbin-are-in-PATH.diff
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 7 12:43:31 UTC 2016 - sweet_f_a@gmx.de
|
Wed Sep 7 12:43:31 UTC 2016 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
@ -62,7 +109,7 @@ Wed Apr 13 21:29:00 UTC 2016 - sweet_f_a@gmx.de
|
|||||||
|
|
||||||
- fix build for openSUSE >= 13.1 (inclusive SLE 12)
|
- fix build for openSUSE >= 13.1 (inclusive SLE 12)
|
||||||
- drop build for openSUSE < 13.1
|
- drop build for openSUSE < 13.1
|
||||||
- remove old build conditions: sysvinit_tools, enable_su and
|
- remove old build conditions: sysvinit_tools, enable_su and
|
||||||
enable_eject
|
enable_eject
|
||||||
- cosmetics: reorder configure options
|
- cosmetics: reorder configure options
|
||||||
|
|
||||||
@ -194,7 +241,7 @@ Fri Mar 13 15:57:56 UTC 2015 - sweet_f_a@gmx.de
|
|||||||
* cal(1): do not segfault when TERM is not defined or wrong
|
* cal(1): do not segfault when TERM is not defined or wrong
|
||||||
(bnc#903440)
|
(bnc#903440)
|
||||||
* logger(1): major fixes and enhancements
|
* logger(1): major fixes and enhancements
|
||||||
* agetty(8): support /usr/lib/os-release too
|
* agetty(8): support /usr/lib/os-release too
|
||||||
* some more fixes, mostly minor ones, see ReleaseNotes
|
* some more fixes, mostly minor ones, see ReleaseNotes
|
||||||
- re-enable fixed tests (fdisk/bsd, ppc64le)
|
- re-enable fixed tests (fdisk/bsd, ppc64le)
|
||||||
|
|
||||||
@ -242,7 +289,7 @@ Wed Feb 25 20:43:28 CET 2015 - sbrabec@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 22 17:15:41 UTC 2015 - crrodriguez@opensuse.org
|
Sun Feb 22 17:15:41 UTC 2015 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- Build with FULL RELRO.
|
- Build with FULL RELRO.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 10 15:26:55 UTC 2015 - sweet_f_a@gmx.de
|
Tue Feb 10 15:26:55 UTC 2015 - sweet_f_a@gmx.de
|
||||||
@ -440,7 +487,7 @@ Fri May 16 15:10:53 UTC 2014 - sweet_f_a@gmx.de
|
|||||||
Thu May 8 08:15:04 UTC 2014 - werner@suse.de
|
Thu May 8 08:15:04 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Modify patch support-other-tty-lines-not-vconsole.patch to
|
- Modify patch support-other-tty-lines-not-vconsole.patch to
|
||||||
make it work on virtual console
|
make it work on virtual console
|
||||||
- Modify patch agetty-on-s390-on-dev-3270-tty1-line.patch
|
- Modify patch agetty-on-s390-on-dev-3270-tty1-line.patch
|
||||||
to add the missed 3270 support upstream
|
to add the missed 3270 support upstream
|
||||||
|
|
||||||
@ -448,7 +495,7 @@ Thu May 8 08:15:04 UTC 2014 - werner@suse.de
|
|||||||
Wed May 7 14:12:32 UTC 2014 - werner@suse.de
|
Wed May 7 14:12:32 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Add patch support-other-tty-lines-not-vconsole.patch
|
- Add patch support-other-tty-lines-not-vconsole.patch
|
||||||
to be able to support console lines like xvc and hvc
|
to be able to support console lines like xvc and hvc
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 24 11:33:36 UTC 2014 - sweet_f_a@gmx.de
|
Thu Apr 24 11:33:36 UTC 2014 - sweet_f_a@gmx.de
|
||||||
@ -661,7 +708,7 @@ Mon Mar 17 22:36:58 CET 2014 - sbrabec@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 6 09:43:34 UTC 2014 - werner@suse.de
|
Thu Mar 6 09:43:34 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Modify the patches
|
- Modify the patches
|
||||||
agetty-fooled-on-serial-line-due-plymouth.patch
|
agetty-fooled-on-serial-line-due-plymouth.patch
|
||||||
sulogin-fooled-on-tty-line-due-plymouth.patch
|
sulogin-fooled-on-tty-line-due-plymouth.patch
|
||||||
to be able to disable plymouth if not already terminated due to
|
to be able to disable plymouth if not already terminated due to
|
||||||
@ -672,7 +719,7 @@ Sun Feb 9 21:20:31 UTC 2014 - andreas.stieger@gmx.de
|
|||||||
|
|
||||||
- util-linux 2.24.1
|
- util-linux 2.24.1
|
||||||
- agetty:
|
- agetty:
|
||||||
* support the special terminal on first serial line on a S/390
|
* support the special terminal on first serial line on a S/390
|
||||||
- blkdiscard:
|
- blkdiscard:
|
||||||
* BLKSSZGET fills in an int, not a uint64
|
* BLKSSZGET fills in an int, not a uint64
|
||||||
- blkid:
|
- blkid:
|
||||||
@ -806,14 +853,14 @@ Tue Feb 4 10:24:02 UTC 2014 - werner@suse.de
|
|||||||
|
|
||||||
- Modify patch agetty-on-s390-on-dev--3270-tty1-line.patch and
|
- Modify patch agetty-on-s390-on-dev--3270-tty1-line.patch and
|
||||||
patch tty3270-on-serial-line-of-s390.patch to handle 3270
|
patch tty3270-on-serial-line-of-s390.patch to handle 3270
|
||||||
terminals
|
terminals
|
||||||
- Really do not verify /usr/bin/eject
|
- Really do not verify /usr/bin/eject
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 3 16:16:36 UTC 2014 - werner@suse.de
|
Mon Feb 3 16:16:36 UTC 2014 - werner@suse.de
|
||||||
|
|
||||||
- Add patch agetty-on-s390-on-dev--3270-tty1-line.patch
|
- Add patch agetty-on-s390-on-dev--3270-tty1-line.patch
|
||||||
to let agetty detect /dev/3270/tty1 as device not as baud rate
|
to let agetty detect /dev/3270/tty1 as device not as baud rate
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 28 09:37:57 UTC 2014 - speilicke@suse.com
|
Tue Jan 28 09:37:57 UTC 2014 - speilicke@suse.com
|
||||||
@ -918,7 +965,7 @@ Tue Dec 10 16:10:27 UTC 2013 - sweet_f_a@gmx.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 29 13:46:21 UTC 2013 - werner@suse.de
|
Fri Nov 29 13:46:21 UTC 2013 - werner@suse.de
|
||||||
|
|
||||||
- Add patch
|
- Add patch
|
||||||
tty3270-on-serial-line-of-s390.patch
|
tty3270-on-serial-line-of-s390.patch
|
||||||
to better support the first and second serial line on s390/x
|
to better support the first and second serial line on s390/x
|
||||||
|
|
||||||
@ -959,7 +1006,7 @@ Fri Sep 27 16:58:40 UTC 2013 - mgorse@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Sep 13 07:06:19 UTC 2013 - werner@suse.de
|
Fri Sep 13 07:06:19 UTC 2013 - werner@suse.de
|
||||||
|
|
||||||
- Avoid build require gpg-offline twice
|
- Avoid build require gpg-offline twice
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 11 20:54:24 CEST 2013 - sbrabec@suse.cz
|
Wed Sep 11 20:54:24 CEST 2013 - sbrabec@suse.cz
|
||||||
@ -1102,7 +1149,7 @@ Wed Jun 5 12:30:45 UTC 2013 - werner@suse.de
|
|||||||
+ Release highlights (2.22)
|
+ Release highlights (2.22)
|
||||||
su(1):
|
su(1):
|
||||||
* has been merged from coreutils into util-linux
|
* has been merged from coreutils into util-linux
|
||||||
* utils-linux version uses /etc/pam.d/su-l PAM config file for --login
|
* utils-linux version uses /etc/pam.d/su-l PAM config file for --login
|
||||||
(e.g. "su -") session.
|
(e.g. "su -") session.
|
||||||
sulogin(8):
|
sulogin(8):
|
||||||
* has been merged from sysvinit into util-linux
|
* has been merged from sysvinit into util-linux
|
||||||
@ -1112,12 +1159,12 @@ Wed Jun 5 12:30:45 UTC 2013 - werner@suse.de
|
|||||||
* has been merged from inactive upstream from sf.net and Fedora into util-linux
|
* has been merged from inactive upstream from sf.net and Fedora into util-linux
|
||||||
* supports new options --manualeject, --force and --no-partitions-unmount
|
* supports new options --manualeject, --force and --no-partitions-unmount
|
||||||
lslocks(1)
|
lslocks(1)
|
||||||
* this NEW COMMAND prints local system locks and it's replacement to very
|
* this NEW COMMAND prints local system locks and it's replacement to very
|
||||||
long time unmaintained lslk(1)
|
long time unmaintained lslk(1)
|
||||||
wdctl(8):
|
wdctl(8):
|
||||||
* this NEW COMMAND shows hardware watchdog status
|
* this NEW COMMAND shows hardware watchdog status
|
||||||
libuuid:
|
libuuid:
|
||||||
* does NOT EXECUTE uuidd on demand, the daemon has to be started by
|
* does NOT EXECUTE uuidd on demand, the daemon has to be started by
|
||||||
init scripts / systemd
|
init scripts / systemd
|
||||||
uuidd:
|
uuidd:
|
||||||
* supports socket activation (for systemd)
|
* supports socket activation (for systemd)
|
||||||
@ -1173,7 +1220,7 @@ Sat Feb 16 17:48:29 UTC 2013 - schwab@suse.de
|
|||||||
Tue Feb 5 14:32:49 UTC 2013 - crrodriguez@opensuse.org
|
Tue Feb 5 14:32:49 UTC 2013 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- 0001-Test-for-secure_getenv-too.patch:
|
- 0001-Test-for-secure_getenv-too.patch:
|
||||||
Current glibc in 12.3/factory no longer exports internal
|
Current glibc in 12.3/factory no longer exports internal
|
||||||
function __secure_getenv() but has secure_getenv() instead.
|
function __secure_getenv() but has secure_getenv() instead.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -1188,7 +1235,7 @@ Mon Jan 7 13:26:15 UTC 2013 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 28 04:30:58 UTC 2012 - crrodriguez@opensuse.org
|
Fri Dec 28 04:30:58 UTC 2012 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- 0001-include-bitops.h-Use-the-operating-system-byteswappi.patch
|
- 0001-include-bitops.h-Use-the-operating-system-byteswappi.patch
|
||||||
Use OS byteswapping macros, this patch is functionally identical
|
Use OS byteswapping macros, this patch is functionally identical
|
||||||
to the version submitted upstream with the exception it excludes
|
to the version submitted upstream with the exception it excludes
|
||||||
code that target non-linux systems.
|
code that target non-linux systems.
|
||||||
@ -1203,7 +1250,7 @@ Wed Sep 19 19:41:10 UTC 2012 - jslaby@suse.com
|
|||||||
Fri Jun 22 09:37:20 CEST 2012 - kukuk@suse.de
|
Fri Jun 22 09:37:20 CEST 2012 - kukuk@suse.de
|
||||||
|
|
||||||
- Remove pam_lastlog from login.pamd, login is doing it itself.
|
- Remove pam_lastlog from login.pamd, login is doing it itself.
|
||||||
[bnc#768067]
|
[bnc#768067]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 20 09:22:50 UTC 2012 - lnussel@suse.de
|
Wed Jun 20 09:22:50 UTC 2012 - lnussel@suse.de
|
||||||
@ -1240,13 +1287,13 @@ Thu May 31 10:04:23 UTC 2012 - sweet_f_a@gmx.de
|
|||||||
|
|
||||||
- require binutils-devel because "which" wants to find libiberty.a
|
- require binutils-devel because "which" wants to find libiberty.a
|
||||||
- remove which-lib64.patch because it's broken and couldn't find
|
- remove which-lib64.patch because it's broken and couldn't find
|
||||||
libiberty.a whithin /usr/lib64
|
libiberty.a whithin /usr/lib64
|
||||||
- which doesn't need autoreconf anymore
|
- which doesn't need autoreconf anymore
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 29 09:28:55 UTC 2012 - puzel@suse.com
|
Tue May 29 09:28:55 UTC 2012 - puzel@suse.com
|
||||||
|
|
||||||
- switch to new libmount-based mount(8)
|
- switch to new libmount-based mount(8)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 25 12:12:09 UTC 2012 - puzel@suse.com
|
Fri May 25 12:12:09 UTC 2012 - puzel@suse.com
|
||||||
@ -1259,7 +1306,7 @@ Fri May 25 12:12:09 UTC 2012 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 25 12:03:07 UTC 2012 - puzel@suse.com
|
Fri May 25 12:03:07 UTC 2012 - puzel@suse.com
|
||||||
|
|
||||||
- build with RPM_OPT_FLAGS again (removed by mistake)
|
- build with RPM_OPT_FLAGS again (removed by mistake)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 12 09:09:05 UTC 2012 - puzel@suse.com
|
Thu Apr 12 09:09:05 UTC 2012 - puzel@suse.com
|
||||||
@ -1325,7 +1372,7 @@ Tue Feb 21 13:46:25 UTC 2012 - puzel@suse.com
|
|||||||
--online to list all, offline or online CPUs
|
--online to list all, offline or online CPUs
|
||||||
- supports s390 topology description (polarization, books, ...)
|
- supports s390 topology description (polarization, books, ...)
|
||||||
partx(8):
|
partx(8):
|
||||||
- supports partitioned loop devices
|
- supports partitioned loop devices
|
||||||
wipefs(8):
|
wipefs(8):
|
||||||
- allows to zap partition tables
|
- allows to zap partition tables
|
||||||
- supports new command line option "--type <list>" to wipe only
|
- supports new command line option "--type <list>" to wipe only
|
||||||
@ -1377,7 +1424,7 @@ Wed Nov 9 08:27:17 UTC 2011 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 8 09:36:41 UTC 2011 - puzel@suse.com
|
Tue Nov 8 09:36:41 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- add fsck-use-FS-blacklist-for-non-all-mode-too.patch (bnc#728645)
|
- add fsck-use-FS-blacklist-for-non-all-mode-too.patch (bnc#728645)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 2 09:37:12 UTC 2011 - puzel@suse.com
|
Wed Nov 2 09:37:12 UTC 2011 - puzel@suse.com
|
||||||
@ -1388,7 +1435,7 @@ Wed Nov 2 09:37:12 UTC 2011 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 20 13:01:22 UTC 2011 - puzel@suse.com
|
Thu Oct 20 13:01:22 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- update to util-linux-2.20.1
|
- update to util-linux-2.20.1
|
||||||
- bugfix release
|
- bugfix release
|
||||||
- drop patches (in upstream):
|
- drop patches (in upstream):
|
||||||
- util-linux-sfdisk-manpage-fix.patch
|
- util-linux-sfdisk-manpage-fix.patch
|
||||||
@ -1398,7 +1445,7 @@ Thu Oct 20 13:01:22 UTC 2011 - puzel@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 12 09:26:40 UTC 2011 - puzel@suse.com
|
Wed Oct 12 09:26:40 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- add fdisk-dont-shorten-long-path-to-disk.patch (bnc#722959)
|
- add fdisk-dont-shorten-long-path-to-disk.patch (bnc#722959)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 4 11:32:11 UTC 2011 - uli@suse.com
|
Tue Oct 4 11:32:11 UTC 2011 - uli@suse.com
|
||||||
@ -1411,12 +1458,12 @@ Tue Oct 4 11:32:11 UTC 2011 - uli@suse.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 13 09:10:43 UTC 2011 - puzel@suse.com
|
Tue Sep 13 09:10:43 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- add util-linux-lib-sysfs-deinit.patch (bnc#714151)
|
- add util-linux-lib-sysfs-deinit.patch (bnc#714151)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 29 14:57:57 UTC 2011 - puzel@suse.com
|
Mon Aug 29 14:57:57 UTC 2011 - puzel@suse.com
|
||||||
|
|
||||||
- update to util-linux-2.20
|
- update to util-linux-2.20
|
||||||
- cleanups, bugfixes
|
- cleanups, bugfixes
|
||||||
- build with --enable-ddate
|
- build with --enable-ddate
|
||||||
- add util-linux-sfdisk-manpage-fix.patch
|
- add util-linux-sfdisk-manpage-fix.patch
|
||||||
@ -1429,7 +1476,7 @@ Thu Aug 25 14:12:15 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 17 10:37:20 UTC 2011 - puzel@novell.com
|
Wed Aug 17 10:37:20 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.20-rc2
|
- update to util-linux-2.20-rc2
|
||||||
- bugfixes
|
- bugfixes
|
||||||
- drop patches:
|
- drop patches:
|
||||||
- util-linux-fix-manpages.patch
|
- util-linux-fix-manpages.patch
|
||||||
@ -1441,22 +1488,22 @@ Wed Aug 17 10:37:20 UTC 2011 - puzel@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 10 13:42:33 UTC 2011 - puzel@novell.com
|
Wed Aug 10 13:42:33 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-2.20-rc1-hexdump-segfault.patch (bnc#710877)
|
- add util-linux-2.20-rc1-hexdump-segfault.patch (bnc#710877)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 10 12:20:41 UTC 2011 - puzel@novell.com
|
Wed Aug 10 12:20:41 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-2.20-rc-fix-dmesg.patch (bnc#710417)
|
- add util-linux-2.20-rc-fix-dmesg.patch (bnc#710417)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 10 11:06:15 UTC 2011 - puzel@novell.com
|
Wed Aug 10 11:06:15 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-2.20-rc1-agetty-fixes.patch (bnc#711240)
|
- add util-linux-2.20-rc1-agetty-fixes.patch (bnc#711240)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 1 13:44:21 UTC 2011 - puzel@novell.com
|
Mon Aug 1 13:44:21 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.20-rc1
|
- update to util-linux-2.20-rc1
|
||||||
- Release highlights
|
- Release highlights
|
||||||
agetty(8):
|
agetty(8):
|
||||||
- mingetty features have been merged to agetty
|
- mingetty features have been merged to agetty
|
||||||
@ -1486,7 +1533,7 @@ Mon Aug 1 13:44:21 UTC 2011 - puzel@novell.com
|
|||||||
- supports real-time signals in formats RT<n>, RTMIN+<n> and
|
- supports real-time signals in formats RT<n>, RTMIN+<n> and
|
||||||
RTMAX-<n>
|
RTMAX-<n>
|
||||||
lsblk(8):
|
lsblk(8):
|
||||||
- supports new columns
|
- supports new columns
|
||||||
- supports new command line option "-D" to print device discard
|
- supports new command line option "-D" to print device discard
|
||||||
topology
|
topology
|
||||||
lscpu(8):
|
lscpu(8):
|
||||||
@ -1508,7 +1555,7 @@ Tue May 3 09:39:37 UTC 2011 - puzel@novell.com
|
|||||||
- update to util-linux-2.19.1
|
- update to util-linux-2.19.1
|
||||||
- numerous bugfixes, including (bnc#690486 and bnc#690488)
|
- numerous bugfixes, including (bnc#690486 and bnc#690488)
|
||||||
- drop umount-by-imgname.patch (merged upstream)
|
- drop umount-by-imgname.patch (merged upstream)
|
||||||
- cleanup: do not register ipc.info.gz (not provided by
|
- cleanup: do not register ipc.info.gz (not provided by
|
||||||
this package)
|
this package)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -1520,12 +1567,12 @@ Thu Apr 14 16:27:27 UTC 2011 - puzel@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 21 16:28:38 UTC 2011 - puzel@novell.com
|
Mon Feb 21 16:28:38 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- add umount-by-imgname.patch (bnc#666161)
|
- add umount-by-imgname.patch (bnc#666161)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 10 11:01:40 UTC 2011 - puzel@novell.com
|
Thu Feb 10 11:01:40 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.19
|
- update to util-linux-2.19
|
||||||
- uuid fixes
|
- uuid fixes
|
||||||
- cleanups, documentation and translation updates
|
- cleanups, documentation and translation updates
|
||||||
- drop util-linux-2.19-rc1-loop-offset.diff (fixed in upstream, by
|
- drop util-linux-2.19-rc1-loop-offset.diff (fixed in upstream, by
|
||||||
@ -1556,7 +1603,7 @@ Tue Jan 18 09:47:11 UTC 2011 - bwiedemann@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
||||||
|
|
||||||
- update to util-linux-2.19-rc1
|
- update to util-linux-2.19-rc1
|
||||||
- important changes:
|
- important changes:
|
||||||
* lsblk(8):
|
* lsblk(8):
|
||||||
- this NEW COMMAND lists information about all or selected block
|
- this NEW COMMAND lists information about all or selected block
|
||||||
@ -1585,7 +1632,7 @@ Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
|||||||
* fsck(8):
|
* fsck(8):
|
||||||
- supports new command line option "-l" to lock whole-disk device
|
- supports new command line option "-l" to lock whole-disk device
|
||||||
by exclusive flock(2). This option is recommended when more
|
by exclusive flock(2). This option is recommended when more
|
||||||
fsck(8) instances are executed in the same time.
|
fsck(8) instances are executed in the same time.
|
||||||
* rtcwake(8):
|
* rtcwake(8):
|
||||||
- supports new mode "show" to print the current RTC alarm time
|
- supports new mode "show" to print the current RTC alarm time
|
||||||
* fstrim(8):
|
* fstrim(8):
|
||||||
@ -1600,7 +1647,7 @@ Thu Jan 6 16:43:46 UTC 2011 - puzel@novell.com
|
|||||||
- util-linux-agetty-s-option.patch
|
- util-linux-agetty-s-option.patch
|
||||||
- util-linux-fsck-l-option.patch
|
- util-linux-fsck-l-option.patch
|
||||||
- util-linux-2.18-no-canonicalize-fix.patch
|
- util-linux-2.18-no-canonicalize-fix.patch
|
||||||
- util-linux-swapon-canonicalize-swap-device.patch
|
- util-linux-swapon-canonicalize-swap-device.patch
|
||||||
- fix uuidd Summary and Description
|
- fix uuidd Summary and Description
|
||||||
- build with --enable-libmount-mount (new option)
|
- build with --enable-libmount-mount (new option)
|
||||||
- use set_permissions macros
|
- use set_permissions macros
|
||||||
@ -1626,12 +1673,12 @@ Thu Dec 2 15:23:36 CET 2010 - mszeredi@suse.cz
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 12:19:53 UTC 2010 - puzel@novell.com
|
Tue Nov 30 12:19:53 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- update util-linux-2.17.1-mount_losetup_crypto.patch (bnc#655804)
|
- update util-linux-2.17.1-mount_losetup_crypto.patch (bnc#655804)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 26 19:10:27 CET 2010 - kay.sievers@novell.com
|
Fri Nov 26 19:10:27 CET 2010 - kay.sievers@novell.com
|
||||||
|
|
||||||
- add Provides: fsck-with-dev-lock
|
- add Provides: fsck-with-dev-lock
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 25 13:37:43 CET 2010 - kay.sievers@novell.com
|
Thu Nov 25 13:37:43 CET 2010 - kay.sievers@novell.com
|
||||||
@ -1641,7 +1688,7 @@ Thu Nov 25 13:37:43 CET 2010 - kay.sievers@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 16 16:08:48 UTC 2010 - cristian.rodriguez@opensuse.org
|
Tue Nov 16 16:08:48 UTC 2010 - cristian.rodriguez@opensuse.org
|
||||||
|
|
||||||
- disable silent rules
|
- disable silent rules
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 11 10:36:35 CET 2010 - kay.sievers@novell.com
|
Thu Nov 11 10:36:35 CET 2010 - kay.sievers@novell.com
|
||||||
@ -1667,7 +1714,7 @@ Fri Jul 9 06:23:27 UTC 2010 - puzel@novell.com
|
|||||||
- full release notes:
|
- full release notes:
|
||||||
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.18/v2.18-ReleaseNotes
|
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.18/v2.18-ReleaseNotes
|
||||||
- update to adjtimex-1.28
|
- update to adjtimex-1.28
|
||||||
- update to which-2.20
|
- update to which-2.20
|
||||||
- drop util-linux-2.14.1-mount_skip_sync.patch (fixed upstream)
|
- drop util-linux-2.14.1-mount_skip_sync.patch (fixed upstream)
|
||||||
- drop util-linux-addpart-use-atoll.patch (fixed upstream)
|
- drop util-linux-addpart-use-atoll.patch (fixed upstream)
|
||||||
- drop util-linux-mount-detect-ro-mount.patch (fixed upstream)
|
- drop util-linux-mount-detect-ro-mount.patch (fixed upstream)
|
||||||
@ -1692,24 +1739,24 @@ Tue Jun 22 16:48:29 UTC 2010 - bg@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 1 14:23:23 UTC 2010 - puzel@novell.com
|
Tue Jun 1 14:23:23 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- do not run uuidd as root, but uuidd:uuidd (bnc#604168)
|
- do not run uuidd as root, but uuidd:uuidd (bnc#604168)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 28 13:24:43 UTC 2010 - puzel@novell.com
|
Fri May 28 13:24:43 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-mount-detect-ro-mount.patch (bnc#481123)
|
- add util-linux-mount-detect-ro-mount.patch (bnc#481123)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 11 13:58:49 UTC 2010 - puzel@novell.com
|
Tue May 11 13:58:49 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
- add util-linux-addpart-use-atoll.patch (bnc#603328)
|
- add util-linux-addpart-use-atoll.patch (bnc#603328)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 6 13:22:37 UTC 2010 - hvogel@novell.com
|
Tue Apr 6 13:22:37 UTC 2010 - hvogel@novell.com
|
||||||
|
|
||||||
- update to version 2.17.2
|
- update to version 2.17.2
|
||||||
- fix small typo in v2.17.1-ReleaseNotes
|
- fix small typo in v2.17.1-ReleaseNotes
|
||||||
- fix -b <sectorsize> fdisk
|
- fix -b <sectorsize> fdisk
|
||||||
- fix typo in ionice
|
- fix typo in ionice
|
||||||
- fix display of device size, fix infinite loop when probe chain
|
- fix display of device size, fix infinite loop when probe chain
|
||||||
bails out early, more robust minix probing, remove "0x" prefix
|
bails out early, more robust minix probing, remove "0x" prefix
|
||||||
@ -1721,7 +1768,7 @@ Tue Apr 6 13:22:37 UTC 2010 - hvogel@novell.com
|
|||||||
/etc/filesystems in mount
|
/etc/filesystems in mount
|
||||||
- update ja.po, pl.po, update vi.po
|
- update ja.po, pl.po, update vi.po
|
||||||
- remove " (deleted)" from filenames from /proc/swaps
|
- remove " (deleted)" from filenames from /proc/swaps
|
||||||
- cleanup usage() and man page of wipefs
|
- cleanup usage() and man page of wipefs
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 10 23:11:42 CET 2010 - jeffm@suse.de
|
Wed Mar 10 23:11:42 CET 2010 - jeffm@suse.de
|
||||||
@ -1770,7 +1817,7 @@ Sun Nov 15 14:04:48 CET 2009 - meissner@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 26 17:45:53 UTC 2009 - crrodriguez@opensuse.org
|
Mon Oct 26 17:45:53 UTC 2009 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
- fsck during boot up fails with Too many open files [bnc#503008]
|
- fsck during boot up fails with Too many open files [bnc#503008]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 20 12:14:24 CEST 2009 - dmueller@suse.de
|
Tue Oct 20 12:14:24 CEST 2009 - dmueller@suse.de
|
||||||
@ -1787,7 +1834,7 @@ Tue Sep 29 12:58:37 UTC 2009 - hvogel@novell.com
|
|||||||
|
|
||||||
- finaly remove the mount mtab locking patch:
|
- finaly remove the mount mtab locking patch:
|
||||||
* util-linux-2.14.1-mount_race.patch
|
* util-linux-2.14.1-mount_race.patch
|
||||||
It causes too much regressions.
|
It causes too much regressions.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 13 14:21:07 CEST 2009 - kay.sievers@novell.com
|
Mon Jul 13 14:21:07 CEST 2009 - kay.sievers@novell.com
|
||||||
@ -1837,7 +1884,7 @@ Thu Apr 16 14:55:22 CEST 2009 - werner@suse.de
|
|||||||
Mon Feb 16 12:35:00 CET 2009 - mkoenig@suse.de
|
Mon Feb 16 12:35:00 CET 2009 - mkoenig@suse.de
|
||||||
|
|
||||||
- remove util-linux-2.14.1-fdisk_cylinder.patch
|
- remove util-linux-2.14.1-fdisk_cylinder.patch
|
||||||
fixed upstream
|
fixed upstream
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 12 17:12:28 CET 2009 - mkoenig@suse.de
|
Thu Feb 12 17:12:28 CET 2009 - mkoenig@suse.de
|
||||||
@ -1886,13 +1933,13 @@ Sat Feb 7 18:28:58 CET 2009 - schwab@suse.de
|
|||||||
Wed Jan 7 15:42:38 CET 2009 - mkoenig@suse.de
|
Wed Jan 7 15:42:38 CET 2009 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix locking problem for external mount helpers when type
|
- fix locking problem for external mount helpers when type
|
||||||
is not given [bnc#459839]
|
is not given [bnc#459839]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 2 12:23:37 CET 2008 - mkoenig@suse.de
|
Tue Dec 2 12:23:37 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- raw: do not stat the raw devices when binding, since they
|
- raw: do not stat the raw devices when binding, since they
|
||||||
are created dynamically [bnc#450675]
|
are created dynamically [bnc#450675]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 27 01:27:19 CET 2008 - dmueller@suse.de
|
Thu Nov 27 01:27:19 CET 2008 - dmueller@suse.de
|
||||||
@ -1903,7 +1950,7 @@ Thu Nov 27 01:27:19 CET 2008 - dmueller@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 24 15:24:11 CET 2008 - mkoenig@suse.de
|
Mon Nov 24 15:24:11 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- mount: fix locking patch to not break -n [bnc#447937]
|
- mount: fix locking patch to not break -n [bnc#447937]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 20 18:08:33 CET 2008 - mkoenig@suse.de
|
Thu Nov 20 18:08:33 CET 2008 - mkoenig@suse.de
|
||||||
@ -1921,7 +1968,7 @@ Fri Nov 7 14:50:00 CET 2008 - mkoenig@suse.de
|
|||||||
|
|
||||||
- fdisk: support +cylinder notation [bnc#441871]
|
- fdisk: support +cylinder notation [bnc#441871]
|
||||||
- check for EACCES when using ro fallback when loop mounting
|
- check for EACCES when using ro fallback when loop mounting
|
||||||
a readonly image
|
a readonly image
|
||||||
- fix uninitialized variable in swapon pagesize detection
|
- fix uninitialized variable in swapon pagesize detection
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -1950,7 +1997,7 @@ Wed Sep 24 11:28:07 CEST 2008 - mkoenig@suse.de
|
|||||||
|
|
||||||
- add new tool /bin/hypervisor for x86, x86_64
|
- add new tool /bin/hypervisor for x86, x86_64
|
||||||
from Ky Srinivasan <ksrinivasan@novell.com>
|
from Ky Srinivasan <ksrinivasan@novell.com>
|
||||||
to detect the presence of a hypervisor [fate#303051]
|
to detect the presence of a hypervisor [fate#303051]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 10 15:58:52 CEST 2008 - mkoenig@suse.de
|
Wed Sep 10 15:58:52 CEST 2008 - mkoenig@suse.de
|
||||||
@ -1968,7 +2015,7 @@ Wed Sep 10 15:58:52 CEST 2008 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 20 15:20:06 CEST 2008 - mkoenig@suse.de
|
Wed Aug 20 15:20:06 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- enable SELinux support [fate#303662]
|
- enable SELinux support [fate#303662]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 18 18:13:10 CEST 2008 - mrueckert@suse.de
|
Mon Aug 18 18:13:10 CEST 2008 - mrueckert@suse.de
|
||||||
@ -1978,7 +2025,7 @@ Mon Aug 18 18:13:10 CEST 2008 - mrueckert@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 18 12:36:39 CEST 2008 - mkoenig@suse.de
|
Mon Aug 18 12:36:39 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- raw: fix init script tags
|
- raw: fix init script tags
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 7 15:13:24 CEST 2008 - mkoenig@suse.de
|
Mon Jul 7 15:13:24 CEST 2008 - mkoenig@suse.de
|
||||||
@ -1987,7 +2034,7 @@ Mon Jul 7 15:13:24 CEST 2008 - mkoenig@suse.de
|
|||||||
* Upgraded code from bash to version 3.2. This DOES has influence
|
* Upgraded code from bash to version 3.2. This DOES has influence
|
||||||
on how Which behaves under certain circumstances.
|
on how Which behaves under certain circumstances.
|
||||||
* When the environment variable HOME is not set, the home directory
|
* When the environment variable HOME is not set, the home directory
|
||||||
is now read from /etc/passwd or set to '/' if no home directory
|
is now read from /etc/passwd or set to '/' if no home directory
|
||||||
could be found (this now matches the tilde lib used in bash)
|
could be found (this now matches the tilde lib used in bash)
|
||||||
* Changed the license to GPLv3
|
* Changed the license to GPLv3
|
||||||
* Add support for shells that output '{' on the same line as the
|
* Add support for shells that output '{' on the same line as the
|
||||||
@ -1999,7 +2046,7 @@ Wed Jul 2 15:47:08 CEST 2008 - mkoenig@suse.de
|
|||||||
|
|
||||||
- replace util-linux-2.14-mount_ignore_ENXIO_in_del_loop.patch
|
- replace util-linux-2.14-mount_ignore_ENXIO_in_del_loop.patch
|
||||||
with upstream version
|
with upstream version
|
||||||
util-linux-2.14-loop_autoclear.patch
|
util-linux-2.14-loop_autoclear.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 27 17:05:46 CEST 2008 - schwab@suse.de
|
Fri Jun 27 17:05:46 CEST 2008 - schwab@suse.de
|
||||||
@ -2009,7 +2056,7 @@ Fri Jun 27 17:05:46 CEST 2008 - schwab@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 25 14:26:49 CEST 2008 - mkoenig@suse.de
|
Wed Jun 25 14:26:49 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to version 2.14
|
- update to version 2.14
|
||||||
most important changes:
|
most important changes:
|
||||||
* new command ldattach
|
* new command ldattach
|
||||||
mount:
|
mount:
|
||||||
@ -2059,18 +2106,18 @@ Sun Mar 23 11:13:13 CET 2008 - coolo@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 13 10:21:42 CET 2008 - bg@suse.de
|
Wed Feb 13 10:21:42 CET 2008 - bg@suse.de
|
||||||
|
|
||||||
- don't try to package parisc*.8 manual pages
|
- don't try to package parisc*.8 manual pages
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 11 17:49:04 CET 2008 - mkoenig@suse.de
|
Mon Feb 11 17:49:04 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to version 2.13.1 again
|
- update to version 2.13.1 again
|
||||||
- fix broken util-linux-2.13.1-getfs_fix.patch
|
- fix broken util-linux-2.13.1-getfs_fix.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 10 18:11:07 CET 2008 - lrupp@suse.de
|
Sun Feb 10 18:11:07 CET 2008 - lrupp@suse.de
|
||||||
|
|
||||||
- revert to 2.13.0.1+git20071121
|
- revert to 2.13.0.1+git20071121
|
||||||
breaks current 'mount' call in Buildservice
|
breaks current 'mount' call in Buildservice
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2093,7 +2140,7 @@ Thu Feb 7 12:41:25 CET 2008 - mkoenig@suse.de
|
|||||||
- mount: fix problem with device canonicalization when using
|
- mount: fix problem with device canonicalization when using
|
||||||
persistent name in fstab but call mount with real bd name
|
persistent name in fstab but call mount with real bd name
|
||||||
- patches merged:
|
- patches merged:
|
||||||
util-linux-2.13-mount_fd_leak.patch
|
util-linux-2.13-mount_fd_leak.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 18 15:55:19 CET 2007 - mkoenig@suse.de
|
Tue Dec 18 15:55:19 CET 2007 - mkoenig@suse.de
|
||||||
@ -2104,7 +2151,7 @@ Tue Dec 18 15:55:19 CET 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 3 11:03:57 CET 2007 - ro@suse.de
|
Mon Dec 3 11:03:57 CET 2007 - ro@suse.de
|
||||||
|
|
||||||
- remove "arch", in coreutils now
|
- remove "arch", in coreutils now
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 29 17:51:17 CET 2007 - lnussel@suse.de
|
Thu Nov 29 17:51:17 CET 2007 - lnussel@suse.de
|
||||||
@ -2127,16 +2174,16 @@ Wed Nov 21 13:43:31 CET 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 20 17:49:35 CET 2007 - mkoenig@suse.de
|
Tue Nov 20 17:49:35 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix raw path in init script
|
- fix raw path in init script
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 6 16:11:02 CET 2007 - mkoenig@suse.de
|
Tue Nov 6 16:11:02 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to 2.13.0.1+git20071106
|
- update to 2.13.0.1+git20071106
|
||||||
- prevent loop mounting the same file twice [#240653]
|
- prevent loop mounting the same file twice [#240653]
|
||||||
- merged upstream:
|
- merged upstream:
|
||||||
util-linux-2.13-mount_helper_fix.patch
|
util-linux-2.13-mount_helper_fix.patch
|
||||||
util-linux-2.13-hwclock_rtc_option.patch
|
util-linux-2.13-hwclock_rtc_option.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 4 22:24:04 CEST 2007 - bg@suse.de
|
Thu Oct 4 22:24:04 CEST 2007 - bg@suse.de
|
||||||
@ -2152,7 +2199,7 @@ Mon Oct 1 17:08:06 CEST 2007 - mkoenig@suse.de
|
|||||||
util-linux-2.13-loop.patch
|
util-linux-2.13-loop.patch
|
||||||
util-linux-2.13-mount_create_mtab.patch
|
util-linux-2.13-mount_create_mtab.patch
|
||||||
util-linux-2.13-schedutils_error_handling.patch
|
util-linux-2.13-schedutils_error_handling.patch
|
||||||
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
||||||
- fix hwclock --rtc option [#326106]
|
- fix hwclock --rtc option [#326106]
|
||||||
- fix setuid/setgid mixup and error checking [#327022]
|
- fix setuid/setgid mixup and error checking [#327022]
|
||||||
|
|
||||||
@ -2160,12 +2207,12 @@ Mon Oct 1 17:08:06 CEST 2007 - mkoenig@suse.de
|
|||||||
Fri Sep 14 11:24:33 CEST 2007 - mkoenig@suse.de
|
Fri Sep 14 11:24:33 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- link cfdisk against libncursesw instead libncurses to fix
|
- link cfdisk against libncursesw instead libncurses to fix
|
||||||
broken utf-8 characters [#307353]
|
broken utf-8 characters [#307353]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 29 12:22:21 CEST 2007 - mkoenig@suse.de
|
Wed Aug 29 12:22:21 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix fd leaks in previous patch
|
- fix fd leaks in previous patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 28 16:42:04 CEST 2007 - lnussel@suse.de
|
Tue Aug 28 16:42:04 CEST 2007 - lnussel@suse.de
|
||||||
@ -2177,20 +2224,20 @@ Tue Aug 28 16:42:04 CEST 2007 - lnussel@suse.de
|
|||||||
Fri Aug 24 14:09:19 CEST 2007 - mkoenig@suse.de
|
Fri Aug 24 14:09:19 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- avoid duplicates of root fs if defined with LABEL in fstab
|
- avoid duplicates of root fs if defined with LABEL in fstab
|
||||||
[#297959]
|
[#297959]
|
||||||
- fix ionice error handling [#301675]
|
- fix ionice error handling [#301675]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 16 18:34:30 CEST 2007 - ssommer@suse.de
|
Thu Aug 16 18:34:30 CEST 2007 - ssommer@suse.de
|
||||||
|
|
||||||
- free loop devices when mount fails [#297172]
|
- free loop devices when mount fails [#297172]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jul 25 18:43:42 CEST 2007 - mkoenig@suse.de
|
Wed Jul 25 18:43:42 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to git20070725
|
- update to git20070725
|
||||||
- removed patches (merged upstream):
|
- removed patches (merged upstream):
|
||||||
util-linux-2.12r-mount_mount.8_xfs_update.patch
|
util-linux-2.12r-mount_mount.8_xfs_update.patch
|
||||||
util-linux-2.12r-sys_utils_readprofile_mapfile.patch
|
util-linux-2.12r-sys_utils_readprofile_mapfile.patch
|
||||||
util-linux-2.12r-disk_utils_mkswap_fix.patch
|
util-linux-2.12r-disk_utils_mkswap_fix.patch
|
||||||
util-linux-2.13-schedutils_ionice_idle.patch
|
util-linux-2.13-schedutils_ionice_idle.patch
|
||||||
@ -2199,8 +2246,8 @@ Wed Jul 25 18:43:42 CEST 2007 - mkoenig@suse.de
|
|||||||
Tue Jul 17 10:44:18 CEST 2007 - mkoenig@suse.de
|
Tue Jul 17 10:44:18 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- updated to version 2.13-rc2:
|
- updated to version 2.13-rc2:
|
||||||
* add wakertc
|
* add wakertc
|
||||||
- cleanup ionice usage [#270251]
|
- cleanup ionice usage [#270251]
|
||||||
- enable hwclock audit support [#280113]
|
- enable hwclock audit support [#280113]
|
||||||
- removed patches (merged/fixed upstream)
|
- removed patches (merged/fixed upstream)
|
||||||
util-linux-login_utils_wall.patch
|
util-linux-login_utils_wall.patch
|
||||||
@ -2221,17 +2268,17 @@ Fri Jul 13 12:31:56 CEST 2007 - mkoenig@suse.de
|
|||||||
util-linux-2.11z-hwclock_geteuid.patch
|
util-linux-2.11z-hwclock_geteuid.patch
|
||||||
it is intentional that suid hwclock capabilities are limited
|
it is intentional that suid hwclock capabilities are limited
|
||||||
- removed patch (fixed upstream)
|
- removed patch (fixed upstream)
|
||||||
util-linux-2.12q-mount_--move.patch
|
util-linux-2.12q-mount_--move.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 9 11:34:33 CEST 2007 - mkoenig@suse.de
|
Mon Jul 9 11:34:33 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- add libuuid-devel to BuildRequires to let mkswap use UUIDs
|
- add libuuid-devel to BuildRequires to let mkswap use UUIDs
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jul 5 16:08:58 CEST 2007 - mkoenig@suse.de
|
Thu Jul 5 16:08:58 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- use %config(noreplace) for /etc/filesystems
|
- use %config(noreplace) for /etc/filesystems
|
||||||
- Keep rdev stuff for x86_64
|
- Keep rdev stuff for x86_64
|
||||||
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
util-linux-2.13-sys_utils_build_rdev_x86_64.patch
|
||||||
- removed patches (merged upstream)
|
- removed patches (merged upstream)
|
||||||
@ -2264,21 +2311,21 @@ Thu Jun 21 14:50:58 CEST 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 14 10:52:25 CEST 2007 - mkoenig@suse.de
|
Thu Jun 14 10:52:25 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- mkzimage_cmdline: activate commandline if used with -s [#279935]
|
- mkzimage_cmdline: activate commandline if used with -s [#279935]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 13 12:33:59 CEST 2007 - mkoenig@suse.de
|
Wed Jun 13 12:33:59 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- schedutils: let chrt accept pid 0 for current process and
|
- schedutils: let chrt accept pid 0 for current process and
|
||||||
fix some documentation bugs [#266879]
|
fix some documentation bugs [#266879]
|
||||||
util-linux-2.13-schedutils_chrt.patch
|
util-linux-2.13-schedutils_chrt.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 6 16:15:43 CEST 2007 - mkoenig@suse.de
|
Wed Jun 6 16:15:43 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- update to git20070530
|
- update to git20070530
|
||||||
- removed patches
|
- removed patches
|
||||||
util-linux-2.13-mount_volume_id.patch
|
util-linux-2.13-mount_volume_id.patch
|
||||||
util-linux-2.12r-mount_by_uuid.patch
|
util-linux-2.12r-mount_by_uuid.patch
|
||||||
util-linux-2.13-build_gnu_source.patch
|
util-linux-2.13-build_gnu_source.patch
|
||||||
- fix build with ncurses
|
- fix build with ncurses
|
||||||
@ -2323,7 +2370,7 @@ Mon Apr 23 16:49:00 CEST 2007 - mkoenig@suse.de
|
|||||||
|
|
||||||
- update to git20070412
|
- update to git20070412
|
||||||
- remove chkdupexe and scriptreplay to get rid of the
|
- remove chkdupexe and scriptreplay to get rid of the
|
||||||
perl dependency [#265757]
|
perl dependency [#265757]
|
||||||
util-linux-2.13-build_no_perl_dependency.patch
|
util-linux-2.13-build_no_perl_dependency.patch
|
||||||
- upstream integration of umount helper support [#252089]
|
- upstream integration of umount helper support [#252089]
|
||||||
- merged patches:
|
- merged patches:
|
||||||
@ -2341,9 +2388,9 @@ Tue Apr 10 17:25:34 CEST 2007 - mkoenig@suse.de
|
|||||||
|
|
||||||
- update to version git20070330 of new forked development tree
|
- update to version git20070330 of new forked development tree
|
||||||
- removed Suse crypto patches for losetup [FATE#302001]
|
- removed Suse crypto patches for losetup [FATE#302001]
|
||||||
- removed binaries:
|
- removed binaries:
|
||||||
/bin/guessfstype
|
/bin/guessfstype
|
||||||
/sbin/sln
|
/sbin/sln
|
||||||
/usr/bin/setfdprm
|
/usr/bin/setfdprm
|
||||||
- removed obsolete patches:
|
- removed obsolete patches:
|
||||||
* guessfstype2.patch
|
* guessfstype2.patch
|
||||||
@ -2382,7 +2429,7 @@ Tue Apr 10 17:25:34 CEST 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 4 12:55:40 CEST 2007 - mkoenig@suse.de
|
Wed Apr 4 12:55:40 CEST 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- add Supplements line [FATE#301966]
|
- add Supplements line [FATE#301966]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 26 15:49:09 CEST 2007 - rguenther@suse.de
|
Mon Mar 26 15:49:09 CEST 2007 - rguenther@suse.de
|
||||||
@ -2392,13 +2439,13 @@ Mon Mar 26 15:49:09 CEST 2007 - rguenther@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 17:24:34 CET 2007 - mkoenig@suse.de
|
Thu Mar 15 17:24:34 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- mount: Let swapon automatically reinitialize a suspended
|
- mount: Let swapon automatically reinitialize a suspended
|
||||||
swap partition [#254437]
|
swap partition [#254437]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 9 11:00:11 CET 2007 - mkoenig@suse.de
|
Thu Mar 9 11:00:11 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- mount: fix mtablock patch to avoid mtab corruption [#226783]
|
- mount: fix mtablock patch to avoid mtab corruption [#226783]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 8 17:27:22 CET 2007 - mkoenig@suse.de
|
Thu Mar 8 17:27:22 CET 2007 - mkoenig@suse.de
|
||||||
@ -2413,8 +2460,8 @@ Wed Mar 7 16:58:08 CET 2007 - rguenther@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 27 10:58:46 CET 2007 - mkoenig@suse.de
|
Tue Feb 27 10:58:46 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- fix missing return code in
|
- fix missing return code in
|
||||||
util-linux-2.12r-losetup_password.patch
|
util-linux-2.12r-losetup_password.patch
|
||||||
- mount: fix race condition in mount -o loop [#242750]
|
- mount: fix race condition in mount -o loop [#242750]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2430,7 +2477,7 @@ Fri Feb 2 13:27:31 CET 2007 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 31 12:06:55 CET 2007 - mkoenig@suse.de
|
Wed Jan 31 12:06:55 CET 2007 - mkoenig@suse.de
|
||||||
|
|
||||||
- let mkfs tools open with O_EXCL [#238687]
|
- let mkfs tools open with O_EXCL [#238687]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 12 11:04:07 CET 2006 - mkoenig@suse.de
|
Tue Dec 12 11:04:07 CET 2006 - mkoenig@suse.de
|
||||||
@ -2451,14 +2498,14 @@ Tue Dec 5 18:13:32 CET 2006 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 7 13:09:45 CET 2006 - mkoenig@suse.de
|
Tue Nov 7 13:09:45 CET 2006 - mkoenig@suse.de
|
||||||
|
|
||||||
- enable partx [#214992]
|
- enable partx [#214992]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 18:17:42 CEST 2006 - mkoenig@suse.de
|
Tue Oct 10 18:17:42 CEST 2006 - mkoenig@suse.de
|
||||||
|
|
||||||
- Round up partition end LBA to a cylinder boundary during
|
- Round up partition end LBA to a cylinder boundary during
|
||||||
add_partition() [#174892]
|
add_partition() [#174892]
|
||||||
- Fix readprofile on ppc64 [#179122]
|
- Fix readprofile on ppc64 [#179122]
|
||||||
- Fix cal formatting bug [#203469]
|
- Fix cal formatting bug [#203469]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2470,7 +2517,7 @@ Mon Oct 9 12:27:33 CEST 2006 - mkoenig@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 21 12:10:01 CEST 2006 - mkoenig@suse.de
|
Mon Aug 21 12:10:01 CEST 2006 - mkoenig@suse.de
|
||||||
|
|
||||||
- Added sysfs to list of filesystems not to unmount with
|
- Added sysfs to list of filesystems not to unmount with
|
||||||
umount -a, resolves #190385
|
umount -a, resolves #190385
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -2571,14 +2618,14 @@ Wed Feb 1 03:58:58 CET 2006 - olh@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 1 02:20:17 CET 2006 - ro@suse.de
|
Wed Feb 1 02:20:17 CET 2006 - ro@suse.de
|
||||||
|
|
||||||
- fix typo in previous change, binary negation is "~"
|
- fix typo in previous change, binary negation is "~"
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 27 13:02:36 CET 2006 - sscheler@suse.de
|
Fri Jan 27 13:02:36 CET 2006 - sscheler@suse.de
|
||||||
|
|
||||||
- fixed mount hotplug option (#143352). now we don't send the
|
- fixed mount hotplug option (#143352). now we don't send the
|
||||||
MS_HOTPLUG flag to the kernel any longer, because the kernel
|
MS_HOTPLUG flag to the kernel any longer, because the kernel
|
||||||
doesn't know this option (EINVAL) and actually doesn't need to
|
doesn't know this option (EINVAL) and actually doesn't need to
|
||||||
know about it.
|
know about it.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -3222,7 +3269,7 @@ Mon Oct 13 21:44:43 CEST 2003 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 11:31:14 CEST 2003 - kukuk@suse.de
|
Thu Oct 2 11:31:14 CEST 2003 - kukuk@suse.de
|
||||||
|
|
||||||
- Fix compiling with kernel 2.6.0-test6 header files
|
- Fix compiling with kernel 2.6.0-test6 header files
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 12 15:27:20 CEST 2003 - mmj@suse.de
|
Tue Aug 12 15:27:20 CEST 2003 - mmj@suse.de
|
||||||
@ -3291,7 +3338,7 @@ Mon Mar 3 16:19:04 CET 2003 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 3 12:27:01 CET 2003 - ro@suse.de
|
Mon Mar 3 12:27:01 CET 2003 - ro@suse.de
|
||||||
|
|
||||||
- add missing info dir entries
|
- add missing info dir entries
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 18 14:29:45 CET 2003 - agruen@suse.de
|
Tue Feb 18 14:29:45 CET 2003 - agruen@suse.de
|
||||||
@ -3323,7 +3370,7 @@ Fri Feb 7 01:30:53 CET 2003 - ro@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 4 22:34:10 CET 2003 - ro@suse.de
|
Tue Feb 4 22:34:10 CET 2003 - ro@suse.de
|
||||||
|
|
||||||
- don't package /bin/kill (part of coreutils now)
|
- don't package /bin/kill (part of coreutils now)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 4 12:40:00 CET 2003 - meissner@suse.de
|
Tue Feb 4 12:40:00 CET 2003 - meissner@suse.de
|
||||||
@ -3383,7 +3430,7 @@ Wed Nov 27 11:01:52 CET 2002 - mmj@suse.de
|
|||||||
o fdisk,cfdisk: cosmetic fixes
|
o fdisk,cfdisk: cosmetic fixes
|
||||||
o mount,umount: fix LABEL= handling for non-root [#17322]
|
o mount,umount: fix LABEL= handling for non-root [#17322]
|
||||||
o more: kill external help file
|
o more: kill external help file
|
||||||
o simpleinit: security: refuse initctl_fd if setting FD_CLOEXEC
|
o simpleinit: security: refuse initctl_fd if setting FD_CLOEXEC
|
||||||
fails (patch we had, now folded upstream)
|
fails (patch we had, now folded upstream)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -3421,7 +3468,7 @@ Thu Oct 31 14:59:11 CET 2002 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 31 00:40:09 CET 2002 - ro@suse.de
|
Thu Oct 31 00:40:09 CET 2002 - ro@suse.de
|
||||||
|
|
||||||
- hack time to build on alpha
|
- hack time to build on alpha
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 22 16:13:36 CEST 2002 - mmj@suse.de
|
Tue Oct 22 16:13:36 CEST 2002 - mmj@suse.de
|
||||||
@ -3565,7 +3612,7 @@ Mon Jul 8 21:16:07 CEST 2002 - mmj@suse.de
|
|||||||
* fdformat: remove test on major
|
* fdformat: remove test on major
|
||||||
* fdisk, hwclock and swap polishing
|
* fdisk, hwclock and swap polishing
|
||||||
* Lots of translations
|
* Lots of translations
|
||||||
* cramfs tools includes from the kernel
|
* cramfs tools includes from the kernel
|
||||||
* swap{on,off} honours /proc/swaps
|
* swap{on,off} honours /proc/swaps
|
||||||
* mount small fixups
|
* mount small fixups
|
||||||
|
|
||||||
@ -3648,7 +3695,7 @@ Mon Jan 28 13:59:26 CET 2002 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 24 10:16:37 CET 2002 - ro@suse.de
|
Thu Jan 24 10:16:37 CET 2002 - ro@suse.de
|
||||||
|
|
||||||
- modified fillup_and_insserv call (perl-hack not needed here)
|
- modified fillup_and_insserv call (perl-hack not needed here)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 21 17:08:17 CET 2002 - mmj@suse.de
|
Mon Jan 21 17:08:17 CET 2002 - mmj@suse.de
|
||||||
@ -3658,7 +3705,7 @@ Mon Jan 21 17:08:17 CET 2002 - mmj@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 10 14:18:21 CET 2002 - ro@suse.de
|
Thu Jan 10 14:18:21 CET 2002 - ro@suse.de
|
||||||
|
|
||||||
- removed ACTIVATE_RAW_DEV
|
- removed ACTIVATE_RAW_DEV
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 31 19:05:45 UTC 2001 - adrian@suse.de
|
Mon Dec 31 19:05:45 UTC 2001 - adrian@suse.de
|
||||||
@ -3818,7 +3865,7 @@ Mon Feb 12 15:23:14 CET 2001 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 6 11:54:34 CET 2001 - ro@suse.de
|
Tue Feb 6 11:54:34 CET 2001 - ro@suse.de
|
||||||
|
|
||||||
- wall.c: include time.h
|
- wall.c: include time.h
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 5 11:13:56 CET 2001 - kukuk@suse.de
|
Mon Feb 5 11:13:56 CET 2001 - kukuk@suse.de
|
||||||
@ -3837,14 +3884,14 @@ Fri Feb 2 12:18:56 CET 2001 - werner@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 25 00:37:22 CET 2001 - ro@suse.de
|
Thu Jan 25 00:37:22 CET 2001 - ro@suse.de
|
||||||
|
|
||||||
- added Provides: util
|
- added Provides: util
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 12 10:08:29 MET 2001 - garloff@suse.de
|
Fri Jan 12 10:08:29 MET 2001 - garloff@suse.de
|
||||||
|
|
||||||
- Apply patch to lomount to allow all kerneli crypt algos to be
|
- Apply patch to lomount to allow all kerneli crypt algos to be
|
||||||
passed and allow to pass passwd with -k.
|
passed and allow to pass passwd with -k.
|
||||||
- losetup seems to support >2GB files just fine (#5433)
|
- losetup seems to support >2GB files just fine (#5433)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 2 12:04:33 CET 2001 - kukuk@suse.de
|
Tue Jan 2 12:04:33 CET 2001 - kukuk@suse.de
|
||||||
@ -3864,9 +3911,9 @@ Tue Dec 5 11:24:34 CET 2000 - kukuk@suse.de
|
|||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 5 11:10:10 CET 2000 - schwab@suse.de
|
Tue Dec 5 11:10:10 CET 2000 - schwab@suse.de
|
||||||
|
|
||||||
- Don't use _syscallX on ia64.
|
- Don't use _syscallX on ia64.
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 4 09:27:28 CET 2000 - olh@suse.de
|
Mon Dec 4 09:27:28 CET 2000 - olh@suse.de
|
||||||
@ -3876,7 +3923,7 @@ Mon Dec 4 09:27:28 CET 2000 - olh@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Dec 3 00:09:16 CET 2000 - olh@suse.de
|
Sun Dec 3 00:09:16 CET 2000 - olh@suse.de
|
||||||
|
|
||||||
- no segfaults with AIX disklabels
|
- no segfaults with AIX disklabels
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 29 18:21:25 CET 2000 - uli@suse.de
|
Wed Nov 29 18:21:25 CET 2000 - uli@suse.de
|
||||||
@ -3937,7 +3984,7 @@ Wed Sep 27 11:30:21 CEST 2000 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 26 17:54:23 CEST 2000 - kukuk@suse.de
|
Tue Sep 26 17:54:23 CEST 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- Fix mount for new NFS kernel patch
|
- Fix mount for new NFS kernel patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Sep 9 17:36:24 CEST 2000 - kukuk@suse.de
|
Sat Sep 9 17:36:24 CEST 2000 - kukuk@suse.de
|
||||||
@ -4040,7 +4087,7 @@ Thu Mar 9 21:25:15 CET 2000 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 7 17:23:57 CET 2000 - kukuk@suse.de
|
Tue Mar 7 17:23:57 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- etc/filesystems: Add minix and reiserfs
|
- etc/filesystems: Add minix and reiserfs
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 7 11:49:23 CET 2000 - kukuk@suse.de
|
Tue Mar 7 11:49:23 CET 2000 - kukuk@suse.de
|
||||||
@ -4070,23 +4117,23 @@ Thu Feb 3 14:42:23 CET 2000 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 3 11:14:29 CET 2000 - kukuk@suse.de
|
Thu Feb 3 11:14:29 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- util-linux: Update to 2.10f (mount security fix)
|
- util-linux: Update to 2.10f (mount security fix)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 23 15:45:08 CET 2000 - kukuk@suse.de
|
Sun Jan 23 15:45:08 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- util-linux: Update to 2.10e
|
- util-linux: Update to 2.10e
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 18 19:18:08 CET 2000 - kukuk@suse.de
|
Tue Jan 18 19:18:08 CET 2000 - kukuk@suse.de
|
||||||
|
|
||||||
- mount now looks at first in /etc/filesystems and then in
|
- mount now looks at first in /etc/filesystems and then in
|
||||||
/proc/filesystems
|
/proc/filesystems
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 18 16:32:05 CET 2000 - ro@suse.de
|
Tue Jan 18 16:32:05 CET 2000 - ro@suse.de
|
||||||
|
|
||||||
- fixed pmac-utils to build with 2.3 as well
|
- fixed pmac-utils to build with 2.3 as well
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 18 14:56:22 CET 2000 - kukuk@suse.de
|
Tue Jan 18 14:56:22 CET 2000 - kukuk@suse.de
|
||||||
@ -4099,7 +4146,7 @@ Mon Jan 17 18:23:56 CET 2000 - kukuk@suse.de
|
|||||||
- Fix setserial for Linux 2.3.40
|
- Fix setserial for Linux 2.3.40
|
||||||
- Remove write, is now in nkitb
|
- Remove write, is now in nkitb
|
||||||
- Build minix and bfs tools for SPARC
|
- Build minix and bfs tools for SPARC
|
||||||
- Fix some buffer overflows in fdisk
|
- Fix some buffer overflows in fdisk
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 17 15:00:19 MET 1999 - kukuk@suse.de
|
Fri Dec 17 15:00:19 MET 1999 - kukuk@suse.de
|
||||||
@ -4121,7 +4168,7 @@ Tue Nov 30 17:49:27 MET 1999 - uli@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 15 12:39:41 MET 1999 - kukuk@suse.de
|
Mon Nov 15 12:39:41 MET 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- util-linux: Update to 2.10b
|
- util-linux: Update to 2.10b
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Nov 13 15:36:37 MET 1999 - kukuk@suse.de
|
Sat Nov 13 15:36:37 MET 1999 - kukuk@suse.de
|
||||||
@ -4148,7 +4195,7 @@ Sat Oct 16 16:40:13 MEST 1999 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 8 10:58:48 MEST 1999 - kukuk@suse.de
|
Fri Oct 8 10:58:48 MEST 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- Update to util-linux-2.9y (execpt fdisk)
|
- Update to util-linux-2.9y (execpt fdisk)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 14 18:14:53 CEST 1999 - uli@suse.de
|
Tue Sep 14 18:14:53 CEST 1999 - uli@suse.de
|
||||||
@ -4163,12 +4210,12 @@ Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 26 15:05:03 CEST 1999 - uli@suse.de
|
Thu Aug 26 15:05:03 CEST 1999 - uli@suse.de
|
||||||
|
|
||||||
- disabled hayesesp for PPC
|
- disabled hayesesp for PPC
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 25 18:04:35 MEST 1999 - kukuk@suse.de
|
Wed Aug 25 18:04:35 MEST 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- Don't install tsort, its now in textutils 2.0
|
- Don't install tsort, its now in textutils 2.0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 24 10:11:06 MEST 1999 - kukuk@suse.de
|
Tue Aug 24 10:11:06 MEST 1999 - kukuk@suse.de
|
||||||
@ -4194,7 +4241,7 @@ Mon Jul 12 12:11:45 MEST 1999 - kukuk@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 6 12:23:47 MEST 1999 - kukuk@suse.de
|
Tue Jul 6 12:23:47 MEST 1999 - kukuk@suse.de
|
||||||
|
|
||||||
- update to util-linux-2.9t
|
- update to util-linux-2.9t
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 25 14:44:30 MEST 1999 - kukuk@suse.de
|
Fri Jun 25 14:44:30 MEST 1999 - kukuk@suse.de
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package util-linux
|
# spec file for package util-linux
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -94,8 +94,7 @@ BuildRequires: librtas-devel
|
|||||||
%if %build_util_linux_systemd
|
%if %build_util_linux_systemd
|
||||||
BuildRequires: socat
|
BuildRequires: socat
|
||||||
BuildRequires: systemd-rpm-macros
|
BuildRequires: systemd-rpm-macros
|
||||||
BuildRequires: pkgconfig(libsystemd-daemon)
|
BuildRequires: pkgconfig(libsystemd)
|
||||||
BuildRequires: pkgconfig(libsystemd-journal)
|
|
||||||
%endif
|
%endif
|
||||||
%if %build_python_libmount
|
%if %build_python_libmount
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
@ -113,7 +112,7 @@ BuildRequires: libmount-devel
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
#END SECOND STAGE DEPENDENCIES
|
#END SECOND STAGE DEPENDENCIES
|
||||||
Version: 2.28.2
|
Version: 2.29
|
||||||
Release: 0
|
Release: 0
|
||||||
# util-linux is a base package and uuidd pre-requiring pwdutils pulls
|
# util-linux is a base package and uuidd pre-requiring pwdutils pulls
|
||||||
# that into the core build cycle. pwdutils also pulls in the whole
|
# that into the core build cycle. pwdutils also pulls in the whole
|
||||||
@ -122,7 +121,7 @@ Release: 0
|
|||||||
# these tools as well
|
# these tools as well
|
||||||
#!BuildIgnore: pwdutils
|
#!BuildIgnore: pwdutils
|
||||||
Url: https://www.kernel.org/pub/linux/utils/util-linux/
|
Url: https://www.kernel.org/pub/linux/utils/util-linux/
|
||||||
Source: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.28/%{_name}-%{version}.tar.xz
|
Source: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.29/%{_name}-%{version}.tar.xz
|
||||||
Source1: util-linux-rpmlintrc
|
Source1: util-linux-rpmlintrc
|
||||||
Source4: raw.init
|
Source4: raw.init
|
||||||
Source5: etc.raw
|
Source5: etc.raw
|
||||||
@ -132,7 +131,7 @@ Source8: login.pamd
|
|||||||
Source9: remote.pamd
|
Source9: remote.pamd
|
||||||
Source10: su.pamd
|
Source10: su.pamd
|
||||||
Source11: su.default
|
Source11: su.default
|
||||||
Source12: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.28/%{_name}-%{version}.tar.sign
|
Source12: ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.29/%{_name}-%{version}.tar.sign
|
||||||
Source13: %{_name}.keyring
|
Source13: %{_name}.keyring
|
||||||
Source14: runuser.pamd
|
Source14: runuser.pamd
|
||||||
# klogconsole, http://opensuse.github.com/kiwi, 7.02.25, git 859dc050
|
# klogconsole, http://opensuse.github.com/kiwi, 7.02.25, git 859dc050
|
||||||
@ -519,12 +518,11 @@ AUTOPOINT=true autoreconf -vfi
|
|||||||
--docdir=%{_docdir}/%{_name} \
|
--docdir=%{_docdir}/%{_name} \
|
||||||
--with-audit \
|
--with-audit \
|
||||||
--with-gnu-ld \
|
--with-gnu-ld \
|
||||||
--with-ncurses \
|
--with-ncursesw \
|
||||||
--with-selinux \
|
--with-selinux \
|
||||||
$uhead \
|
$uhead \
|
||||||
--with-bashcompletiondir=%{_datadir}/bash-completion/completions \
|
--with-bashcompletiondir=%{_datadir}/bash-completion/completions \
|
||||||
--with-systemdsystemunitdir=%{_unitdir} \
|
--with-systemdsystemunitdir=%{_unitdir} \
|
||||||
--enable-libmount-force-mountinfo \
|
|
||||||
--enable-libuuid-force-uuidd \
|
--enable-libuuid-force-uuidd \
|
||||||
--enable-sulogin-emergency-mount \
|
--enable-sulogin-emergency-mount \
|
||||||
--disable-use-tty-group \
|
--disable-use-tty-group \
|
||||||
@ -532,6 +530,10 @@ AUTOPOINT=true autoreconf -vfi
|
|||||||
--disable-rpath \
|
--disable-rpath \
|
||||||
--enable-all-programs \
|
--enable-all-programs \
|
||||||
--disable-reset \
|
--disable-reset \
|
||||||
|
--disable-chfn-chsh \
|
||||||
|
--disable-newgrp \
|
||||||
|
--disable-vipw \
|
||||||
|
--disable-pg \
|
||||||
%if %{without enable_last}
|
%if %{without enable_last}
|
||||||
--disable-last \
|
--disable-last \
|
||||||
%endif
|
%endif
|
||||||
@ -570,6 +572,7 @@ export TS_OPT_fdisk_gpt_known_fail="yes"
|
|||||||
export TS_OPT_fdisk_oddinput_known_fail="yes"
|
export TS_OPT_fdisk_oddinput_known_fail="yes"
|
||||||
export TS_OPT_fdisk_sunlabel_known_fail="yes"
|
export TS_OPT_fdisk_sunlabel_known_fail="yes"
|
||||||
export TS_OPT_libfdisk_gpt_known_fail="yes"
|
export TS_OPT_libfdisk_gpt_known_fail="yes"
|
||||||
|
export TS_OPT_misc_flock_known_fail="yes"
|
||||||
export TS_OPT_misc_ionice_known_fail="yes"
|
export TS_OPT_misc_ionice_known_fail="yes"
|
||||||
export TS_OPT_misc_swaplabel_known_fail="yes"
|
export TS_OPT_misc_swaplabel_known_fail="yes"
|
||||||
export TS_OPT_kill_name_to_number_known_fail="yes"
|
export TS_OPT_kill_name_to_number_known_fail="yes"
|
||||||
@ -676,17 +679,6 @@ ln -sf ../..%{_sysconfdir}/init.d/raw %{buildroot}%{_sbindir}/rcraw
|
|||||||
mv %{buildroot}%{_docdir}/%{_name}/getopt %{buildroot}%{_datadir}/
|
mv %{buildroot}%{_docdir}/%{_name}/getopt %{buildroot}%{_datadir}/
|
||||||
# Stupid hack so we don't have a tcsh dependency
|
# Stupid hack so we don't have a tcsh dependency
|
||||||
chmod 644 %{buildroot}%{_datadir}/getopt/getopt*.tcsh
|
chmod 644 %{buildroot}%{_datadir}/getopt/getopt*.tcsh
|
||||||
# Following files we don't want to package, so remove them
|
|
||||||
rm -f %{buildroot}%{_bindir}/pg
|
|
||||||
rm -f %{buildroot}%{_mandir}/man1/pg.1*
|
|
||||||
# Do not package these files to get rid of the perl dependency
|
|
||||||
rm -f %{buildroot}%{_bindir}/chkdupexe
|
|
||||||
rm -f %{buildroot}%{_mandir}/man1/chkdupexe.1
|
|
||||||
# we use this tools from pwdutils
|
|
||||||
rm -f %{buildroot}%{_bindir}/{chfn,chsh,newgrp}
|
|
||||||
rm -f %{buildroot}%{_sbindir}/{vigr,vipw}
|
|
||||||
rm -f %{buildroot}%{_mandir}/man1/{chfn.1*,chsh.1*,newgrp.1*}
|
|
||||||
rm -f %{buildroot}%{_mandir}/man8/{vigr.8*,vipw.8*}
|
|
||||||
# login is always and only in /bin
|
# login is always and only in /bin
|
||||||
mv %{buildroot}%{_bindir}/login %{buildroot}/bin/
|
mv %{buildroot}%{_bindir}/login %{buildroot}/bin/
|
||||||
# arch dependent
|
# arch dependent
|
||||||
|
Loading…
Reference in New Issue
Block a user