udev: use a patch from Archlinux to fix some perms, bump revision.

--HG--
extra : convert_revision : ac87852e1adb89dbda9bd549f0337a95f2c3508b
This commit is contained in:
Juan RP
2009-04-02 04:38:45 +02:00
parent 28f31ff7d2
commit db5b069a23
3 changed files with 67 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/sh
if [ -z "$1" ]; then
exit 1
fi
for f in ${DEVNAME} ${DEVLINKS}; do
if [ -e "/lib/udev/devices/${f#$1}" ]; then
exit 0
fi
done
exit 1