]> err.no Git - util-linux/log
util-linux
17 years agocal: add support for highlighting an arbitrary date
Pádraig Brady [Mon, 1 Oct 2007 23:22:45 +0000 (00:22 +0100)]
cal: add support for highlighting an arbitrary date

This is done by calling cal with the extra day parameter like:

cal 14 9 1752

Note the tests were updated to use the new syntax.

Note also that this patch changes the -y option
to always print a full year, even if a month or
the -[13] options are specified.
This matches the cal operation from bsdmainutils on debian
and also allows one to print a full year while
highlighting a particular date.

Signed-off-by: Pádraig Brady <P@draigBrady.com>
17 years agotailf: add option -n to specifying output lines
Li Zefan [Thu, 11 Oct 2007 11:57:35 +0000 (13:57 +0200)]
tailf: add option -n to specifying output lines

It will be useful if we can print out the last n lines instead of the last
10, just like tail.

There are examples:

tailf -n 5 file1
tailf --lines 10 file2
tailf -20 file3

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agotailf: clean up gcc warnings & fix use of errno
Karel Zak [Wed, 3 Oct 2007 21:15:03 +0000 (14:15 -0700)]
tailf: clean up gcc warnings & fix use of errno

Fix strict gcc warnings in tailf that come from using:
  ("-Wall -Wp,-D_FORTIFY_SOURCE=2")

tailf.c:111: warning: ignoring return value of 'fwrite', declared with attribute warn_unused_result

Also, tailf uses perror() for error reporting, but it inserts
an fprintf call first, so perror() is actually reporting the
result of the fprintf() call, not the failing call; change
the code to print the message by using strerror() instead.

Builds cleanly on x86_32 and x86_64.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agolosetup: clean up gcc warnings
Randy Dunlap [Mon, 8 Oct 2007 16:59:18 +0000 (09:59 -0700)]
losetup: clean up gcc warnings

Fix strict gcc warnings that come from using:
  ("-Wall -Wp,-D_FORTIFY_SOURCE=2")

lomount.c:98: warning: pointer targets in initialization differ in signedness
lomount.c:111: warning: format '%04x' expects type 'unsigned int', but argument 4 has type '__kernel_old_dev_t'
lomount.c:300: warning: pointer targets in passing argument 1 of 'xstrncpy' differ in signedness
lomount.c:307: warning: pointer targets in passing argument 1 of '__builtin___snprintf_chk' differ in signedness
lomount.c:339: warning: pointer targets in passing argument 1 of 'xstrncpy' differ in signedness

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
17 years agosetterm: dump by TIOCLINUX is deprecated since linux 1.1.92.
Karel Zak [Thu, 11 Oct 2007 10:45:53 +0000 (12:45 +0200)]
setterm: dump by TIOCLINUX is deprecated since linux 1.1.92.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agopo: update nl.po (from translationproject.org)
Benno Schulenberg [Thu, 11 Oct 2007 09:59:48 +0000 (11:59 +0200)]
po: update nl.po (from translationproject.org)

17 years agomount: improve chmod & chown usage and clean up gcc warnings (fstab.c)
Karel Zak [Wed, 3 Oct 2007 21:15:18 +0000 (14:15 -0700)]
mount: improve chmod & chown usage and clean up gcc warnings (fstab.c)

Fix strict gcc warnings in tailf that come from using:
  ("-Wall -Wp,-D_FORTIFY_SOURCE=2")

fstab.c:770: warning: ignoring return value of 'chown', declared with attribute warn_unused_result

The patch makes chmod() and chown() mandatory. We cannot rename()
temporary mtab to the final mtab when owner is not the same user as
owner of the original mtab. It's security risk.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agomkfs.cramfs: clean up gcc warnings
Randy Dunlap [Sat, 29 Sep 2007 08:12:06 +0000 (01:12 -0700)]
mkfs.cramfs: clean up gcc warnings

* clean up code, gcc warnings
  (try compilation with "-Wall -Wp,-D_FORTIFY_SOURCE=2")

Builds cleanly on x86_32 and x86_64.

