Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sbin/devd/uath.conf
39475 views
1
#
2
# Atheros USB wireless network device specific devd events
3
4
# Accton
5
# SMCWUSBT-G2
6
notify 100 {
7
match "system" "USB";
8
match "subsystem" "DEVICE";
9
match "type" "ATTACH";
10
match "vendor" "0x083a";
11
match "product" "0x4507";
12
action "/usr/sbin/uathload -d /dev/$cdev";
13
};
14
15
# Atheros Communications
16
# AR5523
17
notify 100 {
18
match "system" "USB";
19
match "subsystem" "DEVICE";
20
match "type" "ATTACH";
21
match "vendor" "0x168c";
22
match "product" "0x0002";
23
action "/usr/sbin/uathload -d /dev/$cdev";
24
};
25
26
# Atheros Communications
27
# AR5523
28
notify 100 {
29
match "system" "USB";
30
match "subsystem" "DEVICE";
31
match "type" "ATTACH";
32
match "vendor" "0x0cf3";
33
match "product" "(0x0002|0x0004|0x0006)";
34
action "/usr/sbin/uathload -d /dev/$cdev";
35
};
36
37
# Conceptronic
38
# AR5523
39
notify 100 {
40
match "system" "USB";
41
match "subsystem" "DEVICE";
42
match "type" "ATTACH";
43
match "vendor" "0x0d8e";
44
match "product" "(0x7802|0x7812)";
45
action "/usr/sbin/uathload -d /dev/$cdev";
46
};
47
48
# D-Link
49
# DWL-AG132, DWL-G132 and DWL-AG122
50
notify 100 {
51
match "system" "USB";
52
match "subsystem" "DEVICE";
53
match "type" "ATTACH";
54
match "vendor" "0x2001";
55
match "product" "(0x3a01|0x3a03|0x3a05)";
56
action "/usr/sbin/uathload -d /dev/$cdev";
57
};
58
59
# D-Link
60
# DWA-120
61
notify 100 {
62
match "system" "USB";
63
match "subsystem" "DEVICE";
64
match "type" "ATTACH";
65
match "vendor" "0x07d1";
66
match "product" "0x3a0c";
67
action "/usr/sbin/uathload -d /dev/$cdev";
68
};
69
70
# Gigaset
71
# SMCWUSBT-G
72
notify 100 {
73
match "system" "USB";
74
match "subsystem" "DEVICE";
75
match "type" "ATTACH";
76
match "vendor" "0x1690";
77
match "product" "(0x0711|0x0713)";
78
action "/usr/sbin/uathload -d /dev/$cdev";
79
};
80
81
# Global Sun Technology
82
# AR5523
83
notify 100 {
84
match "system" "USB";
85
match "subsystem" "DEVICE";
86
match "type" "ATTACH";
87
match "vendor" "0x16ab";
88
match "product" "(0x7802|0x7812)";
89
action "/usr/sbin/uathload -d /dev/$cdev";
90
};
91
92
# BayNETGEAR
93
# WG111U
94
notify 100 {
95
match "system" "USB";
96
match "subsystem" "DEVICE";
97
match "type" "ATTACH";
98
match "vendor" "0x0846";
99
match "product" "0x4301";
100
action "/usr/sbin/uathload -d /dev/$cdev";
101
};
102
103
# Netgear
104
# WG111T and WPN111
105
notify 100 {
106
match "system" "USB";
107
match "subsystem" "DEVICE";
108
match "type" "ATTACH";
109
match "vendor" "0x1385";
110
match "product" "(0x4251|0x5f01)";
111
action "/usr/sbin/uathload -d /dev/$cdev";
112
};
113
114
# U-MEDIA Communications
115
# TEW-444UB and AR5523
116
notify 100 {
117
match "system" "USB";
118
match "subsystem" "DEVICE";
119
match "type" "ATTACH";
120
match "vendor" "0x157e";
121
match "product" "(0x3007|0x3206)";
122
action "/usr/sbin/uathload -d /dev/$cdev";
123
};
124
125
# Wistron NeWeb
126
# AR5523
127
notify 100 {
128
match "system" "USB";
129
match "subsystem" "DEVICE";
130
match "type" "ATTACH";
131
match "vendor" "0x1435";
132
match "product" "(0x0827|0x0829)";
133
action "/usr/sbin/uathload -d /dev/$cdev";
134
};
135
136
# Z-Com
137
# AR5523
138
notify 100 {
139
match "system" "USB";
140
match "subsystem" "DEVICE";
141
match "type" "ATTACH";
142
match "vendor" "0x0cde";
143
match "product" "0x0013";
144
action "/usr/sbin/uathload -d /dev/$cdev";
145
};
146
147