chiark / gitweb /
release 181 181
authorKay Sievers <kay.sievers@vrfy.org>
Tue, 7 Feb 2012 00:58:59 +0000 (01:58 +0100)
committerKay Sievers <kay.sievers@vrfy.org>
Tue, 7 Feb 2012 00:58:59 +0000 (01:58 +0100)
ChangeLog
NEWS
autogen.sh
configure.ac

index 15bab064b283b634c6efbc58fc68dcb49df0464d..34a7cfb16f09733b332f822cda8798e6077898ed 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+Summary of changes from v180 to v181
+============================================
+
+Andreas Schwab (1):
+      ata_id: fix identify string fixup
+
+Bruno Redondi (1):
+      keymap: Add Fujitsu Siemens Amilo Li 2732
+
+James M. Leddy (1):
+      keymap: Fix touchpad toggle button on Lenovo Ideapad
+
+Kay Sievers (4):
+      configure: show ROOTPREFIX in firmware path option help text
+      extras: cdrom_id -  create /dev/cdrom and conditionally /dev/dvd for sr0
+      extras: cdrom_id -  create only /dev/cdrom
+      ata_id: whitespace fixes
+
+Lucas De Marchi (1):
+      builtin: kmod - depend on libkmod >= 5
+
+
 Summary of changes from v179 to v180
 ============================================
 
diff --git a/NEWS b/NEWS
index 281ed40569835d9ebc90ada324e00137c9a77826..3f0cf80af0b1b8281bd46310455d073cf1319b11 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+udev 181
+========
+Require kmod version 5.
+
+Provide /dev/cdrom symlink for /dev/sr0.
+
 udev 180
 ========
 Fix for ID_PART_ENTRY_* property names, added by the blkid built-in. The
index 180e423c4d294ebe3f608a1b2dd69015985ad2e1..55ee03afd14b562438d5f67030d7e336dd7a36a3 100755 (executable)
@@ -13,18 +13,28 @@ libdir() {
         echo $(cd $1/$(gcc -print-multi-os-directory); pwd)
 }
 
-args="\
+args="$args \
 --prefix=/usr \
---with-rootprefix= \
 --sysconfdir=/etc \
---bindir=/sbin \
 --libdir=$(libdir /usr/lib) \
---with-rootlibdir=$(libdir /lib) \
---libexecdir=/lib \
---with-systemdsystemunitdir=/lib/systemd/system \
 --with-selinux \
 --enable-gtk-doc"
 
+if [ -L /bin ]; then
+args="$args \
+--libexecdir=/usr/lib \
+--with-systemdsystemunitdir=/usr/lib/systemd/system \
+"
+else
+args="$args \
+--with-rootprefix= \
+---with-rootlibdir=$(libdir /lib) \
+--bindir=/sbin \
+--libexecdir=/lib \
+--with-systemdsystemunitdir=/lib/systemd/system \
+"
+fi
+
 echo
 echo "----------------------------------------------------------------"
 echo "Initialized build system. For a common configuration please run:"
index d9e3f67bbe8a3b62a1530997380727a7d8842e51..e7c10d5c6ff11c82e3b02a1871632f88ea68bb12 100644 (file)
@@ -1,6 +1,6 @@
 AC_PREREQ(2.60)
 AC_INIT([udev],
-       [180],
+       [181],
        [linux-hotplug@vger.kernel.org],
        [udev],
        [http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html])