tizen 2.0 2.0alpha master 2.0_alpha
authorwalyong.cho <walyong.cho@samsung.com>
Wed, 22 Aug 2012 06:23:49 +0000 (15:23 +0900)
committerwalyong.cho <walyong.cho@samsung.com>
Wed, 22 Aug 2012 06:23:49 +0000 (15:23 +0900)
packaging/losetup-2.16.2.patch [new file with mode: 0644]
packaging/losetup.spec [new file with mode: 0755]
packaging/util-linux-ng.changes [deleted file]

diff --git a/packaging/losetup-2.16.2.patch b/packaging/losetup-2.16.2.patch
new file mode 100644 (file)
index 0000000..c9f7983
--- /dev/null
@@ -0,0 +1,887 @@
+diff -Naur util-linux-ng/configure.ac losetup-2.16.2/configure.ac
+--- util-linux-ng/configure.ac 2012-07-23 15:26:57.000000000 +0530
++++ losetup-2.16.2/configure.ac        2012-07-23 15:47:41.000000000 +0530
+@@ -17,20 +17,6 @@
+                                               | awk -F- '{print $1}')
+ PACKAGE_VERSION_RELEASE=0
+
+-dnl libblkid version
+-LIBBLKID_VERSION="$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR.$PACKAGE_VERSION_RELEASE"
+-LIBBLKID_DATE="10-Feb-2009"
+-LIBBLKID_LT_MAJOR=1
+-LIBBLKID_LT_MINOR=1
+-LIBBLKID_LT_MICRO=0
+-LIBBLKID_VERSION_INFO=`expr $LIBBLKID_LT_MAJOR + $LIBBLKID_LT_MINOR`:$LIBBLKID_LT_MICRO:$LIBBLKID_LT_MINOR
+-
+-dnl libuuid version
+-LIBUUID_VERSION="$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR.$PACKAGE_VERSION_RELEASE"
+-LIBUUID_LT_MAJOR=1
+-LIBUUID_LT_MINOR=3
+-LIBUUID_LT_MICRO=0
+-LIBUUID_VERSION_INFO=`expr $LIBUUID_LT_MAJOR + $LIBUUID_LT_MINOR`:$LIBUUID_LT_MICRO:$LIBUUID_LT_MINOR
+
+ # Check whether exec_prefix=/usr:
+ case $exec_prefix:$prefix in
+@@ -256,177 +242,16 @@
+ AM_CONDITIONAL(BUILD_MOUNT, test "x$build_mount" = xyes)
+
+
+-AC_ARG_ENABLE([fsck],
+-  AS_HELP_STRING([--disable-fsck], [do not build fsck]),
+-  [], enable_fsck=yes
+-)
+-AM_CONDITIONAL(BUILD_FSCK, test "x$enable_fsck" = xyes)
+-
+-
+-AC_ARG_ENABLE([libuuid],
+-  AS_HELP_STRING([--disable-libuuid], [do not build libuuid and uuid utilities]),
+-  [], enable_libuuid=yes
+-)
+-AC_SUBST([LIBUUID_VERSION])
+-AC_SUBST([LIBUUID_VERSION_INFO])
+-AM_CONDITIONAL(BUILD_LIBUUID, test "x$enable_libuuid" = xyes)
+-have_uuid=yes
+-
+-if test "x$enable_libuuid" = xno; then
+-  # Check for external (e2fsprogs) libuuid
+-  PKG_CHECK_MODULES(UUID, uuid, [have_uuid=yes], [have_uuid=no])
+-  if test "x$have_uuid" = xno; then
+-    # system without pkg-config or so, try classic check
+-    AC_CHECK_LIB(uuid, uuid_is_null, [have_uuid=yes], [have_uuid=no])
+-  fi
+-  if test "x$have_uuid" = xyes; then
+-    UTIL_SET_FLAGS($UUID_CFLAGS, $UUID_CFLAGS, $UUID_LIBS)
+-    AC_CHECK_HEADERS([uuid.h uuid/uuid.h], [break], [])
+-    UTIL_RESTORE_FLAGS
+-  fi
+-else
+-  # internal library
+-  AC_DEFINE(HAVE_UUID_H, 1, [Define to 1 if you have the <uuid.h> header file.])
+-fi
+-
+-if test "x$have_uuid" = xyes; then
+-  AC_DEFINE(HAVE_LIBUUID, 1, [Define to 1 if you have the -luuid.])
+-else
+-  AC_MSG_WARN([uuid library is not found; mkswap(8) will not generate UUIDs])
+-fi
+-AM_CONDITIONAL(HAVE_UUID, test "x$have_uuid" = xyes)
+-# default
+-: ${UUID_LIBS='-luuid'}
+-
+-
+-AC_ARG_ENABLE([uuidd],
+-  AS_HELP_STRING([--disable-uuidd], [do not build the uuid daemon]),
+-  [], enable_uuidd=auto
+-)
+
+-case "$enable_uuidd:$have_uuid" in
+-yes:no)
+-  AC_MSG_ERROR([cannot enable uuidd when libuuid is disabled]) ;;
+-auto:*)
+-  enable_uuidd=$have_uuid ;;
+-esac
+-if test "x$enable_uuidd" = xyes; then
+-  AC_DEFINE(HAVE_UUIDD, 1, [Define to 1 if you want to use uuid daemon.])
+-fi
+-AM_CONDITIONAL(BUILD_UUIDD, test "x$enable_uuidd" = xyes)
+-
+-
+-AC_ARG_ENABLE([libblkid],
+-  AS_HELP_STRING([--disable-libblkid], [do not build libblkid and blkid utilities]),
+-  [], enable_libblkid=yes
+-)
+-AC_SUBST([LIBBLKID_VERSION])
+-AC_SUBST([LIBBLKID_VERSION_INFO])
+-AM_CONDITIONAL(BUILD_LIBBLKID, test "x$enable_libblkid" = xyes)
+-AC_DEFINE_UNQUOTED(LIBBLKID_VERSION, "$LIBBLKID_VERSION", [libblkid version string])
+-AC_DEFINE_UNQUOTED(LIBBLKID_DATE, "$LIBBLKID_DATE", [libblkid date string])
+-have_blkid=yes
+-
+-if test "x$enable_libblkid" = xno; then
+-  if test "x$build_mount" = xyes || test "x$enable_fsck" = xyes; then
+-    # Check for external (e2fsprogs) libblkid
+-    PKG_CHECK_MODULES(BLKID, blkid, [have_blkid=yes], [have_blkid=no])
+-    if test "x$have_blkid" = xno; then
+-      # system without pkg-config or so, try classic check
+-      AC_CHECK_LIB(blkid, blkid_get_cache, [have_blkid=yes], [have_blkid=no])
+-    fi
+-    if test "x$have_blkid" = xyes; then
+-      UTIL_SET_FLAGS($BLKID_CFLAGS, $BLKID_CFLAGS, $BLKID_LIBS)
+-      AC_CHECK_HEADERS([blkid.h blkid/blkid.h], [break], [])
+-      UTIL_RESTORE_FLAGS
+-    fi
+-    if test -n "$enable_static_programs"; then
+-      # TODO check only when mount of fsck are requested
+-      UTIL_PKG_STATIC([BLKID_LIBS_STATIC], [blkid])
+-    fi
+-  fi
+-else
+-  # internal library
+-  AC_DEFINE(HAVE_BLKID_H, 1, [Define to 1 if you have the <blkid.h> header file.])
+-  AC_DEFINE(HAVE_BLKID_EVALUATE_TAG, 1, [Define to 1 if you have the blkid_evaluate_tag().])
+-fi
+-
+-if test "x$have_blkid" = xyes; then
+-  AC_DEFINE(HAVE_LIBBLKID, 1, [Define to 1 if you have the -lblkid.])
+-else
+-  if test "x$build_mount" = xyes; then
+-    AC_MSG_ERROR([libblkid is needed to build util-linux-ng mount])
+-  fi
+-  if test "x$enable_fsck" = xyes; then
+-    AC_MSG_ERROR([libblkid is needed to build util-linux-ng fsck])
+-  fi
+-fi
+-AM_CONDITIONAL(HAVE_BLKID, test "x$have_blkid" = xyes)
+-# default
+-: ${BLKID_LIBS='-lblkid -luuid'}
+-
+-AC_ARG_VAR([BLKID_LIBS_STATIC], [-l options for linking statically with blkid])
+
+
+ UTIL_CHECK_LIB(util, openpty)
+ UTIL_CHECK_LIB(termcap, tgetnum)
+
+-AM_GNU_GETTEXT_VERSION([0.14.1])
+-AM_GNU_GETTEXT([external])
+-if test -d "$srcdir/po"
+-then
+-    ALL_LINGUAS=`cd $srcdir/po > /dev/null && echo *.po | sed 's/\.po//g'`
+-else
+-    ALL_LINGUAS="af am ar as be bg bn_IN bn ca cs cy da de el en_GB es et eu_ES fa fi fr gl gu he hi hr hu hy id is it ja ka kn ko ku lo lt lv mk ml mr ms my nb nl nn no nso or pa pl pt_BR pt ro ru si sk sl sq sr@Latn sr sv ta te th tr uk ur vi zh_CN zh_TW zu"
+-fi
+
+-AC_ARG_WITH([ncurses],
+-  AS_HELP_STRING([--with-ncurses], [build with non-wide ncurses, default is wide version
+-                                    (--without-ncurses disables all ncurses(w) support)]),
+-  [], with_ncurses=auto
+-)
+-AM_CONDITIONAL(HAVE_NCURSES, false)
+-
+-if test "x$with_ncurses" != xno; then
+-  have_ncurses=no
+-  AC_CHECK_HEADERS([ncurses.h ncurses/ncurses.h], [
+-    if test "x$with_ncurses" = xauto; then
+-      UTIL_CHECK_LIB(ncursesw, initscr, ncurses)
+-      if test "x$have_ncurses" = xyes; then
+-        NCURSES_LIBS="-lncursesw"
+-      fi
+-    fi
+-    if test "x$have_ncurses" = xno; then
+-      UTIL_CHECK_LIB(ncurses, initscr)
+-      if test "x$have_ncurses" = xyes; then
+-        NCURSES_LIBS="-lncurses"
+-      fi
+-    fi
+-  ])
+-  if test "x$have_ncurses" = xno; then
+-    AC_MSG_ERROR([ncurses or ncursesw selected, but library not found (--without-ncurses to disable)])
+-  fi
+-fi
+-AC_SUBST([NCURSES_LIBS])
+
+
+-AC_ARG_WITH([slang],
+-  AS_HELP_STRING([--with-slang], [compile cfdisk with slang]),
+-  [], with_slang=no
+-)
+
+-have_tinfo=no
+-AC_CHECK_LIB(tinfo, tgetent, [have_tinfo=yes])
+-AM_CONDITIONAL(HAVE_TINFO, test "x$have_tinfo" = xyes)
+-
+-use_slang=no
+-if test "x$with_slang" = xyes; then
+-  AC_CHECK_HEADERS([slcurses.h slang/slcurses.h], [use_slang=yes])
+-  if test "x$use_slang" = xno; then
+-    AC_MSG_ERROR([slang selected but slcurses.h not found])
+-  fi
+-fi
+-AM_CONDITIONAL(USE_SLANG, test "x$use_slang" = xyes)
+
+
+ AC_LINK_IFELSE([AC_LANG_PROGRAM([[
+@@ -634,244 +459,8 @@
+   [], enable_cramfs=check
+ )
+
+-if test "x$enable_cramfs" = xno; then
+-  build_cramfs=no
+-else
+-  build_cramfs=yes
+-  dnl Trick: leave the third parameter empty to get the default action.
+-  AC_CHECK_LIB(z, crc32, [], build_cramfs=no)
+-  case $enable_cramfs:$build_cramfs in
+-  yes:no) AC_MSG_ERROR([cramfs selected but libz not found]);;
+-  esac
+-fi
+-AM_CONDITIONAL(BUILD_CRAMFS, test "x$build_cramfs" = xyes)
+-
+-
+-AC_ARG_ENABLE([switch_root],
+-  AS_HELP_STRING([--disable-switch_root], [do not build switch_root]),
+-  [], enable_switch_root=check
+-)
+-
+-if test "x$enable_switch_root" = xno; then
+-  build_switch_root=no
+-else
+-  build_switch_root=yes
+-  case $enable_switch_root:$linux_os in
+-  yes:no) AC_MSG_ERROR([switch_root selected for non-linux system]);;
+-  check:no) AC_MSG_WARN([non-linux system; do not build switch_root])
+-            build_switch_root=no;;
+-  esac
+-  if test "x$build_switch_root" = xyes; then
+-    case $enable_switch_root:$have_openat in
+-    yes:no) AC_MSG_ERROR([switch_root selected but openat() function not found]);;
+-    check:no) AC_MSG_WARN([openat() function not found; do not build switch_root])
+-              build_switch_root=no;;
+-    esac
+-  fi
+-fi
+-AM_CONDITIONAL(BUILD_SWITCH_ROOT, test "x$build_switch_root" = xyes)
+-
+-
+-AC_ARG_ENABLE([elvtune],
+-  AS_HELP_STRING([--enable-elvtune], [build elvtune (only works with 2.2 and 2.4 kernels)]),
+-  [], enable_elvtune=no
+-)
+-AM_CONDITIONAL(BUILD_ELVTUNE, test "x$enable_elvtune" = xyes)
+-
+-
+-AC_ARG_ENABLE([init],
+-  AS_HELP_STRING([--enable-init], [build simpleinit, shutdown, initctl]),
+-  [], enable_init=no
+-)
+-AM_CONDITIONAL(BUILD_INIT, test "x$enable_init" = xyes)
+-
+-
+-AC_ARG_ENABLE([kill],
+-  AS_HELP_STRING([--enable-kill], [build kill]),
+-  [], enable_kill=no
+-)
+-AM_CONDITIONAL(BUILD_KILL, test "x$enable_kill" = xyes)
+-
+-
+-AC_ARG_ENABLE([last],
+-  AS_HELP_STRING([--enable-last], [build last]),
+-  [], enable_last=no
+-)
+-AM_CONDITIONAL(BUILD_LAST, test "x$enable_last" = xyes)
+-
+-
+-AC_ARG_ENABLE([mesg],
+-  AS_HELP_STRING([--enable-mesg], [build mesg]),
+-  [], enable_mesg=no
+-)
+-AM_CONDITIONAL(BUILD_MESG, test "x$enable_mesg" = xyes)
+-
+-
+-AC_ARG_ENABLE([partx],
+-  AS_HELP_STRING([--enable-partx], [build addpart, delpart, partx]),
+-  [], enable_partx=no
+-)
+-AM_CONDITIONAL(BUILD_PARTX, test "x$enable_partx" = xyes)
+-
+-
+-AC_ARG_ENABLE([raw],
+-  AS_HELP_STRING([--enable-raw], [build raw]),
+-  [], enable_raw=no
+-)
+-AM_CONDITIONAL(BUILD_RAW, test "x$enable_raw" = xyes)
+-
+-
+-AC_ARG_ENABLE([rdev],
+-  AS_HELP_STRING([--enable-rdev], [build rdev on i386]),
+-  [], enable_rdev=no
+-)
+-AM_CONDITIONAL(BUILD_RDEV, test "x$enable_rdev" = xyes)
+-
+-
+-AC_ARG_ENABLE([rename],
+-  AS_HELP_STRING([--disable-rename], [do not build rename]),
+-  [], enable_rename=yes
+-)
+-AM_CONDITIONAL(BUILD_RENAME, test "x$enable_rename" = xyes)
+-
+-
+-AC_ARG_ENABLE([reset],
+-  AS_HELP_STRING([--enable-reset], [build reset]),
+-  [], enable_reset=no
+-)
+-AM_CONDITIONAL(BUILD_RESET, test "x$enable_reset" = xyes)
+-
+-
+-AC_ARG_ENABLE([login-utils],
+-  AS_HELP_STRING([--enable-login-utils], [build chfn, chsh, login, newgrp, vipw]),
+-  [], enable_login_utils=no
+-)
+-AM_CONDITIONAL(BUILD_LOGIN_UTILS, test "x$enable_login_utils" = xyes)
+-
+-AC_ARG_WITH([pam],
+-  [AS_HELP_STRING([--without-pam], [compile login-utils without PAM support])])
+-
+-AM_CONDITIONAL(HAVE_PAM, false)
+-if test "x$enable_login_utils" = xyes && test "x$with_pam" != xno; then
+-  AC_CHECK_HEADERS([security/pam_misc.h],
+-    [AM_CONDITIONAL(HAVE_PAM, true)],
+-    [if test "x$with_pam" = xyes; then
+-      AC_MSG_ERROR([PAM selected but security/pam_misc.h not found])
+-     fi
+-    ])
+-fi
+-
+-AC_ARG_WITH([selinux],
+-  AS_HELP_STRING([--with-selinux], [compile with SELinux support]),
+-  [], with_selinux=no
+-)
+-
+-if test "x$with_selinux" = xno; then
+-  AM_CONDITIONAL(HAVE_SELINUX, false)
+-else
+-  UTIL_CHECK_LIB(selinux, getprevcon)
+-  case "$with_selinux:$have_selinux" in
+-  yes:no) AC_MSG_ERROR([SELinux selected but libselinux not found]);;
+-  esac
+-fi
+-
+-if test "x$have_selinux" = xyes; then
+-  SELINUX_LIBS="-lselinux -lsepol"
+-  SELINUX_LIBS_STATIC="-lselinux -lsepol"
+-  old_LDFLAGS="$LDFLAGS"
+-  LDFLAGS="$LDFLAGS $SELINUX_LIBS"
+-  # This function is missing in old libselinux 1.xx versions
+-  AC_CHECK_FUNCS([security_get_initial_context])
+-  LDFLAGS="$old_LDFLAGS"
+-fi
+-AC_SUBST([SELINUX_LIBS])
+-AC_SUBST([SELINUX_LIBS_STATIC])
+-
+-AC_ARG_WITH([audit],
+-  AS_HELP_STRING([--with-audit], [compile with audit support]),
+-  [], with_audit=no
+-)
+-
+-if test "x$with_audit" = xno; then
+-  AM_CONDITIONAL(HAVE_AUDIT, false)
+-else
+-  UTIL_CHECK_LIB(audit, audit_log_user_message)
+-  case "$with_audit:$have_audit" in
+-  yes:no)
+-   AC_MSG_ERROR([Audit selected but libaudit not found (or doesn't support audit_log_user_message())])
+-   ;;
+-  esac
+-fi
+-
+-AC_ARG_ENABLE([schedutils],
+-  AS_HELP_STRING([--disable-schedutils], [do not build chrt, ionice, teskset]),
+-  [], enable_schedutils=yes
+-)
+-AM_CONDITIONAL(BUILD_SCHEDUTILS, test "x$enable_schedutils" = xyes)
+-
+-
+-AC_ARG_ENABLE([wall],
+-  AS_HELP_STRING([--disable-wall], [do not build wall]),
+-  [], enable_wall=yes
+-)
+-AM_CONDITIONAL(BUILD_WALL, test "x$enable_wall" = xyes)
+-
+-
+-AC_ARG_ENABLE([write],
+-  AS_HELP_STRING([--enable-write], [build write]),
+-  [], enable_write=no
+-)
+-AM_CONDITIONAL(BUILD_WRITE, test "x$enable_write" = xyes)
+-
+-
+-AC_ARG_ENABLE([chsh-only-listed],
+-  AS_HELP_STRING([--disable-chsh-only-listed], [chsh: allow shells not in /etc/shells]),
+-  [], enable_chsh_only_listed=yes
+-)
+-
+-if test "x$enable_chsh_only_listed" = xyes; then
+-  AC_DEFINE(ONLY_LISTED_SHELLS, 1, [Should chsh allow only shells in /etc/shells?])
+-fi
+-
+
+-AC_ARG_ENABLE([login-chown-vcs],
+-  AS_HELP_STRING([--enable-login-chown-vcs], [let login chown /dev/vcsN]),
+-  [], enable_login_chown_vcs=no
+-)
+
+-if test "x$enable_login_chown_vcs" = xyes; then
+-  AC_DEFINE(LOGIN_CHOWN_VCS, 1, [Should login chown /dev/vcsN?])
+-fi
+-
+-
+-AC_ARG_ENABLE([login-stat-mail],
+-  AS_HELP_STRING([--enable-login-stat-mail], [let login stat() the mailbox]),
+-  [], enable_login_stat_mail=no
+-)
+-
+-if test "x$enable_login_stat_mail" = xyes; then
+-  AC_DEFINE(LOGIN_STAT_MAIL, 1, [Should login stat() the mailbox?])
+-fi
+-
+-
+-AC_ARG_ENABLE([pg-bell],
+-  AS_HELP_STRING([--disable-pg-bell], [let pg not ring the bell on invalid keys]),
+-  [], enable_pg_bell=yes
+-)
+-
+-if test "x$enable_pg_bell" = xyes; then
+-  AC_DEFINE(PG_BELL, 1, [Should pg ring the bell on invalid keys?])
+-fi
+-
+-
+-AC_ARG_ENABLE([require-password],
+-  AS_HELP_STRING([--disable-require-password], [do not require the user to enter the password in chfn and chsh]),
+-  [], enable_require_password=yes
+-)
+-
+-if test "x$enable_require_password" = xyes; then
+-  AC_DEFINE(REQUIRE_PASSWORD, 1, [Should chfn and chsh require the user to enter the password?])
+-fi
+
+
+ AC_ARG_ENABLE([use-tty-group],
+@@ -902,35 +491,8 @@
+ AC_CONFIG_HEADERS(config.h)
+
+ AC_CONFIG_FILES([
+-disk-utils/Makefile
+-fdisk/Makefile
+-fsck/Makefile
+-getopt/Makefile
+-hwclock/Makefile
+-include/Makefile
+-lib/Makefile
+-login-utils/Makefile
+ Makefile
+-misc-utils/chkdupexe:misc-utils/chkdupexe.pl
+-misc-utils/Makefile
+ mount/Makefile
+-partx/Makefile
+-po/Makefile.in
+-schedutils/Makefile
+-shlibs/blkid/blkid.pc
+-shlibs/blkid/Makefile
+-shlibs/blkid/src/Makefile
+-shlibs/blkid/src/probers/Makefile
+-shlibs/uuid/uuid.pc
+-shlibs/uuid/Makefile
+-shlibs/uuid/man/Makefile
+-shlibs/uuid/src/Makefile
+-shlibs/Makefile
+-sys-utils/Makefile
+-tests/commands.sh
+-tests/helpers/Makefile
+-tests/Makefile
+-text-utils/Makefile
+ ])
+
+
+diff -Naur util-linux-ng/Makefile.am losetup-2.16.2/Makefile.am
+--- util-linux-ng/Makefile.am  2012-07-23 15:26:57.000000000 +0530
++++ losetup-2.16.2/Makefile.am 2012-07-23 15:47:23.000000000 +0530
+@@ -1,37 +1,11 @@
+ include $(top_srcdir)/config/include-Makefile.am
+
+-SUBDIRS = \
+-      include \
+-      disk-utils \
+-      fdisk \
+-      getopt \
+-      lib \
+-      shlibs \
+-      login-utils \
+-      misc-utils \
+-      po \
+-      schedutils \
+-      sys-utils \
+-      text-utils \
+-      tests
++SUBDIRS = mount
+
+
+ RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \
+               -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o
+
+-if LINUX
+-SUBDIRS += \
+-      hwclock \
+-      partx
+-endif
+-
+-if BUILD_MOUNT
+-SUBDIRS += mount
+-endif
+-
+-if BUILD_FSCK
+-SUBDIRS += fsck
+-endif
+
+ ACLOCAL_AMFLAGS = -I m4
+
+@@ -63,8 +37,5 @@
+               | xargs $(top_srcdir)/tools/checkconfig.sh $(top_srcdir)
+
+
+-ENABLE_ALL = --enable-static-programs --with-fsprobe=builtin \
+- --enable-elvtune --enable-init --enable-kill --enable-last \
+- --enable-mesg --enable-partx --enable-raw --enable-rdev --enable-reset \
+- --enable-login-utils --enable-write --enable-arch --enable-mount
++ENABLE_ALL = --enable-mount
+ DISTCHECK_CONFIGURE_FLAGS = --disable-use-tty-group $(ENABLE_ALL)
+diff -Naur util-linux-ng/mount/lomount.c losetup-2.16.2/mount/lomount.c
+--- util-linux-ng/mount/lomount.c      2012-07-23 15:26:57.000000000 +0530
++++ losetup-2.16.2/mount/lomount.c     2012-07-23 15:30:17.000000000 +0530
+@@ -24,8 +24,6 @@
+ #include "xmalloc.h"
+ #include "pathnames.h"
+
+-#define SIZE(a) (sizeof(a)/sizeof(a[0]))
+-
+ #ifdef LOOP_SET_FD
+
+ static int is_associated(int dev, struct stat *file, unsigned long long offset, int isoff);
+@@ -667,6 +665,162 @@
+  *    2       - error (EBUSY)
+  */
+ int
++set_loop1(const char *device, const char *file, unsigned long long offset,
++       unsigned long long sizelimit, const char *encryption, const char *pass, int *options) {
++      struct loop_info64 loopinfo64;
++      int fd, ffd, mode, i;
++      char *filename;
++
++      if (verbose) {
++              char *xdev = loopfile_used(file, offset);
++
++              if (xdev) {
++                      printf(_("warning: %s is already associated with %s\n"),
++                                      file, xdev);
++                      free(xdev);
++              }
++      }
++
++      mode = (*options & SETLOOP_RDONLY) ? O_RDONLY : O_RDWR;
++      if ((ffd = open(file, mode)) < 0) {
++              if (!(*options & SETLOOP_RDONLY) &&
++                  (errno == EROFS || errno == EACCES))
++                      ffd = open(file, mode = O_RDONLY);
++              if (ffd < 0) {
++                      perror(file);
++                      return 1;
++              }
++              if (verbose)
++                      printf(_("warning: %s: is write-protected, using read-only.\n"),
++                                      file);
++              *options |= SETLOOP_RDONLY;
++      }
++      if ((fd = open(device, mode)) < 0) {
++              perror (device);
++              close(ffd);
++              return 1;
++      }
++      memset(&loopinfo64, 0, sizeof(loopinfo64));
++
++      if (!(filename = canonicalize(file)))
++              filename = (char *) file;
++      xstrncpy((char *)loopinfo64.lo_file_name, filename, LO_NAME_SIZE);
++
++      if (encryption && *encryption) {
++              if (digits_only(encryption)) {
++                      loopinfo64.lo_encrypt_type = atoi(encryption);
++              } else {
++                      loopinfo64.lo_encrypt_type = LO_CRYPT_CRYPTOAPI;
++                      snprintf((char *)loopinfo64.lo_crypt_name, LO_NAME_SIZE,
++                               "%s", encryption);
++              }
++      }
++
++      loopinfo64.lo_offset = offset;
++      loopinfo64.lo_sizelimit = sizelimit;
++
++#ifdef MCL_FUTURE
++      /*
++       * Oh-oh, sensitive data coming up. Better lock into memory to prevent
++       * passwd etc being swapped out and left somewhere on disk.
++       */
++      if (loopinfo64.lo_encrypt_type != LO_CRYPT_NONE) {
++              if(mlockall(MCL_CURRENT | MCL_FUTURE)) {
++                      perror("memlock");
++                      fprintf(stderr, _("Couldn't lock into memory, exiting.\n"));
++                      exit(1);
++              }
++      }
++#endif
++
++      switch (loopinfo64.lo_encrypt_type) {
++      case LO_CRYPT_NONE:
++              loopinfo64.lo_encrypt_key_size = 0;
++              break;
++      case LO_CRYPT_XOR:
++              goto gotpass;
++      default:
++      gotpass:
++              memset(loopinfo64.lo_encrypt_key, 0, LO_KEY_SIZE);
++              xstrncpy((char *)loopinfo64.lo_encrypt_key, pass, LO_KEY_SIZE);
++              loopinfo64.lo_encrypt_key_size = LO_KEY_SIZE;
++      }
++
++      if (ioctl(fd, LOOP_SET_FD, ffd) < 0) {
++              int rc = 1;
++
++              if (errno == EBUSY) {
++                      if (verbose)
++                              printf(_("ioctl LOOP_SET_FD failed: %s\n"),
++                                                      strerror(errno));
++                      rc = 2;
++              } else
++                      perror("ioctl: LOOP_SET_FD");
++
++              close(fd);
++              close(ffd);
++              if (file != filename)
++                      free(filename);
++              return rc;
++      }
++      close (ffd);
++
++      if (*options & SETLOOP_AUTOCLEAR)
++              loopinfo64.lo_flags = LO_FLAGS_AUTOCLEAR;
++
++      i = ioctl(fd, LOOP_SET_STATUS64, &loopinfo64);
++      if (i) {
++              struct loop_info loopinfo;
++              int errsv = errno;
++
++              i = loop_info64_to_old(&loopinfo64, &loopinfo);
++              if (i) {
++                      errno = errsv;
++                      *options &= ~SETLOOP_AUTOCLEAR;
++                      perror("ioctl: LOOP_SET_STATUS64");
++              } else {
++                      i = ioctl(fd, LOOP_SET_STATUS, &loopinfo);
++                      if (i)
++                              perror("ioctl: LOOP_SET_STATUS");
++              }
++              memset(&loopinfo, 0, sizeof(loopinfo));
++      }
++
++      if ((*options & SETLOOP_AUTOCLEAR) && !is_loopfd_autoclear(fd))
++              /* kernel doesn't support loop auto-destruction */
++              *options &= ~SETLOOP_AUTOCLEAR;
++
++      memset(&loopinfo64, 0, sizeof(loopinfo64));
++
++      if (i) {
++              ioctl (fd, LOOP_CLR_FD, 0);
++              close (fd);
++              if (file != filename)
++                      free(filename);
++              return 1;
++      }
++
++      /*
++       * HACK: here we're leeking a file descriptor,
++       * but mount is a short-lived process anyway.
++       */
++      if (!(*options & SETLOOP_AUTOCLEAR))
++              close (fd);
++
++      if (verbose > 1)
++              printf(_("set_loop(%s,%s,%llu,%llu): success\n"),
++                     device, filename, offset, sizelimit);
++      if (file != filename)
++              free(filename);
++      return 0;
++}
++/*
++ * return codes:
++ *    0       - success
++ *    1       - error
++ *    2       - error (EBUSY)
++ */
++int
+ set_loop(const char *device, const char *file, unsigned long long offset,
+        unsigned long long sizelimit, const char *encryption, int pfd, int *options) {
+       struct loop_info64 loopinfo64;
+@@ -901,6 +1055,7 @@
+   " -o | --offset <num>      start at offset <num> into file\n"
+   "      --sizelimit <num>   loop limited to only <num> bytes of the file\n"
+   " -p | --pass-fd <num>     read passphrase from file descriptor <num>\n"
++  " -k | --passwd <passphrase>  get passphrase\n"
+   " -r | --read-only         setup read-only loop device\n"
+   "      --show              print device name (with -f <file>)\n"
+   " -v | --verbose           verbose mode\n\n"));
+@@ -909,7 +1064,7 @@
+
+ int
+ main(int argc, char **argv) {
+-      char *p, *offset, *sizelimit, *encryption, *passfd, *device, *file, *assoc;
++      char *p, *offset, *sizelimit, *encryption, *passfd, *device, *file, *assoc, *passwd;
+       int delete, find, c, all, capacity;
+       int res = 0;
+       int showdev = 0;
+@@ -927,6 +1082,7 @@
+               { "offset", 1, 0, 'o' },
+               { "sizelimit", 1, 0, 128 },
+               { "pass-fd", 1, 0, 'p' },
++              { "passwd", 1, 0, 'k'},
+               { "read-only", 0, 0, 'r' },
+               { "show", 0, 0, 's' },
+               { "verbose", 0, 0, 'v' },
+@@ -940,13 +1096,13 @@
+       capacity = delete = find = all = 0;
+       off = 0;
+         slimit = 0;
+-      assoc = offset = sizelimit = encryption = passfd = NULL;
++      assoc = offset = sizelimit = encryption = passfd = passwd = NULL;
+
+       progname = argv[0];
+       if ((p = strrchr(progname, '/')) != NULL)
+               progname = p+1;
+
+-      while ((c = getopt_long(argc, argv, "acde:E:fhj:o:p:rsv",
++      while ((c = getopt_long(argc, argv, "acde:E:fhj:o:p:k:rsv",
+                               longopts, NULL)) != -1) {
+               switch (c) {
+               case 'a':
+@@ -974,6 +1130,9 @@
+               case 'o':
+                       offset = optarg;
+                       break;
++              case 'k':
++                      passwd = optarg;
++                      break;
+               case 'p':
+                       passfd = optarg;
+                       break;
+@@ -1057,7 +1216,11 @@
+               if (passfd && sscanf(passfd, "%d", &pfd) != 1)
+                       usage();
+               do {
+-                      res = set_loop(device, file, off, slimit, encryption, pfd, &ro);
++                      if (passwd){
++                              res = set_loop1(device, file, off, slimit, encryption, passwd, &ro);
++                      }else{
++                              res = set_loop(device, file, off, slimit, encryption, pfd, &ro);
++                      }
+                       if (res == 2 && find) {
+                               if (verbose)
+                                       printf(_("stolen loop=%s...trying again\n"),
+diff -Naur util-linux-ng/mount/lomount.h losetup-2.16.2/mount/lomount.h
+--- util-linux-ng/mount/lomount.h      2012-07-23 15:26:57.000000000 +0530
++++ losetup-2.16.2/mount/lomount.h     2012-07-23 15:30:17.000000000 +0530
+@@ -1,5 +1,7 @@
+ extern int set_loop(const char *, const char *, unsigned long long, unsigned long long,
+                   const char *, int, int *);
++extern int set_loop1(const char *, const char *, unsigned long long, unsigned long long,
++                  const char *, const char *, int *);
+ extern int del_loop(const char *);
+ extern int is_loop_device(const char *);
+ extern int is_loop_autoclear(const char *device);
+diff -Naur util-linux-ng/mount/Makefile.am losetup-2.16.2/mount/Makefile.am
+--- util-linux-ng/mount/Makefile.am    2012-07-23 15:26:57.000000000 +0530
++++ losetup-2.16.2/mount/Makefile.am   2012-07-23 15:48:00.000000000 +0530
+@@ -1,96 +1,12 @@
+ include $(top_srcdir)/config/include-Makefile.am
+
+-EXTRA_DIST = README.mount
+-
+-bin_PROGRAMS = mount umount
+-sbin_PROGRAMS = losetup swapon
+-dist_man_MANS = fstab.5 mount.8 swapoff.8 swapon.8 umount.8 losetup.8
++bin_PROGRAMS = losetup
+
+ # generic sources for all programs (mount, umount, losetup)
+ srcs_common = sundries.c xmalloc.c ../lib/canonicalize.c sundries.h xmalloc.h
+
+-# generic header for mount and umount
+-hdrs_mount = fstab.h mount_mntent.h mount_constants.h \
+-      lomount.h getusername.h loop.h
+-
+-# generic sources for mount and umount
+-srcs_mount = fstab.c mount_mntent.c getusername.c lomount.c devname.c devname.h \
+-      $(srcs_common) $(hdrs_mount) ../lib/env.c ../lib/linux_version.c \
+-      ../lib/blkdev.c ../lib/fsprobe.c
+-
+-# generic flags for all programs (except losetup)
+-# -- note that pkg-config autoconf macros (pkg.m4) does not differentiate
+-#    between CFLAGS and CPPFLAGS, we follow this behaviour and use CFLAGS only.
+-ldadd_common =
+-ldadd_static =
+-cflags_common =
+-
+-# generic libtool options for all static programs
+-ldflags_static ="-all-static"
+-
+-mount_SOURCES = mount.c $(srcs_mount) ../lib/setproctitle.c
+-mount_CFLAGS = $(SUID_CFLAGS) $(AM_CFLAGS) $(cflags_common)
+-mount_LDFLAGS = $(SUID_LDFLAGS) $(AM_LDFLAGS)
+-mount_LDADD = $(ldadd_common)
+-
+-umount_SOURCES = umount.c $(srcs_mount)
+-umount_CFLAGS = $(SUID_CFLAGS) $(AM_CFLAGS) $(cflags_common)
+-umount_LDFLAGS = $(SUID_LDFLAGS) $(AM_LDFLAGS)
+-umount_LDADD = $(ldadd_common)
+-
+-swapon_SOURCES = swapon.c swap_constants.h ../lib/linux_version.c \
+-      ../lib/blkdev.c ../lib/fsprobe.c ../lib/canonicalize.c
+-swapon_CFLAGS = $(cflags_common)
+-swapon_LDADD = $(ldadd_common)
++ldflags_static = -all-static
+
+ losetup_SOURCES = lomount.c $(srcs_common) loop.h lomount.h
+ losetup_CPPFLAGS = -DMAIN $(AM_CPPFLAGS)
+
+-mount_static_LDADD =
+-
+-if HAVE_STATIC_MOUNT
+-bin_PROGRAMS += mount.static
+-mount_static_SOURCES = $(mount_SOURCES)
+-mount_static_CFLAGS = $(cflags_common)
+-mount_static_LDFLAGS = $(ldflags_static)
+-mount_static_LDADD += $(ldadd_static)
+-endif
+-
+-if HAVE_STATIC_UMOUNT
+-bin_PROGRAMS += umount.static
+-umount_static_SOURCES = $(umount_SOURCES)
+-umount_static_CFLAGS = $(cflags_common)
+-umount_static_LDFLAGS = $(ldflags_static)
+-umount_static_LDADD = $(ldadd_static)
+-endif
+-
+-if HAVE_STATIC_LOSETUP
+-bin_PROGRAMS += losetup.static
+-losetup_static_SOURCES = $(losetup_SOURCES)
+-losetup_static_LDFLAGS = $(ldflags_static)
+-losetup_static_CPPFLAGS = -DMAIN $(AM_CPPFLAGS)
+-endif
+-
+-if BUILD_LIBBLKID
+-ldadd_common += $(ul_libblkid_la)
+-ldadd_static += $(ul_libblkid_la)
+-cflags_common += -I$(ul_libblkid_srcdir)
+-else
+-ldadd_common += $(BLKID_LIBS)
+-ldadd_static += $(BLKID_LIBS_STATIC)
+-cflags_common += $(BLKID_CFLAGS)
+-endif
+-
+-if HAVE_SELINUX
+-mount_LDADD += $(SELINUX_LIBS)
+-mount_static_LDADD += $(SELINUX_LIBS_STATIC)
+-endif
+-
+-noinst_PROGRAMS = mtab_lock_test
+-mtab_lock_test_SOURCES = fstab.c $(srcs_common) $(hdrs_mount)
+-mtab_lock_test_CPPFLAGS = -DMAIN_TEST_MTABLOCK $(AM_CPPFLAGS)
+-
+-install-exec-hook:
+-      chmod 4755 $(DESTDIR)$(bindir)/mount
+-      chmod 4755 $(DESTDIR)$(bindir)/umount
+-      cd $(DESTDIR)$(sbindir) && ln -sf swapon swapoff
diff --git a/packaging/losetup.spec b/packaging/losetup.spec
new file mode 100755 (executable)
index 0000000..1d78326
--- /dev/null
@@ -0,0 +1,44 @@
+Summary: losetup utility
+Name: losetup
+Version: 2.16.2
+Release: 1
+License: GPLv2 and GPLv2+ and BSD with advertising and Public Domains
+Group: System/Base
+URL: ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng
+Source0: ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.16/util-linux-ng-%{version}.tar.gz
+Patch0: losetup-2.16.2.patch
+#BuildRequires: e2fsprogs-devel >= 1.36
+BuildRequires: ncurses-devel
+BuildRequires: zlib-devel
+BuildRequires: popt-devel
+Provides: losetup = %{version}
+
+%description
+losetup package contains losetup utility which is used for
+loop back device setup and loopback encryption
+
+%prep
+%setup -q -n util-linux-ng-%{version}
+%patch0 -p1
+
+%build
+autoreconf -fi
+export SUID_CFLAGS="-fpie"
+export SUID_LDFLAGS="-pie"
+%configure \
+  --bindir=/bin \
+
+make %{?_smp_mflags}
+
+%install
+rm -rf ${RPM_BUILD_ROOT}
+
+%make_install
+
+%files
+%defattr(-,root,root)
+/bin/losetup
+
+
+
+
diff --git a/packaging/util-linux-ng.changes b/packaging/util-linux-ng.changes
deleted file mode 100644 (file)
index c787507..0000000
+++ /dev/null
@@ -1,1359 +0,0 @@
-* Wed Dec 29 2010 Yan Li <yan.i.li@intel.com> - 2.16
-- "which" is reverted from 2.20 to version 2.17, floppy tool removed
-  because it's not needed in MeeGo, lscpu removed. (BMC#11589)
-
-* Thu Jul 22 2010 Passion Zhao <passion.zhao@intel.com> - 2.16
-- Add GPLv3 to the license in spec because "which" and "lscpu" are GPLv3
-
-* Thu Nov 05 2009 PeterZhu <peter.j.zhu@intel.com> - 2.16
-- Remove /usr/share/info/dir in %install
-- Remove duplicated /usr/share/man/man8/uuidd.8.gz in %files
-
-* Thu Sep 24 2009 Anas Nashif <anas.nashif@intel.com> - 2.16
-- Remove info/dir and some static libs
-
-* Sun Aug 30 2009 Anas Nashif <anas.nashif@intel.com> - 2.16
-- Removing conflicts with fsck
-
-* Thu Aug 27 2009 Passion Zhao <passion.zhao@intel.com> - 2.16-1
-- Upgrade to 2.16
-
-* Thu Jul 18 2009 Peter Zhu <peter.j.zhu@intel.com> 2.15.1
-- Make libuuid-devel as Requires of libblkid-devel
-
-* Thu Jul 16 2009 Austin Zhang <austin.zhang@intel.com> 2.15.1
-- Make blkid as builtin, HAL is asking it instead of volume_id.
-
-* Thu Jul 09 2009 Auke Kok <auke-jan.h.kok@intel.com> 2.14.1
-- Disable use of pam_ck_connector in login service - breaks various UI ck sessions.
-
-* Wed Jul 8 2009 Austin Zhang <austin.zhang@intel.com> 2.15.1
-- Update to 2.15.1, udev-143 removed vol_id and ask blkid to do similar things. but it needs 
-  util-linux-ng 2.15+ to do this.
-
-* Fri Dec 19 2008 Anas Nashif <anas.nashif@intel.com> 2.14.1
-- Re-add pam dependency that was removed by mistake
-
-* Thu Dec 18 2008 Arjan van de Ven <arjan@linux.intel.com> 2.14.1
-- Fix Provides: of util-linux to be versioned so that compat Conflicts: in other packags will work
-
-* Thu Dec 18 2008 Anas Nashif <anas.nashif@intel.com> 2.14.1
-- include which in package
-
-* Tue Dec 09 2008 Anas Nashif <anas.nashif@intel.com> 2.14.1
-- disable selinux in pam
-
-* Thu Dec 04 2008 Anas Nashif <anas.nashif@intel.com> 2.14.1
-- Update to version 2.14.1
-
-* Sun Nov 30 2008 Peter J Zhu <peter.j.zhu@intel.com>
-- Remove info install warning
-
-* Mon Nov 24 2008 Anas Nashif <anas.nashif@intel.com> 2.13.1
-- remove dependency on slang
-
-* Tue Aug 12 2008 Anas Nashif <anas.nashif@intel.com> 
-- Remove selinux from pam configuraton files to enable login localy and remotely
-
-* Wed Jul 23 2008 Zhang Xin <xing.z.zhang@intel.com>
-- Mark man file and info file as %doc
-
-* Wed Apr  2 2008 Karel Zak <kzak@redhat.com> 2.13.1-6
-- fix 439984 - backport mkswap -U
-
-* Wed Mar 26 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.13.1-5
-- clean up sparc conditionals
-
-* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.13.1-4
-- Autorebuild for GCC 4.3
-
-* Mon Jan 28 2008 Karel Zak <kzak@redhat.com> 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 <kzak@redhat.com> 2.13.1-2
-- update to upstream 2.13.1-rc2
-
-* Wed Dec 12 2007 Dan Walsh <dwalsh@redhat.com> 2.13.1-1
-- Fix pam files so that pam_keyinit happens after pam_selinux.so
-
-* Wed Dec 12 2007 Karel Zak <kzak@redhat.com> 2.13.1-0.2
-- remove viwp and vigr (in favour of shadow-utils)
-
-* Sun Dec  9 2007 Karel Zak <kzak@redhat.com> 2.13.1-0.1
-- update to the latest upstream stable branch
-  (commit: fda9d11739ee88c3b2f22a73f12ec019bd3b8335)
-
-* Wed Oct 31 2007 Karel Zak <kzak@redhat.com> 2.13-4
-- fix #354791 - blockdev command calls the blkpg ioctl with a wrong data structure
-
-* Tue Oct 16 2007 Karel Zak <kzak@redhat.com> 2.13-3
-- fix mount -L | -U segfault
-- fix script die on SIGWINCH
-
-* Thu Oct  4 2007 Karel Zak <kzak@redhat.com> 2.13-2
-- update to the latest upstream stable branch
-
-* Tue Aug 28 2007 Karel Zak <kzak@redhat.com> 2.13-1
-- upgrade to stable util-linux-ng release
-
-* Fri Aug 24 2007 Karel Zak <kzak@redhat.com> 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 <jkeating@redhat.com>  2.13-0.58
-- Obsolete a sufficiently high enough version of setarch
-
-* Mon Aug 20 2007 Karel Zak <kzak@redhat.com>  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 <kzak@redhat.com> 2.13-0.56
-- fix obsoletes field
-
-* Mon Aug 20 2007 Karel Zak <kzak@redhat.com> 2.13-0.55
-- util-linux-ng includes setarch(1), define relevat Obsoletes+Provides
-
-* Mon Aug 20 2007 Karel Zak <kzak@redhat.com> 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 <kzak@redhat.com> 2.13-0.53
-- fix #252046 - review Request: util-linux-ng (util-linux replacement)
-
-* Mon Aug 13 2007 Karel Zak <kzak@redhat.com> 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 <kzak@redhat.com> 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 <davidz@redhat.com> 2.13-0.50
-- include ConsoleKit session module by default (#229172)
-
-* Thu Jan 11 2007 Karel Zak <kzak@redhat.com> 2.13-0.49
-- fix #222293 - undocumented partx,addpart, delpart
-
-* Sun Dec 17 2006 Karel Zak <kzak@redhat.com> 2.13-0.48
-- fix paths in po/Makefile.in.in
-
-* Fri Dec 15 2006 Karel Zak <kzak@redhat.com> 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 <kzak@redhat.com> 2.13-0.46
-- fix leaking file descriptor in the more command (patch by Steve Grubb)
-
-* Wed Dec 13 2006 Karel Zak <kzak@redhat.com> 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 <kzak@redhat.com> 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 <jkeating@redhat.com> - 2.13-0.43
-- rebuilt for unwind info generation, broken in gcc-4.1.1-21
-
-* Wed Sep 20 2006 Karel Zak <kzak@redhat.com> 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 <kzak@redhat.com> 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 <kzak@redhat.com> 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 <kzak@redhat.com> 2.13-0.39
-- fix #199745 - non-existant simpleinit(8) mentioned in ctrlaltdel(8)
-
-* Thu Aug 10 2006 Dan Walsh <dwalsh@redhat.com> 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 <kzak@redhat.com> 2.13-0.37
-- fix #176494 - last -i returns strange IP addresses (patch by Bill Nottingham)
-
-* Thu Jul 27 2006 Karel Zak <kzak@redhat.com> 2.13-0.36
-- fix #198300, #199557 - util-linux "post" scriptlet failure
-
-* Thu Jul 27 2006 Steve Dickson <steved@redhat.com> 2.13-0.35
-- Added the -o fsc flag to nfsmount.
-
-* Wed Jul 26 2006 Karel Zak <kzak@redhat.com> 2.13-0.34
-- rebuild
-
-* Tue Jul 18 2006 Karel Zak <kzak@redhat.com> 2.13-0.33
-- add Requires(post): libselinux
-
-* Mon Jul 17 2006 Karel Zak <kzak@redhat.com> 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 <jkeating@redhat.com> - 2.13-0.31.1
-- rebuild
-
-* Tue Jul 11 2006 Karel Zak <kzak@redhat.com> 2.13-0.31
-- cleanup dependences for post and preun scriptlets
-
-* Mon Jul 10 2006 Karsten Hopp <karsten@redhat.de> 2.13-0.30
-- silence install in minimal buildroot without /var/log
-
-* Fri Jul  7 2006 Karel Zak <kzak@redhat.com> 2.13-0.29 
-- include the raw command for RHELs
-
-* Mon Jun 26 2006 Florian La Roche <laroche@redhat.com> 2.13-0.28
-- move install-info parts from postun to preun
-
-* Wed Jun 21 2006 Dan Walsh <dwalsh@RedHat.com> 2.13-0.27
-- Only execute chcon on machines with selinux enabled
-
-* Wed Jun 14 2006 Steve Dickson <steved@redhat.com> 2.13-0.26
-- Remove unneeded header files from nfsmount.c
-
-* Mon Jun 12 2006 Karel Zak <kzak@redhat.com> 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 <dwalsh@RedHat.com> 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 <steved@redhat.com> 2.13-0.23
-- Fixed bug in patch for bz183713 which cause nfs4 mounts to fail.
-
-* Tue May  2 2006 Steve Dickson <steved@redhat.com> 2.13-0.22
-- Added syslog logging to background mounts as suggested
-  by a customer.
-
-* Mon May  1 2006 Steve Dickson <steved@redhat.com> 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 <jkeating@redhat.com> 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 <jkeating@redhat.com> 2.13-0.19
-- restorecon /var/log/lastlog
-
-* Wed Mar  8 2006 Karel Zak <kzak@redhat.com> 2.13-0.17
-- fix #181782 - mkswap selinux relabeling (fix util-linux-2.13-mkswap-selinux.patch)
-
-* Wed Feb 22 2006 Karel Zak <kzak@redhat.com> 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 <jkeating@redhat.com> - 2.13-0.15.1
-- bump again for double-long bug on ppc(64)
-
-* Wed Feb  8 2006 Peter Jones <pjones@redhat.com> 2.13-0.15
-- add "blockdev --rmpart N <device>" and "blockdev --rmparts <device>"
-
-* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.13-0.14.1
-- rebuilt for new gcc4.1 snapshot and glibc changes
-
-* Thu Jan 19 2006 Steve Dickson <steved@redhat.com> 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 <kzak@redhat.com> 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 <kzak@redhat.com> 2.13-0.12
-- rebuilt
-
-* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
-- rebuilt
-
-* Fri Nov 25 2005 Karel Zak <kzak@redhat.com> 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 <kzak@redhat.com> 2.13-0.10.pre5
-- fix #171337 - mkfs.cramfs doesn't work correctly with empty files
-
-* Fri Oct 28 2005 Karel Zak <kzak@redhat.com> 2.13-0.9.pre5
-- rebuild
-
-* Wed Oct 26 2005 Karel Zak <kzak@redhat.com> 2.13-0.8.pre5
-- updated version of the patch for hwclock audit
-
-* Thu Oct 20 2005 Karel Zak <kzak@redhat.com> 2.13-0.7.pre5
-- fix #171337 - mkfs.cramfs dies creating installer image
-
-* Thu Oct 20 2005 Karel Zak <kzak@redhat.com> 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 <kzak@redhat.com> 2.13-0.5.pre4
-* fix #170564 - add audit message to login
-
-* Fri Oct  7 2005 Karel Zak <kzak@redhat.com> 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 <steved@redhat.com> 2.13-0.3.pre3
-- fix #170110 - Documentation for 'rsize' and 'wsize' NFS mount options
-               is misleading
-
-* Fri Sep  2 2005 Karel Zak <kzak@redhat.com> 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 <kzak@redhat.com> 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 <kzak@redhat.com> 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 <kzak@redhat.com> 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 <katzj@redhat.com> - 2.12p-9.3
-- rebuild against new libe2fsprogs (and libblkid) to fix cramfs auto-detection
-
-* Mon May  2 2005 Karel Zak <kzak@redhat.com> 2.12p-9.2
-- rebuild
-
-* Mon May  2 2005 Karel Zak <kzak@redhat.com> 2.12p-9
-- fix #156597 - look - doesn't work with separators
-
-* Mon Apr 25 2005 Karel Zak <kzak@redhat.com> 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 <kzak@redhat.com> 2.12p-7
-- enable build with libblkid from e2fsprogs-devel
-- remove workaround for duplicated labels
-
-* Thu Mar 31 2005 Steve Dickson <SteveD@RedHat.com> 2.12p-5
-- Fixed nfs mount to rollback correctly.
-
-* Fri Mar 25 2005 Karel Zak <kzak@redhat.com> 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 <sopwith@redhat.com> 2.12p-3
-- rebuilt
-
-* Fri Feb 25 2005 Steve Dickson <SteveD@RedHat.com> 2.12p-2
-- Changed nfsmount to only use reserve ports when necessary
-  (bz# 141773) 
-
-* Thu Dec 23 2004 Elliot Lee <sopwith@redhat.com> 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 <sopwith@redhat.com> 2.12j-1
-- Update to util-linux-2.12j
-
-* Tue Dec  7 2004 Steve Dickson <SteveD@RedHat.com> 2.12a-20
-- Corrected a buffer overflow problem with nfs mounts.
-  (bz# 141733) 
-
-* Wed Dec 01 2004 Elliot Lee <sopwith@redhat.com> 2.12a-19
-- Patches for various bugs.
-
-* Mon Nov 29 2004 Steve Dickson <SteveD@RedHat.com> 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 <sopwith@redhat.com> 2.12a-16
-- Add include_raw macro, build with it off for Fedora
-
-* Wed Oct 13 2004 Stephen C. Tweedie <sct@redhat.com> - 2.12a-15
-- Add raw patch to allow binding of devices not yet in /dev
-
-* Wed Oct 13 2004 John (J5) Palmieri <johnp@redhat.com> 2.12a-14
-- Add David Zeuthen's patch to enable the pamconsole flag #133941
-
-* Wed Oct 13 2004 Stephen C. Tweedie <sct@redhat.com> 2.12a-13
-- Restore raw utils (bugzilla #130016)
-
-* Mon Oct 11 2004 Phil Knirsch <pknirsch@redhat.com> 2.12a-12
-- Add the missing remote entry in pam.d
-
-* Wed Oct  6 2004 Steve Dickson <SteveD@RedHat.com>
-- Rechecked in some missing NFS mounting code.
-
-* Wed Sep 29 2004 Elliot Lee <sopwith@redhat.com> 2.12a-10
-- Make swaplabel support work with swapon -a -e
-
-* Tue Sep 28 2004 Steve Dickson <SteveD@RedHat.com>
-- 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 <nalin@redhat.com> 2.12a-8
-- Fix #132196 - turn on SELinux support at build-time.
-
-* Wed Sep 15 2004 Phil Knirsch <pknirsch@redhat.com> 2.12a-7
-- Fix #91174 with pamstart.patch
-
-* Tue Aug 31 2004 Elliot Lee <sopwith@redhat.com> 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 <SteveD@RedHat.com>
-- Made the NFS security checks more explicit to avoid confusion
-  (an upstream fix)
-- Also removed a compilation warning
-
-* Wed Aug 11 2004 Alasdair Kergon <agk@redhat.com>
-- Remove unused mount libdevmapper inclusion.
-
-* Wed Aug 11 2004 Alasdair Kergon <agk@redhat.com>
-- 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 <SteveD@RedHat.com>
-- Updated nfs man page to show that intr are on by
-  default for nfs4
-
-* Thu Aug 05 2004 Jindrich Novy <jnovy@redhat.com>
-- modified warning causing heart attack for >16 partitions, #107824
-
-* Fri Jul 09 2004 Elliot Lee <sopwith@redhat.com> 2.12a-3
-- Fix #126623, #126572
-- Patch cleanup
-- Remove agetty (use mgetty, agetty is broken)
-
-* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
-- rebuilt
-
-* Thu Jun 03 2004 Elliot Lee <sopwith@redhat.com> 2.12a-1
-- Update to 2.12a
-- Fix #122448
-
-* Thu May 13 2004 Dan Walsh <dwalsh@RedHat.com> 2.12-19
-- Change pam_selinux to run last
-
-* Tue May 04 2004 Elliot Lee <sopwith@redhat.com> 2.12-18
-- Fix #122448 (autofs issues)
-
-* Fri Apr 23 2004 Elliot Lee <sopwith@redhat.com> 2.12-17
-- Fix #119157 by editing the patch
-- Add patch145 to fix #119986
-
-* Fri Apr 16 2004 Elliot Lee <sopwith@redhat.com> 2.12-16
-- Fix #118803
-
-* Tue Mar 23 2004 Jeremy Katz <katzj@redhat.com> 2.12-15
-- mkcramfs: use PAGE_SIZE for default blocksize (#118681)
-
-* Sat Mar 20 2004 <SteveD@RedHat.com>
-- 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 <dwalsh@RedHat.com> 2.12-13
-- Fix selinux ordering or pam for login
-
-* Tue Mar 16 2004 <SteveD@RedHat.com>
-- 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  <SteveD@RedHat.com>
-- 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  <SteveD@RedHat.com>
-- Added two checks to the nfs4 path what will print warnings
-  when rpc.idmapd and rpc.gssd are not running.
-
-* Thu Mar 11 2004 <SteveD@RedHat.com>
-- Reworked and updated the nfsv4 patches.
-
-* Wed Mar 10 2004 Dan Walsh <dwalsh@RedHat.com>
-- Bump version
-
-* Wed Mar 10 2004 Steve Dickson <SteveD@RedHat.com>
-- Tried to make nfs error message a bit more meaninful
-- Cleaned up some warnings
-
-* Sun Mar  7 2004 Steve Dickson <SteveD@RedHat.com> 
-- Added pesudo flavors for nfsv4 mounts.
-- Added BuildRequires: libselinux-devel and Requires: libselinux
-  when WITH_SELINUX is set. 
-
-* Fri Feb 27 2004 Dan Walsh <dwalsh@redhat.com> 2.12-5
-- check for 2.6.3 kernel in mount options
-
-* Mon Feb 23 2004 Elliot Lee <sopwith@redhat.com> 2.12-4
-- Remove /bin/kill for #116100
-
-* Fri Feb 20 2004 Dan Walsh <dwalsh@redhat.com> 2.12-3
-- rebuilt
-
-* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
-- rebuilt
-
-* Thu Feb 12 2004 Elliot Lee <sopwith@redhat.com> 2.12-1
-- Final 2.12 has been out for ages - might as well use it.
-
-* Wed Jan 28 2004 Steve Dickson <SteveD@RedHat.com> 2.12pre-4
-- Added mount patches that have NFS version 4 support
-
-* Mon Jan 26 2004 Elliot Lee <sopwith@redhat.com> 2.12pre-3
-- Provides: mount losetup
-
-* Mon Jan 26 2004 Dan Walsh <dwalsh@redhat.com> 2.12pre-2
-- Add multiple to /etc/pam.d/login for SELinux
-
-* Thu Jan 15 2004 Elliot Lee <sopwith@redhat.com> 2.12pre-1
-- 2.12pre-1
-- Merge mount/losetup packages into the main package (#112324)
-- Lose separate 
-
-* Mon Nov 3 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-35.sel
-- remove selinux code from login and use pam_selinux
-
-* Thu Oct 30 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-34.sel
-- turn on selinux
-
-* Fri Oct 24 2003 Elliot Lee <sopwith@redhat.com> 2.11y-34
-- Add BuildRequires: texinfo (from a bug# I don't remember)
-- Fix #90588 with mountman patch142.
-
-* Mon Oct 6 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-33
-- turn off selinux
-
-* Thu Sep 25 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-32.sel
-- turn on selinux
-- remove context selection
-
-* Fri Sep 19 2003 Elliot Lee <sopwith@redhat.com> 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 <dwalsh@redhat.com> 2.11y-31
-- turn off selinux
-
-* Fri Sep 12 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-30.sel
-- turn on selinux
-
-* Fri Sep 5 2003 Elliot Lee <sopwith@redhat.com> 2.11y-28
-- Fix #103004, #103954
-
-* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-27
-- turn off selinux
-
-* Thu Sep 4 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-26.sel
-- build with selinux
-
-* Mon Aug 11 2003 Elliot Lee <sopwith@redhat.com> 2.11y-25
-- Use urandom instead for mkcramfs
-
-* Tue Jul 29 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-24
-- add SELINUX 2.5 support
-
-* Wed Jul 23 2003 Elliot Lee <sopwith@redhat.com> 2.11y-22
-- #100433 patch
-
-* Mon Jun 14 2003 Elliot Lee <sopwith@redhat.com> 2.11y-20
-- #97381 patch
-
-* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
-- rebuilt
-
-* Mon Apr 21 2003 Elliot Lee <sopwith@redhat.com> 2.11y-17
-- Change patch128 to improve ipcs -l
-
-* Fri Apr 11 2003 Elliot Lee <sopwith@redhat.com> 2.11y-16
-- Fix #85407
-
-* Fri Apr 11 2003 Elliot Lee <sopwith@redhat.com> 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 <msw@redhat.com> 2.11y-14
-- fix last login date display on AMD64 (#88574)
-
-* Mon Apr  7 2003 Jeremy Katz <katzj@redhat.com> 2.11y-13
-- include sfdisk on ppc
-
-* Fri Mar 28 2003 Jeremy Katz <katzj@redhat.com> 2.11y-12
-- add patch from msw to change mkcramfs blocksize with a command line option
-
-* Tue Mar 25 2003 Phil Knirsch <pknirsch@redhat.com> 2.11y-11
-- Fix segfault on s390x due to wrong usage of BLKGETSIZE.
-
-* Thu Mar 13 2003 Elliot Lee <sopwith@redhat.com> 2.11y-10
-- Really apply the ipcs patch. Doh.
-
-* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
-- rebuilt
-
-* Wed Feb 19 2003 Elliot Lee <sopwith@redhat.com> 2.11y-8
-- ipcs-84243.patch to fix #84243
-
-* Thu Feb 13 2003 Yukihiro Nakai <ynakai@redhat.com> 2.11y-7
-- Update moremisc patch to fix swprintf()'s minimum field (bug #83361).
-
-* Mon Feb 03 2003 Elliot Lee <sopwith@redhat.com> 2.11y-6
-- Fix mcookie segfault on many 64-bit architectures (bug #83345).
-
-* Mon Feb 03 2003 Tim Waugh <twaugh@redhat.com> 2.11y-5
-- Fix underlined multibyte characters (bug #83376).
-
-* Sun Feb 02 2003 Florian La Roche <Florian.LaRoche@redhat.de>
-- rebuild to have again a s390 rpm
-- disable some more apps for mainframe
-
-* Wed Jan 29 2003 Elliot Lee <sopwith@redhat.com> 2.11y-4
-- util-linux-2.11y-umask-82552.patch
-
-* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
-- rebuilt
-
-* Mon Jan 13 2003 Elliot Lee <sopwith@redhat.com> 2.11y-2
-- Fix #81069, #75421
-
-* Mon Jan 13 2003 Elliot Lee <sopwith@redhat.com> 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 <sopwith@redhat.com> 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 <sopwith@redhat.com> 2.11w-1
-- Update to 2.11w, resolve patch conflicts
-
-* Tue Oct 08 2002 Phil Knirsch <pknirsch@redhat.com> 2.11r-10hammer.3
-- Extended util-linux-2.11b-s390x patch to work again.
-
-* Thu Oct 03 2002 Elliot Lee <sopwith@redhat.com> 2.11r-10hammer.2
-- Add patch122 for hwclock on x86_64
-
-* Thu Sep 12 2002 Than Ngo <than@redhat.com> 2.11r-10hammer.1
-- Fixed pam config files
-
-* Wed Sep 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.11r-10hammer
-- Port to hammer
-
-* Fri Aug 30 2002 Elliot Lee <sopwith@redhat.com> 2.11r-10
-- Patch120 (hwclock) to fix #72140
-- Include isosize util
-
-* Wed Aug 7 2002  Elliot Lee <sopwith@redhat.com> 2.11r-9
-- Patch120 (skipraid2) to fix #70353, because the original patch was 
-totally useless.
-
-* Fri Aug 2 2002  Elliot Lee <sopwith@redhat.com> 2.11r-8
-- Patch119 (fdisk-add-primary) from #67898
-
-* Wed Jul 24 2002 Elliot Lee <sopwith@redhat.com> 2.11r-7
-- Really add the gptsize patch, instead of what I think the patch says.
-(+1)
-
-* Tue Jul 23 2002 Elliot Lee <sopwith@redhat.com> 2.11r-6
-- Add the sp[n].size part of the patch from #69603
-
-* Mon Jul 22 2002 Florian La Roche <Florian.LaRoche@redhat.de>
-- adjust mainframe patches
-
-* Tue Jul  2 2002 Bill Nottingham <notting@redhat.com> 2.11r-4
-- only require usermode if we're shipping kbdrate here
-
-* Fri Jun 28 2002 Trond Eivind Glomsrod <teg@redhat.com> 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 <sopwith@redhat.com> 2.11r-2
-- Remove swapondetect (patch301) until it avoids possible false positives.
-
-* Thu Jun 27 2002 Elliot Lee <sopwith@redhat.com> 2.11r-1
-- Update to 2.11r, wheeee
-- Remove unused patches
-
-* Thu Jun 27 2002 Elliot Lee <sopwith@redhat.com> 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 <timp@redhat.com>
-- automated rebuild
-
-* Thu Jun 20 2002 Elliot Lee <sopwith@redhat.com> 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 <teg@redhat.com> 2.11n-16
-- support large swap partitions
-- add '-d' option to autodetect available swap partitions
-
-* Thu May 23 2002 Tim Powers <timp@redhat.com>
-- automated rebuild
-
-* Wed May 15 2002 Elliot Lee <sopwith@redhat.com> 2.11n-14
-- Remove kbdrate (again).
-
-* Mon Apr 29 2002 Florian La Roche <Florian.LaRoche@redhat.de>
-- 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 <sopwith@redhat.com> 2.11n-12
-- Don't strip binaries - rpm does it for us.
-
-* Sun Mar 31 2002 Elliot Lee <sopwith@redhat.com> 2.11n-11
-- Apply patch115 from ejb@ql.org for bug #61868
-
-* Wed Mar 27 2002 Elliot Lee <sopwith@redhat.com> 2.11n-10
-- Finish fixing #60675 (ipcrm man page), updated the patch.
-- Fix #61203 (patch114 - dumboctal.patch).
-
-* Tue Mar 12 2002 Elliot Lee <sopwith@redhat.com> 2.11n-9
-- Update ctty3 patch to ignore SIGHUP while dropping controlling terminal
-
-* Fri Mar 08 2002 Elliot Lee <sopwith@redhat.com> 2.11n-8
-- Update ctty3 patch to drop controlling terminal before forking.
-
-* Fri Mar 08 2002 Elliot Lee <sopwith@redhat.com> 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 <sopwith@redhat.com> 2.11n-6
-- Put kbdrate in, add usermode dep.
-
-* Tue Feb 26 2002 Elliot Lee <sopwith@redhat.com> 2.11n-5
-- Fix #60363 (tweak raw.8 man page, make rawdevices.8 symlink).
-
-* Tue Jan 28 2002 Bill Nottingham <notting@redhat.com> 2.11n-4
-- remove kbdrate (fixes kbd conflict)
-
-* Fri Dec 28 2001 Elliot Lee <sopwith@redhat.com> 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 <sopwith@redhat.com> 2.11n-1
-- Update to 2.11n
-- Merge mount/losetup back in.
-
-* Tue Dec 04 2001 Elliot Lee <sopwith@redhat.com> 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 <sopwith@redhat.com> 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 <Florian.LaRoche@redhat.de>
-- add nologin man-page for s390/s390x
-
-* Wed Oct 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 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 <sopwith@redhat.com> 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 <notting@redhat.com>
-- fix permissions problem with vipw & shadow files, again (doh!)
-
-* Tue Oct 09 2001 Erik Troan <ewt@redhat.com>
-- added patch from Olaf Kirch to fix possible pwent structure overwriting
-
-* Fri Sep 28 2001 Elliot Lee <sopwith@redhat.com> 2.11f-10
-- fdisk patch from arjan
-
-* Sun Aug 26 2001 Elliot Lee <sopwith@redhat.com> 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 <timp@redhat.com>
-- don't require usermode
-
-* Mon Jul 30 2001 Elliot Lee <sopwith@redhat.com> 2.11f-7
-- Incorporate kbdrate back in.
-
-* Mon Jul 30 2001 Bill Nottingham <notting@redhat.com>
-- 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 <Florian.LaRoche@redhat.de>
-- correct s390x patch
-
-* Mon Jul 23 2001 Elliot Lee <sopwith@redhat.com>
-- Add my megapatch (various bugs)
-- Include pivot_root (#44828)
-
-* Thu Jul 12 2001 Bill Nottingham <notting@redhat.com>
-- make shadow files 0400, not 0600
-
-* Wed Jul 11 2001 Bill Nottingham <notting@redhat.com>
-- fix permissions problem with vipw & shadow files
-
-* Mon Jun 18 2001 Florian La Roche <Florian.LaRoche@redhat.de>
-- update to 2.11f, remove any merged patches
-- add s390x patches for somewhat larger swap
-
-* Thu Jun 14 2001 Erik Troan <ewt@redhat.com>
-- added --verbose patch to mkcramfs; it's much quieter by default now
-
-* Tue May 22 2001 Erik Troan <ewt@redhat.com>
-- removed warning about starting partitions on cylinder 0 -- swap version2
-  makes it unnecessary
-
-* Wed May  9 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.11b-2
-- Fix up s390x support
-
-* Mon May  7 2001 Bernhard Rosenkraenzer <bero@redhat.com> 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 <pbrown@redhat.com> 2.11a-4
-- /sbin/nologin from OpenBSD added.
-
-* Fri Apr 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 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 <ewt@redhat.com>
-- 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 <msw@redhat.com>
-- 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 <msw@redhat.com>
-- 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 <msw@redhat.com>
-- added mkcramfs (from linux/scripts/mkcramfs)
-
-* Mon Feb 26 2001 Tim Powers <timp@redhat.com>
-- 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 <pbrown@redhat.com>
-- use lang finder script
-- install info files
-
-* Thu Feb 08 2001 Erik Troan <ewt@redhat.com>
-- reverted login patch; seems to cause problems
-- added agetty
-
-* Wed Feb 07 2001 Erik Troan <ewt@redhat.com>
-- 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 <ewt@redhat.com>
-- 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 <pbrown@redhat.com>
-- danish translations added
-
-* Mon Jan 15 2001 Nalin Dahyabhai <nalin@redhat.com>
-- fix segfault in login in btmp patch (#24025)
-
-* Mon Dec 11 2000 Oliver Paukstadt <oliver.paukstadt@millenux.com>
-- ported to s390
-
-* Wed Nov 01 2000 Florian La Roche <Florian.LaRoche@redhat.de>
-- update to 2.10p
-- update patch37 to newer fdisk version
-
-* Mon Oct  9 2000 Jeff Johnson <jbj@redhat.com>
-- 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 <msw@redhat.com>
-- rebuild to cope with glibc locale binary incompatibility, again
-
-* Mon Aug 14 2000 Jeff Johnson <jbj@redhat.com>
-- setfdprm should open with O_WRONLY, not 3.
-
-* Fri Aug 11 2000 Jeff Johnson <jbj@redhat.com>
-- fdformat should open with O_WRONLY, not 3.
-
-* Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
-- make 'look' look in /usr/share/dict
-
-* Fri Jul 21 2000 Bill Nottingham <notting@redhat.com>
-- put /usr/local/sbin:/usr/local/bin in root's path
-
-* Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
-- rebuild to cope with glibc locale binary incompatibility
-
-* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
-- automatic rebuild
-
-* Mon Jul 10 2000 Bill Nottingham <notting@redhat.com>
-- enable hwclock to use /dev/efirtc on ia64 (gettext is fun. :( )
-
-* Mon Jul  3 2000 Bill Nottingham <notting@redhat.com>
-- move cfdisk to /usr/sbin, it depends on /usr stuff
-- add rescuept
-
-* Fri Jun 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
-- point more at the correct path to vi (for "v"), Bug #10882
-
-* Sun Jun  4 2000 Jeff Johnson <jbj@redhat.com>
-- FHS packaging changes.
-
-* Thu Jun  1 2000 Nalin Dahyabhai <nalin@redhat.com>
-- modify PAM setup to use system-auth
-
-* Mon May  1 2000 Bill Nottingham <notting@redhat.com>
-- eek, where did login go? (specfile tweaks)
-
-* Mon Apr 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
-- 2.10k
-- fix compilation with current glibc
-
-* Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
-- 2.10h
-
-* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
-- rebuild for sparc baud rates > 38400.
-
-* Sat Mar  4 2000 Matt Wilson <msw@redhat.com>
-- use snprintf - not sprintf - when doing
-  sprintf ("%%s\n", _("Some string")) to avoid overflows and
-  segfaults.
-
-* Mon Feb 21 2000 Jeff Johnson <jbj@redhat.com>
-- 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 <ewt@redhat.com>
-- -v argument to mkswap wasn't working
-
-* Thu Feb 10 2000 Jakub Jelinek <jakub@redhat.com>
-- Recognize 0xfd on Sun disklabels as RAID
-
-* Tue Feb  8 2000 Bill Nottingham <notting@redhat.com>
-- more lives in /bin, and was linked against /usr/lib/libnurses. Bad.
-
-* Thu Feb 03 2000 Jakub Jelinek <jakub@redhat.com>
-- update to 2.10f
-- fix issues in the new realpath code, avoid leaking memory
-
-* Tue Feb 01 2000 Cristian Gafton <gafton@redhat.com>
-- rebuild to fix dependencies
-- add NFSv3 patches
-
-* Fri Jan 28 2000 Bill Nottingham <notting@redhat.com>
-- don't require csh
-
-* Mon Jan 24 2000 Nalin Dahyabhai <nalin@redhat.com>
-- update to 2.10e
-- add rename
-
-* Thu Jan 20 2000 Jeff Johnson <jbj@redhat.com>
-- strip newlines in logger input.
-
-* Mon Jan 10 2000 Jeff Johnson <jbj@redhat.com>
-- rebuild with correct ncurses libs.
-
-* Tue Dec  7 1999 Matt Wilson <msw@redhat.com>
-- updated to util-linux 2.10c
-- deprecated IMAP login mail notification patch17
-- deprecated raw patch22
-- depricated readprofile patch24
-
-* Tue Dec  7 1999 Bill Nottingham <notting@redhat.com>
-- add patch for readprofile
-
-* Thu Nov 18 1999 Michael K. Johnson <johnsonm@redhat.com>
-- tunelp should come from util-linux
-
-* Tue Nov  9 1999 Jakub Jelinek <jakub@redhat.com>
-- kbdrate cannot use /dev/port on sparc.
-
-* Wed Nov  3 1999 Jakub Jelinek <jakub@redhat.com>
-- fix kbdrate on sparc.
-
-* Wed Oct 27 1999 Bill Nottingham <notting@redhat.com>
-- ship hwclock on alpha.
-
-* Tue Oct  5 1999 Bill Nottingham <notting@redhat.com>
-- don't ship symlinks to rdev if we don't ship rdev.
-
-* Tue Sep 07 1999 Cristian Gafton <gafton@redhat.com>
-- add rawIO support from sct
-
-* Mon Aug 30 1999 Preston Brown <pbrown@redhat.com>
-- don't display "new mail" message when the only piece of mail is from IMAP
-
-* Fri Aug 27 1999 Michael K. Johnson <johnsonm@redhat.com>
-- kbdrate is now a console program
-
-* Thu Aug 26 1999 Jeff Johnson <jbj@redhat.com>
-- 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 <jbj@redhat.com>
-- tsort is now in textutils.
-
-* Wed Aug  4 1999 Bill Nottingham <notting@redhat.com>
-- turn off setuid bit on login. Again. :(
-
-* Tue Aug  3 1999 Peter Jones, <pjones@redhat.com>
-- hostid script for sparc (#3803).
-
-* Tue Aug 03 1999 Christian 'Dr. Disk' Hechelmann <drdisk@tc-gruppe.de>
-- 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 <jbj@redhat.com>
-- 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 <jbj@redhat.com>
-- 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 <jbj@redhat.com>
-- 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 <jbj@redhat.com>
-- update to 2.9s.
-
-* Sat May 29 1999 Jeff Johnson <jbj@redhat.com>
-- fix mkswap sets incorrect bits on sparc64 (#3140).
-
-* Thu Apr 15 1999 Jeff Johnson <jbj@redhat.com>
-- on sparc64 random ioctls on clock interface cause kernel messages.
-
-* Thu Apr 15 1999 Jeff Johnson <jbj@redhat.com>
-- improved raid patch (H.J. Lu).
-
-* Wed Apr 14 1999 Michael K. Johnson <johnsonm@redhat.com>
-- added patch for smartraid controllers
-
-* Sat Apr 10 1999 Cristian Gafton <gafton@redhat.com>
-- fix logging problems caused by setproctitle and PAM interaction
-  (#2045)
-
-* Wed Mar 31 1999 Jeff Johnson <jbj@redhat.com>
-- include docs and examples for sfdisk (#1164)
-
-* Mon Mar 29 1999 Matt Wilson <msw@redhat.com>
-- rtc is not working properly on alpha, we can't use hwclock yet.
-
-* Fri Mar 26 1999 Cristian Gafton <gafton@redhat.com>
-- add patch to make mkswap more 64 bit friendly... Patch from
-  eranian@hpl.hp.com (ahem!)
-
-* Thu Mar 25 1999 Jeff Johnson <jbj@redhat.com>
-- 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 <jj@ultra.linux.cz>
-- 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
-  <ankh@canuck.gen.nz>
-
-* Wed Mar 24 1999 Matt Wilson <msw@redhat.com>
-- added pam_console back into pam.d/login
-
-* Tue Mar 23 1999 Matt Wilson <msw@redhat.com>
-- updated to 2.9i
-- added hwclock for sparcs and alpha
-
-* Mon Mar 22 1999 Erik Troan <ewt@redhat.com>
-- added vigr to file list
-
-* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
-- auto rebuild in the new build environment (release 12)
-
-* Thu Mar 18 1999 Cristian Gafton <gafton@redhat.com>
-- remove most of the ifnarch arm stuff
-
-* Mon Mar 15 1999 Michael Johnson <johnsonm@redhat.com>
-- added pam_console.so to /etc/pam.d/login
-
-* Thu Feb  4 1999 Michael K. Johnson <johnsonm@redhat.com>
-- .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 <jbj@redhat.com>
-- strip fdisk in buildroot correctly (#718)
-
-* Mon Jan 11 1999 Cristian Gafton <gafton@redhat.com>
-- have fdisk compiled on sparc and arm
-
-* Mon Jan 11 1999 Erik Troan <ewt@redhat.com>
-- added beos partition type to fdisk
-
-* Wed Dec 30 1998 Cristian Gafton <gafton@redhat.com>
-- incorporate fdisk on all arches
-
-* Sat Dec  5 1998 Jeff Johnson <jbj@redhat.com>
-- restore PAM functionality at end of login (Bug #201)
-
-* Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
-- patch top build on the arm without PAM and related utilities, for now.
-- build hwclock only on intel
-
-* Wed Nov 18 1998 Cristian Gafton <gafton@redhat.com>
-- upgraded to version 2.9
-
-* Thu Oct 29 1998 Bill Nottingham <notting@redhat.com>
-- build for Raw Hide (slang-1.2.2)
-- patch kbdrate wackiness so it builds with egcs
-
-* Tue Oct 13 1998 Erik Troan <ewt@redhat.com>
-- patched more to use termcap
-
-* Mon Oct 12 1998 Erik Troan <ewt@redhat.com>
-- added warning about alpha/bsd label starting cylinder
-
-* Mon Sep 21 1998 Erik Troan <ewt@redhat.com>
-- use sigsetjmp/siglongjmp in more rather then sig'less versions
-
-* Fri Sep 11 1998 Jeff Johnson <jbj@redhat.com>
-- explicit attrs for setuid/setgid programs
-
-* Thu Aug 27 1998 Cristian Gafton <gafton@redhat.com>
-- sln is now included in glibc
-
-* Sun Aug 23 1998 Jeff Johnson <jbj@redhat.com>
-- add cbm1581 floppy definitions (problem #787)
-
-* Mon Jun 29 1998 Jeff Johnson <jbj@redhat.com>
-- remove /etc/nologin at end of shutdown/halt.
-
-* Fri Jun 19 1998 Jeff Johnson <jbj@redhat.com>
-- add mount/losetup.
-
-* Thu Jun 18 1998 Jeff Johnson <jbj@redhat.com>
-- update to 2.8 with 2.8b clean up. hostid now defunct?
-
-* Mon Jun 01 1998 David S. Miller <davem@dm.cobaltmicro.com>
-- "more" now works properly on sparc
-
-* Sat May 02 1998 Jeff Johnson <jbj@redhat.com>
-- Fix "fdisk -l" fault on mounted cdrom. (prob #513)
-
-* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
-- translations modified for de, fr, tr
-
-* Sat Apr 11 1998 Cristian Gafton <gafton@redhat.com>
-- manhattan rebuild
-
-* Mon Dec 29 1997 Erik Troan <ewt@redhat.com>
-- more didn't suspend properly on glibc
-- use proper tc*() calls rather then ioctl's
-
-* Sun Dec 21 1997 Cristian Gafton <gafton@redhat.com>
-- fixed a security problem in chfn and chsh accepting too 
-  long gecos fields
-
-* Fri Dec 19 1997 Mike Wangsmo <wanger@redhat.com>
-- removed "." from default path
-
-* Tue Dec 02 1997 Cristian Gafton <gafton@redhat.com>
-- added (again) the vipw patch
-
-* Wed Oct 22 1997 Michael Fulbright <msf@redhat.com>
-- minor cleanups for glibc 2.1
-
-* Fri Oct 17 1997 Michael Fulbright <msf@redhat.com>
-- added vfat32 filesystem type to list recognized by fdisk
-
-* Fri Oct 10 1997 Erik Troan <ewt@redhat.com>
-- don't build clock on the alpha 
-- don't install chkdupexe
-
-* Thu Oct 02 1997 Michael K. Johnson <johnsonm@redhat.com>
-- Update to new pam standard.
-- BuildRoot.
-
-* Thu Sep 25 1997 Cristian Gafton <gafton@redhat.com>
-- added rootok and setproctitle patches
-- updated pam config files for chfn and chsh
-
-* Tue Sep 02 1997 Erik Troan <ewt@redhat.com>
-- 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 <ewt@redhat.com>
-- update to util-linux 2.7, fixed login problems
-
-* Wed Jun 25 1997 Erik Troan <ewt@redhat.com>
-- 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 <johnsonm@redhat.com>
-- LOG_AUTH --> LOG_AUTHPRIV in login and shutdown
-
-* Mon Mar 03 1997 Michael K. Johnson <johnsonm@redhat.com>
-- Moved to new pam and from pam.conf to pam.d
-
-* Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com>
-- 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.