Changeset 1008

Show
Ignore:
Timestamp:
12/07/07 10:58:10 (12 months ago)
Author:
ludovic.rousseau
Message:

add cyberJack driver with pinpad support

thanks to Andrey Jivsov for the patch
http://www.opensc-project.org/pipermail/opensc-devel/2007-December/010610.html

Location:
trunk
Files:
1 added
6 modified

Legend:

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

    r1007 r1008  
    133133#       }; 
    134134#}; 
     135 
     136# Tested with USBID 0c4b:0100. These are red readers: one with LCD,  
     137# another one without.  
     138driver cyberjack { 
     139        ids = { 
     140                usb:0c4b/0100, 
     141        }; 
     142}; 
  • trunk/etc/openct.udev

    r997 r1008  
    6161# wbeiuu        - driver not working yet. 
    6262#SYSFS{idVendor}=="104f", SYSFS{idProduct}=="0004", RUN+="/lib/udev/openct_usb" 
     63# cyberjack 
     64SYSFS{idVendor}=="0c4b", SYSFS{idProduct}=="0100", RUN+="/lib/udev/openct_usb" 
    6365 
    6466LABEL="openct_usb_rules_end" 
  • trunk/etc/openct.usermap

    r990 r1008  
    3737# wbeiuu - driver not working yet 
    3838#openct               0x0003      0x104f   0x0004    0x0000       0x0000       0x00         0x00            0x00            0x00            0x00               0x00               0x00000000 
     39# cyberjack 
     40openct               0x003        0x0c4b   0x0100    0x0000       0x0000       0x00         0x00            0x00            0x00            0x00               0x00               0x00000000 
  • trunk/src/ifd/Makefile.am

    r990 r1008  
    1818        ifd-ikey3k.c ifd-kaan.c ifd-pertosmart1030.c ifd-pertosmart1038.c \ 
    1919        ifd-smartboard.c ifd-smph.c ifd-starkey.c ifd-towitoko.c cardman.h \ 
     20        ifd-cyberjack.c \ 
    2021        \ 
    2122        proto-gbp.c proto-sync.c proto-t0.c proto-t1.c \ 
  • trunk/src/ifd/init.c

    r990 r1008  
    4242        ifd_towitoko_register(); 
    4343        /* ifd_wbeiuu_register();       driver not working yet */ 
     44        ifd_cyberjack_register();        
    4445        /* ccid last */ 
    4546        ifd_ccid_register(); 
  • trunk/src/ifd/internal.h

    r990 r1008  
    135135extern void ifd_towitoko_register(void); 
    136136/* extern void ifd_wbeiuu_register(void); driver not working yet */ 
     137extern void ifd_cyberjack_register(void); 
    137138 
    138139/* reader.c */