Changeset 1049

Show
Ignore:
Timestamp:
05/17/08 20:45:48 (7 months ago)
Author:
alonbl
Message:

Move out compatibility udev rule into its own rule, update NEWS to alert packagers

Location:
trunk
Files:
1 added
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/NEWS

    r1004 r1049  
    11NEWS for OpenCT -- History of user visible changes 
     2 
     3New 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. 
    210 
    311New in 0.6.14; 2007-08-30; Andreas Jellinghaus 
  • trunk/etc/Makefile.am

    r1044 r1049  
    77 
    88noinst_SCRIPTS = init-script openct.hald openct_usb.mdev 
    9 dist_noinst_DATA = Info.plist openct.udev openct.udev.modalias \ 
     9dist_noinst_DATA = Info.plist \ 
     10        openct.udev.in openct.udev.modalias.in openct.udev.compat \ 
    1011        openct.conf.in init-script.in openct.hald.in reader.conf.in \ 
    1112        openct_usb.in openct_usb.mdev.in openct_pcmcia.in openct_serial.in openct.fdi 
    1213 
    1314if ENABLE_UDEV 
    14 udev_SCRIPTS = openct_usb openct_pcmcia openct_serial 
     15nodist_udev_SCRIPTS = openct_usb openct_pcmcia openct_serial 
    1516else 
    16 dist_noinst_SCRIPTS = openct_usb openct_pcmcia openct_serial 
     17nodist_noinst_SCRIPTS = openct_usb openct_pcmcia openct_serial 
    1718endif 
    1819 
  • trunk/etc/openct.udev.in

    r1043 r1049  
    1313SUBSYSTEM!="usb", GOTO="openct_usb_rules_end" 
    1414ACTION!="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 about 
    18 # DEVICE. so we need to know the name of the device created by udev in 
    19 # /dev/bus/usb. 
    20 SUBSYSTEM=="usb", ACTION=="add", ENV{DEVTYPE}=="usb_device", \ 
    21         NAME="bus/usb/$env{BUSNUM}/$env{DEVNUM}", MODE="0644" 
    2215 
    2316# last file created by the kernel, if this is present everything should be 
  • trunk/etc/openct.udev.modalias.in

    r1043 r1049  
    1313SUBSYSTEM!="usb", GOTO="openct_usb_rules_end" 
    1414ACTION!="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 about 
    18 # DEVICE. so we need to know the name of the device created by udev in 
    19 # /dev/bus/usb. 
    20 SUBSYSTEM=="usb", ACTION=="add", ENV{DEVTYPE}=="usb_device", \ 
    21         NAME="bus/usb/$env{BUSNUM}/$env{DEVNUM}", MODE="0644" 
    2215 
    2316# egate