mkfs.cramfs.c:211: warning: pointer targets in passing argument 2 of 'MD5Update' differ in signedness
mkfs.cramfs.c:336: warning: format '%u' expects type 'unsigned int', but argument 4 has type 'size_t'
mkfs.cramfs.c:355: warning: pointer targets in assignment differ in signedness
mkfs.cramfs.c:448: warning: pointer targets in passing argument 1 of '__builtin___strncpy_chk' differ in signedness
mkfs.cramfs.c:448: warning: pointer targets in passing argument 1 of '__strncpy_ichk' differ in signedness
mkfs.cramfs.c:450: warning: pointer targets in passing argument 1 of '__builtin___strncpy_chk' differ in signedness
mkfs.cramfs.c:450: warning: pointer targets in passing argument 1 of '__strncpy_ichk' differ in signedness
mkfs.cramfs.c:490: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness
mkfs.cramfs.c:620: warning: pointer targets in passing argument 1 of 'compress' differ in signedness
mkfs.cramfs.c:620: warning: pointer targets in passing argument 3 of 'compress' differ in signedness
mkfs.cramfs.c:671: warning: pointer targets in passing argument 3 of 'do_compress' differ in signedness
mkfs.cramfs.c:824: warning: format '%Ld' expects type 'long long int', but argument 4 has type 'loff_t'
mkfs.cramfs.c:872: warning: format '%d' expects type 'int', but argument 3 has type 'ssize_t'
mkfs.cramfs.c:880: warning: format '%d' expects type 'int', but argument 3 has type 'ssize_t'
mkfs.cramfs.c:885: warning: format '%d' expects type 'int', but argument 3 has type 'long unsigned int'
mkfs.cramfs.c:889: warning: pointer targets in passing argument 2 of 'crc32' differ in signedness
mkfs.cramfs.c:896: warning: format '%Ld' expects type 'long long int', but argument 4 has type 'loff_t'
mkfs.cramfs.c:896: warning: format '%d' expects type 'int', but argument 5 has type 'ssize_t'
mkfs.cramfs.c:909: warning: format '%d' expects type 'int', but argument 4 has type 'ssize_t'
mkfs.cramfs.c:909: warning: format '%d' expects type 'int', but argument 5 has type 'ssize_t'

Co-Author: Karel Zak <kzak@redhat.com>
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: add a note about minix v3 to TODO file
Karel Zak [Wed, 10 Oct 2007 22:22:38 +0000 (00:22 +0200)]
docs: add a note about minix v3 to TODO file

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agomount: clean up gcc warnings (mount_mntent.c)
Randy Dunlap [Mon, 8 Oct 2007 19:15:25 +0000 (12:15 -0700)]
mount: clean up gcc warnings (mount_mntent.c)

Fix gcc warnings from:
  (try compilation with "-Wall -Wp,-D_FORTIFY_SOURCE=2")

mount_mntent.c:28: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness
mount_mntent.c:129: warning: pointer targets in passing argument 1 of 'mangle' differ in signedness
mount_mntent.c:130: warning: pointer targets in passing argument 1 of 'mangle' differ in signedness
mount_mntent.c:131: warning: pointer targets in passing argument 1 of 'mangle' differ in signedness
mount_mntent.c:132: warning: pointer targets in passing argument 1 of 'mangle' differ in signedness

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
17 years agomkfs.minix: clean up gcc warnings
Randy Dunlap [Sat, 29 Sep 2007 08:11:29 +0000 (01:11 -0700)]
mkfs.minix: clean up gcc warnings

* clean up code, gcc warnings
  (try compilation with "-Wall -Wp,-D_FORTIFY_SOURCE=2")

Builds cleanly on x86_32 and x86_64.

mkfs.minix.c:595: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoswapon: clean up gcc warnings
Randy Dunlap [Wed, 3 Oct 2007 21:15:32 +0000 (14:15 -0700)]
swapon: clean up gcc warnings

Fix strict gcc warnings in tailf that come from using:
  ("-Wall -Wp,-D_FORTIFY_SOURCE=2")

swapon.c:102: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result

Builds cleanly on x86_32 and x86_64.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agopo: update de.po (from translationproject.org)
Michael Piefel [Fri, 5 Oct 2007 10:43:51 +0000 (12:43 +0200)]
po: update de.po (from translationproject.org)

17 years agoscript: dies on SIGWINCH
Karel Zak [Fri, 5 Oct 2007 10:22:13 +0000 (12:22 +0200)]
script: dies on SIGWINCH

The "doinput" process doesn't make a difference between SIGWINCH and
SIGCHILD.  This process also sends unnecessary SIGWINCH to child (the
signal is ignored by child). Fixed.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agomount: cleanup "none" fstype usage
Karel Zak [Thu, 4 Oct 2007 13:07:30 +0000 (15:07 +0200)]
mount: cleanup "none" fstype usage

 * disable to call /sbin/mount.none
 * rewrite fstype to "none" for MS_BIND and MS_MOVE
 * add notes about "none" to fstab.5 and mount.8

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agortcwake: fix verbose message
Karel Zak [Thu, 4 Oct 2007 12:14:58 +0000 (14:14 +0200)]
rtcwake: fix verbose message

