Changeset 1082

Show
Ignore:
Timestamp:
11/21/08 11:26:02 (7 weeks ago)
Author:
martin
Message:

ePass3000 driver by EnterSafe? <jingmin@…>

Location:
trunk
Files:
1 added
8 modified

Legend:

Unmodified
Added
Removed
  • trunk/etc/openct.conf.in

    r1064 r1082  
    5959        }; 
    6060}; 
     61 
     62driver  ePass3000 { 
     63        ids = { 
     64                usb:096e/0401, 
     65        }; 
     66}; 
     67 
    6168driver  etoken { 
    6269        ids = { 
  • trunk/etc/openct.fdi

    r1073 r1082  
    6262      <match key="usb.vendor_id" int="0x096e"> 
    6363        <match key="usb.product_id" int="0x0005"> 
     64          <merge key="info.category" type="string">smart_card_reader</merge> 
     65          <append key="info.addons" type="strlist">hald-addon-openct</append> 
     66        </match> 
     67      </match> 
     68 
     69      <match key="usb.vendor_id" int="0x096e"> 
     70        <match key="usb.product_id" int="0x0401"> 
    6471          <merge key="info.category" type="string">smart_card_reader</merge> 
    6572          <append key="info.addons" type="strlist">hald-addon-openct</append> 
  • trunk/etc/openct.udev.in

    r1073 r1082  
    6161# rutoken 
    6262SYSFS{idVendor}=="0a89", SYSFS{idProduct}=="0020", RUN+="@udevdir@/openct_usb" 
     63# ePass3000 
     64SYSFS{idVendor}=="096e", SYSFS{idProduct}=="0401", RUN+="@udevdir@/openct_usb" 
    6365 
    6466LABEL="openct_usb_rules_end" 
  • trunk/etc/openct.udev.modalias.in

    r1073 r1082  
    5151# wbeiuu - driver not working yet 
    5252#ENV{MODALIAS}=="usb:v104Fp0004*", RUN+="@udevdir@/openct_usb" 
     53# ePass3000 
     54ENV{MODALIAS}=="usb:v096ep0401*", RUN+="@udevdir@/openct_usb" 
    5355 
    5456LABEL="openct_usb_rules_end" 
  • trunk/etc/openct.usermap

    r1073 r1082  
    4444# rutoken 
    4545openct               0x0003      0x0a89   0x0020    0x0000       0x0000       0x00         0x00            0x00            0x00            0x00               0x00               0x00000000 
     46# ePass3000 
     47openct               0x0003      0x096e   0x0401    0x0000       0x0000       0x00         0x00            0x00            0x00            0x00               0x00               0x00000000 
  • trunk/src/ifd/Makefile.am

    r1028 r1082  
    1414        ifd-ikey3k.c ifd-kaan.c ifd-pertosmart1030.c ifd-pertosmart1038.c \ 
    1515        ifd-smartboard.c ifd-smph.c ifd-starkey.c ifd-towitoko.c cardman.h \ 
    16         ifd-cyberjack.c ifd-rutoken.c \ 
     16        ifd-cyberjack.c ifd-rutoken.c ifd-epass3k.c \ 
    1717        \ 
    1818        proto-gbp.c proto-sync.c proto-t0.c proto-t1.c \ 
  • trunk/src/ifd/init.c

    r1042 r1082  
    2828        ifd_cm4000_register(); 
    2929        ifd_egate_register(); 
     30        ifd_epass3k_register(); 
    3031        ifd_etoken_register(); 
    3132        ifd_etoken64_register(); 
  • trunk/src/ifd/internal.h

    r1009 r1082  
    121121extern void ifd_cm4000_register(void); 
    122122extern void ifd_egate_register(void); 
     123extern void ifd_epass3k_register(void); 
    123124extern void ifd_etoken_register(void); 
    124125extern void ifd_etoken64_register(void);