Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions etc/openct.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ driver ccid {
usb:0bf8/1006, # fujitsu siemens 3.5" drive size reader
usb:0dc3/1004, # Athena Smartcard Solutions, Inc. ASEKey
usb:0a89/0030, # Aktiv Rutoken ECP
usb:0a5c/5800, # Broadcom 5880 Smartcard/UPEK Reader
usb:0a5c/5801, # Broadcom 5880 Smartcard/UPEK Reader
};
};
driver pertosmart1030 {
Expand Down
12 changes: 12 additions & 0 deletions etc/openct.fdi
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
<device>
<match key="info.subsystem" string="usb">

<match key="usb.vendor_id" int="0x0A5C">
<match key="usb.product_id" int="0x5800">
<merge key="smart_card_reader.openct_capable" type="bool">true</merge>
</match>
</match>

<match key="usb.vendor_id" int="0x0A5C">
<match key="usb.product_id" int="0x5801">
<merge key="smart_card_reader.openct_capable" type="bool">true</merge>
</match>
</match>

<match key="usb.vendor_id" int="0x0973">
<match key="usb.product_id" int="0x0001">
<merge key="smart_card_reader.openct_capable" type="bool">true</merge>
Expand Down
3 changes: 3 additions & 0 deletions etc/openct.udev.in
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ PROGRAM="/bin/sleep 0.1"
# ccid
ATTR{bInterfaceClass}=="0b", ATTR{bInterfaceSubClass}=="00", ATTR{bInterfaceProtocol}=="00", ATTRS{idVendor}=="?*" RUN+="@udevdir@/openct_usb /dev/$parent"

# Broadcom 5880
ATTR{idVendor}=="0A5C", ATTR{idProduct}=="5800", RUN+="@udevdir@/openct_usb /dev/$name"
ATTR{idVendor}=="0A5C", ATTR{idProduct}=="5801", RUN+="@udevdir@/openct_usb /dev/$name"
# egate
ATTR{idVendor}=="0973", ATTR{idProduct}=="0001", RUN+="@udevdir@/openct_usb /dev/$name"
# eToken
Expand Down
3 changes: 3 additions & 0 deletions etc/openct.udev.modalias.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
SUBSYSTEM!="usb", GOTO="openct_usb_rules_end"
ACTION!="add", GOTO="openct_usb_rules_end"

# Broadcom 5880
ENV{MODALIAS}=="usb:v0A5Cp5800*", RUN+="@udevdir@/openct_usb"
ENV{MODALIAS}=="usb:v0A5Cp5801*", RUN+="@udevdir@/openct_usb"
# egate
ENV{MODALIAS}=="usb:v0973p0001*", RUN+="@udevdir@/openct_usb"
# eToken
Expand Down