![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit c887d5f4ec09072504bb9ee7439c93c53f013952 Author: Tilman Sauerbeck <tilman@crux.nu> Date: Tue Jul 22 19:49:01 2008 +0200 udev: updated to 125. diff --git a/udev/.footprint b/udev/.footprint index 8d28e9d..cf9dcd5 100644 --- a/udev/.footprint +++ b/udev/.footprint @@ -2,17 +2,6 @@ drwxr-xr-x root/root etc/ -rw-r--r-- root/root etc/scsi_id.config drwxr-xr-x root/root etc/udev/ drwxr-xr-x root/root etc/udev/rules.d/ --rw-r--r-- root/root etc/udev/rules.d/50-udev-default.rules --rw-r--r-- root/root etc/udev/rules.d/55-lfs.rules --rw-r--r-- root/root etc/udev/rules.d/60-cdrom_id.rules --rw-r--r-- root/root etc/udev/rules.d/60-persistent-input.rules --rw-r--r-- root/root etc/udev/rules.d/60-persistent-storage-tape.rules --rw-r--r-- root/root etc/udev/rules.d/60-persistent-storage.rules --rw-r--r-- root/root etc/udev/rules.d/61-cdrom.rules --rw-r--r-- root/root etc/udev/rules.d/61-persistent-storage-edd.rules --rw-r--r-- root/root etc/udev/rules.d/80-drivers.rules --rw-r--r-- root/root etc/udev/rules.d/81-firmware.rules --rw-r--r-- root/root etc/udev/rules.d/95-udev-late.rules -rw-r--r-- root/root etc/udev/udev.conf drwxr-xr-x root/root lib/ drwxr-xr-x root/root lib/firmware/ @@ -37,6 +26,19 @@ crw-rw-rw- root/root lib/udev/devices/zero (1, 5) -rwxr-xr-x root/root lib/udev/edd_id -rwxr-xr-x root/root lib/udev/firmware.sh -rwxr-xr-x root/root lib/udev/path_id +drwxr-xr-x root/root lib/udev/rules.d/ +-rw-r--r-- root/root lib/udev/rules.d/50-udev-default.rules +-rw-r--r-- root/root lib/udev/rules.d/55-lfs.rules +-rw-r--r-- root/root lib/udev/rules.d/60-cdrom_id.rules +-rw-r--r-- root/root lib/udev/rules.d/60-persistent-input.rules +-rw-r--r-- root/root lib/udev/rules.d/60-persistent-storage-tape.rules +-rw-r--r-- root/root lib/udev/rules.d/60-persistent-storage.rules +-rw-r--r-- root/root lib/udev/rules.d/60-persistent-v4l.rules +-rw-r--r-- root/root lib/udev/rules.d/61-cdrom.rules +-rw-r--r-- root/root lib/udev/rules.d/61-persistent-storage-edd.rules +-rw-r--r-- root/root lib/udev/rules.d/80-drivers.rules +-rw-r--r-- root/root lib/udev/rules.d/81-firmware.rules +-rw-r--r-- root/root lib/udev/rules.d/95-udev-late.rules -rwxr-xr-x root/root lib/udev/scsi_id -rwxr-xr-x root/root lib/udev/usb_id -rwxr-xr-x root/root lib/udev/vol_id diff --git a/udev/.md5sum b/udev/.md5sum index 38f1441..f116e34 100644 --- a/udev/.md5sum +++ b/udev/.md5sum @@ -1,5 +1,5 @@ c0da74341672681c9bd924439ea4e84d cdrom.rules cbb9848e6c3662c966edaed90ce90c3f cdsymlinks f27ca9ef668bcf7561717e7543d06f4c start_udev -4da0471c0ca3a2a2a77692f67120c03d udev-124.tar.bz2 +27832847086383309bb3acbde2486e29 udev-125.tar.bz2 a521a256799fcba14f2f15cacec48a9f udev-config-20080217.tar.bz2 diff --git a/udev/Pkgfile b/udev/Pkgfile index 6e9ca8c..080725a 100644 --- a/udev/Pkgfile +++ b/udev/Pkgfile @@ -3,7 +3,7 @@ # Maintainer: CRUX System Team, core-ports at crux dot nu name=udev -version=124 +version=125 release=1 source=(ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/$name-$version.tar.bz2 \ http://crux.nu/files/distfiles/udev-config-20080217.tar.bz2 \ @@ -26,7 +26,7 @@ build() { make install DESTDIR=$PKG mandir="/usr/man" EXTRAS="$extras" pushd $SRC/udev-config-20080217 - make DESTDIR=$PKG install + make DESTDIR=$PKG RULES_DIR=/lib/udev/rules.d install popd mkdir -p $PKG/lib/{firmware,udev/devices/{pts,shm}} @@ -40,10 +40,10 @@ build() { ln -s /proc/kcore $PKG/lib/udev/devices/core install -m 0755 $SRC/start_udev $PKG/sbin install -m 0755 $SRC/cdsymlinks $PKG/lib/udev/ - install -m 644 etc/udev/rules.d/[0-9]* $PKG/etc/udev/rules.d/ - install -m 644 $SRC/cdrom.rules $PKG/etc/udev/rules.d/61-cdrom.rules + install -m 644 rules/rules.d/[0-9]* $PKG/lib/udev/rules.d/ + install -m 644 $SRC/cdrom.rules $PKG/lib/udev/rules.d/61-cdrom.rules # Comment uucp lines in default rules - sed -i 's|.*uucp.*|#&|g' $PKG/etc/udev/rules.d/50-udev-default.rules - sed -i 's|.*uucp.*|#&|g' $PKG/etc/udev/rules.d/55-lfs.rules + sed -i 's|.*uucp.*|#&|g' $PKG/lib/udev/rules.d/50-udev-default.rules + sed -i 's|.*uucp.*|#&|g' $PKG/lib/udev/rules.d/55-lfs.rules }