Just make NLS transtalors more happy. (rh#292081)

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agochfn: add pam_end() call and cleanup PAM code
Karel Zak [Wed, 3 Oct 2007 22:22:36 +0000 (00:22 +0200)]
chfn: add pam_end() call and cleanup PAM code

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agochsh: should use pam_end function to terminate the PAM transaction
Yu Zhiguo [Thu, 6 Sep 2007 06:28:49 +0000 (14:28 +0800)]
chsh: should use pam_end function to terminate the PAM transaction

chsh will use PAM transaction if macros 'REQUIRE_PASSWORD' and
'HAVE_SECURITY_PAM_MISC_H' are defined, but there is no pam_end function be
used when the PAM transaction be terminated.

This patch also cleanup PAM code in chsh(1).

Signed-off-by: Yu Zhiguo <yuzg@cn.fujitsu.com>
Co-Author: Karel Zak <kzak@redhat.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agocal: avoid -Wformat warnings
Jim Meyering [Tue, 25 Sep 2007 12:25:41 +0000 (14:25 +0200)]
cal: avoid -Wformat warnings

Avoid this warning from gcc -Wformat:
"format not a string literal and no format arguments".

Signed-off-by: Jim Meyering <jim@meyering.net>
17 years agofsck.cramfs: clean up gcc warnings
Randy Dunlap [Sat, 29 Sep 2007 08:11:47 +0000 (01:11 -0700)]
fsck.cramfs: clean up gcc warnings

* clean up code, gcc warnings
  (try compilation with "-Wall -Wp,-D_FORTIFY_SOURCE=2")

Builds cleanly on x86_32 and x86_64.

fsck.cramfs.c:235: warning: ignoring return value of 'read', declared with attribute warn_unused_result

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
17 years agopg: fix segfault on search
Rajeev V. Pillai [Wed, 3 Oct 2007 20:39:27 +0000 (22:39 +0200)]
pg: fix segfault on search

Run pg(1) and type '/<CR>' which is supposed to forward search for the
previously remembered search string. pg(1) will segfault after printing
"No remembered search string:".

Signed-off-by: Rajeev V. Pillai <rajeevvp@gmail.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agosetarch: fix compiler warning
LaMont Jones [Sat, 22 Sep 2007 04:38:32 +0000 (22:38 -0600)]
setarch: fix compiler warning

NULL is not 0L.  It's (void*)0.  Passing that as a parameter to a function
that takes an unsigned long results in a warning about the lack of a cast.

Signed-off-by: LaMont Jones <lamont@debian.org>
17 years agomount: doesn't drop privileges properly when calling helpers
Ludwig Nussel [Thu, 20 Sep 2007 12:57:20 +0000 (14:57 +0200)]
mount: doesn't drop privileges properly when calling helpers

{,u}mount calls setuid() and setgid() in the wrong order and doesn't checking
the return value of set{u,g}id(() when running helpers like mount.nfs.

Signed-off-by: Ludwig Nussel <ludwig.nussel@suse.de>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agopo: update sv.po (from translationproject.org)
Daniel Nylander [Sun, 23 Sep 2007 19:30:30 +0000 (21:30 +0200)]
po: update sv.po (from translationproject.org)

17 years agodocs: update TODO file
Karel Zak [Sun, 23 Sep 2007 19:22:54 +0000 (21:22 +0200)]
docs: update TODO file

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agologin: login segfaults on EOF (rh#298461)
Karel Zak [Thu, 20 Sep 2007 22:34:30 +0000 (00:34 +0200)]
login: login segfaults on EOF (rh#298461)

Stupid bug in audit code:

  $ login
  login: ^D
  login: ^D
  Segmentation fault

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoionice: add a note about permissions to ionice.1
Karel Zak [Thu, 20 Sep 2007 12:33:31 +0000 (14:33 +0200)]
ionice: add a note about permissions to ionice.1

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agohwclock: fix --rtc option
Matthias Koenig [Thu, 20 Sep 2007 09:11:18 +0000 (11:11 +0200)]
hwclock: fix --rtc option

The --rtc option does not set the name of the device correctly.
It still uses /dev/rtc even if the --rtc option is given.

Testcase:
$ mv /dev/rtc /dev/foo
$ hwclock --show --debug --rtc=/dev/foo
hwclock from util-linux-2.13-rc2
Using /dev interface to clock.
Last drift adjustment done at 1190198135 seconds after 1969
Last calibration done at 1190198135 seconds after 1969
Hardware clock is on local time
Assuming hardware clock is kept in local time.
Waiting for clock tick...
hwclock: open() of /dev/rtc failed, errno=2: No such file or directory.
...got clock tick

Co-Author: Karel Zak <kzak@redhat.com>
Signed-off-by: Matthias Koenig <mkoenig@suse.de>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agobuild-sys: remove hardcoded _GNU_SOURCE
Karel Zak [Wed, 19 Sep 2007 22:57:01 +0000 (00:57 +0200)]
build-sys: remove hardcoded _GNU_SOURCE

We have AC_GNU_SOURCE, so we needn't any extra hardcoded _GNU_SOURCE.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agonamei: cleanup tailing white-spaces
Karel Zak [Wed, 19 Sep 2007 22:23:07 +0000 (00:23 +0200)]
namei: cleanup tailing white-spaces

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agobuild-sys: unify method for checking system calls and fallback handling
Mike Frysinger [Fri, 7 Sep 2007 14:55:36 +0000 (16:55 +0200)]
build-sys: unify method for checking system calls and fallback handling

Co-Author: Stepan Kasal <skasal@redhat.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Stepan Kasal <skasal@redhat.com>
17 years agobuild-sys: nls/locale handling in util-linux-ng general
Mike Frysinger [Fri, 7 Sep 2007 00:30:16 +0000 (20:30 -0400)]
build-sys: nls/locale handling in util-linux-ng general

On Monday 03 September 2007, Karel Zak wrote:
> http://thread.gmane.org/gmane.linux.utilities.util-linux-ng/590/focus=592
>
>  I agree that we need a better support for compilation without
>  locales, but from my point of view NLS != all locales stuff. The NLS
>  support is subset only.

thinking about the input from everyone, i'd propose the attached ...

Only pull in locale.h as needed and move it to the common nls.h.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17 years agoblockdev: add missing description about option --report in manpage
Li Zefan [Mon, 10 Sep 2007 09:25:10 +0000 (17:25 +0800)]
blockdev: add missing description about option --report in manpage

The manpage does not mention the option --report.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
17 years agonamei: add to identify FIFO (named pipe) and update manpage
Li Zefan [Mon, 10 Sep 2007 08:20:48 +0000 (16:20 +0800)]
namei: add to identify FIFO (named pipe) and update manpage

namei can't identify FIFO, and it will complain that it's an unknown type.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
17 years agosetarch: add long options to setarch and update manpage
Karel Zak [Tue, 4 Sep 2007 07:45:10 +0000 (15:45 +0800)]
setarch: add long options to setarch and update manpage

Co-Author: Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: update AUTHORS file
Karel Zak [Wed, 5 Sep 2007 09:55:50 +0000 (11:55 +0200)]
docs: update AUTHORS file

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agofdisk: doing useless ioctl when editing an image
Pascal Terjan [Mon, 3 Sep 2007 22:10:16 +0000 (00:10 +0200)]
fdisk: doing useless ioctl when editing an image

When editing a disk image, fdisk wants to ask the kernel to reread the
partition table which is useless and provokes an error, a wrong exit
code and some waiting. This annoys me as I can't check the return code
in my script and because I have to wait a few seconds each time.

This trivial patch makes it only do the ioctl on block devices.

It also simplifies code by dropping some workaround for kernel 1.2.x

Signed-off-by: Pascal Terjan <pterjan@linuxfr.org>
17 years agorename: add description about option -V to manpage
Li Zefan [Tue, 4 Sep 2007 07:33:36 +0000 (15:33 +0800)]
rename: add description about option -V to manpage

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
17 years agorename: remove useless variable
Li Zefan [Tue, 4 Sep 2007 07:20:25 +0000 (15:20 +0800)]
rename: remove useless variable

The number of files successfully renamed is calculated and stored in variable
ct, > but actually the variable is not used afterwards.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
17 years agobuild-sys: remove files that are no longer delivered from git
LaMont Jones [Tue, 28 Aug 2007 21:56:41 +0000 (15:56 -0600)]
build-sys: remove files that are no longer delivered from git

Neither mount/h/swap.h nor mount/mount.smbfs is delivered
as part of util-linux-ng tar archives.  As such, they
should not be in git either.

Signed-off-by: LaMont Jones <lamont@debian.org>
17 years agocal: add description about option -V to manpage
Li Zefan [Mon, 3 Sep 2007 06:25:40 +0000 (14:25 +0800)]
cal: add description about option -V to manpage

cal support option -V to display version information, but the manpage doesn't
mention it.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
17 years agomount: chain of symlinks to fstab causes use of pointer after free
Norbert Buchmuller [Sun, 2 Sep 2007 20:08:53 +0000 (14:08 -0600)]
mount: chain of symlinks to fstab causes use of pointer after free

Looking at the source in 'mount/realpath.c' we find that when dealing with
the second or later symlink in the chain, a memory block was free()d before
copying its contents to a newly allocated block.

17 years agosetarch: adding groff symlinks to setarch manual page
Arkadiusz Miskiewicz [Tue, 28 Aug 2007 07:16:57 +0000 (09:16 +0200)]
setarch: adding groff symlinks to setarch manual page

Signed-off-by: Arkadiusz Miskiewicz <arekm@maven.pl>
17 years agomount: improve error message when helper program not present
LaMont Jones [Thu, 9 Aug 2007 19:37:22 +0000 (13:37 -0600)]
mount: improve error message when helper program not present

"missing codepage" is a bit confusing to many people, so include
"helper program" in the error message when we fail to mount something.

Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
17 years agodocs: fix stable branche name in README.devel
Karel Zak [Sun, 2 Sep 2007 09:43:53 +0000 (11:43 +0200)]
docs: fix stable branche name in README.devel

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agofdisk: fix typo
Karel Zak [Sun, 2 Sep 2007 13:02:55 +0000 (15:02 +0200)]
fdisk: fix typo

Reported-by: Daniel Nylander <po@danielnylander.se>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agobuild-sys: autogen.sh reports versions of autotools now
Karel Zak [Sun, 2 Sep 2007 11:43:31 +0000 (13:43 +0200)]
build-sys: autogen.sh reports versions of autotools now

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agobuild-sys: set AC_PREREQ to 2.60, increment version to 2.14
Karel Zak [Sun, 2 Sep 2007 11:10:06 +0000 (13:10 +0200)]
build-sys: set AC_PREREQ to 2.60, increment version to 2.14

The autoconf >= 2.60 supports @localedir@ and others new directory
variables.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoflock: typo in man page
A. Costa [Wed, 29 Aug 2007 13:07:10 +0000 (07:07 -0600)]
flock: typo in man page

Signed-off-by: LaMont Jones <lamont@debian.org>
17 years agobuild-sys: release++
Karel Zak [Mon, 27 Aug 2007 22:41:54 +0000 (00:41 +0200)]
build-sys: release++

Increment release number to v2.13

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: update ReleaseNotes
Karel Zak [Mon, 27 Aug 2007 22:38:57 +0000 (00:38 +0200)]
docs: update ReleaseNotes

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: update and sort AUTHORS file
Karel Zak [Mon, 27 Aug 2007 22:15:49 +0000 (00:15 +0200)]
docs: update and sort AUTHORS file

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agopo: update po/ stuff
Karel Zak [Mon, 27 Aug 2007 22:14:16 +0000 (00:14 +0200)]
po: update po/ stuff

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoionice: clean up error handling
Matthias Koenig [Mon, 27 Aug 2007 14:49:19 +0000 (16:49 +0200)]
ionice: clean up error handling

Print error in case execvp fails and use exit macros.

Based on patch by Bernhard Voelker <mail@bernhard-voelker.de>

Signed-off-by: Matthias Koenig <mkoenig@suse.de>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agocytune: make the oneliner more specific the cyclades hw in question
Justin B Rye [Fri, 24 Aug 2007 06:36:24 +0000 (00:36 -0600)]
cytune: make the oneliner more specific the cyclades hw in question

See http://bugs.debian.org/375150

Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
17 years agodocs: update TODO
Karel Zak [Mon, 27 Aug 2007 21:39:10 +0000 (23:39 +0200)]
docs: update TODO

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agosetarch: add --3gb option fot compatibility with Debian linux{32,64} command
Karel Zak [Mon, 27 Aug 2007 21:31:25 +0000 (23:31 +0200)]
setarch: add --3gb option fot compatibility with Debian linux{32,64} command

Debian had a pre-existing linux{32,64} command which supported only
--3gb and --4gb. Adding support for those options allows setarch to
replace that package.

(Note that long options are expected for all setarch flags in the next
release.)

Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agosetarch: finish adding parisc support
Karel Zak [Mon, 27 Aug 2007 21:16:28 +0000 (23:16 +0200)]
setarch: finish adding parisc support

Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: update AUTHORS file
Karel Zak [Mon, 27 Aug 2007 13:37:05 +0000 (15:37 +0200)]
docs: update AUTHORS file

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoRevert "mount: improve error message when helper program not present"
Karel Zak [Mon, 27 Aug 2007 11:16:08 +0000 (13:16 +0200)]
Revert "mount: improve error message when helper program not present"

This reverts commit f8988ebf89c65b624ee19c685d15cab6c77fd9df that
breaks new PO translation. The code is currently in "string freeze"
state. The patch will be applied to 2.14 and 2.13.1.

17 years agopo: update sv.po (from translationproject.org)
Daniel Nylander [Mon, 27 Aug 2007 09:12:14 +0000 (11:12 +0200)]
po: update sv.po (from translationproject.org)

17 years agopo: update cs.po (from translationproject.org)
Petr Pisar [Mon, 27 Aug 2007 09:10:06 +0000 (11:10 +0200)]
po: update cs.po (from translationproject.org)

17 years agotaskset: check for existence of sched_getaffinity
Mike Frysinger [Sun, 26 Aug 2007 11:22:56 +0000 (07:22 -0400)]
taskset: check for existence of sched_getaffinity

Some architectures do no reliably provide sched_getaffinity, so make sure the
define exists before we try using it.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17 years agosetarch: add parisc/parisc64 support
LaMont Jones [Tue, 21 Aug 2007 16:19:19 +0000 (10:19 -0600)]
setarch: add parisc/parisc64 support

Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
17 years agomount: free loop device on failure
Sascha Sommer [Tue, 21 Aug 2007 13:13:43 +0000 (15:13 +0200)]
mount: free loop device on failure

Testcase:
$ mount -oloop /etc/group /mnt
ioctl: LOOP_CLR_FD: Device or resource busy
mount: you must specify the filesystem type
$ losetup /dev/loop0
/dev/loop0: [0803]:1931929 (/etc/group)

Signed-off-by: Matthias Koenig <mkoenig@suse.de>
17 years agomount: avoid duplicates for root fs in mtab
Matthias Koenig [Fri, 24 Aug 2007 11:05:27 +0000 (13:05 +0200)]
mount: avoid duplicates for root fs in mtab

If the root fs is defined with LABEL or UUID in fstab, avoid
a duplicate entry in mtab when calling mount without existing
mtab.
A mount -f / creates two entries, one for LABEL and another
for the devicename, because canonicalize does not expand the
LABEL or UUID tags.

Signed-off-by: Matthias Koenig <mkoenig@suse.de>
17 years agosetarch: cleanup licensing note
Karel Zak [Tue, 21 Aug 2007 08:52:02 +0000 (10:52 +0200)]
setarch: cleanup licensing note

Signed-off-by: Jindrich Novy <jnovy@redhat.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: update AUTHORS file
Karel Zak [Tue, 21 Aug 2007 08:32:41 +0000 (10:32 +0200)]
docs: update AUTHORS file

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agopo: update vi.po (from translationproject.org)
Phan Vinh Thinh [Tue, 21 Aug 2007 08:27:27 +0000 (10:27 +0200)]
po: update vi.po (from translationproject.org)

Signed-off-by: Phan Vinh Thinh <teppi82@gmail.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agopo: update nl.po (from translationproject.org)
Benno Schulenberg [Tue, 21 Aug 2007 08:25:25 +0000 (10:25 +0200)]
po: update nl.po (from translationproject.org)

Signed-off-by: Benno Schulenberg <benno@vertaalt.nl>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agosetarch: add __alpha__ support
Balint Cristian [Tue, 21 Aug 2007 08:00:58 +0000 (10:00 +0200)]
setarch: add __alpha__ support

Signed-off-by: Balint Cristian <cbalint@redhat.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agosetarch: add sparc32bash alias to keep compatibility with sparc32
Dennis Gilmore [Tue, 21 Aug 2007 07:55:28 +0000 (09:55 +0200)]
setarch: add sparc32bash alias to keep compatibility with sparc32

Signed-off-by: Dennis Gilmore <dennis@ausil.us>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: add DEPRECATED to EXTRA_DIST
Karel Zak [Mon, 20 Aug 2007 12:37:52 +0000 (14:37 +0200)]
docs: add DEPRECATED to EXTRA_DIST

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: fix BSD licence name in README.licensing
Karel Zak [Fri, 17 Aug 2007 11:02:03 +0000 (13:02 +0200)]
docs: fix BSD licence name in README.licensing

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: fix authorship of 8-bit cleanup agetty patch
Karel Zak [Fri, 17 Aug 2007 10:44:57 +0000 (12:44 +0200)]
docs: fix authorship of 8-bit cleanup agetty patch

The patch:

commit 6a4c63d9d90b24d770f887f8cd89fd20f8378267
Author: Moritz Muehlenhoff <jmm@inutil.org>
Date:   Thu Jul 19 00:29:13 2007 +0200

agetty: 8 bit characters on the Linux console lead to input
corruption

Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
has been posted and committed with wrong "Author" field.

Sorry to Samuel Thibault who is original author of the patch.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agopo: update de.po (from translationproject.org)
Karel Zak [Wed, 15 Aug 2007 10:26:46 +0000 (12:26 +0200)]
po: update de.po (from translationproject.org)

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: add note about http://translationproject.org
Karel Zak [Wed, 15 Aug 2007 10:10:13 +0000 (12:10 +0200)]
docs: add note about http://translationproject.org

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoman-pages: cleanup of chrt.1 and taskset.1
LaMont Jones [Tue, 14 Aug 2007 13:28:14 +0000 (07:28 -0600)]
man-pages: cleanup of chrt.1 and taskset.1

Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agomount: improve error message when helper program not present
LaMont Jones [Thu, 9 Aug 2007 19:37:22 +0000 (13:37 -0600)]
mount: improve error message when helper program not present

"missing codepage" is a bit confusing to many people, so include
"helper program" in the error message when we fail to mount something.

Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
17 years agopo: gettextizing some overlooked messages.
Benno Schulenberg [Sun, 12 Aug 2007 09:48:34 +0000 (11:48 +0200)]
po: gettextizing some overlooked messages.

Gettextize three new strings, make two strings indentical to two others,
and gettextize three strings that are already gettextized elsewhere.

Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agobuild-sys: add --disable-makeinstall-chown
Karel Zak [Tue, 14 Aug 2007 12:32:45 +0000 (14:32 +0200)]
build-sys: add --disable-makeinstall-chown

A chown-like operations are unexpected when you execute "make install"
as non-root user. For example RPM defines owner+permissions in .spec
file -- you needn't to use root account to create useful RPM package.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: add README.licensing
Karel Zak [Tue, 14 Aug 2007 10:27:55 +0000 (12:27 +0200)]
docs: add README.licensing

There is not only one unique license for all code in utl-linux-ng. We
have mix of utils with Public Domain, BSD, GPLv2 or GPLv2+. This thing
should be more transparent to avoid misunderstanding.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agotests: fix ULONG_MAX usage on 32bit machines
Karel Zak [Tue, 14 Aug 2007 10:05:29 +0000 (12:05 +0200)]
tests: fix ULONG_MAX usage on 32bit machines

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agochsh: don't use empty shell field in /etc/passwd
Karel Zak [Tue, 14 Aug 2007 10:04:09 +0000 (12:04 +0200)]
chsh: don't use empty shell field in /etc/passwd

chsh(1) uses empty shell setting (pw->pw_shell="") as a synonym for
/bin/sh. This convention is silly and unnecessary. (The vsftpd server
will not run if the shell assigned to user "ftp" is a null string --
according to bug rh#103004).

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agomore: fix underlining for multibyte chars
Karel Zak [Tue, 14 Aug 2007 09:51:19 +0000 (11:51 +0200)]
more: fix underlining for multibyte chars

Try:
$ printf "aaa _\bŽ_\bŽ_\bŽ bbb\n" | more
aaa ŽŽŽ bbb

(ŽŽŽ has to be three underlined chars on terminal).

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agologin: replace /usr/spool/mail with /var/spool/main in man page
Karel Zak [Tue, 14 Aug 2007 08:58:57 +0000 (10:58 +0200)]
login: replace /usr/spool/mail with /var/spool/main in man page

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agotests: add warning "For development purpose only."
Karel Zak [Tue, 7 Aug 2007 22:42:29 +0000 (00:42 +0200)]
tests: add warning "For development purpose only."

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agobuild-sys: release++
Karel Zak [Tue, 7 Aug 2007 22:15:52 +0000 (00:15 +0200)]
build-sys: release++

Increment release number to v2.13-rc3.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: update AUTHORS file
Karel Zak [Tue, 7 Aug 2007 22:13:54 +0000 (00:13 +0200)]
docs: update AUTHORS file

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agodocs: update ReleaseNotes
Karel Zak [Tue, 7 Aug 2007 22:07:57 +0000 (00:07 +0200)]
docs: update ReleaseNotes

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agopo: update po/ stuff
Karel Zak [Tue, 7 Aug 2007 21:34:52 +0000 (23:34 +0200)]
po: update po/ stuff

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoswapon: cleanup fsprobe_*() usage
Karel Zak [Tue, 7 Aug 2007 10:03:53 +0000 (12:03 +0200)]
swapon: cleanup fsprobe_*() usage

This patch clean ups code and avoids duplicate calling of fsprobe
functions.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoswapoff: correctly handle UUID= and LABEL= identifiers
LaMont Jones [Sun, 5 Aug 2007 00:04:11 +0000 (18:04 -0600)]
swapoff: correctly handle UUID= and LABEL= identifiers

While parsing /etc/fstab, swapoff did not make provision for UUID= and
LABEL= identifiers.  Added logic similar to swapon -a code.

Signed-off-by: Kel Modderman <kel@otaku42.de>
Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
17 years agomount: fix incorrect behavior when more than one fs type is specified
Attila Áfra [Mon, 6 Aug 2007 12:48:37 +0000 (15:48 +0300)]
mount: fix incorrect behavior when more than one fs type is specified

"mount" may fail when more than one file system type is specified, and the
requested access mode is read/write, but the device is read-only. The error
message is: "mount: wrong fs type, bad option, bad superblock on...".
It works only if the correct file system type is the last item in the comma
separated list. This is because when it tries to mount the file system again
in read-only mode, the "types" parameter passed to the "try_mount_one"
function contains only the last item instead of the entire list.

For example, you cannot mount a UDF CD/DVD with "-t udf,iso9660" if you
don't also add the read-only option. This means that some Linux distributions
with the default configuration may not be able to mount UDF disks
automatically (e.g. Ubuntu Dapper - Gutsy Tribe 3).

Signed-off-by: Attila Áfra <attila.afra@gmail.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agotests: add script(1) race condition test
Karel Zak [Mon, 6 Aug 2007 22:46:46 +0000 (00:46 +0200)]
tests: add script(1) race condition test

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoscript: fix race conditions
Karel Zak [Mon, 6 Aug 2007 22:36:31 +0000 (00:36 +0200)]
script: fix race conditions

script(1) uses three processes (doinput, dooutput and doshell).  It's
possible that the shell process is finished before the input and
output processes are completely initialized. For example:

  $ script -c "printf Bingo"

In particular case the output and input processes read/write data from
shell process in time when the shell process is already done -- so it
hangs on read().

The second problem is that the output process can finish although
there are unread data from finished shell process -- an output in
the typescript file and on terminal is incomplete!

script(1) has to pass:

 $ for i in `seq 1 1000`; do script -q -c "printf 'Bingo\n'"; done | grep -c Bingo
 1000

without problems.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agomkfs: remove nonsense from man page
Karel Zak [Thu, 2 Aug 2007 12:23:38 +0000 (14:23 +0200)]
mkfs: remove nonsense from man page

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoblockdev: use LU and LLU for BLKGETSIZE and BLKGETSIZE64
Karel Zak [Wed, 1 Aug 2007 13:47:33 +0000 (15:47 +0200)]
blockdev: use LU and LLU for BLKGETSIZE and BLKGETSIZE64

The "blkockdev --getsize" returns negative numbers on i386
for 1Tb devices. The BLKGETSIZE and BLKGETSIZE64 have to
use unsigned long and unsigned long long.

$ blockdev --getsize /dev/mapper/huge
-2147483648

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agoblockdev: fix "blockdev --getsz" for large devices
Karel Zak [Wed, 1 Aug 2007 13:06:18 +0000 (15:06 +0200)]
blockdev: fix "blockdev --getsz" for large devices

The "blockdev --getsz" command doesn't try to use BLKGETSIZE64 when
previous BLKGETSIZE failed with EFBIG. This patch fixes this problem.

Signed-off-by: Karel Zak <kzak@redhat.com>
17 years agomount: should set proper permissions on locktime
Flávio Leitner [Tue, 31 Jul 2007 10:42:14 +0000 (12:42 +0200)]
mount: should set proper permissions on locktime

When creating the "/etc/mtab~" lockfile (specifically 'linktargetfile'  in the
lock_mtab function), the file is created with incorrect permissions ('000')
which necessitates root to leverage CAP_DAC_OVERRIDE. If proper file modes (it
would appear 0600 would be sufficient) were used in the open this would
function properly with CAP_DAC_OVERRIDE revoked.

  $ sysctl -w kernel.cap-bound=0xf7fd7df5
  $ mount -t tmpfs /dev/swap /mnt
  can't open lock file /etc/mtab~: Permission denied (use -n flag to override)

Signed-off-by: Flávio Leitner <fleitner@redhat.com>
Signed-off-by: Karel Zak <kzak@redhat.com>