Changeset 1049
- Timestamp:
- 05/17/08 20:45:48 (7 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 4 modified
-
NEWS (modified) (1 diff)
-
etc/Makefile.am (modified) (1 diff)
-
etc/openct.udev.compat (added)
-
etc/openct.udev.in (modified) (1 diff)
-
etc/openct.udev.modalias.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEWS
r1004 r1049 1 1 NEWS for OpenCT -- History of user visible changes 2 3 New in 0.6.15; ????-??-??; ????? 4 * None privileged configuration added, as a result /etc/openct.conf ifdhandler 5 was modified, please review sample at etc/openct.conf before upgrade. 6 * The usb device add (/dev/bus/usb/$env{BUSNUM}/$env{DEVNUM}) udev rule is now 7 available in separate file, as it should be available at most distributions, 8 and may conflict. Install this only if you are using old udev that miss this 9 statement. 2 10 3 11 New in 0.6.14; 2007-08-30; Andreas Jellinghaus -
trunk/etc/Makefile.am
r1044 r1049 7 7 8 8 noinst_SCRIPTS = init-script openct.hald openct_usb.mdev 9 dist_noinst_DATA = Info.plist openct.udev openct.udev.modalias \ 9 dist_noinst_DATA = Info.plist \ 10 openct.udev.in openct.udev.modalias.in openct.udev.compat \ 10 11 openct.conf.in init-script.in openct.hald.in reader.conf.in \ 11 12 openct_usb.in openct_usb.mdev.in openct_pcmcia.in openct_serial.in openct.fdi 12 13 13 14 if ENABLE_UDEV 14 udev_SCRIPTS = openct_usb openct_pcmcia openct_serial15 nodist_udev_SCRIPTS = openct_usb openct_pcmcia openct_serial 15 16 else 16 dist_noinst_SCRIPTS = openct_usb openct_pcmcia openct_serial17 nodist_noinst_SCRIPTS = openct_usb openct_pcmcia openct_serial 17 18 endif 18 19 -
trunk/etc/openct.udev.in
r1043 r1049 13 13 SUBSYSTEM!="usb", GOTO="openct_usb_rules_end" 14 14 ACTION!="add", GOTO="openct_usb_rules_end" 15 16 # some distributions might not have a proper rule to set the name.17 # this is needed without USB_DEVICEFS the kernel doesn't tell us about18 # DEVICE. so we need to know the name of the device created by udev in19 # /dev/bus/usb.20 SUBSYSTEM=="usb", ACTION=="add", ENV{DEVTYPE}=="usb_device", \21 NAME="bus/usb/$env{BUSNUM}/$env{DEVNUM}", MODE="0644"22 15 23 16 # last file created by the kernel, if this is present everything should be -
trunk/etc/openct.udev.modalias.in
r1043 r1049 13 13 SUBSYSTEM!="usb", GOTO="openct_usb_rules_end" 14 14 ACTION!="add", GOTO="openct_usb_rules_end" 15 16 # some distributions might not have a proper rule to set the name.17 # this is needed without USB_DEVICEFS the kernel doesn't tell us about18 # DEVICE. so we need to know the name of the device created by udev in19 # /dev/bus/usb.20 SUBSYSTEM=="usb", ACTION=="add", ENV{DEVTYPE}=="usb_device", \21 NAME="bus/usb/$env{BUSNUM}/$env{DEVNUM}", MODE="0644"22 15 23 16 # egate
