summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-12-06changelog: releaseLaMont Jones1-0/+63
2009-12-06Merge remote branch 'origin/stable/v2.16' into stable/v2.16LaMont Jones72-3659/+3757
2009-11-30build-sys: release++ (v2.16.2)Karel Zak2-1/+5
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30docs: add v2.16.2 ReleaseNotesKarel Zak1-0/+49
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30docs: update AUTHORS fileKarel Zak1-0/+4
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30po: merge changesKarel Zak24-3462/+4051
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30po: update vi.po (from translationproject.org)Clytie Siddall1-621/+320
2009-11-30po: update pl.po (from translationproject.org)Jakub Bogusz1-1003/+1123
2009-11-30po: update id.po (from translationproject.org)Arif E. Nugroho1-775/+375
2009-11-30fsck.minix: fix broken zone checkingKarel Zak3-5/+21
This bug has been introduced by commit 95356e8b744439336925eeb36f01399f1ee8a5e9. The fsck.minix code assumes that isset() macro returns boolean, unfortunately the generic implementation from libc returns integer. This patch also add a fallback for the bitmap macros to include/bitops.h. Reported-by: "Andries E. Brouwer" <Andries.Brouwer@cwi.nl> Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30hwclock: set kernel timezone with --systz --utcScott James Remnant1-11/+8
Even though --systz doesn't need to change the system clock when the hardware clock is in UTC time (--systz --utc), it does need to set the kernel timezone so that FAT timestamps, etc. will be correct. Signed-off-by: Scott James Remnant <scott@ubuntu.com>
2009-11-30hwclock: do not access hardware clock when using --systzScott James Remnant1-12/+17
When using --systz we do not read from the hardware clock, so there is no need to search for a hardware clock. Indeed, we may be running hwclock --systz before /dev is mounted. Signed-off-by: Scott James Remnant <scott@ubuntu.com>
2009-11-30swapon: handle <=linux-2.6.19 bug in /proc/swapsMike Frysinger1-1/+8
Linux <=2.6.19 contained a bug in the /proc/swaps code where the header would not be displayed (the first line). Most people report the issue as a sequence of swapon/swapoff calls to trigger, but for some lucky people, it triggers all the time at initial boot. Since this throws up an error, init systems don't actually activate any swap files. First, swapon shouldn't whine about unexpected format if the file is empty (the default at boot). This is easy to do by putting the warning behind a check to ferror(). Second, we can detect that the first line isn't actually the header but instead is a valid swap line and so need to be processed. This assumes that the first line will always be the same format. Looking quickly at older versions shows that this header has retained its exact format since at least Linux 2.2.0 and considering the concern that goes along with proc files and the ABI, it's highly unlikely it will ever change. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2009-11-30fdformat: fix memory leak in verify_disk()Cristian Rodríguez1-0/+2
Signed-off-by: Cristian Rodríguez <crrodriguez@opensuse.org>
2009-11-30lib: fix file descriptor leak in is_mounted()Theodore Ts'o1-3/+0
Remove an extraneous fopen() that leaks memory and a file descriptor. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
2009-11-30libblkid: fix FAT super block definitionLawrence Rust1-4/+7
Signed-off-by: Lawrence Rust <lawrence@softsystem.co.uk> Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30libblkid: fix the default cache file pathKarel Zak1-1/+1
The blkid_get_cache_filename() can returns BLKID_CONFIG_FILE instead BLKID_CACHE_FILE. Yeah, pretty stupid typo. Fortunately, this brown-paper-bag bug is invisible in almost all cases, because the default path is returned by blkid_read_config(). The bug can be visible only when blkid_read_config() returns NULL -- it means on parses or malloc error. Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30mount: document changed semantics of tmpfs size option in mount.8kevin.granade@gmail.com1-1/+1
Linux kernel commit 818db35992c249dc32c1d86daf7d533fb0952f5d fixed a problem where invoking mount -t tmpfs with a size argument smaler than the size of one page caused the limits on the size of a tmpfs to not operate. The commit also caused the number supplied by the size option to be rounded up to the nearest page size instead of down. This alters the man page to match the behavior of the kernel in this instance. Signed-off-by: Kevin Granade <kevin.granade@gmail.com>
2009-11-30mount: more explicitly explain 'strictatime' in mount.8Karel Zak1-5/+13
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30sfdisk: dump has to be $LANG insensitiveKarel Zak1-5/+5
This stupid bug has been introduced by: commit add5133f4ad5136aac3ce7627e615d14893d0aeb Author: Pedro Ribeiro <p.m42.ribeiro@gmail.com> 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 <kzak@redhat.com>
2009-11-30libuuid: remove .UE macro from libuuid man pages.Milan Broz9-9/+0
On some system it produces insertion of "()". There is missing .UR anyway. [kzak@redhat.com: - this is u-l-ng bug, we don't use UR+UE macros like the original man pages in e2fsprogs] Signed-off-by: Milan Broz <mbroz@redhat.com>
2009-11-30mkswap: restore device argument in mkswap.8 synopsisPeter Breitenlohner1-0/+1
Signed-off-by: Peter Breitenlohner <peb@mppmu.mpg.de>
2009-11-30mount: update list of pseudo filesystemsKarel Zak1-0/+4
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30tailf: fix printf formatMike Frysinger1-1/+1
ssize_t types are shown with %zd, not %ld. Reviewed-by: WANG Cong <xiyou.wangcong@gmail.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2009-11-30libblkid: add missing packed attributes, add new UFS magic stringsKarel Zak21-38/+47
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30switch_root: remove TIOCSCTTY and setsid()Karel Zak1-7/+0
requested by dracut developers because: bash: cannot set terminal process group (-1): Inappropriate ioctl for device Addresses-Red-Hat-Bug: #519237 Signed-off-by: Karel Zak <kzak@redhat.com>
2009-11-30libblkid: fix typo (swsupend -> swsuspend)Karel Zak1-1/+1
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-10-19Fix typo in dmesg manpage.Ken Kopin1-1/+1
Signed-off-by: LaMont Jones <lamont@debian.org>
2009-10-10changelog: releaseLaMont Jones1-0/+27
2009-10-10Merge remote branch 'origin/stable/v2.16' into stable/v2.16LaMont Jones2-14/+44
2009-10-10Fix typo on swapon.8 manpageFlorentin Duneau1-1/+1
Addresses-Debian-Bug: 487497 Signed-off-by: LaMont Jones <lamont@debian.org>
2009-10-10drop rdev on hurdHiroyuki Yamamoto1-1/+4
Addresses-Debian-Bug: 547808 Signed-off-by: LaMont Jones <lamont@debian.org>
2009-10-0585-hwclock.rules only ran hwclock if BADYEAR defined.Petter Reinholdtsen3-5/+19
Addresses-Debian-Bug: 543375 Signed-off-by: LaMont Jones <lamont@debian.org>
2009-10-02libblkid: prefer ISO9660 PVD Label to Joliet LabelKarel Zak1-0/+22
The old good libvolume_id had the same behavior. Reported-by: Maxim Levitsky <maximlevitsky@gmail.com> Signed-off-by: Karel Zak <kzak@redhat.com>
2009-10-02libblkid: trim tailing whitespace from unicode LABELsKarel Zak1-11/+21
old version: $ ./blkid -o udev -p iso-joliet.img ID_FS_LABEL=ThisIsLabel ID_FS_LABEL_ENC=ThisIsLabel\x20\x20\x20\x20\x20 ID_FS_VERSION=Joliet\x20Extension ID_FS_TYPE=iso9660 ID_FS_USAGE=filesystem new version: $ ./blkid -o udev -p iso-joliet.img ID_FS_LABEL=ThisIsLabel ID_FS_LABEL_ENC=ThisIsLabel ID_FS_VERSION=Joliet\x20Extension ID_FS_TYPE=iso9660 ID_FS_USAGE=filesystem Reported-by: Maxim Levitsky <maximlevitsky@gmail.com> Addresses-Ubuntu-Bug: #432215 Signed-off-by: Karel Zak <kzak@redhat.com>
2009-10-02libblkid: fix blkid_probe_set_utf8label() call for JolietKarel Zak1-3/+1
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-09-22initramfs doesn't like hyphens in hook names.LaMont Jones1-1/+1
Addresses-Debian-Bug: 544669 Signed-off-by: LaMont Jones <lamont@debian.org>
2009-09-20changelog: releaseLaMont Jones1-0/+15
2009-09-20provide initramfs-tools hook to copy /sbin/blkid into initramfsJonas Meurer3-0/+19
Addresses-Debian-Bug: 544669 Signed-off-by: LaMont Jones <lamont@debian.org>
2009-09-20rules: remove usr/share/info/dir.gzLaMont Jones1-0/+1
Addresses-Debian-Bug: 547488 Signed-off-by: LaMont Jones <lamont@debian.org>
2009-09-20meta: drop Depends: install-info, install-info calls in preinst/postrm.LaMont Jones3-7/+2
Addresses-Debian-Bug: 547430, 547320 Signed-off-by: LaMont Jones <lamont@debian.org>
2009-09-17changelog: releaseLaMont Jones1-1/+5
2009-09-17Depends: install-info, set -e in postrmLaMont Jones2-3/+5
2009-09-17meta: fix misc:DependsLaMont Jones1-14/+14
2009-09-17changelog: releaseLaMont Jones1-0/+75
2009-09-17versionsort() prototype changedScott James Remnant2-2/+2
2009-09-16meta: util-linux Depends: initscriptsPetter Reinholdtsen1-1/+1
Addresses-Debian-Bug: 546834 Signed-off-by: LaMont Jones <lamont@debian.org>
2009-09-16Merge commit 'origin/stable/v2.16' into stable/v2.16LaMont Jones31-1675/+2146
2009-09-07build-sys: release++ (v2.16.1)Karel Zak2-1/+5
Signed-off-by: Karel Zak <kzak@redhat.com>
2009-09-07docs: add v2.16.1 ReleaseNotesKarel Zak1-0/+57
Signed-off-by: Karel Zak <kzak@redhat.com>