diff options
author | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2009-05-09 16:07:05 +0200 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2009-05-09 16:09:08 +0200 |
commit | 619beb63a1748cd9ece96260bfb2e9484e52cb67 (patch) | |
tree | 12aeffdd99d378c088f3c3aad634bb5d3e9000b4 /hotplug | |
parent | 2d49dfdd370852d5033b848fd69b6112368b7d20 (diff) | |
download | mpiosh-619beb63a1748cd9ece96260bfb2e9484e52cb67.tar.gz mpiosh-619beb63a1748cd9ece96260bfb2e9484e52cb67.tar.bz2 mpiosh-619beb63a1748cd9ece96260bfb2e9484e52cb67.zip |
Cleanup
Remove unused files, move mpiosh to src, ...
Diffstat (limited to 'hotplug')
-rwxr-xr-x | hotplug/libmpio.in | 20 | ||||
-rw-r--r-- | hotplug/libmpio.usermap | 5 |
2 files changed, 0 insertions, 25 deletions
diff --git a/hotplug/libmpio.in b/hotplug/libmpio.in deleted file mode 100755 index 27c5370..0000000 --- a/hotplug/libmpio.in +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -# -# /etc/hotplug/usb/libmpio -# -# Fix permissions on device file, so -# "normal" users can access the MPIO player - -MPIO_USER=@MPIOUSER@ -MPIO_GROUP=@MPIOGROUP@ -MPIO_PERM=@MPIOPERM@ - -if [ "$ACTION" = "add" ] && - [ "$TYPE" = "usb" ] && - [ -f "${DEVICE}" ] -then - chmod 0000 "$DEVICE" - chown $MPIO_USER "$DEVICE" - chgrp $MPIO_GROUP "$DEVICE" - chmod $MPIO_PERM "$DEVICE" -fi diff --git a/hotplug/libmpio.usermap b/hotplug/libmpio.usermap deleted file mode 100644 index a73ca0e..0000000 --- a/hotplug/libmpio.usermap +++ /dev/null @@ -1,5 +0,0 @@ -# usb module match_flags idVendor idProduct bcdDevice_lo bcdDevice_hi bDeviceClass bDeviceSubClass bDeviceProtocol bInterfaceClass bInterfaceSubClass bInterfaceProtocol driver_info -# all MPIO players: -libmpio 0x0003 0x2735 0x0001 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000 -# Virgin Pulse branded MPIO players: -libmpio 0x0003 0x2735 0x0071 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000 |