/usr/lib/udev
NameSizeModeActions
hwdb.d/-0755rm
rules.d/-0755rm
ata_id638240755editdlrm
bcache-export-cached11550755editdlrm
bcache-register144880755editdlrm
cdrom_id802160755editdlrm
dmsetup_env8330755editdlrm
fido_id967680755editdlrm
hdparm13990755editdlrm
hwclock-set7760755editdlrm
hwdb.bin99563300444editdlrm
kpartx_id23830755editdlrm
mtd_probe186000755editdlrm
probe-bcache144880755editdlrm
scsi_id807760755editdlrm
snappy-app-dev432480755editdlrm
v4l_id186800755editdlrm
Edit: /usr/lib/udev/dmsetup_env (833B)
#!/bin/sh # # Debian's dmsetup is lacking the export patch, so gather the minimum # information here in order to get proper partition mappings via kpartx # # See: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=434241 # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=487881 # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=493078 MAJOR=$1 MINOR=$2 if [ -z "$MAJOR" -o -z "$MINOR" ]; then echo "usage: $0 major minor" exit 1 fi DMSETUP="/sbin/dmsetup -c --noheadings info -j$MAJOR -m$MINOR" DM_UUID=`$DMSETUP -oUUID` if [ -n "$DM_UUID" ]; then echo DM_UUID=$DM_UUID ATTRS=`$DMSETUP -oattr` case "$ATTRS" in L-*) # this is the only state needed for the kpartx udev rules echo DM_TABLE_STATE=LIVE echo DM_STATE=ACTIVE ;; esac fi echo DM_NAME=`$DMSETUP -oname`