diff --git a/.gitignore b/.gitignore index d0444d2..cf7a49d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,2 @@ +util-linux-ng-2.14.2.tar.bz2 floppy-0.16.tar.bz2 -util-linux-ng-2.18.tar.bz2 -*~ -*.rpm -*.log diff --git a/dead.package b/dead.package deleted file mode 100644 index aca69ac..0000000 --- a/dead.package +++ /dev/null @@ -1,2 +0,0 @@ - - util-linux-ng has been renamed to util-linux diff --git a/mount.tmpfs b/mount.tmpfs new file mode 100644 index 0000000..f862c03 --- /dev/null +++ b/mount.tmpfs @@ -0,0 +1,20 @@ +#! /bin/bash +# +# Copyright (C) 2009 Eric Paris +# Daniel Walsh +# Karel Zak +# +# http://bugzilla.redhat.com/show_bug.cgi?id=476964 +# +# Usage: +# /sbin/mount.tmpfs spec dir [-sfnv] [-o options] +# + +if ! echo "$@" | grep -q -E '(fs|def|root)?context='; then + con=$(ls --scontext -d "$2" | cut -f 1 -d ' ') + if [ -n "$con" ] && [ "$con" != "?" ] && [ "$con" != "unlabeled" ]; then + exec /bin/mount "$@" -o "rootcontext=\"$con\"" -i -t tmpfs + fi +fi + +exec /bin/mount "$@" -i -t tmpfs diff --git a/nologin.8 b/nologin.8 new file mode 100644 index 0000000..5cb1601 --- /dev/null +++ b/nologin.8 @@ -0,0 +1,63 @@ +.\" $OpenBSD: nologin.8,v 1.8 1999/06/04 02:45:19 aaron Exp $ +.\" $NetBSD: nologin.8,v 1.3 1995/03/18 14:59:09 cgd Exp $ +.\" +.\" Copyright (c) 1993 +.\" The Regents of the University of California. All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" 3. All advertising materials mentioning features or use of this software +.\" must display the following acknowledgement: +.\" This product includes software developed by the University of +.\" California, Berkeley and its contributors. +.\" 4. Neither the name of the University nor the names of its contributors +.\" may be used to endorse or promote products derived from this software +.\" without specific prior written permission. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" @(#)nologin.8 8.1 (Berkeley) 6/19/93 +.\" +.Dd February 15, 1997 +.Dt NOLOGIN 8 +.Os +.Sh NAME +.Nm nologin +.Nd politely refuse a login +.Sh SYNOPSIS +.Nm nologin +.Sh DESCRIPTION +.Nm +displays a message that an account is not available and +exits non-zero. +It is intended as a replacement shell field for accounts that +have been disabled. +.Pp +If the file +.Pa /etc/nologin.txt +exists, +.Nm +displays its contents to the user instead of the default message. +.Sh SEE ALSO +.Xr login 1 +.Sh HISTORY +The +.Nm +command appeared in +.Bx 4.4 . diff --git a/nologin.c b/nologin.c new file mode 100644 index 0000000..8a51ba9 --- /dev/null +++ b/nologin.c @@ -0,0 +1,58 @@ +/* $OpenBSD: nologin.c,v 1.2 1997/04/04 16:51:37 millert Exp $ */ + +/* + * Copyright (c) 1997, Jason Downs. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS + * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include +#include +#include +#include +#include + +/* Distinctly different from _PATH_NOLOGIN. */ +#define _PATH_NOLOGIN_TXT "/etc/nologin.txt" + +#define DEFAULT_MESG "This account is currently not available.\n" + +/*ARGSUSED*/ +int main(argc, argv) + int argc; + char *argv[]; +{ + int nfd, nrd; + char nbuf[128]; + + nfd = open(_PATH_NOLOGIN_TXT, O_RDONLY); + if (nfd < 0) { + write(STDOUT_FILENO, DEFAULT_MESG, strlen(DEFAULT_MESG)); + exit (1); + } + + while ((nrd = read(nfd, nbuf, sizeof(nbuf))) > 0) + write(STDOUT_FILENO, nbuf, nrd); + close (nfd); + + exit (1); +} diff --git a/sources b/sources new file mode 100644 index 0000000..932e879 --- /dev/null +++ b/sources @@ -0,0 +1,2 @@ +b9d0053a22cfcbf0b9c0aa6d6eccfbc8 util-linux-ng-2.14.2.tar.bz2 +7eeb9a6f7a258174bf0fa80f1370788d floppy-0.16.tar.bz2 diff --git a/util-linux-ng-2.13-ctrlaltdel-man.patch b/util-linux-ng-2.13-ctrlaltdel-man.patch new file mode 100644 index 0000000..ab7c6bd --- /dev/null +++ b/util-linux-ng-2.13-ctrlaltdel-man.patch @@ -0,0 +1,10 @@ +--- util-linux-2.13-pre6/sys-utils/ctrlaltdel.8.kzak 2006-08-10 12:23:53.000000000 +0200 ++++ util-linux-2.13-pre6/sys-utils/ctrlaltdel.8 2006-08-10 12:24:08.000000000 +0200 +@@ -32,7 +32,6 @@ + .SH FILES + .I /etc/rc.local + .SH "SEE ALSO" +-.BR simpleinit (8), + .BR init (8) + .SH AUTHOR + Peter Orbaek (poe@daimi.aau.dk) diff --git a/util-linux-ng-2.13-fdformat-man-ide.patch b/util-linux-ng-2.13-fdformat-man-ide.patch new file mode 100644 index 0000000..1116641 --- /dev/null +++ b/util-linux-ng-2.13-fdformat-man-ide.patch @@ -0,0 +1,23 @@ +--- util-linux-ng-2.13-rc3/disk-utils/fdformat.8.xxx 2007-07-03 01:56:04.000000000 +0200 ++++ util-linux-ng-2.13-rc3/disk-utils/fdformat.8 2007-08-13 12:07:58.000000000 +0200 +@@ -45,6 +45,10 @@ + .BR setfdprm (8) + to load the disk parameters. + ++For ATAPI IDE floppy driver (also known as LS-120 drives or "Superdisk" ++drives) you have to use the ++.BR floppy (8). ++ + .SH OPTIONS + .TP + .B \-n +@@ -54,7 +58,8 @@ + .BR fd (4), + .BR setfdprm (8), + .BR mkfs (8), +-.BR emkfs (8) ++.BR emkfs (8), ++.BR floppy (8) + .SH AUTHOR + Werner Almesberger (almesber@nessie.cs.id.ethz.ch) + .SH AVAILABILITY diff --git a/util-linux-ng-2.13-floppy-generic.patch b/util-linux-ng-2.13-floppy-generic.patch new file mode 100644 index 0000000..ffc4750 --- /dev/null +++ b/util-linux-ng-2.13-floppy-generic.patch @@ -0,0 +1,102 @@ +--- util-linux-2.12p/floppy-0.16/floppyfloppy.c.generic 2001-02-13 01:15:38.000000000 +0100 ++++ util-linux-2.12p/floppy-0.16/floppyfloppy.c 2005-09-30 15:38:08.000000000 +0200 +@@ -264,6 +264,33 @@ + #endif + } + ++/* -1=error, 1=true, 0=false */ ++static int check_generic(const char *dev, int n) ++{ ++ struct floppy_struct param; ++ int fd; ++ ++ if ((fd=open(dev, O_RDONLY)) < 0) ++ { ++ perror(dev); ++ return -1; ++ } ++ if (ioctl(fd,FDGETPRM,(long) ¶m) < 0) ++ { ++ perror(dev); ++ close(fd); ++ return -1; ++ } ++ close(fd); ++ ++ if (param.sect==floppy_type[n].sectors && ++ param.head==floppy_type[n].heads && ++ param.track==floppy_type[n].tracks) ++ /* generic device uses expected format */ ++ return 1; ++ ++ return 0; ++} + + static int do_format(const char *dev, int fmtnum, + int (*fmt_func)(const char *, int), int flags) +@@ -275,6 +302,7 @@ + struct format_descr curtrack; + int pct; + struct stat stat_buf; ++ int gen = 0; + + int i, j; + char *devname; +@@ -297,23 +325,52 @@ + + strcat(strcpy(devname, dev), floppy_type[fmtnum].dev); + ++ if (stat(devname, &stat_buf)==-1 && errno==ENOENT) ++ { ++ /* /dev/fd0xxxxx doesn't exist ...try to use generic device ++ * ++ * Note: we needn't size specific device if the generic device uses ++ * right floppy format (FDGETPRM). -- Karel Zak [30/09/2005] ++ */ ++ if ((gen = check_generic(dev, fmtnum))==1) /* true */ ++ { ++ fprintf(stderr, _("WARNING: size specific device %s doesn't exist, using generic device: %s\n"), ++ devname, dev); ++ strcpy(devname, dev); ++ } ++ else if (gen==0) /* false */ ++ { ++ fprintf(stderr, _("ERROR: size specific device %1$s doesn't exist. Use \"MAKEDEV %1$s\" and try it again.\n"), devname); ++ return (1); ++ } ++ else /* error -- no floppy medium or device? */ ++ return(1); ++ } + fd=open(devname, O_WRONLY); + if (fd < 0) + { + perror(devname); + return (1); + } +- +- if (fstat(fd, &stat_buf) || +- !S_ISBLK(stat_buf.st_mode) || +- MINOR_DEV(stat_buf.st_rdev) != fmtnum) ++ if (fstat(fd, &stat_buf) < 0) ++ { ++ perror(devname); ++ close(fd); ++ return (1); ++ } ++ if (!S_ISBLK(stat_buf.st_mode)) ++ { ++ fprintf(stderr,_("%s: not a block device\n"), devname); ++ close(fd); ++ return (1); ++ } ++ if (gen==0 && MINOR_DEV(stat_buf.st_rdev) != fmtnum) + { + errno=EINVAL; + perror(devname); + close(fd); + return (1); + } +- + if (ioctl(fd, FDGETPRM, &geo) < 0) + { + perror(devname); diff --git a/util-linux-ng-2.13-floppy-locale.patch b/util-linux-ng-2.13-floppy-locale.patch new file mode 100644 index 0000000..9b8142f --- /dev/null +++ b/util-linux-ng-2.13-floppy-locale.patch @@ -0,0 +1,10 @@ +--- util-linux-ng-2.13-rc3/floppy-0.16/superfloppy.c.kzak 2001-07-14 05:26:16.000000000 +0200 ++++ util-linux-ng-2.13-rc3/floppy-0.16/superfloppy.c 2007-08-13 13:14:53.000000000 +0200 +@@ -12,6 +12,7 @@ + #include + #include + #include ++#include + #include + #include + #include diff --git a/util-linux-ng-2.13-login-lastlog.patch b/util-linux-ng-2.13-login-lastlog.patch new file mode 100644 index 0000000..548b99d --- /dev/null +++ b/util-linux-ng-2.13-login-lastlog.patch @@ -0,0 +1,13 @@ +Index: util-linux-ng-2.14.2-rc1/login-utils/login.c +=================================================================== +--- util-linux-ng-2.14.2-rc1.orig/login-utils/login.c ++++ util-linux-ng-2.14.2-rc1/login-utils/login.c +@@ -1415,7 +1415,7 @@ dolastlog(int quiet) { + struct lastlog ll; + int fd; + +- if ((fd = open(_PATH_LASTLOG, O_RDWR, 0)) >= 0) { ++ if ((fd = open(_PATH_LASTLOG, O_RDWR|O_CREAT, 0)) >= 0) { + lseek(fd, (off_t)pwd->pw_uid * sizeof(ll), SEEK_SET); + if (!quiet) { + if (read(fd, (char *)&ll, sizeof(ll)) == sizeof(ll) && diff --git a/util-linux-ng-2.14-blockdev-rmpart.patch b/util-linux-ng-2.14-blockdev-rmpart.patch new file mode 100644 index 0000000..a907a06 --- /dev/null +++ b/util-linux-ng-2.14-blockdev-rmpart.patch @@ -0,0 +1,93 @@ +diff -up util-linux-ng-2.14-rc3/disk-utils/blockdev.c.rm util-linux-ng-2.14-rc3/disk-utils/blockdev.c +--- util-linux-ng-2.14-rc3/disk-utils/blockdev.c.rm 2008-04-22 10:59:53.000000000 +0200 ++++ util-linux-ng-2.14-rc3/disk-utils/blockdev.c 2008-05-19 12:31:52.000000000 +0200 +@@ -10,6 +10,7 @@ + #include + #include + #include ++#include + + #include "nls.h" + #include "blkdev.h" +@@ -47,8 +48,11 @@ struct bdc { + { "--setfra", "BLKFRASET", BLKFRASET, ARGINTA, 0, "FSREADAHEAD", N_("set filesystem readahead") }, + { "--getfra", "BLKFRAGET", BLKFRAGET, ARGLINTG, -1, NULL, N_("get filesystem readahead") }, + { "--flushbufs", "BLKFLSBUF", BLKFLSBUF, ARGNONE, 0, NULL, N_("flush buffers") }, +- { "--rereadpt", "BLKRRPART", BLKRRPART, ARGNONE, 0, NULL, +- N_("reread partition table") }, ++ { "--rereadpt", "BLKRRPART", BLKRRPART, ARGNONE, 0, NULL, N_("reread partition table") }, ++#ifdef BLKPG ++ { "--rmpart", "BLKPG", BLKPG, ARGINTAP, 0, "PARTNO", N_("disable partition") }, ++ { "--rmparts", "BLKPG", BLKPG, ARGNONE, 0, NULL, N_("disable all partitions") }, ++#endif + }; + + #define SIZE(a) (sizeof(a)/sizeof((a)[0])) +@@ -89,6 +93,40 @@ find_cmd(char *s) { + return -1; + } + ++#ifdef BLKPG ++static int ++disable_partition(int fd, int partno) { ++ struct blkpg_partition part = { ++ .pno = partno, ++ .start = 0, ++ .length = 0, ++ .devname[0] = 0, ++ .volname[0] = 0, ++ }; ++ struct blkpg_ioctl_arg io = { ++ .op = BLKPG_DEL_PARTITION, ++ .datalen = sizeof(part), ++ .data = &part, ++ .flags = 0, ++ }; ++ int res; ++ ++ res = ioctl(fd, BLKPG, &io); ++ if (res < 0) ++ return 0; ++ return 1; ++} ++ ++static int ++disable_partitions(int fd) { ++ int p, res = 0; ++ ++ for (p = 1; p <= 256; p++) ++ res += disable_partition(fd, p); ++ return res ? 0 : -1; ++} ++#endif ++ + void do_commands(int fd, char **argv, int d); + void report_header(void); + void report_device(char *device, int quiet); +@@ -206,6 +244,12 @@ do_commands(int fd, char **argv, int d) + switch(bdcms[j].argtype) { + default: + case ARGNONE: ++#ifdef BLKPG ++ if (bdcms[j].ioc == BLKPG) { ++ res = disable_partitions(fd); ++ break; ++ } ++#endif + res = ioctl(fd, bdcms[j].ioc, 0); + break; + case ARGINTA: +@@ -223,6 +267,13 @@ do_commands(int fd, char **argv, int d) + bdcms[j].name); + usage(); + } ++#ifdef BLKPG ++ if (bdcms[j].ioc == BLKPG) { ++ iarg = atoi(argv[++i]); ++ res = disable_partition(fd, iarg) ? 0 : -1; ++ break; ++ } ++#endif + iarg = atoi(argv[++i]); + res = ioctl(fd, bdcms[j].ioc, &iarg); + break; diff --git a/util-linux-ng-2.14-dmesg-r.patch b/util-linux-ng-2.14-dmesg-r.patch new file mode 100644 index 0000000..0e4a065 --- /dev/null +++ b/util-linux-ng-2.14-dmesg-r.patch @@ -0,0 +1,79 @@ +From 11ea22d5a3dbb69557a4e1c7e3c862b0765102b5 Mon Sep 17 00:00:00 2001 +From: Adam Jackson +Date: Thu, 8 Jan 2009 11:44:27 -0500 +Subject: [PATCH] dmesg: Add -r (raw) option. + +Useful for debugging which kernel messages are ruining your quiet +bootup. + +Signed-off-by: Adam Jackson +--- + sys-utils/dmesg.1 | 5 ++++- + sys-utils/dmesg.c | 8 ++++++-- + 2 files changed, 10 insertions(+), 3 deletions(-) + +diff --git a/sys-utils/dmesg.1 b/sys-utils/dmesg.1 +index d5dfa9d..33fd8b0 100644 +--- a/sys-utils/dmesg.1 ++++ b/sys-utils/dmesg.1 +@@ -4,7 +4,7 @@ + .SH NAME + dmesg \- print or control the kernel ring buffer + .SH SYNOPSIS +-.BI "dmesg [ \-c ] [ \-n " level " ] [ \-s " bufsize " ]" ++.BI "dmesg [ \-c ] [ -r ] [ \-n " level " ] [ \-s " bufsize " ]" + .SH DESCRIPTION + .B dmesg + is used to examine or control the kernel ring buffer. +@@ -22,6 +22,9 @@ file to whoever can debug their problem. + .B \-c + Clear the ring buffer contents after printing. + .TP ++.B \-r ++Print the raw message buffer, i.e., don't strip the log level prefixes. ++.TP + .BI \-s bufsize + Use a buffer of size + .I bufsize +diff --git a/sys-utils/dmesg.c b/sys-utils/dmesg.c +index ac0535d..b634d86 100644 +--- a/sys-utils/dmesg.c ++++ b/sys-utils/dmesg.c +@@ -56,13 +56,14 @@ main(int argc, char *argv[]) { + int level = 0; + int lastc; + int cmd = 3; /* Read all messages in the ring buffer */ ++ int raw = 0; + + setlocale(LC_ALL, ""); + bindtextdomain(PACKAGE, LOCALEDIR); + textdomain(PACKAGE); + + progname = argv[0]; +- while ((c = getopt(argc, argv, "cn:s:")) != -1) { ++ while ((c = getopt(argc, argv, "crn:s:")) != -1) { + switch (c) { + case 'c': + cmd = 4; /* Read and clear all messages */ +@@ -71,6 +72,9 @@ main(int argc, char *argv[]) { + cmd = 8; /* Set level of messages */ + level = atoi(optarg); + break; ++ case 'r': ++ raw = 1; ++ break; + case 's': + bufsize = atoi(optarg); + if (bufsize < 4096) +@@ -131,7 +135,7 @@ main(int argc, char *argv[]) { + + lastc = '\n'; + for (i = 0; i < n; i++) { +- if ((i == 0 || buf[i - 1] == '\n') && buf[i] == '<') { ++ if (!raw && (i == 0 || buf[i - 1] == '\n') && buf[i] == '<') { + i++; + while (buf[i] >= '0' && buf[i] <= '9') + i++; +-- +1.6.0.6 + diff --git a/util-linux-ng-2.14-fdisk-4k-I.patch b/util-linux-ng-2.14-fdisk-4k-I.patch new file mode 100644 index 0000000..f21b661 --- /dev/null +++ b/util-linux-ng-2.14-fdisk-4k-I.patch @@ -0,0 +1,70 @@ +From 10e3d0319a009a86a92c26da274e50850da0a9b3 Mon Sep 17 00:00:00 2001 +From: Eric Sandeen +Date: Thu, 26 Feb 2009 09:53:09 +0100 +Subject: [PATCH] fdisk: doesn't handle large (4KiB) sectors properly + +fdisk (at least with the -u option) does not handle sector sizes other +than 512. + +Address-Red-Hat-Bugzilla: #487227 +Signed-off-by: Eric Sandeen +Signed-off-by: Karel Zak +--- + fdisk/fdisk.c | 10 +++++----- + 1 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/fdisk/fdisk.c b/fdisk/fdisk.c +index 9504e7a..0c83747 100644 +--- a/fdisk/fdisk.c ++++ b/fdisk/fdisk.c +@@ -212,6 +212,7 @@ unsigned long long sector_offset = 1, extended_offset = 0, sectors; + unsigned int heads, + cylinders, + sector_size = DEFAULT_SECTOR_SIZE, ++ sector_factor = 1, + user_set_sector_size = 0, + units_per_sector = 1, + display_in_cyl_units = 1; +@@ -905,11 +906,10 @@ get_partition_table_geometry(void) { + + void + get_geometry(int fd, struct geom *g) { +- int sec_fac; + unsigned long long llsectors, llcyls; + + get_sectorsize(fd); +- sec_fac = sector_size / 512; ++ sector_factor = sector_size / 512; + guess_device_type(fd); + heads = cylinders = sectors = 0; + kern_heads = kern_sectors = 0; +@@ -934,7 +934,7 @@ get_geometry(int fd, struct geom *g) { + if (dos_compatible_flag) + sector_offset = sectors; + +- llcyls = total_number_of_sectors / (heads * sectors * sec_fac); ++ llcyls = total_number_of_sectors / (heads * sectors * sector_factor); + cylinders = llcyls; + if (cylinders != llcyls) /* truncated? */ + cylinders = ~0; +@@ -1640,7 +1640,7 @@ list_disk_geometry(void) { + heads, sectors, cylinders); + if (units_per_sector == 1) + printf(_(", total %llu sectors"), +- total_number_of_sectors / (sector_size/512)); ++ total_number_of_sectors / sector_factor); + printf("\n"); + printf(_("Units = %s of %d * %d = %d bytes\n"), + str_units(PLURAL), +@@ -2030,7 +2030,7 @@ add_partition(int n, int sys) { + if (display_in_cyl_units || !total_number_of_sectors) + llimit = heads * sectors * cylinders - 1; + else +- llimit = total_number_of_sectors - 1; ++ llimit = (total_number_of_sectors / sector_factor) - 1; + limit = llimit; + if (limit != llimit) + limit = 0x7fffffff; +-- +1.6.0.6 + diff --git a/util-linux-ng-2.14-fdisk-4k-II.patch b/util-linux-ng-2.14-fdisk-4k-II.patch new file mode 100644 index 0000000..1aac5ff --- /dev/null +++ b/util-linux-ng-2.14-fdisk-4k-II.patch @@ -0,0 +1,63 @@ +diff -up util-linux-ng-2.14.2/fdisk/fdisk.c.kzak util-linux-ng-2.14.2/fdisk/fdisk.c +--- util-linux-ng-2.14.2/fdisk/fdisk.c.kzak 2009-03-19 09:59:50.000000000 +0100 ++++ util-linux-ng-2.14.2/fdisk/fdisk.c 2009-03-19 09:59:50.000000000 +0100 +@@ -216,7 +216,7 @@ unsigned int heads, + units_per_sector = 1, + display_in_cyl_units = 1; + +-unsigned long long total_number_of_sectors; ++unsigned long long total_number_of_sectors; /* (!) 512-byte sectors */ + + #define dos_label (!sun_label && !sgi_label && !aix_label && !mac_label && !osf_label) + int sun_label = 0; /* looking at sun disklabel */ +@@ -892,7 +892,7 @@ get_partition_table_geometry(void) { + + void + get_geometry(int fd, struct geom *g) { +- unsigned long long llsectors, llcyls; ++ unsigned long long llcyls; + + get_sectorsize(fd); + sector_factor = sector_size / 512; +@@ -911,10 +911,8 @@ get_geometry(int fd, struct geom *g) { + pt_sectors ? pt_sectors : + kern_sectors ? kern_sectors : 63; + +- if (blkdev_get_sectors(fd, &llsectors) == -1) +- llsectors = 0; +- +- total_number_of_sectors = llsectors; ++ if (blkdev_get_sectors(fd, &total_number_of_sectors) == -1) ++ total_number_of_sectors = 0; + + sector_offset = 1; + if (dos_compatible_flag) +@@ -1922,7 +1920,8 @@ check(int n, unsigned int h, unsigned in + static void + verify(void) { + int i, j; +- unsigned long total = 1; ++ unsigned long long total = 1; ++ unsigned long long n_sectors = (total_number_of_sectors / sector_factor); + unsigned long long first[partitions], last[partitions]; + struct partition *p; + +@@ -1985,12 +1984,12 @@ verify(void) { + } + } + +- if (total > total_number_of_sectors) +- printf(_("Total allocated sectors %ld greater than the maximum" +- " %lld\n"), total, total_number_of_sectors); +- else if (total < total_number_of_sectors) +- printf(_("%lld unallocated sectors\n"), +- total_number_of_sectors - total); ++ if (total > n_sectors) ++ printf(_("Total allocated sectors %llu greater than the maximum" ++ " %llu\n"), total, n_sectors); ++ else if (total < n_sectors) ++ printf(_("%lld unallocated %d-byte sectors\n"), ++ n_sectors - total, sector_size); + } + + static void diff --git a/util-linux-ng-2.14-fdisk-4k-III.patch b/util-linux-ng-2.14-fdisk-4k-III.patch new file mode 100644 index 0000000..bb5e70a --- /dev/null +++ b/util-linux-ng-2.14-fdisk-4k-III.patch @@ -0,0 +1,44 @@ +From 8905beda2abb59b48ba00c5d521c934ead4df80b Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Mon, 9 Mar 2009 09:52:08 +0100 +Subject: [PATCH] fdisk: support "-b 4096" option + +The fdisk code is more ready for 4kB sectors and it makes sense to +support such sectr size for "-b" option. + +Address-Red-Hat-Bugzilla: #218915 +Signed-off-by: Karel Zak +--- + fdisk/fdisk.8 | 2 +- + fdisk/fdisk.c | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/fdisk/fdisk.8 b/fdisk/fdisk.8 +index aea8820..30ee9d4 100644 +--- a/fdisk/fdisk.8 ++++ b/fdisk/fdisk.8 +@@ -166,7 +166,7 @@ program and Linux partitions with the Linux fdisk or Linux cfdisk program. + .SH OPTIONS + .TP + .BI "\-b " sectorsize +-Specify the sector size of the disk. Valid values are 512, 1024, or 2048. ++Specify the sector size of the disk. Valid values are 512, 1024, 2048 or 4096. + (Recent kernels know the sector size. Use this only on old kernels or + to override the kernel's ideas.) + .TP +diff --git a/fdisk/fdisk.c b/fdisk/fdisk.c +index b7e517a..5593503 100644 +--- a/fdisk/fdisk.c ++++ b/fdisk/fdisk.c +@@ -2612,7 +2612,7 @@ main(int argc, char **argv) { + */ + sector_size = atoi(optarg); + if (sector_size != 512 && sector_size != 1024 && +- sector_size != 2048) ++ sector_size != 2048 && sector_size != 4096) + fatal(usage); + sector_offset = 2; + user_set_sector_size = 1; +-- +1.6.0.6 + diff --git a/util-linux-ng-2.14-flock-segfaults.patch b/util-linux-ng-2.14-flock-segfaults.patch new file mode 100644 index 0000000..9320739 --- /dev/null +++ b/util-linux-ng-2.14-flock-segfaults.patch @@ -0,0 +1,54 @@ +From 841f86dbc2e35166fd43341c8eb144680b0c7ece Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Wed, 11 Mar 2009 12:49:50 +0100 +Subject: [PATCH] flockc: segfaults when file name is not given + +$ flock -s +Segmentation fault + +ltrace: +__libc_start_main(0x8048870, 2, 0xbfe9f404, 0x8049070, 0x8049060 +getopt_long(2, 0xbfe9f404, "+sexnouw:hV?", 0x80494e0, 0xbfe9f354) = 115 +getopt_long(2, 0xbfe9f404, "+sexnouw:hV?", 0x80494e0, 0xbfe9f354) = -1 +strtol(0, 0xbfe9f34c, 10, 0x80494e0, 0xbfe9f354 +--- SIGSEGV (Segmentation fault) --- ++++ killed by SIGSEGV +++ + +Addresses-Red-Had-Bugzilla: #489672 +Signed-off-by: Karel Zak +--- + sys-utils/flock.c | 9 ++++++++- + 1 files changed, 8 insertions(+), 1 deletions(-) + +diff --git a/sys-utils/flock.c b/sys-utils/flock.c +index 029e436..3386e15 100644 +--- a/sys-utils/flock.c ++++ b/sys-utils/flock.c +@@ -217,7 +217,7 @@ int main(int argc, char *argv[]) + EX_NOINPUT); + } + +- } else { ++ } else if (optind < argc) { + /* Use provided file descriptor */ + + fd = (int)strtol(argv[optind], &eon, 10); +@@ -226,8 +226,15 @@ int main(int argc, char *argv[]) + exit(EX_USAGE); + } + ++ } else { ++ /* Bad options */ ++ ++ fprintf(stderr, "%s: requires file descriptor, file or directory\n", ++ program); ++ exit(EX_USAGE); + } + ++ + if ( have_timeout ) { + if ( timeout.it_value.tv_sec == 0 && + timeout.it_value.tv_usec == 0 ) { +-- +1.6.0.6 + diff --git a/util-linux-ng-2.14-ipcs-32bit.patch b/util-linux-ng-2.14-ipcs-32bit.patch new file mode 100644 index 0000000..55c52dd --- /dev/null +++ b/util-linux-ng-2.14-ipcs-32bit.patch @@ -0,0 +1,57 @@ +diff -up util-linux-ng-2.14.2-rc1/sys-utils/ipcs.c.kzak util-linux-ng-2.14.2-rc1/sys-utils/ipcs.c +--- util-linux-ng-2.14.2-rc1/sys-utils/ipcs.c.kzak 2008-12-22 18:53:06.000000000 +0100 ++++ util-linux-ng-2.14.2-rc1/sys-utils/ipcs.c 2008-12-22 19:31:20.000000000 +0100 +@@ -253,6 +253,26 @@ print_perms (int id, struct ipc_perm *ip + printf(" %-10d\n", ipcp->gid); + } + ++static unsigned long long ++shminfo_from_proc(const char *name, unsigned long def) ++{ ++ char path[256]; ++ char buf[64]; ++ FILE *f; ++ unsigned long long res = def; ++ ++ if (!name) ++ return res; ++ ++ snprintf(path, sizeof(path), "/proc/sys/kernel/%s", name); ++ ++ if (!(f = fopen(path, "r"))) ++ return res; ++ if (fgets(buf, sizeof(buf), f)) ++ res = atoll(buf); ++ fclose(f); ++ return res; ++} + + void do_shm (char format) + { +@@ -268,7 +288,7 @@ void do_shm (char format) + printf (_("kernel not configured for shared memory\n")); + return; + } +- ++ + switch (format) { + case LIMITS: + printf (_("------ Shared Memory Limits --------\n")); +@@ -276,12 +296,12 @@ void do_shm (char format) + return; + /* glibc 2.1.3 and all earlier libc's have ints as fields + of struct shminfo; glibc 2.1.91 has unsigned long; ach */ +- printf (_("max number of segments = %lu\n"), +- (unsigned long) shminfo.shmmni); +- printf (_("max seg size (kbytes) = %lu\n"), +- (unsigned long) (shminfo.shmmax >> 10)); ++ printf (_("max number of segments = %llu\n"), ++ shminfo_from_proc("shmmni", shminfo.shmmni)); ++ printf (_("max seg size (kbytes) = %llu\n"), ++ (shminfo_from_proc("shmmax", shminfo.shmmax) >> 10)); + printf (_("max total shared memory (kbytes) = %llu\n"), +- getpagesize() / 1024 * (unsigned long long) shminfo.shmall); ++ getpagesize() / 1024 * shminfo_from_proc("shmall", shminfo.shmall)); + printf (_("min seg size (bytes) = %lu\n"), + (unsigned long) shminfo.shmmin); + return; diff --git a/util-linux-ng-2.14-login-remote.patch b/util-linux-ng-2.14-login-remote.patch new file mode 100644 index 0000000..f073e15 --- /dev/null +++ b/util-linux-ng-2.14-login-remote.patch @@ -0,0 +1,55 @@ +From 067f5343c86ed6dd135cdf57eb99aa3f982fceed Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Tue, 17 Mar 2009 21:00:42 +0100 +Subject: [PATCH] login: use "remote" as a PAM service name for "login -h" + +Signed-off-by: Karel Zak +--- + login-utils/login.1 | 10 ++++++++++ + login-utils/login.c | 2 +- + 2 files changed, 11 insertions(+), 1 deletions(-) + +diff --git a/login-utils/login.1 b/login-utils/login.1 +index 9ddf25b..1227381 100644 +--- a/login-utils/login.1 ++++ b/login-utils/login.1 +@@ -105,6 +105,14 @@ to pass the name of the remote host to + so that it may be placed in utmp and wtmp. Only the superuser may use + this option. + ++Note that the \fB-h\fP option has impact on the \fBPAM service name\fP. The standard ++service name is "login", with the \fB-h\fP option the name is "remote". It's ++necessary to create a proper PAM config files (e.g. ++.I /etc/pam.d/login ++and ++.I /etc/pam.d/remote ++). ++ + .SH "SPECIAL ACCESS RESTRICTIONS" + The file + .I /etc/securetty +@@ -297,6 +305,8 @@ are allowed to log in from anywhere as is standard behavior. + .I /etc/passwd + .I /etc/nologin + .I /etc/usertty ++.I /etc/pam.d/login ++.I /etc/pam.d/remote + .I .hushlogin + .fi + .SH "SEE ALSO" +diff --git a/login-utils/login.c b/login-utils/login.c +index d362113..c924a1f 100644 +--- a/login-utils/login.c ++++ b/login-utils/login.c +@@ -552,7 +552,7 @@ main(int argc, char **argv) + * Therefore, we are safe not setting it to anything + */ + +- retcode = pam_start("login",username, &conv, &pamh); ++ retcode = pam_start(hflag?"remote":"login",username, &conv, &pamh); + if(retcode != PAM_SUCCESS) { + fprintf(stderr, _("%s: PAM failure, aborting: %s\n"), + "login", pam_strerror(pamh, retcode)); +-- +1.6.0.6 + diff --git a/util-linux-ng-2.14-mount-man-ext4.patch b/util-linux-ng-2.14-mount-man-ext4.patch new file mode 100644 index 0000000..eb9e9c6 --- /dev/null +++ b/util-linux-ng-2.14-mount-man-ext4.patch @@ -0,0 +1,127 @@ +diff -up util-linux-ng-2.14.2/mount/mount.8.kzak util-linux-ng-2.14.2/mount/mount.8 +--- util-linux-ng-2.14.2/mount/mount.8.kzak 2009-02-09 11:08:11.000000000 +0100 ++++ util-linux-ng-2.14.2/mount/mount.8 2009-06-01 14:19:00.000000000 +0200 +@@ -411,10 +411,12 @@ Mount the file system read-only. A synon + .BR "\-o ro" . + + Note that, depending on the filesystem type, state and kernel behavior, the +-system may still write to the device. For example, Ext3 will replay its journal +-if the filesystem is dirty. To prevent this kind of write access, you may want +-to set the block device to read-only mode, see command +-.BR blockdev (8). ++system may still write to the device. For example, Ext3 or ext4 will replay its ++journal if the filesystem is dirty. To prevent this kind of write access, you ++may want to mount ext3 or ext4 filesystem with "ro,noload" mount options or ++set the block device to read-only mode, see command ++.BR blockdev (8) ++. + .TP + .B \-w + Mount the file system read/write. This is the default. A synonym is +@@ -1160,7 +1162,105 @@ manual page. + Enable POSIX Access Control Lists. See the + .BR acl (5) + manual page. +- ++ ++.SH "Mount options for ext4" ++The `ext4' is an an advanced level of the ext3 filesystem which incorporates ++scalability and reliability enhancements for supporting large filesystem. ++ ++The options ++.B journal_dev, noload, data, commit, orlov, oldalloc, [no]user_xattr ++.B [no]acl, bsddf, minixdf, debug, errors, data_err, grpid, bsdgroups, nogrpid ++.B sysvgroups, resgid, resuid, sb, quota, noquota, grpquota, usrquota ++and ++.B [no]bh ++are backwardly compatible with ext3 or ext2. ++.TP ++.BR journal_checksum ++Enable checksumming of the journal transactions. This will allow the recovery ++code in e2fsck and the kernel to detect corruption in the kernel. It is a ++compatible change and will be ignored by older kernels. ++.TP ++.BR journal_async_commit ++Commit block can be written to disk without waiting for descriptor blocks. If ++enabled older kernels cannot mount the device. This will enable ++'journal_checksum' internally. ++.TP ++.BR journal=update ++Update the ext4 file system's journal to the current format. ++.TP ++.BR barrier=0 " / " barrier=1 " / " barrier " / " nobarrier ++This enables/disables the use of write barriers in the jbd code. barrier=0 ++disables, barrier=1 enables. This also requires an IO stack which can support ++barriers, and if jbd gets an error on a barrier write, it will disable again ++with a warning. Write barriers enforce proper on-disk ordering of journal ++commits, making volatile disk write caches safe to use, at some performance ++penalty. If your disks are battery-backed in one way or another, disabling ++barriers may safely improve performance. The mount options "barrier" and ++"nobarrier" can also be used to enable or disable barriers, for consistency ++with other ext4 mount options. ++.TP ++.BI inode_readahead= n ++This tuning parameter controls the maximum number of inode table blocks that ++ext4's inode table readahead algorithm will pre-read into the buffer cache. ++The default value is 32 blocks. ++.TP ++.BI stripe= n ++Number of filesystem blocks that mballoc will try to use for allocation size ++and alignment. For RAID5/6 systems this should be the number of data disks * ++RAID chunk size in file system blocks. ++.TP ++.BR delalloc ++Deferring block allocation until write-out time. ++.TP ++.BR nodelalloc ++Disable delayed allocation. Blocks are allocation when data is copied from user ++to page cache. ++.TP ++.BI max_batch_time= usec ++Maximum amount of time ext4 should wait for additional filesystem operations to ++be batch together with a synchronous write operation. Since a synchronous ++write operation is going to force a commit and then a wait for the I/O ++complete, it doesn't cost much, and can be a huge throughput win, we wait for a ++small amount of time to see if any other transactions can piggyback on the ++synchronous write. The algorithm used is designed to automatically tune for ++the speed of the disk, by measuring the amount of time (on average) that it ++takes to finish committing a transaction. Call this time the "commit time". ++If the time that the transactoin has been running is less than the commit time, ++ext4 will try sleeping for the commit time to see if other operations will join ++the transaction. The commit time is capped by the max_batch_time, which ++defaults to 15000us (15ms). This optimization can be turned off entirely by ++setting max_batch_time to 0. ++.TP ++.BI min_batch_time= usec ++This parameter sets the commit time (as described above) to be at least ++min_batch_time. It defaults to zero microseconds. Increasing this parameter ++may improve the throughput of multi-threaded, synchronous workloads on very ++fast disks, at the cost of increasing latency. ++.TP ++.BI journal_ioprio= prio ++The I/O priority (from 0 to 7, where 0 is the highest priorty) which should be ++used for I/O operations submitted by kjournald2 during a commit operation. ++This defaults to 3, which is a slightly higher priority than the default I/O ++priority. ++.TP ++.BR auto_da_alloc " / " noauto_da_alloc ++Many broken applications don't use fsync() when noauto_da_alloc ++replacing existing files via patterns such as ++ ++fd = open("foo.new")/write(fd,..)/close(fd)/ rename("foo.new", "foo") ++ ++or worse yet ++ ++fd = open("foo", O_TRUNC)/write(fd,..)/close(fd). ++ ++If auto_da_alloc is enabled, ext4 will detect the replace-via-rename and ++replace-via-truncate patterns and force that any delayed allocation blocks are ++allocated such that at the next journal commit, in the default data=ordered ++mode, the data blocks of the new file are forced to disk before the rename() ++operation is commited. This provides roughly the same level of guarantees as ++ext3, and avoids the "zero-length" problem that can happen when a system ++crashes before the delayed allocation blocks are forced to disk. ++ + .SH "Mount options for fat" + (Note: + .I fat diff --git a/util-linux-ng-2.14-mount-managed.patch b/util-linux-ng-2.14-mount-managed.patch new file mode 100644 index 0000000..f7e93e7 --- /dev/null +++ b/util-linux-ng-2.14-mount-managed.patch @@ -0,0 +1,13 @@ +Index: util-linux-ng-2.14.2-rc1/mount/mount.c +=================================================================== +--- util-linux-ng-2.14.2-rc1.orig/mount/mount.c ++++ util-linux-ng-2.14.2-rc1/mount/mount.c +@@ -180,6 +180,8 @@ static const struct opt_map opt_map[] = + { "norelatime", 0, 1, MS_RELATIME }, /* Update access time without regard + to mtime/ctime */ + #endif ++ { "kudzu", 0, 0, MS_COMMENT }, /* Silently remove this option (backwards compat use only - deprecated) */ ++ { "managed", 0, 0, MS_COMMENT }, /* Silently remove this option */ + { "nofail", 0, 0, MS_COMMENT}, /* Do not fail if ENOENT on dev */ + { NULL, 0, 0, 0 } + }; diff --git a/util-linux-ng-2.14-mount-strictatime.patch b/util-linux-ng-2.14-mount-strictatime.patch new file mode 100644 index 0000000..44d05ef --- /dev/null +++ b/util-linux-ng-2.14-mount-strictatime.patch @@ -0,0 +1,79 @@ + +This is backport of upstream patches: + +From 96f3bfbc7cbe4a96be60337bb58c361042b6df68 Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Fri, 11 Sep 2009 14:08:40 +0200 +Subject: [PATCH] mount: more explicitly explain 'strictatime' in mount. + +From ed64b8d0fc945ce49041f313c453b6b21d68b832 Mon Sep 17 00:00:00 2001 +From: Matthew Garrett +Date: Fri, 27 Mar 2009 00:47:22 +0000 +Subject: [PATCH] mount: Add strictatime support + + +diff -up util-linux-ng-2.14.2/mount/mount.8.kzak util-linux-ng-2.14.2/mount/mount.8 +--- util-linux-ng-2.14.2/mount/mount.8.kzak 2009-09-17 12:30:54.000000000 +0200 ++++ util-linux-ng-2.14.2/mount/mount.8 2009-09-17 12:33:32.000000000 +0200 +@@ -658,7 +658,9 @@ All I/O to the file system should be don + option.) + .TP + .B atime +-Update inode access time for each access. This is the default. ++Update inode access time for each access. See also the ++.B strictatime ++mount option. + .TP + .B noatime + Do not update inode access times on this file system (e.g, for faster +@@ -794,8 +796,21 @@ since the last time it was modified.) + .B norelatime + Do not use + .B relatime +-feature (e.g, for systems where the feature is enabled by default, for +-more details see mount options in /proc/mounts). ++feature. See also the ++.B strictatime ++mount option. ++.TP ++.B strictatime ++Allows to explicitly requesting full atime updates. This makes it ++possible for kernel to defaults to ++.B relatime ++or ++.B noatime ++but still allow userspace to override it. For more details about the default ++system mount options see /proc/mounts. ++.TP ++.B nostrictatime ++Use the kernel's default behaviour for inode access time updates. + .TP + .B suid + Allow set-user-identifier or set-group-identifier bits to take +diff -up util-linux-ng-2.14.2/mount/mount.c.kzak util-linux-ng-2.14.2/mount/mount.c +--- util-linux-ng-2.14.2/mount/mount.c.kzak 2009-09-17 12:30:54.000000000 +0200 ++++ util-linux-ng-2.14.2/mount/mount.c 2009-09-17 12:32:06.000000000 +0200 +@@ -180,6 +180,10 @@ static const struct opt_map opt_map[] = + { "norelatime", 0, 1, MS_RELATIME }, /* Update access time without regard + to mtime/ctime */ + #endif ++#ifdef MS_STRICTATIME ++ { "strictatime", 0, 0, MS_STRICTATIME }, /* Strict atime semantics */ ++ { "nostrictatime", 0, 1, MS_STRICTATIME }, /* kernel default atime */ ++#endif + { "kudzu", 0, 0, MS_COMMENT }, /* Silently remove this option (backwards compat use only - deprecated) */ + { "managed", 0, 0, MS_COMMENT }, /* Silently remove this option */ + { "nofail", 0, 0, MS_COMMENT}, /* Do not fail if ENOENT on dev */ +diff -up util-linux-ng-2.14.2/mount/mount_constants.h.kzak util-linux-ng-2.14.2/mount/mount_constants.h +--- util-linux-ng-2.14.2/mount/mount_constants.h.kzak 2009-01-09 11:01:34.000000000 +0100 ++++ util-linux-ng-2.14.2/mount/mount_constants.h 2009-09-17 12:31:21.000000000 +0200 +@@ -59,6 +59,9 @@ + #ifndef MS_I_VERSION + #define MS_I_VERSION (1<<23) /* update inode I_version field */ + #endif ++#ifndef MS_STRICTATIME ++#define MS_STRICTATIME (1<<24) /* strict atime semantics */ ++#endif + /* + * Magic mount flag number. Had to be or-ed to the flag values. + */ diff --git a/util-linux-ng-2.14-renice-n.patch b/util-linux-ng-2.14-renice-n.patch new file mode 100644 index 0000000..149304a --- /dev/null +++ b/util-linux-ng-2.14-renice-n.patch @@ -0,0 +1,83 @@ +From 7cfbafda9c484a8cadefc47ee115086e803d9391 Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Mon, 9 Mar 2009 21:09:50 +0100 +Subject: [PATCH] renice: add -n option for compatibility with POSIX + +The -n option is required by POSIX.1-200x. + +Signed-off-by: Karel Zak +--- + sys-utils/renice.1 | 7 ++++++- + sys-utils/renice.c | 12 +++++++++--- + 2 files changed, 15 insertions(+), 4 deletions(-) + +diff --git a/sys-utils/renice.1 b/sys-utils/renice.1 +index 3c20d6e..32a23e1 100644 +--- a/sys-utils/renice.1 ++++ b/sys-utils/renice.1 +@@ -29,7 +29,7 @@ + .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + .\" SUCH DAMAGE. + .\" +-.\" @(#)renice.8 8.1 (Berkeley) 6/9/93 ++.\" @(#)renice.8 8.1 (Berkeley) 6/9/93 + .\" + .Dd June 9, 1993 + .Dt RENICE 1 +@@ -39,6 +39,7 @@ + .Nd alter priority of running processes + .Sh SYNOPSIS + .Nm renice ++.Op Fl n + .Ar priority + .Oo + .Op Fl p +@@ -74,6 +75,10 @@ their process ID's. + Options supported by + .Nm renice : + .Bl -tag -width Ds ++.It Fl n, Fl Fl priority ++The scheduling ++.Ar priority ++of the process, process group, or user. + .It Fl g, Fl Fl pgrp + Force + .Ar who +diff --git a/sys-utils/renice.c b/sys-utils/renice.c +index ac05d25..879e8bd 100644 +--- a/sys-utils/renice.c ++++ b/sys-utils/renice.c +@@ -51,14 +51,15 @@ int donice(int,int,int); + void usage(int rc) + { + printf( _("\nUsage:\n" +- " renice priority [-p|--pid] pid [... pid]\n" +- " renice priority -g|--pgrp pgrp [... pgrp]\n" +- " renice priority -u|--user user [... user]\n" ++ " renice [-n] priority [-p|--pid] pid [... pid]\n" ++ " renice [-n] priority -g|--pgrp pgrp [... pgrp]\n" ++ " renice [-n] priority -u|--user user [... user]\n" + " renice -h | --help\n" + " renice -v | --version\n\n")); + + exit(rc); + } ++ + /* + * Change the priority (nice) of processes + * or groups of processes which are already +@@ -93,6 +94,11 @@ main(int argc, char **argv) + if (argc < 2) + usage(EXIT_FAILURE); + ++ if (strcmp(*argv, "-n") == 0 || strcmp(*argv, "--priority") == 0) { ++ argc--; ++ argv++; ++ } ++ + prio = strtol(*argv, &endptr, 10); + if (*endptr) + usage(EXIT_FAILURE); +-- +1.6.0.6 + diff --git a/util-linux-ng-2.14-sfdisk-dump.patch b/util-linux-ng-2.14-sfdisk-dump.patch new file mode 100644 index 0000000..89a644c --- /dev/null +++ b/util-linux-ng-2.14-sfdisk-dump.patch @@ -0,0 +1,54 @@ +From 1f1614f6a89de4b06e1843d0fadbca3f8a5521fe Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Fri, 11 Sep 2009 14:00:50 +0200 +Subject: [PATCH 1/2] sfdisk: dump has to be $LANG insensitive + +This stupid bug has been introduced by: + + commit add5133f4ad5136aac3ce7627e615d14893d0aeb + Author: Pedro Ribeiro + Date: Fri Oct 3 08:52:35 2008 +0200 + fdisk: several strings without gettext calls + +... so it shows that we need to improve our review process... :-( + +Address-Red-Hat-Bug: #522718 +Signed-off-by: Karel Zak +--- + fdisk/sfdisk.c | 10 +++++----- + 1 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/fdisk/sfdisk.c b/fdisk/sfdisk.c +index 8fae5bb..427cb40 100644 +--- a/fdisk/sfdisk.c ++++ b/fdisk/sfdisk.c +@@ -930,8 +930,8 @@ get_disksize(int format) { + static void + out_partition_header(char *dev, int format, struct geometry G) { + if (dump) { +- printf(_("# partition table of %s\n"), dev); +- printf(_("unit: sectors\n\n")); ++ printf("# partition table of %s\n", dev); ++ printf("unit: sectors\n\n"); + return; + } + +@@ -1059,12 +1059,12 @@ out_partition(char *dev, int format, struct part_desc *p, + size = p->size; + + if (dump) { +- printf(_(" start=%9lu"), start); +- printf(_(", size=%9lu"), size); ++ printf(" start=%9lu", start); ++ printf(", size=%9lu", size); + if (p->ptype == DOS_TYPE) { + printf(", Id=%2x", p->p.sys_type); + if (p->p.bootable == 0x80) +- printf(_(", bootable")); ++ printf(", bootable"); + } + printf("\n"); + return; +-- +1.6.2.5 + diff --git a/util-linux-ng-60-raw.rules b/util-linux-ng-60-raw.rules new file mode 100644 index 0000000..2279c91 --- /dev/null +++ b/util-linux-ng-60-raw.rules @@ -0,0 +1,11 @@ +# This file and interface are deprecated. +# Applications needing raw device access should open regular +# block devices with O_DIRECT. +# +# Enter raw device bindings here. +# +# An example would be: +# ACTION=="add", KERNEL=="sda", RUN+="/bin/raw /dev/raw/raw1 %N" +# to bind /dev/raw/raw1 to /dev/sda, or +# ACTION=="add", ENV{MAJOR}=="8", ENV{MINOR}=="1", RUN+="/bin/raw /dev/raw/raw2 %M %m" +# to bind /dev/raw/raw2 to the device with major 8, minor 1. diff --git a/util-linux-ng-chsh-chfn.pamd b/util-linux-ng-chsh-chfn.pamd new file mode 100644 index 0000000..2dbc0aa --- /dev/null +++ b/util-linux-ng-chsh-chfn.pamd @@ -0,0 +1,6 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +auth include system-auth +account include system-auth +password include system-auth +session include system-auth diff --git a/util-linux-ng-login.pamd b/util-linux-ng-login.pamd new file mode 100644 index 0000000..2c9a3a2 --- /dev/null +++ b/util-linux-ng-login.pamd @@ -0,0 +1,16 @@ +#%PAM-1.0 +auth [user_unknown=ignore success=ok ignore=ignore default=bad] pam_securetty.so +auth include system-auth +account required pam_nologin.so +account include system-auth +password include system-auth +# pam_selinux.so close should be the first session rule +session required pam_selinux.so close +session required pam_loginuid.so +session optional pam_console.so +# pam_selinux.so open should only be followed by sessions to be executed in the user context +session required pam_selinux.so open +session required pam_namespace.so +session optional pam_keyinit.so force revoke +session include system-auth +-session optional pam_ck_connector.so diff --git a/util-linux-ng-remote.pamd b/util-linux-ng-remote.pamd new file mode 100644 index 0000000..24fc8b7 --- /dev/null +++ b/util-linux-ng-remote.pamd @@ -0,0 +1,15 @@ +#%PAM-1.0 +auth required pam_securetty.so +auth include system-auth +account required pam_nologin.so +account include system-auth +password include system-auth +# pam_selinux.so close should be the first session rule +session required pam_selinux.so close +session required pam_loginuid.so +session optional pam_console.so +# pam_selinux.so open should only be followed by sessions to be executed in the user context +session required pam_selinux.so open +session required pam_namespace.so +session optional pam_keyinit.so force revoke +session include system-auth diff --git a/util-linux-ng.spec b/util-linux-ng.spec new file mode 100644 index 0000000..bf450da --- /dev/null +++ b/util-linux-ng.spec @@ -0,0 +1,1942 @@ +### Header +Summary: A collection of basic system utilities +Name: util-linux-ng +Version: 2.14.2 +Release: 11%{?dist} +License: GPLv2 and GPLv2+ and BSD with advertising and Public Domain +Group: System Environment/Base +URL: ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng + +%define upstream_version %{version} + +### Features +%if 0%{?rhel} +%define include_raw 1 +%else +%define include_raw 0 +%endif + +### Macros +%define floppyver 0.16 +%define no_hwclock_archs s390 s390x +%define no_cfsfdisk_archs sparc sparcv9 sparc64 +%define cytune_archs %{ix86} alpha armv4l + +### Paths +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root + +### Dependences +BuildRequires: audit-libs-devel >= 1.0.6 +BuildRequires: e2fsprogs-devel >= 1.36 +BuildRequires: gettext-devel +BuildRequires: libselinux-devel +BuildRequires: ncurses-devel +BuildRequires: pam-devel +BuildRequires: texinfo +BuildRequires: zlib-devel +BuildRequires: popt-devel + +### Sources +Source0: ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.14/util-linux-ng-%{upstream_version}.tar.bz2 +Source1: util-linux-ng-login.pamd +Source2: util-linux-ng-remote.pamd +Source3: util-linux-ng-chsh-chfn.pamd +Source4: util-linux-ng-60-raw.rules +Source5: mount.tmpfs +Source8: nologin.c +Source9: nologin.8 +Source11: http://download.sourceforge.net/floppyutil/floppy-%{floppyver}.tar.bz2 + +### Obsoletes & Conflicts & Provides +%ifarch alpha +Conflicts: initscripts <= 4.58 +%endif +Conflicts: kernel < 2.2.12-7 + +# old versions of util-linux have been splited to more sub-packages +Obsoletes: mount < 2.11, losetup < 2.11 +Provides: mount = %{version}-%{release}, losetup = %{version}-%{release} +# Robert Love's schedutils have been merged to util-linux-2.13-pre1 +Obsoletes: schedutils < 1.5 +Provides: schedutils = %{version}-%{release} +# fork and rename from util-linux to util-linux-ng +Obsoletes: util-linux < 2.13.1 +Provides: util-linux = %{version}-%{release} + +# setarch merge in util-linux-ng-2.13 +%ifarch sparc sparcv9 sparc64 +Obsoletes: sparc32 +%endif +Obsoletes: setarch < 2.1 +Provides: setarch = %{version}-%{release} + +Requires(preun): /sbin/install-info +Requires(post): /sbin/install-info +Requires(post): coreutils +Requires: pam >= 1.0.90, /etc/pam.d/system-auth +Requires: audit-libs >= 1.0.6 +%if %{include_raw} +Requires: udev +%endif + +### Floppy patches (Fedora/RHEL specific) +### +# add a missing header +Patch0: util-linux-ng-2.13-floppy-locale.patch +# add note about ATAPI IDE floppy to fdformat.8 +Patch1: util-linux-ng-2.13-fdformat-man-ide.patch +# 169628 - /usr/bin/floppy doesn't work with /dev/fd0 +Patch2: util-linux-ng-2.13-floppy-generic.patch + +### Fedora/RHEL specific patches -- need to die! +### +# remove partitions +Patch3: util-linux-ng-2.14-blockdev-rmpart.patch +# RHEL/Fedora specific mount options +Patch4: util-linux-ng-2.14-mount-managed.patch +# 199745 - Non-existant simpleinit(8) mentioned in ctrlaltdel(8) +Patch5: util-linux-ng-2.13-ctrlaltdel-man.patch + +### Ready for upstream? +### +# 231192 - ipcs is not printing correct values on pLinux +Patch6: util-linux-ng-2.14-ipcs-32bit.patch +# 151635 - makeing /var/log/lastlog +Patch7: util-linux-ng-2.13-login-lastlog.patch + +### Upstream patches (backported to the current Fedora/RHEL) +### +# 91174 - Patch to enabled remote service for login/pam +Patch8: util-linux-ng-2.14-login-remote.patch +# 218915, 487227 - fdisk 4KiB hw sectors support +Patch9: util-linux-ng-2.14-fdisk-4k-I.patch +Patch10: util-linux-ng-2.14-fdisk-4k-II.patch +Patch11: util-linux-ng-2.14-fdisk-4k-III.patch +# Add -r options to dmesg (upstream patch) +Patch12: util-linux-ng-2.14-dmesg-r.patch +# 489672 - flock segfaults when file name is not given +Patch13: util-linux-ng-2.14-flock-segfaults.patch +# 477303 - renice doesn't support -n option +Patch14: util-linux-ng-2.14-renice-n.patch +# 498984 - should man page for "mount" mention ext4? +Patch15: util-linux-ng-2.14-mount-man-ext4.patch +# 522718 - sfdisk -d /dev/xxx | sfdisk --force /dev/yyy fails when LANG is set +Patch16: util-linux-ng-2.14-sfdisk-dump.patch +# 501350 - There's no way to turn off the relatime filesystem mount misfeature. +Patch17: util-linux-ng-2.14-mount-strictatime.patch + +%description +The util-linux-ng package contains a large variety of low-level system +utilities that are necessary for a Linux system to function. Among +others, Util-linux contains the fdisk configuration tool and the login +program. + +%prep +%setup -q -a 11 -n %{name}-%{upstream_version} +cp %{SOURCE8} %{SOURCE9} . + +%patch0 -p1 +%patch1 -p1 +%patch3 -p1 +%patch4 -p1 +%patch5 -p1 +%patch6 -p1 +%patch7 -p1 +%patch8 -p1 +%patch9 -p1 +%patch10 -p1 +%patch11 -p1 +%patch12 -p1 +%patch13 -p1 +%patch14 -p1 +%patch15 -p1 +%patch16 -p1 +%patch17 -p1 + +%build +unset LINGUAS || : + +export CFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 $RPM_OPT_FLAGS" +export SUID_CFLAGS="-fpie" +export SUID_LDFLAGS="-pie" +%configure \ + --bindir=/bin \ + --sbindir=/sbin \ + --disable-wall \ + --enable-partx \ + --enable-login-utils \ + --enable-kill \ + --enable-write \ +%if %{include_raw} + --enable-raw \ +%endif + --with-selinux \ + --with-audit \ + --with-fsprobe=blkid \ + --disable-makeinstall-chown + +# build util-linux-ng +make %{?_smp_mflags} + +# build floppy stuff +pushd floppy-%{floppyver} +%configure --disable-gtk2 +make %{?_smp_mflags} +popd + +# build nologin +gcc $CFLAGS -o nologin nologin.c + +%install +rm -rf ${RPM_BUILD_ROOT} +mkdir -p ${RPM_BUILD_ROOT}/{bin,sbin} +mkdir -p ${RPM_BUILD_ROOT}%{_bindir} +mkdir -p ${RPM_BUILD_ROOT}%{_infodir} +mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man{1,6,8,5} +mkdir -p ${RPM_BUILD_ROOT}%{_sbindir} +mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/{pam.d,security/console.apps} +mkdir -p ${RPM_BUILD_ROOT}/var/log +touch ${RPM_BUILD_ROOT}/var/log/lastlog +chmod 0644 ${RPM_BUILD_ROOT}/var/log/lastlog + +# install util-linux-ng +make install DESTDIR=${RPM_BUILD_ROOT} + +# inslall floppy stuff +pushd floppy-%{floppyver} +make install DESTDIR=${RPM_BUILD_ROOT} +popd + +# install nologin +install -m 755 nologin ${RPM_BUILD_ROOT}/sbin +install -m 644 nologin.8 ${RPM_BUILD_ROOT}%{_mandir}/man8 + +%if %{include_raw} +echo '.so man8/raw.8' > $RPM_BUILD_ROOT%{_mandir}/man8/rawdevices.8 +{ + # see RH bugzilla #216664 + mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/udev/rules.d + pushd ${RPM_BUILD_ROOT}%{_sysconfdir}/udev/rules.d + install -m 644 %{SOURCE4} ./60-raw.rules + popd +} +%endif + +%ifarch sparc sparc64 sparcv9 +rm -rf ${RPM_BUILD_ROOT}%{_bindir}/sunhostid +cat << E-O-F > ${RPM_BUILD_ROOT}%{_bindir}/sunhostid +#!/bin/sh +# this should be %{_bindir}/sunhostid or somesuch. +# Copyright 1999 Peter Jones, . +# GPL and all that good stuff apply. +( +idprom=\`cat /proc/openprom/idprom\` +echo \$idprom|dd bs=1 skip=2 count=2 +echo \$idprom|dd bs=1 skip=27 count=6 +echo +) 2>/dev/null +E-O-F +chmod 755 ${RPM_BUILD_ROOT}%{_bindir}/sunhostid +%endif + +# PAM settings +{ + pushd ${RPM_BUILD_ROOT}%{_sysconfdir}/pam.d + install -m 644 %{SOURCE1} ./login + install -m 644 %{SOURCE2} ./remote + install -m 644 %{SOURCE3} ./chsh + install -m 644 %{SOURCE3} ./chfn + popd +} + +ln -sf ../../sbin/hwclock ${RPM_BUILD_ROOT}/usr/sbin/hwclock +ln -sf hwclock ${RPM_BUILD_ROOT}/sbin/clock + +# install tmpfs mount helper +pushd ${RPM_BUILD_ROOT}/sbin +install -m 755 %{SOURCE5} ./mount.tmpfs +popd + +# Final cleanup +%ifnarch %cytune_archs +rm -f $RPM_BUILD_ROOT%{_bindir}/cytune $RPM_BUILD_ROOT%{_mandir}/man8/cytune.8* +%endif +%ifarch %no_hwclock_archs +rm -f $RPM_BUILD_ROOT/sbin/{hwclock,clock} $RPM_BUILD_ROOT%{_mandir}/man8/hwclock.8* $RPM_BUILD_ROOT/usr/sbin/{hwclock,clock} +%endif +%ifarch s390 s390x +rm -f $RPM_BUILD_ROOT/usr/{bin,sbin}/{fdformat,tunelp,floppy} $RPM_BUILD_ROOT%{_mandir}/man8/{fdformat,tunelp,floppy}.8* +%endif + +# deprecated commands +for I in /sbin/fsck.minix /sbin/mkfs.{bfs,minix} /sbin/sln \ + /usr/bin/chkdupexe %{_bindir}/line %{_bindir}/pg %{_bindir}/newgrp \ + /sbin/shutdown /usr/sbin/vipw /usr/sbin/vigr; do + rm -f $RPM_BUILD_ROOT$I +done + +# deprecated man pages +for I in man1/chkdupexe.1 man1/line.1 man1/pg.1 man1/newgrp.1 \ + man8/fsck.minix.8 man8/mkfs.minix.8 man8/mkfs.bfs.8 \ + man8/vipw.8 man8/vigr; do + rm -rf $RPM_BUILD_ROOT%{_mandir}/${I}* +done + +# deprecated docs +for I in text-utils/README.pg misc-utils/README.reset floppy-%{floppyver}/README.html; do + rm -rf $I +done + +# rename docs +mv floppy-%{floppyver}/README floppy-%{floppyver}/README.floppy + +# we install getopt/getopt-*.{bash,tcsh} as doc files +chmod 644 getopt/getopt-*.{bash,tcsh} +rm -f ${RPM_BUILD_ROOT}%{_datadir}/getopt/* +rmdir ${RPM_BUILD_ROOT}%{_datadir}/getopt + +ln -sf ../../bin/kill $RPM_BUILD_ROOT%{_bindir}/kill + +# /usr/sbin -> /sbin +for I in addpart delpart partx; do + if [ -e $RPM_BUILD_ROOT/usr/sbin/$I ]; then + mv $RPM_BUILD_ROOT/usr/sbin/$I $RPM_BUILD_ROOT/sbin/$I + fi +done + +# /usr/bin -> /bin +for I in taskset; do + if [ -e $RPM_BUILD_ROOT/usr/bin/$I ]; then + mv $RPM_BUILD_ROOT/usr/bin/$I $RPM_BUILD_ROOT/bin/$I + fi +done + +# /sbin -> /bin +for I in raw; do + if [ -e $RPM_BUILD_ROOT/sbin/$I ]; then + mv $RPM_BUILD_ROOT/sbin/$I $RPM_BUILD_ROOT/bin/$I + fi +done + +# omit info/dir file +rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir + +# find MO files +%find_lang %name + +# the files section supports only one -f option... +mv %{name}.lang %{name}.files + +# create list of setarch(8) symlinks +find $RPM_BUILD_ROOT%{_bindir}/ -regextype posix-egrep -type l \ + -regex ".*(linux32|linux64|s390|s390x|i386|ppc|ppc64|ppc32|sparc|sparc64|sparc32|sparc32bash|mips|mips64|mips32|ia64|x86_64)$" \ + -printf "%{_bindir}/%f\n" >> %{name}.files + +find $RPM_BUILD_ROOT%{_mandir}/man8 -regextype posix-egrep \ + -regex ".*(linux32|linux64|s390|s390x|i386|ppc|ppc64|ppc32|sparc|sparc64|sparc32|sparc32bash|mips|mips64|mips32|ia64|x86_64)\.8.*" \ + -printf "%{_mandir}/man8/%f*\n" >> %{name}.files + +%clean +[ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT} + +%post +/sbin/install-info %{_infodir}/ipc.info %{_infodir}/dir || : +# only for minimal buildroots without /var/log +[ -d /var/log ] || /bin/mkdir -p /var/log +/bin/touch /var/log/lastlog +/bin/chown root:root /var/log/lastlog +/bin/chmod 0644 /var/log/lastlog +# Fix the file context, do not use restorecon +if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then + SECXT=$( /usr/sbin/matchpathcon -n /var/log/lastlog 2> /dev/null ) + if [ -n "$SECXT" ]; then + # Selinux enabled, but without policy? It's true for buildroots + # without selinux stuff on host machine with enabled selinux. + # We don't want to use any RPM dependence on selinux policy for + # matchpathcon(2). SELinux policy should be optional. + /usr/bin/chcon "$SECXT" /var/log/lastlog >/dev/null 2>&1 || : + fi +fi + +%preun +if [ "$1" = 0 ]; then + /sbin/install-info --del %{_infodir}/ipc.info %{_infodir}/dir || : +fi +exit 0 + +%files -f %{name}.files +%defattr(-,root,root) +%doc */README.* NEWS AUTHORS licenses/* README* +%doc getopt/getopt-*.{bash,tcsh} + +/bin/dmesg +%attr(755,root,root) /bin/login +/bin/more +/bin/kill +/bin/taskset +%if %{include_raw} +/bin/raw +%config(noreplace) %{_sysconfdir}/udev/rules.d/60-raw.rules +%endif + +%config(noreplace) %{_sysconfdir}/pam.d/chfn +%config(noreplace) %{_sysconfdir}/pam.d/chsh +%config(noreplace) %{_sysconfdir}/pam.d/login +%config(noreplace) %{_sysconfdir}/pam.d/remote + +/sbin/agetty +%{_mandir}/man8/agetty.8* +/sbin/blockdev +/sbin/pivot_root +/sbin/ctrlaltdel +/sbin/addpart +/sbin/delpart +/sbin/partx +%{_mandir}/man8/partx.8* +%{_mandir}/man8/addpart.8* +%{_mandir}/man8/delpart.8* + +%ifnarch %no_cfsfdisk_archs +/sbin/sfdisk +%{_mandir}/man8/sfdisk.8* +%doc fdisk/sfdisk.examples +/sbin/cfdisk +%{_mandir}/man8/cfdisk.8* +%endif +/sbin/fdisk +%{_mandir}/man8/fdisk.8* + +%ifnarch %no_hwclock_archs +/sbin/clock +/sbin/hwclock +/usr/sbin/hwclock +%{_mandir}/man8/hwclock.8* +%endif +/sbin/mkfs +/sbin/mkswap +/sbin/nologin +%{_mandir}/man8/nologin.8* +%ghost %attr(0644,root,root) %verify(not md5 size mtime) /var/log/lastlog + +%{_bindir}/chrt +%{_bindir}/ionice + +%{_bindir}/cal +%attr(4711,root,root) %{_bindir}/chfn +%attr(4711,root,root) %{_bindir}/chsh +%{_bindir}/col +%{_bindir}/colcrt +%{_bindir}/colrm +%{_bindir}/column +%ifarch %cytune_archs +%{_bindir}/cytune +%{_mandir}/man8/cytune.8* +%endif +%{_bindir}/ddate +%ifnarch s390 s390x +%{_sbindir}/fdformat +%endif +%{_bindir}/flock +%{_bindir}/getopt +%{_bindir}/hexdump +%{_bindir}/ipcrm +%{_bindir}/ipcs +%{_bindir}/isosize +%{_bindir}/kill +%{_bindir}/logger +%{_bindir}/look +%{_bindir}/mcookie +/sbin/fsck.cramfs +/sbin/mkfs.cramfs +%ifnarch s390 s390x +%{_bindir}/floppy +%{_mandir}/man8/floppy.8* +%endif +%{_bindir}/namei +%{_bindir}/rename +%{_bindir}/renice +%{_bindir}/rev +%{_bindir}/script +%{_bindir}/scriptreplay +%{_bindir}/setarch +%{_bindir}/setsid +%{_bindir}/setterm +%ifarch sparc sparc64 sparcv9 +%{_bindir}/sunhostid +%endif +%{_bindir}/tailf +%{_bindir}/ul +%{_bindir}/whereis +%attr(2755,root,tty) %{_bindir}/write + +%{_sbindir}/readprofile +%ifnarch s390 s390x +%{_sbindir}/tunelp +%endif +%{_sbindir}/rtcwake +%{_sbindir}/ldattach + +%{_infodir}/ipc.info* + +%{_mandir}/man1/cal.1* +%{_mandir}/man1/chfn.1* +%{_mandir}/man1/chsh.1* +%{_mandir}/man1/col.1* +%{_mandir}/man1/colcrt.1* +%{_mandir}/man1/colrm.1* +%{_mandir}/man1/column.1* +%{_mandir}/man1/ddate.1* +%{_mandir}/man1/flock.1* +%{_mandir}/man1/getopt.1* +%{_mandir}/man1/hexdump.1* +%{_mandir}/man1/kill.1* +%{_mandir}/man1/logger.1* +%{_mandir}/man1/login.1* +%{_mandir}/man1/look.1* +%{_mandir}/man1/mcookie.1* +%{_mandir}/man1/more.1* +%{_mandir}/man1/namei.1* +%{_mandir}/man1/readprofile.1* +%{_mandir}/man1/rename.1* +%{_mandir}/man1/rev.1* +%{_mandir}/man1/script.1* +%{_mandir}/man1/scriptreplay.1* +%{_mandir}/man1/setterm.1* +%{_mandir}/man1/tailf.1* +%{_mandir}/man1/ul.1* +%{_mandir}/man1/whereis.1* +%{_mandir}/man1/write.1* + +%{_mandir}/man1/chrt.1* +%{_mandir}/man1/ionice.1* +%{_mandir}/man1/taskset.1* +%{_mandir}/man1/renice.1* + +%{_mandir}/man1/ipcrm.1* +%{_mandir}/man1/ipcs.1* +%{_mandir}/man1/setsid.1* +%{_mandir}/man1/dmesg.1* + +%{_mandir}/man8/blockdev.8* +%{_mandir}/man8/ctrlaltdel.8* +%ifnarch s390 s390x +%{_mandir}/man8/fdformat.8* +%endif +%{_mandir}/man8/isosize.8* +%{_mandir}/man8/mkfs.8* +%{_mandir}/man8/mkswap.8* +%{_mandir}/man8/pivot_root.8* +%if %{include_raw} +%{_mandir}/man8/raw.8* +%{_mandir}/man8/rawdevices.8* +%endif +%ifnarch s390 s390x +%{_mandir}/man8/tunelp.8* +%endif +%{_mandir}/man8/setarch.8* +%{_mandir}/man8/rtcwake.8* +%{_mandir}/man8/ldattach.8* + +%attr(4755,root,root) /bin/mount +%attr(4755,root,root) /bin/umount + +%attr(755,root,root) /sbin/mount.tmpfs + +/sbin/swapon +/sbin/swapoff +%{_mandir}/man5/fstab.5* +%{_mandir}/man8/mount.8* +%{_mandir}/man8/swapoff.8* +%{_mandir}/man8/swapon.8* +%{_mandir}/man8/umount.8* +%{_mandir}/man8/losetup.8* +/sbin/losetup + +%changelog +* Thu Sep 17 2009 Karel Zak 2.14.2-11 +- fix #501350 - there's no way to turn off the relatime filesystem mount misfeature. + +* Fri Sep 11 2009 Karel Zak 2.14.2-10 +- fix #522718 - sfdisk -d /dev/xxx | sfdisk --force /dev/yyy fails when LANG is set + +* Mon Jun 1 2009 Karel Zak 2.14.2-9 +- fix #498984 - should man page for "mount" mention ext4? + +* Thu Apr 2 2009 Karel Zak 2.14.2-8 +- fix #490769 - %post scriptlet failed (thanks to Dan Horak) + +* Fri Mar 20 2009 Karel Zak 2.14.2-7 +- fix some nits in mount.tmpfs + +* Fri Mar 20 2009 Karel Zak 2.14.2-6 +- fix #491175 - mount of tmpfs FSs fail at boot + +* Thu Mar 19 2009 Karel Zak 2.14.2-5 +- fix #489672 - flock segfaults when file name is not given (upstream) +- fix #476964 - Mount /var/tmp with tmpfs creates denials +- fix #487227 - fdisk 4KiB hw sectors support (upstream) +- fix #477303 - renice doesn't support -n option (upstream) + +* Wed Feb 25 2009 Fedora Release Engineering - 2.14.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Fri Feb 20 2009 Karel Zak 2.14.2-3 +- add -r option to dmesg(1) + +* Mon Feb 9 2009 Karel Zak 2.14.2-2 +- fix typo in spec file + +* Mon Feb 9 2009 Karel Zak 2.14.2-1 +- upgrade to stable 2.14.2 + ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.14/v2.14.2-ReleaseNotes + +* Thu Jan 22 2009 Karel Zak 2.14.2-0.2 +- fix #480413 - util-linux-ng doesn't include scriptreplay +- fix #479002 - remove dependency on ConsoleKit-libs +- upgrade to 2.14.2-rc2 + +* Mon Dec 22 2008 Karel Zak 2.14.2-0.1 +- upgrade to 2.14.2-rc1 +- refresh old patches + +* Fri Nov 21 2008 Karel Zak 2.14.1-5 +- fix #472502 - problem with fdisk and use +sectors for the end of partition + +* Mon Oct 6 2008 Karel Zak 2.14.1-3 +- fix #465761 - mount manpage is missing uid/gid mount options for tmpfs +- refresh util-linux-ng-2.14-mount-file_t.patch (fuzz=0) + +* Wed Sep 10 2008 Karel Zak 2.14.1-2 +- remove obsolete pam-console support + +* Wed Sep 10 2008 Karel Zak 2.14.1-1 +- upgrade to stable 2.14.1 + +* Thu Aug 14 2008 Karel Zak 2.14.1-0.1 +- upgrade to 2.14.1-rc1 +- refresh old patches + +* Thu Jul 24 2008 Karel Zak 2.14-3 +- update util-linux-ng-2.14-mount-file_t.patch to make + the SELinux warning optional (verbose mode is required) + +* Tue Jul 1 2008 Karel Zak 2.14-2 +- fix #390691 - mount should check selinux context on mount, and warn on file_t + +* Mon Jun 9 2008 Karel Zak 2.14-1 +- upgrade to stable util-linux-ng release + +* Mon May 19 2008 Karel Zak 2.14-0.1 +- upgrade to 2.14-rc3 +- remove arch(8) (deprecated in favor of uname(1) or arch(1) from coreutils) +- add a new command ldattach(8) +- cfdisk(8) linked with libncursesw + +* Tue Apr 22 2008 Karel Zak 2.13.1-9 +- fix audit log injection attack via login + +* Thu Apr 17 2008 Karel Zak 2.13.1-8 +- fix location of the command raw(8) + +* Tue Apr 15 2008 Karel Zak 2.13.1-7 +- fix 244383 - libblkid uses TYPE="swsuspend" for S1SUSPEND/S2SUSPEND + +* Wed Apr 2 2008 Karel Zak 2.13.1-6 +- fix 439984 - backport mkswap -U + +* Wed Mar 26 2008 Tom "spot" Callaway - 2.13.1-5 +- clean up sparc conditionals + +* Tue Feb 19 2008 Fedora Release Engineering - 2.13.1-4 +- Autorebuild for GCC 4.3 + +* Mon Jan 28 2008 Karel Zak 2.13.1-3 +- upgrade to new upstream release +- fix #427874 - util-linux-ng gets "excess command line argument" on update + +* Wed Jan 2 2008 Karel Zak 2.13.1-2 +- update to upstream 2.13.1-rc2 + +* Wed Dec 12 2007 Dan Walsh 2.13.1-1 +- Fix pam files so that pam_keyinit happens after pam_selinux.so + +* Wed Dec 12 2007 Karel Zak 2.13.1-0.2 +- remove viwp and vigr (in favour of shadow-utils) + +* Sun Dec 9 2007 Karel Zak 2.13.1-0.1 +- update to the latest upstream stable branch + (commit: fda9d11739ee88c3b2f22a73f12ec019bd3b8335) + +* Wed Oct 31 2007 Karel Zak 2.13-4 +- fix #354791 - blockdev command calls the blkpg ioctl with a wrong data structure + +* Tue Oct 16 2007 Karel Zak 2.13-3 +- fix mount -L | -U segfault +- fix script die on SIGWINCH + +* Thu Oct 4 2007 Karel Zak 2.13-2 +- update to the latest upstream stable branch + +* Tue Aug 28 2007 Karel Zak 2.13-1 +- upgrade to stable util-linux-ng release + +* Fri Aug 24 2007 Karel Zak 2.13-0.59 +- add release number to util-linux Provides and increment setarch Obsoletes +- fix #254114 - spec typo +- upgrade to floppy-0.16 +- add BuildRequires: popt-devel + +* Wed Aug 22 2007 Jesse Keating 2.13-0.58 +- Obsolete a sufficiently high enough version of setarch + +* Mon Aug 20 2007 Karel Zak 2.13-0.57 +- fix #253664 - util-linux-ng fails to build on sparc (patch by Dennis Gilmore) +- rebase to new GIT snapshot + +* Mon Aug 20 2007 Karel Zak 2.13-0.56 +- fix obsoletes field + +* Mon Aug 20 2007 Karel Zak 2.13-0.55 +- util-linux-ng includes setarch(1), define relevat Obsoletes+Provides + +* Mon Aug 20 2007 Karel Zak 2.13-0.54 +- port "blockdev --rmpart" patch from util-linux +- use same Provides/Obsoletes setting like in util-linux + +* Wed Aug 15 2007 Karel Zak 2.13-0.53 +- fix #252046 - review Request: util-linux-ng (util-linux replacement) + +* Mon Aug 13 2007 Karel Zak 2.13-0.52 +- rebase to util-linux-ng (new util-linux upstream fork, + based on util-linux 2.13-pre7) +- more than 70 Fedora/RHEL patches have been merged to upstream code + +* Fri Apr 6 2007 Karel Zak 2.13-0.51 +- fix #150493 - hwclock --systohc sets clock 0.5 seconds slow +- fix #220873 - starting RPC idmapd: Error: RPC MTAB does not exist. + (added rpc_pipefs to util-linux-2.13-umount-sysfs.patch) +- fix #227903 - mount -f does not work with NFS-mounted + +* Sat Mar 3 2007 David Zeuthen 2.13-0.50 +- include ConsoleKit session module by default (#229172) + +* Thu Jan 11 2007 Karel Zak 2.13-0.49 +- fix #222293 - undocumented partx,addpart, delpart + +* Sun Dec 17 2006 Karel Zak 2.13-0.48 +- fix paths in po/Makefile.in.in + +* Fri Dec 15 2006 Karel Zak 2.13-0.47 +- fix #217240 - namei ignores non-directory components instead of saying "Not a directory" +- fix #217241 - namei enforces symlink limits inconsistently + +* Wed Dec 14 2006 Karel Zak 2.13-0.46 +- fix leaking file descriptor in the more command (patch by Steve Grubb) + +* Wed Dec 13 2006 Karel Zak 2.13-0.45 +- use ncurses only +- fix #218915 - fdisk -b 4K +- upgrade to -pre7 release +- fix building problem with raw0 patch +- fix #217186 - /bin/sh: @MKINSTALLDIRS@: No such file or directory + (port po/Makefile.in.in from gettext-0.16) +- sync with FC6 and RHEL5: +- fix #216489 - SCHED_BATCH option missing in chrt +- fix #216712 - issues with raw device support ("raw0" is wrong device name) +- fix #216760 - mount with context or fscontext option fails + (temporarily disabled the support for additional contexts -- not supported by kernel yet) +- fix #211827 - Can't mount with additional contexts +- fix #213127 - mount --make-unbindable does not work +- fix #211749 - add -r option to losetup to create a read-only loop + +* Thu Oct 12 2006 Karel Zak 2.13-0.44 +- fix #209911 - losetup.8 updated (use dm-crypt rather than deprecated cryptoloop) +- fix #210338 - spurious error from '/bin/login -h $PHONENUMBER' (bug in IPv6 patch) +- fix #208634 - mkswap "works" without warning on a mounted device + +* Sun Oct 01 2006 Jesse Keating - 2.13-0.43 +- rebuilt for unwind info generation, broken in gcc-4.1.1-21 + +* Wed Sep 20 2006 Karel Zak 2.13-0.42 +- remove obsolete NFS code and patches (we use /sbin/mount.nfs + and /sbin/umount.nfs from nfs-utils now) +- move nfs.5 to nfs-utils + +* Fri Sep 15 2006 Karel Zak 2.13-0.41 +- fix #205038 - mount not allowing sloppy option (exports "-s" + to external /sbin/mount.nfs(4) calls) +- fix minor bug in util-linux-2.13-mount-twiceloop.patch +- fix #188193- util-linux should provide plugin infrastructure for HAL + +* Mon Aug 21 2006 Karel Zak 2.13-0.40 +- fix Makefile.am in util-linux-2.13-mount-context.patch +- fix #201343 - pam_securetty requires known user to work + (split PAM login configuration to two files) +- fix #203358 - change location of taskset binary to allow for early affinity work + +* Fri Aug 11 2006 Karel Zak 2.13-0.39 +- fix #199745 - non-existant simpleinit(8) mentioned in ctrlaltdel(8) + +* Thu Aug 10 2006 Dan Walsh 2.13-0.38 +- Change keycreate line to happen after pam_selinux open call so it gets correct context + +* Thu Aug 10 2006 Karel Zak 2.13-0.37 +- fix #176494 - last -i returns strange IP addresses (patch by Bill Nottingham) + +* Thu Jul 27 2006 Karel Zak 2.13-0.36 +- fix #198300, #199557 - util-linux "post" scriptlet failure + +* Thu Jul 27 2006 Steve Dickson 2.13-0.35 +- Added the -o fsc flag to nfsmount. + +* Wed Jul 26 2006 Karel Zak 2.13-0.34 +- rebuild + +* Tue Jul 18 2006 Karel Zak 2.13-0.33 +- add Requires(post): libselinux + +* Mon Jul 17 2006 Karel Zak 2.13-0.32 +- add IPv6 support to the login command (patch by Milan Zazrivec) +- fix #198626 - add keyinit instructions to the login PAM script + (patch by David Howells) + +* Wed Jul 12 2006 Jesse Keating - 2.13-0.31.1 +- rebuild + +* Tue Jul 11 2006 Karel Zak 2.13-0.31 +- cleanup dependences for post and preun scriptlets + +* Mon Jul 10 2006 Karsten Hopp 2.13-0.30 +- silence install in minimal buildroot without /var/log + +* Fri Jul 7 2006 Karel Zak 2.13-0.29 +- include the raw command for RHELs + +* Mon Jun 26 2006 Florian La Roche 2.13-0.28 +- move install-info parts from postun to preun + +* Wed Jun 21 2006 Dan Walsh 2.13-0.27 +- Only execute chcon on machines with selinux enabled + +* Wed Jun 14 2006 Steve Dickson 2.13-0.26 +- Remove unneeded header files from nfsmount.c + +* Mon Jun 12 2006 Karel Zak 2.13-0.25 +- fix #187014 - umount segfaults for normal user +- fix #183446 - cal not UTF-8-aware +- fix #186915 - mount does not translate SELIinux context options though libselinux +- fix #185500 - Need man page entry for -o context= mount option +- fix #152579 - missing info about /etc/mtab and /proc/mounts mismatch +- fix #183890 - missing info about possible ioctl() and fcntl() problems on NFS filesystem +- fix #191230 - using mount --move results in wrong data in /etc/mtab +- added mount subtrees support +- fdisk: wrong number of sectors for large disks (suse#160822) +- merge fdisk-xvd (#182553) with new fdisk-isfull (#188981) patch +- fix #181549 - raw(8) manpage has old information about dd +- remove asm/page.h usage + +* Wed May 24 2006 Dan Walsh 2.13-0.24 +- Remove requirement on restorecon, since we can do the same thing +- with chcon/matchpathcon, and not add requirement on policycoreutils + +* Wed May 24 2006 Steve Dickson 2.13-0.23 +- Fixed bug in patch for bz183713 which cause nfs4 mounts to fail. + +* Tue May 2 2006 Steve Dickson 2.13-0.22 +- Added syslog logging to background mounts as suggested + by a customer. + +* Mon May 1 2006 Steve Dickson 2.13-0.21 +- fix #183713 - foreground mounts are not retrying as advertised +- fix #151549 - Added 'noacl' mount flag +- fix #169042 - Changed nfsmount to try udp before using tcp when rpc-ing + the remote rpc.mountd (iff -o tcp is not specified). + This drastically increases the total number of tcp mounts + that can happen at once (ala autofs). + +* Wed Mar 9 2006 Jesse Keating 2.13-0.20 +- Better calling of restorecon as suggested by Bill Nottingham +- prereq restorecon to avoid ordering issues + +* Wed Mar 9 2006 Jesse Keating 2.13-0.19 +- restorecon /var/log/lastlog + +* Wed Mar 8 2006 Karel Zak 2.13-0.17 +- fix #181782 - mkswap selinux relabeling (fix util-linux-2.13-mkswap-selinux.patch) + +* Wed Feb 22 2006 Karel Zak 2.13-0.16 +- fix #181782 - mkswap should automatically add selinux label to swapfile +- fix #180730 - col is exiting with 1 (fix util-linux-2.12p-col-EILSEQ.patch) +- fix #181896 - broken example in schedutils man pages +- fix #177331 - login omits pam_acct_mgmt & pam_chauthtok when authentication is skipped. +- fix #177523 - umount -a should not unmount sysfs +- fix #182553 - fdisk -l inside xen guest shows no disks + +* Fri Feb 10 2006 Jesse Keating - 2.13-0.15.1 +- bump again for double-long bug on ppc(64) + +* Wed Feb 8 2006 Peter Jones 2.13-0.15 +- add "blockdev --rmpart N " and "blockdev --rmparts " + +* Tue Feb 07 2006 Jesse Keating - 2.13-0.14.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Thu Jan 19 2006 Steve Dickson 2.13-0.14 +- Updated the gssd_check() and idmapd_check(), used with + nfsv4 mounts, to looked for the correct file in /var/lock/subsys + which stops bogus warnings. + +* Tue Jan 3 2006 Karel Zak 2.13-0.13 +- fix #174676 - hwclock audit return code mismatch +- fix #176441: col truncates data +- fix #174111 - mount allows loopback devices to be mounted more than once to the same mount point +- better wide chars usage in the cal command (based on the old 'moremisc' patch) + +* Mon Dec 12 2005 Karel Zak 2.13-0.12 +- rebuilt + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Fri Nov 25 2005 Karel Zak 2.13-0.11.pre6 +- update to upstream version 2.13-pre6 +- fix #172203 - mount man page in RHEL4 lacks any info on cifs mount options + +* Mon Nov 7 2005 Karel Zak 2.13-0.10.pre5 +- fix #171337 - mkfs.cramfs doesn't work correctly with empty files + +* Fri Oct 28 2005 Karel Zak 2.13-0.9.pre5 +- rebuild + +* Wed Oct 26 2005 Karel Zak 2.13-0.8.pre5 +- updated version of the patch for hwclock audit + +* Thu Oct 20 2005 Karel Zak 2.13-0.7.pre5 +- fix #171337 - mkfs.cramfs dies creating installer image + +* Thu Oct 20 2005 Karel Zak 2.13-0.6.pre5 +- update to upstream 2.13pre5 +- remove separated cramfs1.1 (already in upstream package) +- remove odd symlink /usr/bin/mkcramfs -> ../../sbin/mkfs.cramfs +- fix #170171 - ipcs -lm always report "max total shared memory (kbytes) = 0" + +* Mon Oct 17 2005 Karel Zak 2.13-0.5.pre4 +* fix #170564 - add audit message to login + +* Fri Oct 7 2005 Karel Zak 2.13-0.4.pre4 +- fix #169628 - /usr/bin/floppy doesn't work with /dev/fd0 +- fix #168436 - login will attempt to run if it has no read/write access to its terminal +- fix #168434 - login's timeout can fail - needs to call siginterrupt(SIGALRM,1) +- fix #165253 - losetup missing option -a [new feature] +- update PAM files (replace pam_stack with new "include" PAM directive) +- remove kbdrate from src.rpm +- update to 2.13pre4 + +* Fri Oct 7 2005 Steve Dickson 2.13-0.3.pre3 +- fix #170110 - Documentation for 'rsize' and 'wsize' NFS mount options + is misleading + +* Fri Sep 2 2005 Karel Zak 2.13-0.3.pre2 +- fix #166923 - hwclock will not run on a non audit-enabled kernel +- fix #159410 - mkswap(8) claims max swap area size is 2 GB +- fix #165863 - swsusp swaps should be reinitialized +- change /var/log/lastlog perms to 0644 + +* Tue Aug 16 2005 Karel Zak 2.13-0.2.pre2 +- /usr/share/misc/getopt/* -move-> /usr/share/doc/util-linux-2.13/getopt-* +- the arch command marked as deprecated +- removed: elvtune, rescuept and setfdprm +- removed: man8/sln.8 (moved to man-pages, see #10601) +- removed REDAME.pg and README.reset +- .spec file cleanup +- added schedutils (commands: chrt, ionice and taskset) + +* Tue Jul 12 2005 Karel Zak 2.12p-9.7 +- fix #159339 - util-linux updates for new audit system +- fix #158737 - sfdisk warning for large partitions, gpt +- fix #150912 - Add ocfs2 support +- NULL is better than zero at end of execl() + +* Thu Jun 16 2005 Karel Zak 2.12p-9.5 +- fix #157656 - CRM 546998: Possible bug in vipw, changes permissions of /etc/shadow and /etc/gshadow +- fix #159339 - util-linux updates for new audit system (pam_loginuid.so added to util-linux-selinux.pamd) +- fix #159418 - sfdisk unusable - crashes immediately on invocation +- fix #157674 - sync option on VFAT mount destroys flash drives +- fix .spec file /usr/sbin/{hwclock,clock} symlinks + +* Wed May 4 2005 Jeremy Katz - 2.12p-9.3 +- rebuild against new libe2fsprogs (and libblkid) to fix cramfs auto-detection + +* Mon May 2 2005 Karel Zak 2.12p-9.2 +- rebuild + +* Mon May 2 2005 Karel Zak 2.12p-9 +- fix #156597 - look - doesn't work with separators + +* Mon Apr 25 2005 Karel Zak 2.12p-8 +- fix #154498 - util-linux login & pam session +- fix #155293 - man 5 nfs should include vers as a mount option +- fix #76467 - At boot time, fsck chokes on LVs listed by label in fstab +- new Source URL +- added note about ATAPI IDE floppy to fdformat.8 +- fix #145355 - Man pages for fstab and fstab-sync in conflict + +* Tue Apr 5 2005 Karel Zak 2.12p-7 +- enable build with libblkid from e2fsprogs-devel +- remove workaround for duplicated labels + +* Thu Mar 31 2005 Steve Dickson 2.12p-5 +- Fixed nfs mount to rollback correctly. + +* Fri Mar 25 2005 Karel Zak 2.12p-4 +- added /var/log/lastlog to util-linux (#151635) +- disabled 'newgrp' in util-linux (enabled in shadow-utils) (#149997, #151613) +- improved mtab lock (#143118) +- fixed ipcs typo (#151156) +- implemented mount workaround for duplicated labels (#116300) + +* Wed Mar 16 2005 Elliot Lee 2.12p-3 +- rebuilt + +* Fri Feb 25 2005 Steve Dickson 2.12p-2 +- Changed nfsmount to only use reserve ports when necessary + (bz# 141773) + +* Thu Dec 23 2004 Elliot Lee 2.12p-1 +- Update to util-linux-2.12p. This changes swap header format + from - you may need to rerun mkswap if you did a clean install of + FC3. + +* Fri Dec 10 2004 Elliot Lee 2.12j-1 +- Update to util-linux-2.12j + +* Tue Dec 7 2004 Steve Dickson 2.12a-20 +- Corrected a buffer overflow problem with nfs mounts. + (bz# 141733) + +* Wed Dec 01 2004 Elliot Lee 2.12a-19 +- Patches for various bugs. + +* Mon Nov 29 2004 Steve Dickson 2.12a-18 +- Made NFS mounts adhere to the IP protocol if specified on + command line as well as made NFS umounts adhere to the + current IP protocol. Fix #140016 + +* Thu Oct 14 2004 Elliot Lee 2.12a-16 +- Add include_raw macro, build with it off for Fedora + +* Wed Oct 13 2004 Stephen C. Tweedie - 2.12a-15 +- Add raw patch to allow binding of devices not yet in /dev + +* Wed Oct 13 2004 John (J5) Palmieri 2.12a-14 +- Add David Zeuthen's patch to enable the pamconsole flag #133941 + +* Wed Oct 13 2004 Stephen C. Tweedie 2.12a-13 +- Restore raw utils (bugzilla #130016) + +* Mon Oct 11 2004 Phil Knirsch 2.12a-12 +- Add the missing remote entry in pam.d + +* Wed Oct 6 2004 Steve Dickson +- Rechecked in some missing NFS mounting code. + +* Wed Sep 29 2004 Elliot Lee 2.12a-10 +- Make swaplabel support work with swapon -a -e + +* Tue Sep 28 2004 Steve Dickson +- Updated the NFS and NFS4 code to the latest CITI patch set + (in which they incorporate a number of our local patches). + +* Wed Sep 15 2004 Nalin Dahybhai 2.12a-8 +- Fix #132196 - turn on SELinux support at build-time. + +* Wed Sep 15 2004 Phil Knirsch 2.12a-7 +- Fix #91174 with pamstart.patch + +* Tue Aug 31 2004 Elliot Lee 2.12a-6 +- Fix #16415, #70616 with rdevman.patch +- Fix #102566 with loginman.patch +- Fix #104321 with rescuept.patch (just use plain lseek - we're in _FILE_OFFSET_BITS=64 land now) +- Fix #130016 - remove raw. +- Re-add agetty (replacing it with mgetty is too much pain, and mgetty is much larger) + +* Thu Aug 26 2004 Steve Dickson +- Made the NFS security checks more explicit to avoid confusion + (an upstream fix) +- Also removed a compilation warning + +* Wed Aug 11 2004 Alasdair Kergon +- Remove unused mount libdevmapper inclusion. + +* Wed Aug 11 2004 Alasdair Kergon +- Add device-mapper mount-by-label support +- Fix segfault in mount-by-label when a device without a label is present. + +* Wed Aug 11 2004 Steve Dickson +- Updated nfs man page to show that intr are on by + default for nfs4 + +* Thu Aug 05 2004 Jindrich Novy +- modified warning causing heart attack for >16 partitions, #107824 + +* Fri Jul 09 2004 Elliot Lee 2.12a-3 +- Fix #126623, #126572 +- Patch cleanup +- Remove agetty (use mgetty, agetty is broken) + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Thu Jun 03 2004 Elliot Lee 2.12a-1 +- Update to 2.12a +- Fix #122448 + +* Thu May 13 2004 Dan Walsh 2.12-19 +- Change pam_selinux to run last + +* Tue May 04 2004 Elliot Lee 2.12-18 +- Fix #122448 (autofs issues) + +* Fri Apr 23 2004 Elliot Lee 2.12-17 +- Fix #119157 by editing the patch +- Add patch145 to fix #119986 + +* Fri Apr 16 2004 Elliot Lee 2.12-16 +- Fix #118803 + +* Tue Mar 23 2004 Jeremy Katz 2.12-15 +- mkcramfs: use PAGE_SIZE for default blocksize (#118681) + +* Sat Mar 20 2004 +- Updated the nfs-mount.patch to correctly + handle the mounthost option and to ignore + servers that do not set auth flavors + +* Tue Mar 16 2004 Dan Walsh 2.12-13 +- Fix selinux ordering or pam for login + +* Tue Mar 16 2004 +- Make RPC error messages displayed with -v argument +- Added two checks to the nfs4 path what will print warnings + when rpc.idmapd and rpc.gssd are not running +- Ping NFS v4 servers before diving into kernel +- Make v4 mount interruptible which also make the intr option on by default + +* Sun Mar 13 2004 +- Reworked how the rpc.idmapd and rpc.gssd checks were + done due to review comments from upstream. +- Added rpc_strerror() so the '-v' flag will show RPC errors. + +* Sat Mar 13 2004 +- Added two checks to the nfs4 path what will print warnings + when rpc.idmapd and rpc.gssd are not running. + +* Thu Mar 11 2004 +- Reworked and updated the nfsv4 patches. + +* Wed Mar 10 2004 Dan Walsh +- Bump version + +* Wed Mar 10 2004 Steve Dickson +- Tried to make nfs error message a bit more meaninful +- Cleaned up some warnings + +* Sun Mar 7 2004 Steve Dickson +- Added pesudo flavors for nfsv4 mounts. +- Added BuildRequires: libselinux-devel and Requires: libselinux + when WITH_SELINUX is set. + +* Fri Feb 27 2004 Dan Walsh 2.12-5 +- check for 2.6.3 kernel in mount options + +* Mon Feb 23 2004 Elliot Lee 2.12-4 +- Remove /bin/kill for #116100 + +* Fri Feb 20 2004 Dan Walsh 2.12-3 +- rebuilt + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Thu Feb 12 2004 Elliot Lee 2.12-1 +- Final 2.12 has been out for ages - might as well use it. + +* Wed Jan 28 2004 Steve Dickson 2.12pre-4 +- Added mount patches that have NFS version 4 support + +* Mon Jan 26 2004 Elliot Lee 2.12pre-3 +- Provides: mount losetup + +* Mon Jan 26 2004 Dan Walsh 2.12pre-2 +- Add multiple to /etc/pam.d/login for SELinux + +* Thu Jan 15 2004 Elliot Lee 2.12pre-1 +- 2.12pre-1 +- Merge mount/losetup packages into the main package (#112324) +- Lose separate + +* Mon Nov 3 2003 Dan Walsh 2.11y-35.sel +- remove selinux code from login and use pam_selinux + +* Thu Oct 30 2003 Dan Walsh 2.11y-34.sel +- turn on selinux + +* Fri Oct 24 2003 Elliot Lee 2.11y-34 +- Add BuildRequires: texinfo (from a bug# I don't remember) +- Fix #90588 with mountman patch142. + +* Mon Oct 6 2003 Dan Walsh 2.11y-33 +- turn off selinux + +* Thu Sep 25 2003 Dan Walsh 2.11y-32.sel +- turn on selinux +- remove context selection + +* Fri Sep 19 2003 Elliot Lee 2.11y-31 +- Add patch140 (alldevs) to fix #101772. Printing the total size of + all devices was deemed a lower priority than having all devices + (e.g. /dev/ida/c0d9) displayed. + +* Fri Sep 12 2003 Dan Walsh 2.11y-31 +- turn off selinux + +* Fri Sep 12 2003 Dan Walsh 2.11y-30.sel +- turn on selinux + +* Fri Sep 5 2003 Elliot Lee 2.11y-28 +- Fix #103004, #103954 + +* Fri Sep 5 2003 Dan Walsh 2.11y-27 +- turn off selinux + +* Thu Sep 4 2003 Dan Walsh 2.11y-26.sel +- build with selinux + +* Mon Aug 11 2003 Elliot Lee 2.11y-25 +- Use urandom instead for mkcramfs + +* Tue Jul 29 2003 Dan Walsh 2.11y-24 +- add SELINUX 2.5 support + +* Wed Jul 23 2003 Elliot Lee 2.11y-22 +- #100433 patch + +* Mon Jun 14 2003 Elliot Lee 2.11y-20 +- #97381 patch + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Mon Apr 21 2003 Elliot Lee 2.11y-17 +- Change patch128 to improve ipcs -l + +* Fri Apr 11 2003 Elliot Lee 2.11y-16 +- Fix #85407 + +* Fri Apr 11 2003 Elliot Lee 2.11y-15 +- Change patch128 to util-linux-2.11f-ipcs-84243-86285.patch to get all +ipcs fixes + +* Thu Apr 10 2003 Matt Wilson 2.11y-14 +- fix last login date display on AMD64 (#88574) + +* Mon Apr 7 2003 Jeremy Katz 2.11y-13 +- include sfdisk on ppc + +* Fri Mar 28 2003 Jeremy Katz 2.11y-12 +- add patch from msw to change mkcramfs blocksize with a command line option + +* Tue Mar 25 2003 Phil Knirsch 2.11y-11 +- Fix segfault on s390x due to wrong usage of BLKGETSIZE. + +* Thu Mar 13 2003 Elliot Lee 2.11y-10 +- Really apply the ipcs patch. Doh. + +* Mon Feb 24 2003 Elliot Lee +- rebuilt + +* Wed Feb 19 2003 Elliot Lee 2.11y-8 +- ipcs-84243.patch to fix #84243 + +* Thu Feb 13 2003 Yukihiro Nakai 2.11y-7 +- Update moremisc patch to fix swprintf()'s minimum field (bug #83361). + +* Mon Feb 03 2003 Elliot Lee 2.11y-6 +- Fix mcookie segfault on many 64-bit architectures (bug #83345). + +* Mon Feb 03 2003 Tim Waugh 2.11y-5 +- Fix underlined multibyte characters (bug #83376). + +* Sun Feb 02 2003 Florian La Roche +- rebuild to have again a s390 rpm +- disable some more apps for mainframe + +* Wed Jan 29 2003 Elliot Lee 2.11y-4 +- util-linux-2.11y-umask-82552.patch + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Mon Jan 13 2003 Elliot Lee 2.11y-2 +- Fix #81069, #75421 + +* Mon Jan 13 2003 Elliot Lee 2.11y-1 +- Update to 2.11y +- Fix #80953 +- Update patch0, patch107, patch117, patch120 for 2.11y +- Remove patch60, patch61, patch207, patch211, patch212, patch119, patch121 +- Remove patch122, patch200 + +* Wed Oct 30 2002 Elliot Lee 2.11w-2 +- Remove some crack/unnecessary patches while submitting stuff upstream. +- Build with -D_FILE_OFFSET_BITS=64 + +* Tue Oct 29 2002 Elliot Lee 2.11w-1 +- Update to 2.11w, resolve patch conflicts + +* Tue Oct 08 2002 Phil Knirsch 2.11r-10hammer.3 +- Extended util-linux-2.11b-s390x patch to work again. + +* Thu Oct 03 2002 Elliot Lee 2.11r-10hammer.2 +- Add patch122 for hwclock on x86_64 + +* Thu Sep 12 2002 Than Ngo 2.11r-10hammer.1 +- Fixed pam config files + +* Wed Sep 11 2002 Bernhard Rosenkraenzer 2.11r-10hammer +- Port to hammer + +* Fri Aug 30 2002 Elliot Lee 2.11r-10 +- Patch120 (hwclock) to fix #72140 +- Include isosize util + +* Wed Aug 7 2002 Elliot Lee 2.11r-9 +- Patch120 (skipraid2) to fix #70353, because the original patch was +totally useless. + +* Fri Aug 2 2002 Elliot Lee 2.11r-8 +- Patch119 (fdisk-add-primary) from #67898 + +* Wed Jul 24 2002 Elliot Lee 2.11r-7 +- Really add the gptsize patch, instead of what I think the patch says. +(+1) + +* Tue Jul 23 2002 Elliot Lee 2.11r-6 +- Add the sp[n].size part of the patch from #69603 + +* Mon Jul 22 2002 Florian La Roche +- adjust mainframe patches + +* Tue Jul 2 2002 Bill Nottingham 2.11r-4 +- only require usermode if we're shipping kbdrate here + +* Fri Jun 28 2002 Trond Eivind Glomsrod 2.11r-3 +- Port the large swap patch to new util-linux... the off_t changes + now in main aren't sufficient + +* Thu Jun 27 2002 Elliot Lee 2.11r-2 +- Remove swapondetect (patch301) until it avoids possible false positives. + +* Thu Jun 27 2002 Elliot Lee 2.11r-1 +- Update to 2.11r, wheeee +- Remove unused patches + +* Thu Jun 27 2002 Elliot Lee 2.11n-19 +- Make a note here that this package was the source of the single change +contained in util-linux-2.11f-18 (in 7.2/Alpha), and also contains the +rawman patch from util-linux-2.11f-17.1 (in 2.1AS). +- Package has no runtime deps on slang, so remove the BuildRequires: +slang-devel. + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Thu Jun 20 2002 Elliot Lee 2.11n-17 +- Fix teg's swapondetect patch to not print out the usage message when +'swapon -a -e' is run. (#66690) (edit existing patch) +- Apply hjl's utmp handling patch (#66950) (patch116) +- Fix fdisk man page notes on IDE disk partition limit (#64013) (patch117) +- Fix mount.8 man page notes on vfat shortname option (#65628) (patch117) +- Fix possible cal overflow with widechars (#67090) (patch117) + +* Tue Jun 11 2002 Trond Eivind Glomsrod 2.11n-16 +- support large swap partitions +- add '-d' option to autodetect available swap partitions + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Wed May 15 2002 Elliot Lee 2.11n-14 +- Remove kbdrate (again). + +* Mon Apr 29 2002 Florian La Roche +- adjust mainframe patches to apply to current rpm +- do not include fdisk until it is fixed to work on mainframe + +* Mon Apr 01 2002 Elliot Lee 2.11n-12 +- Don't strip binaries - rpm does it for us. + +* Sun Mar 31 2002 Elliot Lee 2.11n-11 +- Apply patch115 from ejb@ql.org for bug #61868 + +* Wed Mar 27 2002 Elliot Lee 2.11n-10 +- Finish fixing #60675 (ipcrm man page), updated the patch. +- Fix #61203 (patch114 - dumboctal.patch). + +* Tue Mar 12 2002 Elliot Lee 2.11n-9 +- Update ctty3 patch to ignore SIGHUP while dropping controlling terminal + +* Fri Mar 08 2002 Elliot Lee 2.11n-8 +- Update ctty3 patch to drop controlling terminal before forking. + +* Fri Mar 08 2002 Elliot Lee 2.11n-7 + Fix various bugs: +- Add patch110 (skipraid) to properly skip devices that are part of a RAID array. +- Add patch111 (mkfsman) to update the mkfs man page's "SEE ALSO" section. +- remove README.cfdisk +- Include partx +- Fix 54741 and related bugs for good(hah!) with patch113 (ctty3) + +* Wed Mar 06 2002 Elliot Lee 2.11n-6 +- Put kbdrate in, add usermode dep. + +* Tue Feb 26 2002 Elliot Lee 2.11n-5 +- Fix #60363 (tweak raw.8 man page, make rawdevices.8 symlink). + +* Tue Jan 28 2002 Bill Nottingham 2.11n-4 +- remove kbdrate (fixes kbd conflict) + +* Fri Dec 28 2001 Elliot Lee 2.11n-3 +- Add util-linux-2.11n-ownerumount.patch (#56593) +- Add patch102 (util-linux-2.11n-colrm.patch) to fix #51887 +- Fix #53452 nits. +- Fix #56953 (remove tunelp on s390) +- Fix #56459, and in addition switch to using sed instead of perl. +- Fix #58471 +- Fix #57300 +- Fix #37436 +- Fix #32132 + +* Wed Dec 26 2001 Elliot Lee 2.11n-1 +- Update to 2.11n +- Merge mount/losetup back in. + +* Tue Dec 04 2001 Elliot Lee 2.11f-17 +- Add patch38 (util-linux-2.11f-ctty2.patch) to ignore SIGINT/SIGTERM/SIGQUIT in the parent, so that ^\ won't break things. + +* Fri Nov 09 2001 Elliot Lee 2.11f-16 +- Merge patches 36, 75, 76, and 77 into patch #37, to attempt resolve all the remaining issues with #54741. + +* Wed Oct 24 2001 Florian La Roche +- add nologin man-page for s390/s390x + +* Wed Oct 24 2001 Bernhard Rosenkraenzer 2.11f-14 +- Don't build kbdrate on s390/s390x +- Don't make the pivot_root.8 man page executable(!) + +* Tue Oct 23 2001 Elliot Lee 2.11f-13 +- Patch/idea #76 from HJL, fixes bug #54741 (race condition in login +acquisition of controlling terminal). + +* Thu Oct 11 2001 Bill Nottingham +- fix permissions problem with vipw & shadow files, again (doh!) + +* Tue Oct 09 2001 Erik Troan +- added patch from Olaf Kirch to fix possible pwent structure overwriting + +* Fri Sep 28 2001 Elliot Lee 2.11f-10 +- fdisk patch from arjan + +* Sun Aug 26 2001 Elliot Lee 2.11f-9 +- Don't include cfdisk, since it appears to be an even bigger pile of junk than fdisk? :) + +* Wed Aug 1 2001 Tim Powers +- don't require usermode + +* Mon Jul 30 2001 Elliot Lee 2.11f-7 +- Incorporate kbdrate back in. + +* Mon Jul 30 2001 Bill Nottingham +- revert the patch that calls setsid() in login that we had reverted + locally but got integrated upstream (#46223) + +* Tue Jul 24 2001 Florian La Roche +- correct s390x patch + +* Mon Jul 23 2001 Elliot Lee +- Add my megapatch (various bugs) +- Include pivot_root (#44828) + +* Thu Jul 12 2001 Bill Nottingham +- make shadow files 0400, not 0600 + +* Wed Jul 11 2001 Bill Nottingham +- fix permissions problem with vipw & shadow files + +* Mon Jun 18 2001 Florian La Roche +- update to 2.11f, remove any merged patches +- add s390x patches for somewhat larger swap + +* Thu Jun 14 2001 Erik Troan +- added --verbose patch to mkcramfs; it's much quieter by default now + +* Tue May 22 2001 Erik Troan +- removed warning about starting partitions on cylinder 0 -- swap version2 + makes it unnecessary + +* Wed May 9 2001 Bernhard Rosenkraenzer 2.11b-2 +- Fix up s390x support + +* Mon May 7 2001 Bernhard Rosenkraenzer 2.11b-1 +- Fix up login for real (a console session should be the controlling tty) + by reverting to 2.10s code (#36839, #36840, #39237) +- Add man page for agetty (#39287) +- 2.11b, while at it + +* Fri Apr 27 2001 Preston Brown 2.11a-4 +- /sbin/nologin from OpenBSD added. + +* Fri Apr 20 2001 Bernhard Rosenkraenzer 2.11a-3 +- Fix up login - exiting immediately even if the password is correct + is not exactly a nice feature. +- Make definite plans to kill people who update login without checking + if the new version works ;) + +* Tue Apr 17 2001 Erik Troan +- upgraded to 2.11a (kbdrate moved to kbd, among other things) +- turned off ALLOW_VCS_USE +- modified mkcramfs to not use a large number of file descriptors +- include mkfs.bfs + +* Sun Apr 8 2001 Matt Wilson +- changed Requires: kernel >= 2.2.12-7 to Conflicts: kernel < 2.2.12-7 + (fixes a initscripts -> util-linux -> kernel -> initscripts prereq loop) + +* Tue Mar 20 2001 Matt Wilson +- patched mkcramfs to use the PAGE_SIZE from asm/page.h instead of hard + coding 4096 (fixes mkcramfs on alpha...) + +* Mon Mar 19 2001 Matt Wilson +- added mkcramfs (from linux/scripts/mkcramfs) + +* Mon Feb 26 2001 Tim Powers +- fixed bug #29131, where ipc.info didn't have an info dir entry, + added the dir entry to ipc.texi (Patch58) + +* Fri Feb 23 2001 Preston Brown +- use lang finder script +- install info files + +* Thu Feb 08 2001 Erik Troan +- reverted login patch; seems to cause problems +- added agetty + +* Wed Feb 07 2001 Erik Troan +- updated kill man page +- added patch to fix vipw race +- updated vipw to edit /etc/shadow and /etc/gshadow, if appropriate +- added patch to disassociate login from tty, session, and pgrp + +* Tue Feb 06 2001 Erik Troan +- fixed problem w/ empty extended partitions +- added patch to fix the date in the more man page +- set OPT to pass optimization flags to make rather then RPM_OPT_FLAG +- fixed fdisk -l /Proc/partitions parsing +- updated to 2.10s + +* Tue Jan 23 2001 Preston Brown +- danish translations added + +* Mon Jan 15 2001 Nalin Dahyabhai +- fix segfault in login in btmp patch (#24025) + +* Mon Dec 11 2000 Oliver Paukstadt +- ported to s390 + +* Wed Nov 01 2000 Florian La Roche +- update to 2.10p +- update patch37 to newer fdisk version + +* Mon Oct 9 2000 Jeff Johnson +- update to 2.10o +- fdformat: fixed to work with kernel 2.4.0test6 (Marek Wojtowicz) +- login: not installed suid +- getopt: by default install aux files in /usr/share/misc +- update to 2.10n: +- added blockdev.8 +- change to elvtune (andrea) +- fixed overrun in agetty (vii@penguinpowered.com) +- shutdown: prefer umounting by mount point (rgooch) +- fdisk: added plan9 +- fdisk: remove empty links in chain of extended partitions +- hwclock: handle both /dev/rtc and /dev/efirtc (Bill Nottingham) +- script: added -f (flush) option (Ivan Schreter) +- script: added -q (quiet) option (Per Andreas Buer) +- getopt: updated to version 1.1.0 (Frodo Looijaard) +- Czech messages (Jiri Pavlovsky) +- login.1 man page had not /var/spool/mail path (#16998). +- sln.8 man page (but not executable) included (#10601). +- teach fdisk 0xde(Dell), 0xee(EFI GPT), 0xef(EFI FAT) partitions (#17610). + +* Wed Aug 30 2000 Matt Wilson +- rebuild to cope with glibc locale binary incompatibility, again + +* Mon Aug 14 2000 Jeff Johnson +- setfdprm should open with O_WRONLY, not 3. + +* Fri Aug 11 2000 Jeff Johnson +- fdformat should open with O_WRONLY, not 3. + +* Fri Jul 21 2000 Nalin Dahyabhai +- make 'look' look in /usr/share/dict + +* Fri Jul 21 2000 Bill Nottingham +- put /usr/local/sbin:/usr/local/bin in root's path + +* Wed Jul 19 2000 Jakub Jelinek +- rebuild to cope with glibc locale binary incompatibility + +* Thu Jul 13 2000 Prospector +- automatic rebuild + +* Mon Jul 10 2000 Bill Nottingham +- enable hwclock to use /dev/efirtc on ia64 (gettext is fun. :( ) + +* Mon Jul 3 2000 Bill Nottingham +- move cfdisk to /usr/sbin, it depends on /usr stuff +- add rescuept + +* Fri Jun 23 2000 Bernhard Rosenkraenzer +- point more at the correct path to vi (for "v"), Bug #10882 + +* Sun Jun 4 2000 Jeff Johnson +- FHS packaging changes. + +* Thu Jun 1 2000 Nalin Dahyabhai +- modify PAM setup to use system-auth + +* Mon May 1 2000 Bill Nottingham +- eek, where did login go? (specfile tweaks) + +* Mon Apr 17 2000 Bernhard Rosenkraenzer +- 2.10k +- fix compilation with current glibc + +* Tue Mar 21 2000 Bernhard Rosenkraenzer +- 2.10h + +* Tue Mar 7 2000 Jeff Johnson +- rebuild for sparc baud rates > 38400. + +* Sat Mar 4 2000 Matt Wilson +- use snprintf - not sprintf - when doing + sprintf ("%%s\n", _("Some string")) to avoid overflows and + segfaults. + +* Mon Feb 21 2000 Jeff Johnson +- raw control file was /dev/raw, now /dev/rawctl. +- raw access files were /dev/raw*, now /dev/raw/raw*. + +* Thu Feb 17 2000 Erik Troan +- -v argument to mkswap wasn't working + +* Thu Feb 10 2000 Jakub Jelinek +- Recognize 0xfd on Sun disklabels as RAID + +* Tue Feb 8 2000 Bill Nottingham +- more lives in /bin, and was linked against /usr/lib/libnurses. Bad. + +* Thu Feb 03 2000 Jakub Jelinek +- update to 2.10f +- fix issues in the new realpath code, avoid leaking memory + +* Tue Feb 01 2000 Cristian Gafton +- rebuild to fix dependencies +- add NFSv3 patches + +* Fri Jan 28 2000 Bill Nottingham +- don't require csh + +* Mon Jan 24 2000 Nalin Dahyabhai +- update to 2.10e +- add rename + +* Thu Jan 20 2000 Jeff Johnson +- strip newlines in logger input. + +* Mon Jan 10 2000 Jeff Johnson +- rebuild with correct ncurses libs. + +* Tue Dec 7 1999 Matt Wilson +- updated to util-linux 2.10c +- deprecated IMAP login mail notification patch17 +- deprecated raw patch22 +- depricated readprofile patch24 + +* Tue Dec 7 1999 Bill Nottingham +- add patch for readprofile + +* Thu Nov 18 1999 Michael K. Johnson +- tunelp should come from util-linux + +* Tue Nov 9 1999 Jakub Jelinek +- kbdrate cannot use /dev/port on sparc. + +* Wed Nov 3 1999 Jakub Jelinek +- fix kbdrate on sparc. + +* Wed Oct 27 1999 Bill Nottingham +- ship hwclock on alpha. + +* Tue Oct 5 1999 Bill Nottingham +- don't ship symlinks to rdev if we don't ship rdev. + +* Tue Sep 07 1999 Cristian Gafton +- add rawIO support from sct + +* Mon Aug 30 1999 Preston Brown +- don't display "new mail" message when the only piece of mail is from IMAP + +* Fri Aug 27 1999 Michael K. Johnson +- kbdrate is now a console program + +* Thu Aug 26 1999 Jeff Johnson +- hostid is now in sh-utils. On sparc, install hostid as sunhostid (#4581). +- update to 2.9w: +- Updated mount.8 (Yann Droneaud) +- Improved makefiles +- Fixed flaw in fdisk + +* Tue Aug 10 1999 Jeff Johnson +- tsort is now in textutils. + +* Wed Aug 4 1999 Bill Nottingham +- turn off setuid bit on login. Again. :( + +* Tue Aug 3 1999 Peter Jones, +- hostid script for sparc (#3803). + +* Tue Aug 03 1999 Christian 'Dr. Disk' Hechelmann +- added locale message catalogs to %%file +- added patch for non-root build +- vigr.8 and /usr/lib/getopt man-page was missing from file list +- /etc/fdprm really is a config file + +* Fri Jul 23 1999 Jeff Johnson +- update to 2.9v: +- cfdisk no longer believes the kernel's HDGETGEO + (and may be able to partition a 2 TB disk) + +* Fri Jul 16 1999 Jeff Johnson +- update to 2.9u: +- Czech more.help and messages (Jiri Pavlovsky) +- Japanese messages (Daisuke Yamashita) +- fdisk fix (Klaus G. Wagner) +- mount fix (Hirokazu Takahashi) +- agetty: enable hardware flow control (Thorsten Kranzkowski) +- minor cfdisk improvements +- fdisk no longer accepts a default device +- Makefile fix + +* Tue Jul 6 1999 Jeff Johnson +- update to 2.9t: +- national language support for hwclock +- Japanese messages (both by Daisuke Yamashita) +- German messages and some misc i18n fixes (Elrond) +- Czech messages (Jiri Pavlovsky) +- wall fixed for /dev/pts/xx ttys +- make last and wall use getutent() (Sascha Schumann) + [Maybe this is bad: last reading all of wtmp may be too slow. + Revert in case people complain.] +- documented UUID= and LABEL= in fstab.5 +- added some partition types +- swapon: warn only if verbose + +* Fri Jun 25 1999 Jeff Johnson +- update to 2.9s. + +* Sat May 29 1999 Jeff Johnson +- fix mkswap sets incorrect bits on sparc64 (#3140). + +* Thu Apr 15 1999 Jeff Johnson +- on sparc64 random ioctls on clock interface cause kernel messages. + +* Thu Apr 15 1999 Jeff Johnson +- improved raid patch (H.J. Lu). + +* Wed Apr 14 1999 Michael K. Johnson +- added patch for smartraid controllers + +* Sat Apr 10 1999 Cristian Gafton +- fix logging problems caused by setproctitle and PAM interaction + (#2045) + +* Wed Mar 31 1999 Jeff Johnson +- include docs and examples for sfdisk (#1164) + +* Mon Mar 29 1999 Matt Wilson +- rtc is not working properly on alpha, we can't use hwclock yet. + +* Fri Mar 26 1999 Cristian Gafton +- add patch to make mkswap more 64 bit friendly... Patch from + eranian@hpl.hp.com (ahem!) + +* Thu Mar 25 1999 Jeff Johnson +- include sfdisk (#1164) +- fix write (#1784) +- use positive logic in spec file (%%ifarch rather than %ifnarch). +- (re)-use 1st matching utmp slot if search by mypid not found. +- update to 2.9o +- lastb wants bad logins in wtmp clone /var/run/btmp (#884) + +* Thu Mar 25 1999 Jakub Jelinek +- if hwclock is to be compiled on sparc, + it must actually work. Also, it should obsolete + clock, otherwise it clashes. +- limit the swap size in mkswap for 2.2.1+ kernels + by the actual maximum size kernel can handle. +- fix kbdrate on sparc, patch by J. S. Connell + + +* Wed Mar 24 1999 Matt Wilson +- added pam_console back into pam.d/login + +* Tue Mar 23 1999 Matt Wilson +- updated to 2.9i +- added hwclock for sparcs and alpha + +* Mon Mar 22 1999 Erik Troan +- added vigr to file list + +* Sun Mar 21 1999 Cristian Gafton +- auto rebuild in the new build environment (release 12) + +* Thu Mar 18 1999 Cristian Gafton +- remove most of the ifnarch arm stuff + +* Mon Mar 15 1999 Michael Johnson +- added pam_console.so to /etc/pam.d/login + +* Thu Feb 4 1999 Michael K. Johnson +- .perms patch to login to make it retain root in parent process + for pam_close_session to work correctly + +* Tue Jan 12 1999 Jeff Johnson +- strip fdisk in buildroot correctly (#718) + +* Mon Jan 11 1999 Cristian Gafton +- have fdisk compiled on sparc and arm + +* Mon Jan 11 1999 Erik Troan +- added beos partition type to fdisk + +* Wed Dec 30 1998 Cristian Gafton +- incorporate fdisk on all arches + +* Sat Dec 5 1998 Jeff Johnson +- restore PAM functionality at end of login (Bug #201) + +* Thu Dec 03 1998 Cristian Gafton +- patch top build on the arm without PAM and related utilities, for now. +- build hwclock only on intel + +* Wed Nov 18 1998 Cristian Gafton +- upgraded to version 2.9 + +* Thu Oct 29 1998 Bill Nottingham +- build for Raw Hide (slang-1.2.2) +- patch kbdrate wackiness so it builds with egcs + +* Tue Oct 13 1998 Erik Troan +- patched more to use termcap + +* Mon Oct 12 1998 Erik Troan +- added warning about alpha/bsd label starting cylinder + +* Mon Sep 21 1998 Erik Troan +- use sigsetjmp/siglongjmp in more rather then sig'less versions + +* Fri Sep 11 1998 Jeff Johnson +- explicit attrs for setuid/setgid programs + +* Thu Aug 27 1998 Cristian Gafton +- sln is now included in glibc + +* Sun Aug 23 1998 Jeff Johnson +- add cbm1581 floppy definitions (problem #787) + +* Mon Jun 29 1998 Jeff Johnson +- remove /etc/nologin at end of shutdown/halt. + +* Fri Jun 19 1998 Jeff Johnson +- add mount/losetup. + +* Thu Jun 18 1998 Jeff Johnson +- update to 2.8 with 2.8b clean up. hostid now defunct? + +* Mon Jun 01 1998 David S. Miller +- "more" now works properly on sparc + +* Sat May 02 1998 Jeff Johnson +- Fix "fdisk -l" fault on mounted cdrom. (prob #513) + +* Fri Apr 24 1998 Prospector System +- translations modified for de, fr, tr + +* Sat Apr 11 1998 Cristian Gafton +- manhattan rebuild + +* Mon Dec 29 1997 Erik Troan +- more didn't suspend properly on glibc +- use proper tc*() calls rather then ioctl's + +* Sun Dec 21 1997 Cristian Gafton +- fixed a security problem in chfn and chsh accepting too + long gecos fields + +* Fri Dec 19 1997 Mike Wangsmo +- removed "." from default path + +* Tue Dec 02 1997 Cristian Gafton +- added (again) the vipw patch + +* Wed Oct 22 1997 Michael Fulbright +- minor cleanups for glibc 2.1 + +* Fri Oct 17 1997 Michael Fulbright +- added vfat32 filesystem type to list recognized by fdisk + +* Fri Oct 10 1997 Erik Troan +- don't build clock on the alpha +- don't install chkdupexe + +* Thu Oct 02 1997 Michael K. Johnson +- Update to new pam standard. +- BuildRoot. + +* Thu Sep 25 1997 Cristian Gafton +- added rootok and setproctitle patches +- updated pam config files for chfn and chsh + +* Tue Sep 02 1997 Erik Troan +- updated MCONFIG to automatically determine the architecture +- added glibc header hacks to fdisk code +- rdev is only available on the intel + +* Fri Jul 18 1997 Erik Troan +- update to util-linux 2.7, fixed login problems + +* Wed Jun 25 1997 Erik Troan +- Merged Red Hat changes into main util-linux source, updated package to + development util-linux (nearly 2.7). + +* Tue Apr 22 1997 Michael K. Johnson +- LOG_AUTH --> LOG_AUTHPRIV in login and shutdown + +* Mon Mar 03 1997 Michael K. Johnson +- Moved to new pam and from pam.conf to pam.d + +* Tue Feb 25 1997 Michael K. Johnson +- pam.patch differentiated between different kinds of bad logins. + In particular, "user does not exist" and "bad password" were treated + differently. This was a minor security hole.