discover-data-2.2013.01.11/ 0002755 0000000 0000000 00000000000 12073763274 011670 5 ustar discover-data-2.2013.01.11/sbus-26.lst 0000644 0000000 0000000 00000000000 11402435651 013567 0 ustar discover-data-2.2013.01.11/merge-lst-to-xml 0000755 0000000 0000000 00000020510 11402435651 014715 0 ustar #!/usr/bin/python
import sys
import optparse
import string
from xml.etree import ElementTree
from xml.etree.ElementTree import XMLTreeBuilder
class LstParser:
"""Parser for discover 1 device lists. Once initialized, the
object appears to be a mapping (indexed by vendor ID) of mappings
with a name key and a devices key. The devices key contains a
sequence of mappings, each having an ID, name, class, and module key.
"""
def __init__(self, path):
self.file = open(path)
self.vendors = {}
self.last_vendor = None
def _read_one_vendor(self):
"""Read a single vendor, starting at the current file position.
"""
retval = None
while True:
offset = self.file.tell()
line = self.file.readline()
if not line:
break
if line[0] not in string.whitespace:
(vid, name) = line.strip().split(None, 1)
self.vendors[vid] = offset
retval = self.last_vendor = vid
break
return retval
def _read_vendors(self, key=None):
"""Read vendors until EOF or until the vendor with the given
key is read.
"""
while True:
found = self._read_one_vendor()
if (key and found == key) or not found:
break
def _read_devices(self):
"""Read and return the vendor and device information for the vendor
at the current file position.
"""
retval = {}
(vid, vname) = self.file.readline().strip().split(None, 1)
retval["name"] = vname
retval["devices"] = []
while True:
line = self.file.readline()
if not line:
break
if line[0] not in string.whitespace:
break
(did, dclass, dmod, dname) = line.strip().split(None, 3)
retval["devices"].append({ "name": dname,
"id": did,
"class": dclass,
"module": dmod })
return retval
def __getitem__(self, key):
"""For a given vendor key, return the vendor and device
information.
"""
if not self.vendors.has_key(key):
if self.last_vendor:
self.file.seek(self.vendors[self.last_vendor])
self._read_vendors(key)
self.file.seek(self.vendors[key])
return self._read_devices()
def __iter__(self):
"""Iterate over the entire file's worth of vendors,
returning the keys available.
"""
read_vendors = self.vendors.keys()
for key in read_vendors:
yield key
if self.last_vendor:
self.file.seek(self.vendors[self.last_vendor])
while True:
key = self._read_one_vendor()
if key:
if key not in read_vendors:
yield key
else:
break
iterkeys = __iter__
def has_key(self, key):
"""Check that a vendor ID is represented in this file.
If we haven't read it already, look for it in the file.
"""
if self.vendors.has_key(key):
return True
if self.last_vendor:
self.file.seek(self.vendors[self.last_vendor])
while True:
if self._read_one_vendor() == key:
return True
return False
class TreeBuilderWithComments(XMLTreeBuilder):
"""This class extends ElementTree's to
parse comments, which no builder in ElementTree seems able
to do by itself.
"""
def __init__(self):
XMLTreeBuilder.__init__(self)
self._parser.CommentHandler = self._comment
def _comment(self, data):
"""When a comment is encountered, handle it.
"""
self._target.start(ElementTree.Comment, {})
self._target.data(data)
self._target.end(ElementTree.Comment)
def _end(self, tag):
elem = ElementTree.XMLTreeBuilder._end(self, tag)
self.end(elem)
class ElementWriter:
"""Write elements in similar fashion to ElementTree's
write method, but with control over the quote characters
and the sort order for attributes.
"""
def __init__(self, f):
self.quotechar = "'"
self.sort_method = None
if hasattr(f, "write"):
self.file = f
else:
self.file = open(f, "w")
def xml_encode(self, string):
string = string.replace("&", "&")
string = string.replace("<", "<")
string = string.replace(">", ">")
string = string.replace("'", "'")
return string
def write(self, element):
if element.tag is ElementTree.Comment:
self.file.write("" % (element.text,))
elif element.tag is ElementTree.ProcessingInstruction:
self.file.write("%s?>" % (element.text,))
else:
self.file.write("<" + element.tag)
if element.attrib:
keylist = element.keys()
keylist.sort(self.sort_method)
for key in keylist:
element.attrib[key] = self.xml_encode(element.attrib[key])
self.file.write(" %s=%s%s%s" % (key, self.quotechar,
element.attrib[key],
self.quotechar))
if element or element.text:
self.file.write(">")
if element.text:
self.file.write(element.text)
for subnode in element:
self.write(subnode)
self.file.write("%s>" % (element.tag,))
else:
self.file.write("/>")
if element.tail:
self.file.write(element.tail)
def sort_device_attrs(x, y):
"""Keep track of the order of certain attributes in certain elements,
in an almost-vain hope of minimizing the number of gratuitous changes
made in the XML device list.
"""
special_attrs = [ ["vendor", "model", "subvendor", "subdevice",
"model_name", "subsystem_name", "busclass"],
["version", "class"] ]
for attrlist in special_attrs:
if x in attrlist and y in attrlist:
return attrlist.index(x) - attrlist.index(y)
return cmp(x, y)
def gen_devices(f):
"""Yield complete ElementTree device nodes. Adapted from the
element generator example at:
http://online.effbot.org/2004_12_01_archive.htm#element-generator
"""
if not hasattr(f, "read"):
f = open(f, "rb")
elements = []
parser = TreeBuilderWithComments()
parser.end = elements.append
while 1:
data = f.read(16384)
if not data:
break
parser.feed(data)
for e in elements:
if e.tag == "device":
yield e
del elements[:]
parser.close()
for e in elements:
if e.tag == "device":
yield e
def main():
option_parser = optparse.OptionParser(option_list=[
optparse.make_option("-b", "--bus", action="store",
dest="bustype", default="pci"),
optparse.make_option("-i", "--input", action="store", dest="infile"),
optparse.make_option("-o", "--output", action="store", dest="outfile"),
optparse.make_option("--lst-24", action="store", dest="lst_kernel24"),
optparse.make_option("--lst-26", action="store", dest="lst_kernel26")
])
(options, args) = option_parser.parse_args()
if options.infile:
in_f = open(options.infile)
else:
in_f = sys.stdin
if options.outfile:
out_f = open(options.outfile)
else:
out_f = sys.stdout
kernel24_list = kernel26_list = None
if options.lst_kernel24:
kernel24_list = LstParser(options.lst_kernel24)
if options.lst_kernel26:
kernel26_list = LstParser(options.lst_kernel26)
out_f.write("""
""" % (options.bustype,))
out_x = ElementWriter(out_f)
out_x.sort_method = sort_device_attrs
for device in gen_devices(in_f):
out_x.write(device)
out_f.write("\n")
out_f.close()
in_f.close()
if __name__ == "__main__":
main()
discover-data-2.2013.01.11/pci-vendor.xml 0000644 0000000 0000000 00000306140 12073236704 014453 0 ustar
discover-data-2.2013.01.11/pci-busclass.xml 0000644 0000000 0000000 00000007175 11402435646 015004 0 ustar
discover-data-2.2013.01.11/pcmcia-busclass-v1.xml 0000644 0000000 0000000 00000000710 11402435651 015771 0 ustar
discover-data-2.2013.01.11/usb-busclass-v1.xml 0000644 0000000 0000000 00000000772 11402435650 015335 0 ustar
discover-data-2.2013.01.11/pcmcia.lst 0000644 0000000 0000000 00000000654 11402435650 013640 0 ustar 0004 Fujitsu
00040004 unknown unknown MBH10302
00041003 unknown unknown MBH10304
00042000 unknown unknown LA501
0101 3Com Corp
01010035 unknown unknown 3CXEM556
01010556 unknown unknown 3CCFEM556
01010589 ethernet 3c589_cs TP/BNC LAN Card Ver. 2a
012f Adaptec
012f0001 unknown unknown SCSI
0149 Trust Computer Products
0149021b ethernet pcnet_cs NetLink Combi
01bf Accton Technology Corp
01bf010a unknown unknown EN226
discover-data-2.2013.01.11/di-kernel-list 0000644 0000000 0000000 00000010303 11402435650 014416 0 ustar 3c359
3c501
3c503
3c505
3c507
3c509
3c515
3c523
3c527
3c574_cs
3c589_cs
3c59x
3w-9xxx
3w-xxxx
53c700
8139cp
8139too
82596
8390
a100u2w
a2065
aacraid
abyss
ac3200
acpi
act200l-sir
actisys-sir
adma100
advansys
aec62xx
aes
affs
af_packet
aha152x
aha1542
aha1740
ahci
aic
aic79xx
aic7xxx
aic7xxx_old
airo
airo_cs
airport
ali-ircc
alim15x3
amd74xx
amd8111e
apne
ariadne
ariadne2
arlan
asix
at1700
ata
atadisk
atapicd
atapifd
ata_piix
ataraid
atiixp
atkbd
atmel_cs
atmel_pci
atp870u
aty128fb
atyfb
aue
axe
axnet_cs
aztcd
b44
bcm43xx
belkin_sa
blowfish
bmac
bnx2
brlvger
bt
BusLogic
cardbus
carmel
cassini
catc
cbb
cciss
cd
cd9660
cd9660_iconv
cdce
cdrom
cdu31a
cfbcopyarea
cfbfillrect
cfbimgblt
ch
cloop
cm206
cmd640
cmd64x
com20020_cs
cp2101
cpqarray
crc32
crc-ccitt
cs5520
cs5530
cs5535
cs89x0
ctc
cue
cxgb
cy82c693
cyber2000fb
da
DAC960
dasd_eckd_mod
dasd_fba_mod
dc395x
de2104x
de2104x ?
de600
de620
defxx
depca
digi_acceleport
dl2k
dm-crypt
dmfe
dm-mirror
dm-mod
dm-snapshot
dmx3191d
dpt_i2o
ds
dtc
dummy
e100
e1000
e2100
eata
eata_pio
eepro
eepro100
eexpress
efivars
ehci
ehci-hcd
epic100
eql
es3210
esp
eth1394
eth16i
evdev
ewrk3
ext2
ext2fs
ext3
fan
fat
fbcon
fcal
fdc
fd_mcs
fdomain
fealnx
firewire
firmware_class
floppy
fmvj18x_cs
forcedeth
ftdi_sio
fwe
g450_pll
gdth
generic
generic_serial
geom_uzip
g_NCR5380
gscd
hamachi
hermes
hfs
hfsplus
hid
hilkbd
hil_kbd
hil_mlc
hp
hp100
hp-plus
hp_sdc
hp_sdc_mlc
hpt34x
hpt366
hptraid
hvcs
hvcserver
hydra
i2o_block
i2o_scsi
i8042
i82092
i82365
ibmmca
ibmtr
ibmtr_cs
ibmveth
ibmvscsic
ide-cd
ide-core
ide-cs
ide-detect
ide-disk
ide-floppy
ide-generic
ide-tape
ieee1394
if_dc
if_ed
if_ep
if_faith
if_fxp
if_gif
if_ppp
if_rl
if_wb
imm
in2000
initio
input
ipddp
ipr
ips
ipv6
ircomm
ircomm-tty
irda
irda-usb
irlan
irnet
irport
irtty-sir
isa
isa-pnp
iscsi_tcp
isofs
isp16
it821x
ixgb
ixp4xx-beeper
jbd
jfs
kaweth
keybdev
kue
kyrofb
lance
lanstreamer
lasi700
lasi_82596
lcs
libata
linear
litelink-sir
lne390
lockd
loop
loop_blowfish
loop_serpent
loop_twofish
lp486e
lpfc
lvm-mod
ma600-sir
mac53c94
mace
macmodes
matroxfb_accel
matroxfb_base
matroxfb_crtc2
matroxfb_DAC1064
matroxfb_g450
matroxfb_misc
matroxfb_Ti3026
mbcache
mca_53c9x
mcd
mcdx
mcp2120-sir
mct_u232
md
md-mod
medley
megaraid
megaraid_mbox
megaraid_mm
megaraid_sas
mesh
mii
minix
mptbase
mptfc
mptsas
mptscsih
mptspi
msdosfs
msdosfs_iconv
multipath
mv643xx_eth
myri_sbus
natsemi
NCR53c406a
NCR53C9x
ne
ne2
ne2k-pci
ne3210
neofb
netiucv
netwave_cs
nfs
nfsclient
ng_ppp
ng_pppoe
ng_sppp
ni5010
ni52
ni65
nls_cp437
nls_iso8859-1
nls_utf8
nmclan_cs
ns83820
ns87415
nsc-ircc
ntfs
nvidiafb
ohci
ohci1394
ohci-hcd
old_belkin-sir
olympic
optcd
opti621
orinoco
orinoco_cs
orinoco_pci
orinoco_plx
orinoco_tmd
osst
parport
parport_pc
pas16
pccard
pcmcia
pcmcia_core
pcnet32
pcnet_cs
pd6729
pdc202xx_new
pdc202xx_old
pdc_adma
pdcraid
pegasus
piix
pl2303
plip
pluto
pm2fb
ppa
ppbus
ppc
ppp_async
ppp_deflate
ppp_generic
pppoe
pppox
ppp_synctty
prism54
psi240i
psmouse
qeth
qla1280
qla2100
qla2200
qla2300
qla2322
qla2xxx
qla6312
qlogicfas
qlogicfas408
qlogicfc
qlogicisp
qlogicpti
qnx4
r8169
radeonfb
raid0
raid1
raid456
raid5
ray_cs
reiserfs
rivafb
rrunner
rsrc_nonstatic
rtl8150
rue
rz1000
s2io
sa
sata_mv
sata_nv
sata_promise
sata_qstor
sata_sil
sata_sil24
sata_sis
sata_svw
sata_sx4
sata_uli
sata_via
sata_vsc
savagefb
sbp
sbp2
sbpcd
sc1200
scbus
scsi_mod
scsi_transport_fc
scsi_transport_iscsi
scsi_transport_spi
sd_mod
serial_cs
serpent
serverworks
sg
sha256
siimage
silraid
sim710
sio
sir-dev
sis
sis190
sis5513
sis900
sisfb
sjcd
sk98lin
skfp
skge
sky2
sl82c105
slc90e66
smc9194
smc91c92_cs
smc-ultra
smc-ultra32
sonycd535
sppp
srm_env
sr_mod
sstfb
st
starfire
stir4200
sunbmac
sundance
sungem
sungem_phy
sunhme
sunlance
sunqe
sunrpc
sx8
sym
sym53c416
sym53c8xx
sym53c8xx_2
synclink_cs
t128
tcic
tdfxfb
tekram-sir
tg3
tgafb
thermal
tlan
tms380tr
tmscsim
tmspci
tridentfb
triflex
trm290
tulip
twofish
typhoon
u14-34f
ufs
uhci
uhci-hcd
uli526x
ultrastor
umass
unix
usb
usbcore
usbhid
usbkbd
usbmouse
usbnet
usb-ohci
usbserial
usb-storage
usb-uhci
vesafb
vfat
vga16fb
via82cxxx
via-ircc
via-rhine
via-velocity
vlsi_ir
w83977af_ir
wavelan
wavelan_cs
wd
wd7000
whiteheat
winbond-840
wl3501_cs
xfs
xirc2ps_cs
xircom_cb
xircom_tulip_cb
xor
yellowfin
yenta_socket
zalon7xx
zd1201
zfcp
znet
zorro8390
discover-data-2.2013.01.11/pcmcia-device.xml 0000644 0000000 0000000 00000002066 11402435651 015073 0 ustar
3c589_cs
pcnet_cs
discover-data-2.2013.01.11/pci-ia64.lst 0000644 0000000 0000000 00000000115 11402435651 013711 0 ustar 1011 Digital Equipment Corporation
10110019 ethernet tulip DECchip 21142/43
discover-data-2.2013.01.11/usb-26.lst 0000644 0000000 0000000 00000100126 12073370532 013417 0 ustar 0001 Fry's Electronics
0053 Planex
0079 DragonRise Inc.
0105 Trust International B.V.
0145 Unknown
0204 Chipsbank Microelectronics Co., Ltd
0218 Hangzhou Worlde
02ad HUMAX Co., Ltd.
0324 OCZ Technology Inc
0325 OCZ Technology Inc
0386 LTS
03da Bernd Walter Computer Technology
03e8 EndPoints, Inc.
03eb Atmel Corp.
03ee Mitsumi
03f0 Hewlett-Packard
03f3 Adaptec, Inc.
03f9 KeyTronic Corp.
0400 National Semiconductor Corp.
0402 ALi Corp.
0403 Future Technology Devices International, Ltd
0404 NCR Corp.
0408 Quanta Computer, Inc.
0409 NEC Corp.
040a Kodak Co.
040b Weltrend Semiconductor
040d VIA Technologies, Inc.
0411 BUFFALO INC. (formerly MelCo., Inc.)
0413 Leadtek Research, Inc.
0416 Winbond Electronics Corp.
0419 Samsung Info. Systems America, Inc.
041e Creative Technology, Ltd
0420 Chips and Technologies
0421 Nokia Mobile Phones
0423 Computer Access Technology Corp.
0424 Standard Microsystems Corp.
0425 Motorola Semiconductors HK, Ltd
0426 Integrated Device Technology, Inc.
0428 Advanced Gravis Computer Tech, Ltd
042b Intel Corp.
042e Acer, Inc.
0430 Sun Microsystems, Inc.
0431 Itac Systems, Inc.
0433 Alps Electric, Inc.
0436 Taugagreining HF
043d Lexmark International, Inc.
043e LG Electronics USA, Inc.
0441 Winbond Systems Lab.
0442 Ericsson, Inc.
0443 Gateway, Inc.
0446 NMB Technologies Corp.
044e Alps Electric Co., Ltd
044f ThrustMaster, Inc.
0451 Texas Instruments, Inc.
0452 Mitsubishi Electronics America, Inc.
0453 CMD Technology
0456 Analog Devices, Inc.
0457 Silicon Integrated Systems Corp.
0458 KYE Systems Corp. (Mouse Systems)
045a SONICblue, Inc.
045b Hitachi, Ltd
045e Microsoft Corp.
0460 Ace Cad Enterprise Co., Ltd
0461 Primax Electronics, Ltd
0463 MGE UPS Systems
046a Cherry GmbH
046b American Megatrends, Inc.
046d Logitech, Inc.
046e Behavior Tech. Computer Corp.
0471 Philips (or NXP)
0472 Chicony Electronics Co., Ltd
0474 Sanyo Electric Co., Ltd
0475 Relisys/Teco Information System
0478 Connectix Corp.
047a Semtech Corp.
047b Silitek Corp.
047d Kensington
047e Agere Systems, Inc. (Lucent)
047f Plantronics, Inc.
0480 Toshiba America Info. Systems, Inc.
0482 Kyocera Corp.
0483 SGS Thomson Microelectronics
0486 ASUS Computers, Inc.
0489 Foxconn / Hon Hai
048d Integrated Technology Express, Inc.
0491 Capetronic
0492 Samsung SemiConductor, Inc.
0497 Smile International
0499 Yamaha Corp.
049c Acer Advanced Labs, Inc.
049f Compaq Computer Corp.
04a1 SystemSoft Corp.
04a4 Hitachi, Ltd
04a5 Acer Peripherals Inc. (now BenQ Corp.)
04a6 Nokia Display Products
04a7 Visioneer
04a8 Multivideo Labs, Inc.
04a9 Canon, Inc.
04ad Dooin Electronics
04b0 Nikon Corp.
04b3 IBM Corp.
04b4 Cypress Semiconductor Corp.
04b5 ROHM LSI Systems USA, LLC
04b8 Seiko Epson Corp.
04b9 Rainbow Technologies, Inc.
04bb I-O Data Device, Inc.
04bf TDK Corp.
04c1 U.S. Robotics (3Com)
04c3 Maxi Switch, Inc.
04c5 Fujitsu, Ltd
04c8 Konica Corp.
04ca Lite-On Technology Corp.
04cb Fuji Photo Film Co., Ltd
04cc ST-Ericsson
04ce ScanLogic Corp.
04cf Myson Century, Inc.
04d2 Altec Lansing Technologies
04d7 Oki Semiconductor
04d8 Microchip Technology, Inc.
04d9 Holtek Semiconductor, Inc.
04da Panasonic (Matsushita)
04db Hypertec Pty, Ltd
04dd Sharp Corp.
04e1 Iiyama North America, Inc.
04e6 SCM Microsystems, Inc.
04e7 Elo TouchSystems
04e8 Samsung Electronics Co., Ltd
04eb Northstar Systems, Inc.
04f1 Victor Company of Japan, Ltd
04f2 Chicony Electronics Co., Ltd
04f3 Elan Microelectronics Corp.
04f9 Brother Industries, Ltd
04fa Dallas Semiconductor
04fc Sunplus Technology Co., Ltd
04fd Soliton Systems, K.K.
0500 Siam United Hi-Tech
0502 Acer, Inc.
0506 3Com Corp.
0507 Hosiden Corp.
0509 Aztech Systems, Ltd
050d Belkin Components
050f KC Technology, Inc.
0510 Sejin Electron, Inc.
0511 N'Able (DataBook) Technologies, Inc.
0518 EzKEY Corp.
0519 Star Micronics Co., Ltd
051a WYSE Technology
051c Shuttle, Inc.
051d American Power Conversion
0525 Netchip Technology, Inc.
0528 ATI Technologies, Inc.
0529 Aladdin Knowledge Systems
052b Tekom Technologies, Inc.
0536 Hand Held Products (Welch Allyn, Inc.)
053a PrehKeyTec GmbH
0540 UniAccess AB
0543 ViewSonic Corp.
0545 Xirlink, Inc.
0546 Polaroid Corp.
0547 Anchor Chips, Inc.
0548 Tyan Computer Corp.
054c Sony Corp.
0550 Fuji Xerox Co., Ltd
0553 STMicroelectronics Imaging Division (VLSI Vision)
0556 Asahi Kasei Microsystems Co., Ltd
0557 ATEN International Co., Ltd
0558 Truevision, Inc.
055d Samsung Electro-Mechanics Co.
055f Mustek Systems, Inc.
0562 Telex Communications, Inc.
0565 Peracom Networks, Inc.
0566 Monterey International Corp.
056a Wacom Co., Ltd
056c eTEK Labs
056d EIZO Corp.
056e Elecom Co., Ltd
056f Korea Data Systems Co., Ltd
0571 Interex, Inc.
0572 Conexant Systems (Rockwell), Inc.
0573 Zoran Co. Personal Media Division (Nogatech)
057b Y-E Data, Inc.
057c AVM GmbH
057e Nintendo Co., Ltd
057f QuickShot, Ltd
0582 Roland Corp.
0583 Padix Co., Ltd (Rockfire)
0584 RATOC System, Inc.
0585 FlashPoint Technology, Inc.
0586 ZyXEL Communications Corp.
058b Infineon Technologies
058c In Focus Systems
058f Alcor Micro Corp.
0590 Omron Corp.
0592 Powerware Corp.
0595 Zoran Microelectronics, Ltd
0596 MicroTouch Systems, Inc.
059b Iomega Corp.
059f LaCie, Ltd
05a3 ARC International
05a4 Ortek Technology, Inc.
05a6 Cisco Systems, Inc.
05a9 OmniVision Technologies, Inc.
05ab In-System Design
05ac Apple, Inc.
05af Jing-Mold Enterprise Co., Ltd
05b1 First International Computer, Inc.
05b4 LG Semicon Co., Ltd
05b8 Agiler, Inc.
05ba DigitalPersona, Inc.
05bc 3G Green Green Globe Co., Ltd
05c5 Digi International, Inc.
05c6 Qualcomm, Inc.
05c7 Qtronix Corp.
05c8 Cheng Uei Precision Industry Co., Ltd (Foxlink)
05ca Ricoh Co., Ltd
05cb PowerVision Technologies, Inc.
05cc ELSA AG
05d1 Brainboxes, Ltd
05d7 Thomas & Betts Corp.
05d8 Ultima Electronics Corp.
05d9 Axiohm Transaction Solutions
05da Microtek International, Inc.
05db Sun Corp. (Suntac?)
05dc Lexar Media, Inc.
05dd Delta Electronics, Inc.
05e0 Symbol Technologies
05e1 Syntek Semiconductor Co., Ltd
05e3 Genesys Logic, Inc.
05e9 Kawasaki LSI
05ef AVB, Inc. [anko?]
05f0 Canopus Co., Ltd
05f2 Dexin Corp., Ltd
05f3 PI Engineering, Inc.
05f9 PSC Scanning, Inc.
05fa Siemens Telecommunications Systems, Ltd
05fc Harman Multimedia
05fd InterAct, Inc.
05fe Chic Technology Corp.
0601 Jazz Hipster Corp.
0602 Vista Imaging, Inc.
0603 Novatek Microelectronics Corp.
0609 SMK Manufacturing, Inc.
060b Solid Year
0618 MacAlly
0619 Seiko Instruments, Inc.
061a Veridicom International, Inc.
061d Quatech, Inc.
061e Nissei Electric Co.
0620 Alaris, Inc.
0624 Avocent Corp.
062a Creative Labs
0634 Micron Technology, Inc.
0636 Sierra Imaging, Inc.
0638 Avision, Inc.
0640 Hitex Development Tools
0644 TEAC Corp.
0647 Acton Research Corp.
064b Analog Devices, Inc. (White Mountain DSP)
064e Suyin Corp.
064f WIBU-Systems AG
0654 Granite Microsystems, Inc.
065a Optoelectronics Co., Ltd
0663 Topmax Electronic Co., Ltd
0664 ET&T Technology Co., Ltd.
0665 Cypress Semiconductor
0667 Aiwa Co., Ltd
066b Linksys, Inc.
066f SigmaTel, Inc.
0670 Sequel Imaging
0672 Labtec, Inc.
0673 HCL
0675 DrayTek Corp.
0677 Aiwa Co., Ltd
067b Prolific Technology, Inc.
067c Efficient Networks, Inc.
067e Intermec Technologies Corp.
067f Virata, Ltd
0680 Realtek Semiconductor Corp., CPP Div. (Avance Logic)
0681 Siemens Information and Communication Products
0685 ZD Incorporated
0686 Minolta Co., Ltd
068e CH Products, Inc.
0693 Hagiwara Sys-Com Co., Ltd
0694 Lego Group
0698 Chuntex (CTX)
069a Askey Computer Corp.
069b Thomson, Inc.
069d Hughes Network Systems (HNS)
069e Welcat Inc.
069f Allied Data Technologies BV
06a2 Topro Technology, Inc.
06a3 Saitek PLC
06a5 Divio
06a8 Topaz Systems, Inc.
06a9 Westell
06b9 Alcatel Telecom
06bc Oki Data Corp.
06bd AGFA-Gevaert NV
06be AME Optimedia Technology Co., Ltd
06c2 Phidgets Inc. (formerly GLAB)
06c9 Taxan (Europe), Ltd
06cb Synaptics, Inc.
06cc Terayon Communication Systems
06cd Keyspan
06ce Contec
06cf SpheronVR AG
06d0 LapLink, Inc.
06d3 Mitsubishi Electric Corp.
06d5 Toshiba
06d6 Aashima Technology B.V.
06da Phoenixtec Power Co., Ltd
06dc Foxlink Image Technology Co., Ltd
06e0 Multi-Tech Systems, Inc.
06e1 ADS Technologies, Inc.
06e6 Tiger Jet Network, Inc.
06ea Sirius Technologies
06f0 T.N.C Industrial Co., Ltd
06f1 Opcode Systems, Inc.
06f2 Emine Technology Co.
06f7 Wailly Technology Ltd
06f8 Guillemot Corp.
06fd Boston Acoustics
0707 Standard Microsystems Corp.
0708 Putercom Co., Ltd
070a Oki Electric Industry Co., Ltd
0710 Connect Tech, Inc.
0711 Magic Control Technology Corp.
0714 NewMotion, Inc.
0718 Imation Corp.
071b Domain Technologies, Inc.
071d Eicon Networks Corp.
0723 Centillium Communications Corp.
0729 Amitm
072f Advanced Card Systems, Ltd
0731 Susteen, Inc.
0733 ViewQuest Technologies, Inc.
0734 Lasat Communications A/S
0735 Asuscom Network
0738 Mad Catz, Inc.
073a Chaplet Systems, Inc.
073c Industrial Electronic Engineers, Inc.
073d Eutron S.p.a.
073e NEC, Inc.
0746 Onkyo Corp.
074d Micronas GmbH
074e Digital Stream Corp.
075b Sophisticated Circuits, Inc.
0763 Midiman
0764 Cyber Power System, Inc.
0765 X-Rite, Inc.
0766 Jess-Link Products Co., Ltd
0768 Camtel Technology Corp.
0769 Surecom Technology Corp.
076b OmniKey AG
0771 Observator Instruments BV
077b Linksys
077c Forward Electronics Co., Ltd
077d Griffin Technology
0780 Sagem Monetel GmbH
0781 SanDisk Corp.
0783 C3PO
0784 Vivitar, Inc.
0785 NTT-ME
0789 Logitec Corp.
078b Happ Controls, Inc.
078c GTCO/CalComp
0797 Grandtech Semiconductor Corp.
0798 Optelec
0799 Altera
079b Sagem
079d Alfadata Computer Corp.
07a1 Digicom S.p.A.
07a6 ADMtek, Inc.
07aa Corega K.K.
07ab Freecom Technologies
07af Microtech
07b0 Trust Technologies
07b2 Motorola BCS, Inc.
07b3 Plustek, Inc.
07b4 Olympus Optical Co., Ltd
07b5 Mega World International, Ltd
07b8 AboCom Systems Inc
07c0 Code Mercenaries Hard- und Software GmbH
07c1 Keisokugiken
07c4 Datafab Systems, Inc.
07c6 ShareWave, Inc.
07c8 B.U.G., Inc.
07c9 Allied Telesyn International
07ca AVerMedia Technologies, Inc.
07cc Carry Computer Eng., Co., Ltd
07cd Elektor
07cf Casio Computer Co., Ltd
07d0 Dazzle
07d1 D-Link System
07de Diamond Multimedia
07e1 Ambient Technologies, Inc.
07e4 Movado Enterprise Co., Ltd
07e5 QPS, Inc.
07ee Torex Retail (formerly Logware)
07ef STSN
07f2 Microcomputer Applications, Inc.
07f7 Century Corp.
07fa DrayTek Corp.
07fd Mark of the Unicorn
07ff Unknown
0801 MagTek
0803 Zoom Telephonics, Inc.
080b Cross Match Technologies
080c Datalogic S.p.A.
080d Teco Image Systems Co., Ltd
0810 Personal Communication Systems, Inc.
0813 Mattel, Inc.
0819 eLicenser
081a MG Logic
081b Indigita Corp.
081e AlphaSmart, Inc.
0822 Reudo Corp.
082d Handspring
0830 Palm, Inc.
0832 Kouwell Electronics Corp.
0833 Sourcenext Corp.
0836 TrekStor
0839 Samsung Techwin Co., Ltd
083a Accton Technology Corp.
083f Global Village
0840 Argosy Research, Inc.
0841 Rioport.com, Inc.
0846 NetGear, Inc.
084d Minton Optic Industry Co., Inc.
084e KB Gear
084f Empeg
0851 Macronix International Co., Ltd
0853 Topre Corporation
0854 ActiveWire, Inc.
0856 B&B Electronics
0858 Hitachi Maxell, Ltd
085a Xircom
085c ColorVision, Inc.
0864 NetGear, Inc.
0867 Data Translation, Inc.
086a Emagic Soft- und Hardware GmbH
086c DeTeWe - Deutsche Telephonwerke AG & Co.
086e System TALKS, Inc.
0870 Metricom
0871 SanDisk, Inc.
087d Jaton Corp.
0886 XAC Automation Corp.
088b MassWorks, Inc.
088c Swecoin AB
088e iLok
0892 DioGraphy, Inc.
0897 Lauterbach
08a9 CWAV Inc.
08b7 NATSU
08b8 J. Gordon Electronic Design, Inc.
08bb Texas Instruments Japan
08bd Citizen Watch Co., Ltd
08c3 Precise Biometrics
08c4 Proxim, Inc.
08ca Aiptek International, Inc.
08d1 smartBridges, Inc.
08d4 Fujitsu Siemens Computers
08d8 IXXAT Automation GmbH
08dd Billionton Systems, Inc.
08de ???
08df Spyrus, Inc.
08e3 Olitec, Inc.
08e6 Gemplus
08e9 Extended Systems, Inc.
08ea Ericsson, Inc., Blue Ridge Labs
08ec M-Systems Flash Disk Pioneers
08ed MediaTek Inc.
08f2 Gotop Information Inc.
08f7 Vernier
08fd Digianswer A/S
08ff AuthenTec, Inc.
0901 VST Technologies
0908 ShenZhen SANZHAI Technology Co.,Ltd
090a Trumpion Microelectronics, Inc.
090c Silicon Motion, Inc. - Taiwan (formerly Feiya Technology Corp.)
0911 Philips Speech Processing
0915 GlobeSpan, Inc.
0917 SmartDisk Corp.
0919 Tiger Electronics
091e Garmin International
0920 Echelon Co.
0921 GoHubs, Inc.
0922 Dymo-CoStar Corp.
0923 IC Media Corp.
0924 Xerox
0925 Lakeview Research
0928 PLX Technology, Inc. (formerly Oxford Semiconductor, Ltd)
092f Northern Embedded Science/CAVNEX
0930 Toshiba Corp.
0932 Crescentec Corp.
0936 NuTesla
0939 Lumberg, Inc.
093a Pixart Imaging, Inc.
093b Plextor Corp.
093c Intrepid Control Systems, Inc.
0944 KORG, Inc.
0948 Kronauer music in digital
094b Linkup Systems Corp.
094f Yano
0951 Kingston Technology
0955 NVidia Corp.
0957 Agilent Technologies, Inc.
0959 Cologne Chip AG
095a Portsmith
095d Polycom, Inc.
0967 Acer (??)
096e Feitian Technologies, Inc.
0971 Gretag-Macbeth AG
0973 Schlumberger
0979 Jeilin Technology Corp., Ltd
097a Minds At Work LLC
097e Biopac Systems Inc.
0984 Apricorn
0985 cab Produkttechnik GmbH & Co KG
0993 Gemstar eBook Group, Ltd
099a Zippy Technology Corp.
09a6 Poinchips
09aa Intersil Corp.
09b2 Franklin Electronic Publishers, Inc.
09bc Grundig
09be MySmart.Com
09bf Auerswald GmbH & Co. KG
09c0 Genpix Electronics, LLC
09c1 Arris Interactive LLC
09c3 ActivCard, Inc.
09c4 ACTiSYS Corp.
09cc Workbit Corp.
09cd Psion Dacom Home Networks, Ltd
09d3 Com One
09d7 Novatel Wireless
09da A4 Tech Co., Ltd
09db Measurement Computing Corp.
09e1 Intellon Corp.
09e8 AKAI Professional M.I. Corp.
09eb IM Networks, Inc.
09ef Xitel
09f3 GoFlight, Inc.
09f5 AresCom
09fb Altera
0a07 Ontrak Control Systems Inc.
0a12 Cambridge Silicon Radio, Ltd
0a16 Trek Technology (S) PTE, Ltd
0a17 Pentax Corp.
0a21 Medtronic Physio Control Corp.
0a27 Datacard Group
0a2c AK-Modul-Bus Computer GmbH
0a34 TG3 Electronics, Inc.
0a35 Radikal Technologies
0a3a PentaMedia Co., Ltd
0a46 Davicom Semiconductor, Inc.
0a48 I/O Interconnect
0a4c Computex Co., Ltd
0a4d Evolution Electronics, Ltd
0a53 Portable Peripheral Co., Ltd
0a5c Broadcom Corp.
0a5f Zebra
0a62 MPMan
0a6b Green House Co., Ltd
0a6f Core Technology, Inc.
0a71 VIPColor Technologies USA, Inc.
0a73 Mackie Designs
0a81 Chesen Electronics Corp.
0a82 Syscan
0a8e Japan Aviation Electronics Industry, Ltd
0a91 Globlink Technology, Inc.
0a92 EGO SYStems, Inc.
0a93 C Technologies AB
0aa5 First International Digital
0aa6 Perception Digital, Ltd
0aa7 Wincor Nixdorf International GmbH
0aa8 TriGem Computer, Inc.
0aa9 Baromtec Co.
0aad Rohde & Schwarz GmbH & Co. KG
0ab1 FEIG ELECTRONIC GmbH
0aba Ellisys
0abe Stereo-Link
0abf Diolan
0ac8 Z-Star Microelectronics Corp.
0ac9 Micro Solutions, Inc.
0aca OPEN Networks Ltd
0acd ID Tech
0ace ZyDAS
0ada Data Encryption Systems Ltd.
0aec Neodio Technologies Corp.
0af0 Option
0af7 B2C2, Inc.
0af9 Hama, Inc.
0b05 ASUSTek Computer, Inc.
0b0b Datamax-O'Neil
0b0c Todos AB
0b0d ProjectLab
0b0e GN Netcom
0b1e Electronic Warfare Assoc., Inc. (EWA)
0b30 PNY Technologies, Inc.
0b33 Contour Design, Inc.
0b38 Gear Head
0b39 Omnidirectional Control Technology, Inc.
0b3b Tekram Technology Co., Ltd
0b3c Olivetti Techcenter
0b41 Hal Corp.
0b43 Play.com, Inc.
0b48 TechnoTrend AG
0b49 ASCII Corp.
0b4b Pine Corp. Ltd.
0b4d Graphtec America, Inc.
0b4e Musical Electronics, Ltd
0b51 Comfort Keyboard Co.
0b62 Orange Micro, Inc.
0b70 PortalPlayer, Inc.
0b7a Zeevo, Inc.
0b81 id3 Semiconductors
0b86 Exputer Systems, Inc.
0b8c SMART Technologies Inc.
0b95 ASIX Electronics Corp.
0b97 O2 Micro, Inc.
0b9b Dipl.-Ing. Stefan Kunde
0baf U.S. Robotics
0bb0 Concord Camera Corp.
0bb2 Ambit Microsystems Corp.
0bb4 HTC (High Tech Computer Corp.)
0bc2 Seagate RSS LLC
0bc3 IPWireless, Inc.
0bc7 X10 Wireless Technology, Inc.
0bd7 Andrew Pargeter & Associates
0bda Realtek Semiconductor Corp.
0bdb Ericsson Business Mobile Networks BV
0bed Silicon Labs
0bf1 Intracom S.A.
0bf6 Addonics Technologies, Inc.
0bf8 Fujitsu Siemens Computers
0bfd Kvaser AB
0c08 Agate
0c09 Comjet Information System
0c0b Dura Micro, Inc. (Acomdata)
0c12 Zeroplus
0c16 Gyration, Inc.
0c24 Taiyo Yuden
0c25 Sampo Corp.
0c26 Prolific Technology Inc.
0c27 RFIDeas, Inc
0c2e Metrologic Instruments
0c44 Motorola iDEN
0c45 Microdia
0c4a ALGE-TIMING GmbH
0c4b Reiner SCT Kartensysteme GmbH
0c4c Needham's Electronics
0c52 Sealevel Systems, Inc.
0c55 Spectrum Digital, Inc.
0c6a ACS
0c6c JETI Technische Instrumente GmbH
0c70 MCT Elektronikladen
0c72 PEAK System
0c74 Optronic Laboratories Inc.
0c76 JMTek, LLC.
0c77 Sipix Group, Ltd
0c88 Kyocera Wireless Corp.
0c8e Cesscom Co., Ltd
0c94 Cryptera
0c98 Berkshire Products, Inc.
0c9d SemTek
0ca6 Castles Technology Co., Ltd
0cad Motorola CGISS
0caf Buslink
0cbc Palmax Technology Co., Ltd
0ccd TerraTec Electronic GmbH
0cd4 Bang Olufsen
0cd5 LabJack Corporation
0cd8 JS Digitech, Inc.
0cde Z-Com
0ce5 Validation Technologies International
0ce9 pico Technology
0cf2 ENE Technology, Inc.
0cf3 Atheros Communications, Inc.
0cf8 Clarisys, Inc.
0cfc Minolta-QMS, Inc.
0cff SAFA MEDIA Co., Ltd.
0d08 UTStarcom
0d10 Elastic Networks
0d16 Hi-Touch Imaging Technologies Co., Ltd
0d28 NXP
0d3d Tangtop Technology Co., Ltd
0d46 Kobil Systems GmbH
0d48 Promethean Limited
0d49 Maxtor
0d4e Agere Systems Netherland BV
0d50 Cleware GmbH
0d5c SMC Networks, Inc.
0d5e Myacom, Ltd
0d62 Darfon Electronics Corp.
0d64 DXG Technology Corp.
0d7d Phison Electronics Corp.
0d7e American Computer & Digital Components
0d7f Essential Reality LLC
0d8a King Jim Co., Ltd
0d8c C-Media Electronics, Inc.
0d8d Promotion & Display Technology, Ltd
0d8e Global Sun Technology, Inc.
0d96 Skanhex Technology, Inc.
0d97 Santa Barbara Instrument Group
0d98 Mars Semiconductor Corp.
0d9a RTX Telecom AS
0d9e Avaya
0d9f Powercom Co., Ltd
0da4 Polar Electro OY
0da8 softDSP Co., Ltd
0dab Cubig Group
0db0 Micro Star International
0db7 ELCON Systemtechnik
0dbc A&D Medical
0dbf Jess-Link International
0dc3 Athena Smartcard Solutions, Inc.
0dc4 Macpower Peripherals, Ltd
0dc6 Precision Squared Technology Corp.
0dcd NetworkFab Corp.
0dd0 Access Solutions
0dd2 Power Quotient International Co., Ltd
0dd8 Netac Technology Co., Ltd
0dda Integrated Circuit Solution, Inc.
0de7 USBmicro
0dee Lifetime Memory Products
0df4 NET&SYS
0df6 Sitecom Europe B.V.
0df7 Mobile Action Technology, Inc.
0dfc GeneralTouch Technology Co., Ltd
0e0b Amigo Technology Inc.
0e0c Gesytec
0e0f VMware, Inc.
0e20 Pegasus Technologies Ltd.
0e21 Cowon Systems, Inc.
0e36 TiePie engineering
0e39 Smart Modular Technologies, Inc.
0e3a Neostar Technology Co., Ltd
0e41 Line6, Inc.
0e48 Julia Corp., Ltd
0e4c Radica Games, Ltd
0e50 TechnoData Interware
0e55 Speed Dragon Multimedia, Ltd
0e56 Kingston Technology Company, Inc.
0e5c Bitland Information Technology Co., Ltd
0e5e Conwise Technology Co., Ltd.
0e66 Hawking Technologies
0e67 Fossil, Inc.
0e6a Megawin Technology Co., Ltd
0e6f Logic3
0e79 Archos, Inc.
0e7e Gmate, Inc.
0e8d MediaTek Inc.
0e8f GreenAsia Inc.
0e90 WiebeTech, LLC
0e96 Aplux Communications, Ltd
0e97 Fingerworks, Inc.
0e9c Streamzap, Inc.
0ea0 Ours Technology, Inc.
0eb0 NovaTech
0eb1 WIS Technologies, Inc.
0ec7 Theta Link Corp.
0ecd Lite-On IT Corp.
0ed1 WinMaxGroup
0ed5 Fiberbyte
0edf e-MDT Co., Ltd
0ee3 ComTrue Technology Corp.
0eee Digital Stream Technology, Inc.
0eef D-WAV Scientific Co., Ltd
0ef5 PointChips
0f03 Unitek UPS Systems
0f0d Hori Co., Ltd
0f11 LD Didactic GmbH
0f18 Finger Lakes Instrumentation
0f30 Jess Technology Co., Ltd
0f3d Airprime, Incorporated
0f44 Polhemus
0f4d Microtune, Inc.
0f5d NewAge International, LLC
0f62 Acrox Technologies Co., Ltd
0f63 LeapFrog Enterprises
0f6e INTELLIGENT SYSTEMS
0f88 VTech Holdings, Ltd
0f9c Hyun Won, Inc.
0fb6 Heber Ltd
0fb8 Wistron Corp.
0fc5 Delcom Engineering
0fca Research In Motion, Ltd.
0fce Sony Ericsson Mobile Communications AB
0fcf Dynastream Innovations, Inc.
0fd9 Elgato Systems GmbH
0fe0 Osterhout Design Group
0fe6 Kontron (Industrial Computer Source / ICS Advent)
0fe9 DVICO
0ffc Clavia DMI AB
1003 Sigma Corp.
1004 LG Electronics, Inc.
1005 Apacer Technology, Inc.
1006 iRiver, Ltd.
1009 Emuzed, Inc.
100a AV Chaseway, Ltd
100d Netopia, Inc.
1011 Mobile Media Tech.
1019 Elitegroup Computer Systems (ECS)
1020 Labtec
1025 Hyper-Paltek
102c Etoms Electronics Corp.
1033 Nucam Corp.
1038 Ideazon, Inc.
1039 devolo AG
103d Stanton
1043 iCreate Technologies Corp.
1044 Chu Yuen Enterprise Co., Ltd
1046 Winbond Electronics Corp. [hex]
104d Newport Corporation
104f WB Electronics
1050 Yubico.com
1054 BMS International Beheer N.V.
1058 Western Digital Technologies, Inc.
1059 Giesecke & Devrient GmbH
1063 Motorola Electronics Taiwan, Ltd [hex]
1065 CCYU Technology
106c Curitel Communications, Inc.
106f Money Controls
1076 GCT Semiconductor, Inc.
107b Gateway, Inc.
1083 Canon Electronics, Inc.
109f eSOL Co., Ltd
10a9 SK Teletech Co., Ltd
10ab USI Co., Ltd
10af Liebert Corp.
10b5 Comodo (PLX?)
10b8 DiBcom
10bd TMT Technology, Inc.
10bf SmartHome
10c4 Cygnal Integrated Products, Inc.
10c5 Sanei Electric, Inc.
10cc GBM Connector Co., Ltd
10ce Silicon Labs
10cf Velleman Components, Inc.
10d1 Hottinger Baldwin Measurement
10d5 Uni Class Technology Co., Ltd
10d6 Actions Semiconductor Co., Ltd
10df In-Win Development, Inc.
10f0 Nexio Co., Ltd
10f1 Importek
10f5 Turtle Beach
10fd Anubis Electronics, Ltd
10fe Thrane & Thrane
1100 VirTouch, Ltd
1101 EasyPass Industrial Co., Ltd
110a Moxa Technologies Co., Ltd.
1110 Analog Devices Canada, Ltd (Allied Telesyn)
1111 Pandora International Ltd.
1113 Medion AG
112a RedRat
1130 Tenx Technology, Inc.
1131 Integrated System Solution Corp.
1132 Toshiba Corp., Digital Media Equipment [hex]
1136 CTS Electronincs
1145 Japan Radio Company
114b Sphairon Access Systems GmbH
1163 DeLorme Publishing, Inc.
1164 YUAN High-Tech Development Co., Ltd
116f Silicon 10 Technology Corp.
1183 Compaq Computer Corp. [hex] (Digital Dream ??)
1189 Acer Communications & Multimedia
1196 Yankee Robotics, LLC
1199 Sierra Wireless, Inc.
119b ruwido austria GmbH
11a0 Chipcon AS
11a3 Technovas Co., Ltd
11aa GlobalMedia Group, LLC
11c5 Inmax
11db Topfield Co., Ltd.
11f5 Siemens AG
11f6 Prolific
11f7 Alcatel (?)
1203 TSC Auto ID Technology Co., Ltd
1209 InterBiometrics
120f Magellan
1210 DigiTech
121e Jungsoft Co., Ltd
1233 Denver Electronics
1234 Brain Actuated Technologies
1235 Novation EMS
1241 Belkin
124a AirVast
124b Nyko (Honey Bee)
124c MXI - Memory Experts International, Inc.
125c Apogee Inc.
125f A-DATA Technology Co., Ltd.
1260 Standard Microsystems Corp.
1266 Pirelli Broadband Solutions
1267 Logic3 / SpectraVideo plc
126f TwinMOS
1275 Xaxero Marine Software Engineering, Ltd.
1278 Starlight Xpress
1283 zebris Medical GmbH
1286 Marvell Semiconductor, Inc.
1291 Qualcomm Flarion Technologies, Inc. / Leadtek Research, Inc.
1292 Innomedia
1293 Belkin Components [hex]
129b CyberTAN Technology
12ba Licensed by Sony Computer Entertainment America
12c4 Autocue Group Ltd
12d1 Huawei Technologies Co., Ltd.
12d6 EMS Dr. Thomas Wuensche
12e6 Waldorf Music GmbH
12ef Tapwave, Inc.
12f7 Memorex Products, Inc.
12fd AIN Comm. Technology Co., Ltd
12ff Fascinating Electronics, Inc.
1307 Transcend Information, Inc.
1308 Shuttle, Inc.
1310 Roper
131d Natural Point
132a Envara Inc.
132b Konica Minolta
1342 Mobility
1345 Sino Lite Technology Corp.
1347 Moravian Instruments
134c PanJit International Inc.
1357 P&E Microcomputer Systems
1366 SEGGER
1370 Swissbit
1371 CNet Technology Inc.
137b SCAPS GmbH
1385 Netgear, Inc
138a Validity Sensors, Inc.
138e Jungo LTD
1390 TOMTOM B.V.
1391 IdealTEK, Inc.
1395 Sennheiser Communications
1397 BEHRINGER International GmbH
1398 Q-tec
13ad Baltech
13b0 PerkinElmer Optoelectronics
13b1 Linksys
13b2 Alesis
13ba PCPlay
13cf Wisair Ltd.
13d0 Techsan Electronics Co., Ltd.
13d1 A-Max Technology Macao Commercial Offshore Co. Ltd.
13d2 Shark Multimedia
13d3 IMC Networks
13e5 Rane
13ea Hengstler
13ec Zydacron
13ee MosArt
13fd Initio Corporation
13fe Kingston Technology Company Inc.
1403 Sitronix
140e Telechips, Inc.
1410 Novatel Wireless
1415 Nam Tai E&E Products Ltd. or OmniVision Technologies, Inc.
142a Thales E-Transactions
142b Arbiter Systems, Inc.
1430 RedOctane
1435 Wistron NeWeb
1443 Digilent
1446 X.J.GROUP
1453 Radio Shack
1457 First International Computer, Inc.
145f Trust
1460 Tatung Co.
1462 Micro Star International
1472 Huawei-3Com
147a Formosa Industrial Computing, Inc.
147e Upek
1482 Vaillant
1484 Elsa AG [hex]
1485 Silicom
148f Ralink Technology, Corp.
1491 Futronic Technology Co. Ltd.
1498 Microtek International Inc.
149a Imagination Technologies
14aa WideView Technology Inc.
14b2 Ralink Technology, Corp.
14c2 Gemlight Computer, Ltd
14cd Super Top
14dd Raritan Computer, Inc.
14e1 Dialogue Technology Corp.
14ea Planex Communications
14ed Shure Inc.
14f7 TechniSat Digital GmbH
1509 First International Computer, Inc.
1513 medMobile
1514 Actel
1516 CompUSA
1518 Cheshire Engineering Corp.
1524 ENE Technology Inc
1527 Silicon Portals
1529 UBIQUAM Co., Ltd.
152d JMicron Technology Corp. / JMicron USA Technology Corp.
152e LG (HLDS)
1532 Razer USA, Ltd
1547 SG Intec Ltd & Co KG
154a Celectronic GmbH
154b PNY
154e D&M Holdings, Inc. (Denon/Marantz)
1554 Prolink Microsystems Corp.
1557 OQO
157e TRENDnet
1582 Fiberline
158e JDS Uniphase Corporation (JDSU)
15a2 Freescale Semiconductor, Inc.
15a4 Afatech Technologies, Inc.
15a9 Gemtek
15ba Olimex Ltd.
15c0 XL Imaging
15c2 SoundGraph Inc.
15c5 Advance Multimedia Internet Technology Inc. (AMIT)
15c6 Laboratoires MXM
15c8 KTF Technologies
15ca Textech International Ltd.
15d9 Trust International B.V.
15e1 RSA
15e4 Numark
15e8 SohoWare
15e9 Pacific Digital Corp.
15f4 HanfTek
1604 Tascam
1606 Umax
1608 Inside Out Networks [hex]
160a VIA Technologies, Inc.
160e INRO
1614 Amoi Electronics
1630 2Wire, Inc.
1631 Good Way Technology
1645 Cross Match Technologies GmbH
1649 SofTec Microsystems
164c Matrix Vision GmbH
1657 Struck Innovative Systeme GmbH
165b Frontier Design Group
165c Kondo Kagaku
1668 Actiontec Electronics, Inc. [hex]
1669 PiKRON Ltd. [hex]
1677 China Huada Integrated Circuit Design (Group) Co., Ltd. (CIDC Group)
1679 Total Phase
1680 Golden Bridge Electech Inc.
1681 Prevo Technologies, Inc.
1685 Delock
1686 ZOOM Corporation
1687 Kingmax Digital Inc.
1689 Razer USA, Ltd
168c Atheros Communications
1690 Askey Computer Corp. [hex]
16a6 Unigraf
16ab Global Sun Technology
16b4 iStation
16b5 Persentec, Inc.
16c0 Van Ooijen Technische Informatica
16ca Wireless Cables, Inc.
16d0 MCS
16d5 AnyDATA Corporation
16d6 JABLOCOM s.r.o.
16d8 CMOTECH Co., Ltd.
16dc Wiener, Plein & Baus
16f0 GN ReSound A/S
170b Swissonic
1726 Axesstel, Inc.
172f Waltop International Corp.
1733 Cellink Technology Co., Ltd
1737 Linksys
1740 Senao
174c ASMedia Technology Inc.
174f Syntek
1753 GERTEC Telecomunicacoes Ltda.
1761 ASUSTek Computer, Inc. (wrong ID)
1776 Arowana
177f Sweex
1781 Multiple Vendors
1784 TopSeed Technology Corp.
1799 Belkin Components
179d Ricavision International, Inc.
17a0 Samson Technologies Corp.
17a4 Concept2
17a8 Kamstrup A/S
17b3 Grey Innovation
17ba SAURIS GmbH
17cc Native Instruments
17e9 DisplayLink
17ef Lenovo
17f4 WaveSense
17f6 Unicomp, Inc
1809 Advantech
1822 Twinhan
183d VIVOphone
1852 GYROCOM C&C Co., LTD
185b Compro
1870 Nexio Co., Ltd
1871 Aveo Technology Corp.
1873 Navilock
187c Alienware Corporation
187f Siano Mobile Silicon
1894 Topseed
189f 3Shape A/S
18a4 CSSN
18a5 Verbatim, Ltd
18b1 Petalynx
18b4 e3C Technologies
18c5 AMIT Technology, Inc.
18cd Ecamm
18d1 Google Inc.
18d9 Kaba
18dd Planon System Solutions Inc.
18e3 Fitipower Integrated Technology Inc
18e8 Qcom
18ea Matrox Graphics, Inc.
18ec Arkmicro Technologies Inc.
1908 GEMBIRD
1915 Nordic Semiconductor ASA
1926 NextWindow
192f Avago Technologies, Pte.
1934 Feature Integration Technology Inc. (Fintek)
1941 Dream Link
1943 Sensoray Co., Inc.
1949 Lab126, Inc.
194f PreSonus Audio Electronics, Inc.
195d Itron Technology iONE
1976 Chipsbrand Microelectronics (HK) Co., Ltd.
1977 T-Logic
197d Leuze electronic
198f Beceem Communications Inc.
1995 Trillium Technology Pty. Ltd.
199b MicroStrain, Inc.
199e The Imaging Source Europe GmbH
19ab Bodelin
19af S Life
19b2 Batronix
19b4 Celestron
19b9 Data Robotics
19c2 Futuba
19ca Mindtribe
19d2 ZTE WCDMA Technologies MSM
19f7 RODE Microphones
19fa Gampaq Co.Ltd
19ff Dynex
1a0a USB-IF non-workshop
1a1d Veho
1a2c China Resource Semico Co., Ltd
1a32 Quanta Microsystems, Inc.
1a34 ACRUX
1a40 Terminus Technology Inc.
1a44 VASCO Data Security International
1a61 Abbott Diabetes Care
1a72 Physik Instrumente
1a7c Evoluent
1a81 Holtek Semiconductor, Inc.
1a86 QinHeng Electronics
1a8d BandRich, Inc.
1aad KeeTouch
1ab1 Rigol Technologies
1ad4 APS
1ae7 X-TENSIONS
1afe A. Eberle GmbH & Co. KG
1b04 Meilhaus Electronic GmbH
1b0e BLUTRONICS S.r.l.
1b1c Corsair
1b32 Ugobe Life Forms, Inc.
1b3b iPassion Technology Inc.
1b3f Generalplus Technology Inc.
1b47 Energizer Holdings, Inc.
1b73 Fresco Logic
1b75 Ovislink Corp.
1b80 Afatech
1b96 N-Trig
1ba4 Ember Corporation
1bad Harmonix Music
1bae Vuzix Corporation
1bc7 Telit
1bcf Sunplus Innovation Technology Inc.
1bfd TouchPack
1c0c Ionics EMS, Inc.
1c34 SpringCard
1c40 EZPrototypes
1c4f SiGma Micro
1c6b Philips & Lite-ON Digital Solutions Corporation
1c73 AMT
1c7a LighTuning Technology Inc.
1c88 Somagic, Inc.
1c9e OMEGA TECHNOLOGY
1ca1 Symwave
1cac Kinstone
1cbe Luminary Micro Inc.
1cf1 Dresden Elektronik
1d03 iCON
1d09 TechFaith Wireless Technology Limited
1d17 C-Thru Music Ltd.
1d19 Dexatek Technology Ltd.
1d34 Dream Cheeky
1d4d PEGATRON CORPORATION
1d50 OpenMoko, Inc.
1d57 Xenta
1d6b Linux Foundation
1de1 Actions Microelectronics Co.
1e0e Qualcomm / Option
1e10 Point Grey Research, Inc.
1e17 Mirion Technologies Dosimetry Services Division
1e1d Lumension Security
1e29 Festo AG & Co. KG
1e3d Chipsbank Microelectronics Co., Ltd
1e41 Cleverscope
1e4e Cubeternet
1e54 TypeMatrix
1e68 TrekStor GmbH & Co. KG
1e71 NZXT
1e74 Coby Electronics Corporation
1e7d ROCCAT
1eda AirTies Wireless Networks
1edb Blackmagic design
1ee8 ONDA COMMUNICATION S.p.a.
1ef6 EADS Deutschland GmbH
1f28 Cal-Comp
1f44 The Neat Company
1f48 H-TRONIC GmbH
1f4d G-Tek Electronics Group
1f6f Aliph
1f75 Innostor Technology Corporation
1f82 TANDBERG
1f87 Stantum
1f9b Ubiquiti Networks, Inc.
1fab Samsung Opto-Electroncs Co., Ltd.
1fbd Delphin Technology AG
1fc9 NXP Semiconductors
1fde ILX Lightwave Corporation
1fe7 Vertex Wireless Co., Ltd.
1ff7 CVT Electronics.Co.,Ltd
2001 D-Link Corp.
200c Reloop
2013 PCTV Systems
2019 PLANEX
2040 Hauppauge
2047 Texas Instruments
2080 Barnes & Noble
2087 Cando
20a0 Clay Logic
20b1 XMOS Ltd
20b3 Hanvon
20b7 Qi Hardware
20df Simtec Electronics
20f4 TRENDnet
2101 ActionStar
2162 Creative (?)
2184 GW Instek
21a1 Emotiv Systems Pty. Ltd.
21d6 Agecodagis SARL
2222 MacAlly
2227 SAMWOO Enterprise
2233 RadioShack Corporation
2237 Kobo Inc.
22a6 Pie Digital, Inc.
22b8 Motorola PCS
22b9 eTurboTouch Technology, Inc.
2304 Pinnacle Systems, Inc.
2318 Shining Technologies, Inc. [hex]
2341 Arduino SA
2373 Pumatronix Ltda
2375 Digit@lway, Inc.
2406 SANHO Digital Electronics Co., Ltd.
2478 Tripp-Lite
2632 TwinMOS
2659 Sundtek
2730 Citizen
2735 DigitalWay
2770 NHJ, Ltd
2821 ASUSTek Computer Inc.
2899 Toptronic Industrial Co., Ltd
2c02 Planex Communications
2c1a Dolphin Peripherals
3125 Eagletron
3275 VidzMedia Pte Ltd
3334 AEI
3340 Yakumo
3504 Micro Star
3538 Power Quotient International Co., Ltd
3579 DIVA
3838 WEM
3923 National Instruments Corp.
40bb I-O Data
4101 i-rocks
4102 iRiver, Ltd.
413c Dell Computer Corp.
4146 USBest Technology
4242 USB Design by Example
4317 Broadcom Corp.
4348 WinChipHead
4572 Shuttle, Inc.
4586 Panram
4670 EMS Production
4752 Miditech
4757 GW Instek
4766 Aceeca
4855 Memorex
4971 SimpleTech
4d46 Musical Fidelity
5032 Grandtec
5041 Linksys (?)
50c2 Averatec (?)
5173 Sweex
5219 I-Tetra
5345 Owon
5543 UC-Logic Technology Corp.
5555 Epiphan Systems Inc.
55aa OnSpec Electronic, Inc.
5656 Uni-Trend Group Limited
595a IRTOUCHSYSTEMS Co. Ltd.
5986 Acer, Inc
5a57 Zinwell
6000 Beholder International Ltd.
601a Ingenic Semiconductor Ltd.
6189 Sitecom
6253 TwinHan Technology Co., Ltd
6472 Unknown (Sony?)
6547 Arkmicro Technologies Inc.
6615 IRTOUCHSYSTEMS Co. Ltd.
6666 Prototype product Vendor ID
6677 WiseGroup, Ltd.
6891 3Com
695c Opera1
6993 Yealink Network Technology Co., Ltd.
7104 CME (Central Music Co.)
726c StackFoundry LLC
734c TBS Technologies China
7392 Edimax Technology Co., Ltd
8086 Intel Corp.
8087 Intel Corp.
80ee VirtualBox
8282 Keio
8341 EGO Systems, Inc.
9016 Sitecom
9022 TeVii Technology Ltd.
9148 GeoLab, Ltd
9710 MosChip Semiconductor
99fa Grandtec
9ac4 J. Westhues
a128 AnMo Electronics Corp. / Dino-Lite (?)
a168 AnMo Electronics Corporation
a600 Asix
a727 3Com
abcd Unknown
c251 Keil Software, Inc.
cace CACE Technologies Inc.
d209 Ultimarc
e4e4 Xorcom Ltd.
eb03 MakingThings
eb1a eMPIA Technology, Inc.
f003 Hewlett Packard
f4ec Atten Electronics / Siglent Technologies
discover-data-2.2013.01.11/README 0000644 0000000 0000000 00000001141 11402435646 012535 0 ustar The Discover package comes with no data of its own. Data files are
distributed by the Debian project and possibly by others.
This directory contains some sample files and a Perl script to
convert old (e.g., pci.lst) Discover data files to the new
format, and visa versa.
This project is maintained on Alioth,
.
To update the list of known PCI devices using the list provided by the
PCI IDs project, , run 'make -f
Makefile.update update'. Updating take a while because the scripts
used are slightly inefficient.
discover-data-2.2013.01.11/lst2xml 0000755 0000000 0000000 00000023610 11402435646 013215 0 ustar #! /usr/bin/perl
# lst2xml: Transform old (pci.lst) Discover data to new XML-based format
# AUTHORS: Eric Gillespie
# John R. Daily
# Josh Bressers
#
# Copyright 2002 Progeny Linux Systems, Inc.
# Copyright 2002 Hewlett-Packard Company
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
# $Progeny$
use strict;
use warnings;
my %CLASSES = (
'isdn'=>'isdn',
'bridge'=>'bridge',
'ethernet'=>'network',
'unknown'=>'unknown',
'video'=>'video',
'ide'=>'ide',
'scsi'=>'scsi',
'usb'=>'usb',
'sound'=>'sound',
'modem'=>'modem',
'tvcard'=>'multimedia',
'joystick'=>'gameport',
'scanner'=>'scanner',
'printer'=>'printer',
'webcam'=>'webcam',
'floppy'=>'floppy',
'mouse'=>0 # We don't care about this in Discover
);
my %PCI_CLASSES = (
'isdn'=>'0204',
'bridge'=>'0600',
'network'=>'0200',
'unknown'=>'0000',
'video'=>'0300',
'ide'=>'0101',
'scsi'=>'0100',
'usb'=>'0c03',
'sound'=>'0401',
'modem'=>'0703',
'multimedia'=>'0400', # Used to be 'tvcard'
'gameport'=>'0904' # Used to be 'joystick'
);
my %PCMCIA_CLASSES = (
'isdn'=>'isdn',
'bridge'=>'bridge',
'network'=>'network',
'unknown'=>'unknown',
'video'=>'video',
'sound'=>'sound',
'modem'=>'modem',
'multimedia'=>'multimedia',
'gameport'=>'gameport'
);
my %USB_CLASSES = (
'unknown'=>'0000',
'scanner'=>'ffff', # XXX ???
'printer'=>'0101',
'isdn'=>'1030',
'webcam'=>'ff00',
'network'=>'0206',
'modem'=>'0202',
'gameport'=>'0300',
'floppy'=>'0804'
);
my %REMAP_CLASSES = (
'isdn'=>'broadband',
'bridge'=>'bridge',
'ethernet'=>'network',
'unknown'=>'miscellaneous',
'video'=>'display',
'ide'=>'bridge',
'scsi'=>'bridge',
'usb'=>'bridge',
'sound'=>'audio',
'modem'=>'modem',
'multimedia'=>'video',
'tvcard'=>'video',
'joystick'=>'bridge',
'gameport'=>'bridge',
'scanner'=>'imaging',
'printer'=>'printer',
'webcam'=>'video',
'floppy'=>'removabledisk',
'network'=>'network'
);
sub encode_non_ascii {
my ($value) = @_;
my ($i, $newval, @chars);
@chars = unpack('C*', $value);
for($i = 0; $i < @chars; $i++) {
if ($chars[$i] > 127) {
$newval = sprintf("%X;", $chars[$i]);
if ($i == 0) {
$value = $newval . substr($value, 1);
} elsif ($i == @chars - 1) {
$value = substr($value, 0, $i) . $newval;
} else {
$value = substr($value, 0, $i) . $newval .
substr($value, $i+1);
}
}
}
return $value;
}
sub make_busclass {
my $bus = shift;
my $bus_upper = shift;
my $id;
my $class;
my $try;
my @keys;
if (not open(BUSCLASSFOO, ">${bus}-busclass.xml")) {
die("Could not open ${bus}-busclass.xml\n");
}
print(BUSCLASSFOO <
EOF
$try = '@keys = keys(%';
$try .= $bus_upper;
$try .= '_CLASSES);';
eval $try;
foreach $class (@keys) {
$try = '$id = $'; # 'cperl-mode is sub-optimal
$try .= $bus_upper;
$try .= '_CLASSES{$class};';
eval $try;
print(BUSCLASSFOO " \n");
}
print(BUSCLASSFOO "\n");
close(BUSCLASSFOO);
}
unless (@ARGV) {
die "Need valid file as first argument\n";
}
MAIN: {
my @data;
my $busclass;
my $bus;
my $bus_upper;
my $class;
my $new_class;
my $class_name;
my $filename;
my $interface_type;
my $model_id;
my $module;
my $serverbin;
my $text;
my $try;
my $vendor;
my $vendor_id;
foreach $filename (@ARGV) {
if (not -e $filename) {
die "Need valid file as first argument\n";
}
if (not $filename =~ /\/?(\w+)\.lst/) {
die "Need file with name .lst, where is a type "
. "of hardware\n";
}
$bus = $1;
$bus_upper = $1;
$bus_upper =~ tr/a-z/A-Z/;
make_busclass($bus, $bus_upper);
if (not open(VENDORS, ">${bus}-vendor.xml")) {
die "Must be able to open ${bus}-vendor.xml "
. "for writing\n";
}
if (not open(HARDWARE, ">${bus}-device.xml")) {
die "Must be able to open ${bus}-device.xml "
. "for writing\n";
}
if (not open(LST, $filename)) {
die "Must be able to open $filename for reading\n";
}
print HARDWARE <
EOF
print VENDORS <
EOF
while() {
$class = $model_id = $vendor_id = $class_name = $module =
$text = $serverbin = '';
s/&/&/g;
s/</g;
s/>/>/g;
s/"/"/g;
s/'/'/g;
#"cperl-mode is suboptimal
$_ = encode_non_ascii($_);
if (/^(\w+) (.*)$/) {
$vendor_id = $1;
$vendor = $2;
print(VENDORS " \n");
} elsif (/^\s+\w/) {
s/^\s+//;
s/\s+$//;
@data = split(/\t+/);
if (@data != 4) {
print(STDERR "Error: Wrong number of fields in $_\n");
next;
}
$model_id = $data[0];
$class_name = $data[1];
$module = $data[2];
$text = $data[3];
if ($class_name eq 'pmc') {
next;
}
$new_class = $CLASSES{$class_name};
if (not defined($new_class)) {
die("Couldn't find $class_name in CLASSES\n");
}
if (not $new_class) {
# A device we don't care about, such as mice
next;
}
$try = '$busclass = $'; # 'cperl-mode is sub-optimal
$try .= $bus_upper;
$try .= '_CLASSES{$new_class};';
eval $try;
if (not defined($busclass)) {
die("Couldn't find $new_class " .
"in ${bus_upper}_CLASSES\n");
}
$vendor_id = substr($model_id, 0, 4);
$model_id = substr($model_id, 4);
if ($module =~ /:/) {
@data = split(/:/, $module);
$interface_type = "xfree86";
$module = $data[1];
if ($module =~ /(.*)\((.*)\)/) {
$module = $2;
$serverbin = $1;
} else {
$serverbin = $module;
$module = '';
}
} elsif ($module eq 'unknown' || $module eq 'ignore') {
$interface_type = "";
} else {
$interface_type = "linux";
}
print HARDWARE <
EOF
if ($interface_type) {
print HARDWARE <
EOF
}
if ($interface_type eq 'linux') {
print HARDWARE <
$module
EOF
} elsif ($interface_type eq 'xfree86') {
if ($serverbin eq 'XFree86') {
print HARDWARE <
$serverbin
$module
EOF
} else {
print HARDWARE <
$serverbin
EOF
}
}
if ($interface_type) {
print HARDWARE <
EOF
}
print HARDWARE <
EOF
}
}
print HARDWARE "\n";
print VENDORS "\n";
close(LST);
close(HARDWARE);
close(VENDORS);
}
}
# vim:set ai et sts=4 sw=4:
discover-data-2.2013.01.11/merge-device-xml 0000755 0000000 0000000 00000005102 11402435651 014732 0 ustar #!/usr/bin/perl
#
# Author: Petter Reinholdtsen
# Date: 2006-08-12
# License: GNU General Public License
#
# Merge discover device XML files together, overriding earlier files
# with information from the latter files in a list of files.
#
# Currently only able to update the model and submodel names.
use warnings;
use strict;
use XML::LibXML;
my $devices; # the current authorative data set
my $parser = XML::LibXML->new();
sub load_file {
my $filename = shift;
unless (defined $devices) {
$devices = $parser->parse_file($filename);
return;
}
my $names = $parser->parse_file($filename);
my $droot = $devices->getDocumentElement;
my $nroot = $names->getDocumentElement;
$devices->indexElements();
$names->indexElements();
foreach my $nnode ($nroot->findnodes('/device_list/device')) {
my ($vendor,$model, $subvendor, $subdevice, $name, $subname);
for my $attr ($nnode->attributes()) {
$vendor = $attr->value if ("vendor" eq $attr->name);
$model = $attr->value if ("model" eq $attr->name);
$subvendor = $attr->value if ("subvendor" eq $attr->name);
$subdevice = $attr->value if ("subdevice" eq $attr->name);
$name = $attr->value if ("model_name" eq $attr->name);
$subname = $attr->value if ("submodel_name" eq $attr->name);
}
my $searchstr;
if ($subvendor) {
$searchstr =
"/device_list/device[\@vendor='$vendor' and \@model='$model' and \@subvendor='$subvendor' and \@subdevice='$subdevice']";
} else {
$searchstr =
# Hm, how can we specify those without subvendor and subdevice?
"/device_list/device[\@vendor='$vendor' and \@model='$model' and not(\@subvendor)]";
}
# print STDERR "Looking for vendor=$vendor model=$model '$searchstr'\n";
my $found = 0;
my @nodes = $droot->findnodes($searchstr);
foreach my $node (@nodes) {
for my $attr ($node->attributes()) {
if (defined $subvendor) {
if ("submodel_name" eq $attr->name &&
$subname ne $attr->value) {
$attr->setValue($subname);
print STDERR "Updating submodel_name for $vendor:$model to '$subname'\n";
}
} else {
if ("model_name" eq $attr->name &&
$name ne $attr->value) {
$attr->setValue($name);
print STDERR "Updating model_name for $vendor:$model to '$name'\n";
}
}
}
$found = 1;
# print STDERR $node->toString,"\n";
}
unless ($found) { # Missing node, add it to devices
print STDERR "Adding new node ",$nnode->toString,"\n";
$droot->addChild($nnode);
}
}
}
load_file($ARGV[0] || 'pci-device.xml');
load_file($ARGV[1] || 'pci-device-pciids.xml');
$devices->toFile("-");
discover-data-2.2013.01.11/usb-vendor.xml 0000644 0000000 0000000 00000424114 12073367336 014501 0 ustar
discover-data-2.2013.01.11/linmod-busclass.xml 0000644 0000000 0000000 00000000150 11402435651 015471 0 ustar
discover-data-2.2013.01.11/pci-device.xml 0000644 0000000 0000000 00013370677 12073265261 014441 0 ustar
8139too
2005-07-17
pere@hungry.com
8139too
2005-07-17
pere@hungry.com
dmfe
2004-08-31
imurdock@progeny.com
8139too
2005-07-17
pere@hungry.com
8139cp
pluto2
hisax
2004-04-26
imurdock@progeny.com
cciss
cciss
cciss
cciss
cciss
tmspci
2004-04-26
imurdock@progeny.com
XF86_SVGA
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
cpqfc
2004-04-26
imurdock@progeny.com
cpqarray
2004-04-26
imurdock@progeny.com
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
tlan
2004-04-08
imurdock@progeny.com
triflex
tlan
2004-04-08
imurdock@progeny.com
tlan
2004-04-08
imurdock@progeny.com
tlan
2004-04-08
imurdock@progeny.com
tlan
2004-04-08
imurdock@progeny.com
tlan
2004-04-08
imurdock@progeny.com
tlan
2004-04-08
imurdock@progeny.com
tlan
2004-04-08
imurdock@progeny.com
cciss
2004-04-26
imurdock@progeny.com
cciss
2004-04-26
imurdock@progeny.com
cciss
cciss
cciss
tlan
2004-04-08
imurdock@progeny.com
tlan
2004-04-08
imurdock@progeny.com
ncr53c8xx
sym53c8xx_2
2005-08-13
pere@hungry.com
ncr53c8xx
sym53c8xx_2
2005-08-13
pere@hungry.com
ncr53c8xx
sym53c8xx_2
2005-08-13
pere@hungry.com
ncr53c8xx
sym53c8xx_2
2005-08-13
pere@hungry.com
ncr53c8xx
sym53c8xx_2
2005-08-13
pere@hungry.com
ncr53c8xx
sym53c8xx_2
2005-08-13
pere@hungry.com
ncr53c8xx
sym53c8xx_2
2005-08-13
pere@hungry.com
ncr53c8xx
sym53c8xx_2
2005-08-13
pere@hungry.com
ncr53c8xx
sym53c8xx_2
2005-08-13
pere@hungry.com
ncr53c8xx
sym53c8xx_2
2005-08-13
pere@hungry.com
sym53c8xx_2
2005-08-13
pere@hungry.com
cpqarray
2004-08-31
imurdock@progeny.com
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
sym53c8xx_2
2006-08-13
pere@debian.com
sym53c8xx_2
2006-08-13
pere@debian.com
sym53c8xx_2
2006-08-13
pere@debian.com
sym53c8xx_2
2006-08-13
pere@debian.com
mptscsih
2004-04-26
imurdock@progeny.com
mptscsih
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
mptscsih
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
mptscsih
2006-08-13
pere@hungry.com
mptscsih
2006-08-13
pere@hungry.com
mptscsih
mptsas
mptsas
mptsas
mptsas
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
ncr53c8xx
sym53c8xx_2
2006-08-13
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid2
2004-11-19
imurdock@progeny.com
megaraid2
2004-11-19
imurdock@progeny.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
mptscsih
2004-04-26
imurdock@progeny.com
mptscsih
2004-04-26
imurdock@progeny.com
mptscsih
mptscsih
2004-04-26
imurdock@progeny.com
mptscsih
mptscsih
2004-04-26
imurdock@progeny.com
mptscsih
mptscsih
2004-04-26
imurdock@progeny.com
mptscsih
mptfc
mptfc
yellowfin
2004-04-08
imurdock@progeny.com
yellowfin
2004-04-08
imurdock@progeny.com
yellowfin
2004-04-08
imurdock@progeny.com
cpqarray
2005-02-05
licquia@progeny.com
cpqarrayd
2006-08-11
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid_mbox
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
cpqarray
2005-02-05
licquia@progeny.com
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
2005-02-05
licquia@progeny.com
cpqarrayd
2006-08-11
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
initio
XFree86
ati
2005-02-05
licquia@progeny.com
XFree86
ati
2005-02-05
licquia@progeny.com
XFree86
ati
2005-02-05
licquia@progeny.com
XFree86
ati
2005-02-05
licquia@progeny.com
XFree86
ati
2005-02-05
licquia@progeny.com
XFree86
ati
2005-02-05
licquia@progeny.com
XFree86
ati
2005-02-05
licquia@progeny.com
radeonfb
XFree86
ati
2005-08-13
pere@hungry.com
radeonfb
XFree86
ati
2005-08-13
pere@hungry.com
XFree86
ati
2005-08-13
pere@hungry.com
radeonfb
XFree86
ati
2005-08-13
pere@hungry.com
XFree86
ati
2005-10-19
dws@ee.ethz.ch
radeonfb
radeonfb
XFree86
ati
2005-08-13
pere@hungry.com
radeonfb
XFree86
ati
2005-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2005-08-13
pere@hungry.com
radeonfb
XFree86
ati
2005-08-13
pere@hungry.com
radeonfb
XFree86
ati
2005-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2005-08-13
pere@hungry.com
radeonfb
XFree86
ati
2005-08-13
pere@hungry.com
radeonfb
XFree86
ati
2005-02-05
licquia@progeny.com
radeonfb
XFree86
ati
2005-02-05
licquia@progeny.com
XFree86
ati
2005-02-05
licquia@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
Xorg
ati
2005-07-30
ch@debian.org
2005-01-30
licquia@progeny.com
radeonfb
XFree86
ati
radeonfb
2005-01-30
licquia@progeny.com
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
XFree86
ati
XFree86
ati
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
radeonfb
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
snd-atiixp
2005-02-03
licquia@progeny.com
ehci-hcd
2005-02-02
licquia@progeny.com
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
atiixp
snd-atiixp-modem
XFree86
ati
XFree86
ati
sata_sil
snd-atiixp
sata_sil
snd-atiixp-modem
sata_sil
sata_sil
snd-hda-intel
radeonfb
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
2005-02-05
licquia@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-10-11
pere@hungry.com
radeonfb
XFree86
ati
2006-11-22
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
radeonfb
XFree86
ati
2006-08-13
pere@hungry.com
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
radeonfb
2006-08-13
pere@hungry.com
XFree86
ati
2006-08-13
pere@hungry.com
XFree86
ati
2004-09-02
imurdock@progeny.com
radeonfb
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
2006-08-13
pere@debian.com
XFree86
ati
2006-08-13
pere@debian.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
2006-08-13
pere@debian.com
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
2005-02-02
licquia@progeny.com
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
agpgart
2005-02-02
licquia@progeny.com
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
radeonfb
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
fglrx-control fglrx-driver fglrx-kernel-src
2006-10-11
pere@hungry.com
radeonfb
XFree86
ati
2006-11-22
pere@hungry.com
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
2004-09-02
imurdock@progeny.com
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
ati
radeonfb
XFree86
vesa
2005-08-13
pere@hungry.com
vlsi_ir
XF86_SVGA
XF86_SVGA
ns87415
natsemi
2004-04-26
imurdock@progeny.com
ns83820
2004-04-26
imurdock@progeny.com
cs5535
cassini
scx200
sc1200
scx200
scx200
scx200
XFree86
ati
XFree86
tseng
XFree86
tseng
XFree86
tseng
XFree86
tseng
XFree86
tseng
XFree86
tseng
XF86_P9000
XF86_P9000
XFree86
vga
XF86_SVGA
de4x5
de2104x
2004-11-19
imurdock@progeny.com
XFree86
tga
de4x5
2004-11-19
imurdock@progeny.com
XFree86
tga
defxx
2004-04-26
imurdock@progeny.com
de4x5
2006-08-12
pere@hungry.com
acenic
2004-04-26
imurdock@progeny.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
aacraid
c4
2004-08-31
imurdock@progeny.com
DAC960
aacraid
aacraid
aacraid
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
cpqarray
cpqarrayd
2006-08-11
pere@hungry.com
aacraid
XF86_SVGA
XF86_SVGA
XF86_SVGA
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
XFree86
cirrus
cs46xx
snd-cs46xx
2006-08-14
pere@hungry.com
cs46xx
snd-cs46xx
2006-08-14
pere@hungry.com
i82365
yenta_socket
2004-04-26
imurdock@progeny.com
XF86_SVGA
XF86_SVGA
XF86_SVGA
cs46xx
snd-cs46xx
2006-08-13
pere@hungry.com
cs46xx
snd-cs46xx
2006-08-13
pere@hungry.com
cs46xx
snd-cs46xx
2006-08-13
pere@hungry.com
cs4281
snd-cs4281
2006-08-13
pere@hungry.com
lanstreamer
2004-04-26
imurdock@progeny.com
ips
2004-04-26
imurdock@progeny.com
olympic
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
ibmasm
ipr
ips
ips
ips
ips
ipr
ipr
ipr
ipr
ipr
ipr
hp100
2004-04-26
imurdock@progeny.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megarac
megarac
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megarac
2004-09-01
imurdock@progeny.com
megarac
pcnet32
2004-04-26
imurdock@progeny.com
pcnet32
2004-04-26
imurdock@progeny.com
tmscsim
2004-04-26
imurdock@progeny.com
amd74xx
agpgart
amd-k7-agp
amd-k7-agp
amd74xx
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
amd74xx
i2c-amd756
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
amd76xrom
amd74xx
i2c-amd756
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
amd76xrom
amd74xx
amd7xx_tco
2004-05-12
licquia@progeny.com
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
snd-intel8x0m
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
amd64-agp
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
amd8111e
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
amd74xx
i2c-amd8111
amd768_rng
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
trident
snd-trident
2006-08-13
pere@hungry.com
trident
snd-trident
2006-08-13
pere@hungry.com
XFree86
trident
XF86_SVGA
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XF86_SVGA
XFree86
trident
XF86_SVGA
XF86_SVGA
XF86_SVGA
XF86_SVGA
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
trident
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
XFree86
trident
agpgart
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
racser
racser
2004-09-02
imurdock@progeny.com
aacraid
racser
racser
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
8250_pci
megaraid2
megaraid
megaraid_mbox
2006-10-11
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid_sas
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
2007-02-26
pere@hungry.com
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
mga
XFree86
chips
XFree86
chips
XFree86
chips
XFree86
chips
XFree86
chips
XFree86
chips
XFree86
chips
XFree86
chips
XFree86
chips
XFree86
chips
XFree86
chips
XF86_SVGA
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
8250_pci
usb-ohci
ehci-hcd
2006-08-13
pere@hungry.com
fdomain
2004-04-26
imurdock@progeny.com
sis5595
i2c-sis96x
i2c-sis630
sata_sis
2004-08-31
imurdock@progeny.com
sata_sis
2004-08-31
imurdock@progeny.com
sata_sis
sis190
sis190
XFree86
sis
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
sis
XF86_SVGA
XFree86
sis
XFree86
sis
XFree86
sis
sisfb
XFree86
sis
sisfb
agpgart
agpgart
agpgart
agpgart
amd64-agp
amd64-agp
sis900
2004-04-26
imurdock@progeny.com
XFree86
sis
XFree86
sis
sisfb
sis5513
XFree86
sis
XFree86
sis
XFree86
sis
XFree86
sis
XFree86
sis
XFree86
sis
XFree86
sis
sisfb
XFree86
sis
2006-08-12
pere@hungry.com
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
usb-ehci
ehci-hcd
2006-08-13
pere@hungry.com
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
snd-intel8x0m
sis900
2004-04-26
imurdock@progeny.com
trident
snd-trident
2006-08-13
pere@hungry.com
XFree86
sis
2005-08-13
pere@hungry.com
hp100
2004-04-26
imurdock@progeny.com
hp100
2004-04-26
imurdock@progeny.com
hp100
hp100
8250_pci
8250_pci
cciss
cciss
cciss
rz1000
rz1000
hisax
eata
2004-04-26
imurdock@progeny.com
dpt_i2o
dpt_i2o
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
opti621
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
opti621
hisax
2004-04-26
imurdock@progeny.com
hisax
2004-04-26
imurdock@progeny.com
kyrofb
tulip
2004-04-26
imurdock@progeny.com
tulip
2004-04-26
imurdock@progeny.com
BusLogic
2004-04-26
imurdock@progeny.com
BusLogic
2004-04-26
imurdock@progeny.com
BusLogic
2004-04-26
imurdock@progeny.com
XFree86
glint
XFree86
glint
pcilynx
ohci1394
ohci1394
2004-11-19
imurdock@progeny.com
ohci1394
2004-08-31
imurdock@progeny.com
ohci1394
2004-06-07
licquia@progeny.com
ohci1394
yenta_socket
yenta_socket
acx_pci
2006-08-14
pere@hungry.com
acx_pci
2006-08-14
pere@hungry.com
acx_pci
2006-08-14
pere@hungry.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-26
imurdock@progeny.com
yenta_socket
2004-04-26
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
yenta_socket
yenta_socket
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-26
imurdock@progeny.com
yenta_socket
2004-04-26
imurdock@progeny.com
yenta_socket
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
yenta_socket
yenta_socket
XF86_SVGA
ne2k-pci
2004-04-26
imurdock@progeny.com
winbond-840
ne2k-pci
2004-04-26
imurdock@progeny.com
ne2k-pci
2004-04-26
imurdock@progeny.com
hisax
slc90e66
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
i2c-piix4
snd-mixart
pdc202xx_old
pdc202xx_old
pdc202xx_new
sata_promise
2004-08-31
imurdock@progeny.com
sata_promise
2004-08-31
imurdock@progeny.com
sata_promise
2004-08-31
imurdock@progeny.com
sata_promise
2004-08-31
imurdock@progeny.com
sata_promise
2004-06-07
licquia@progeny.com
sata_promise
2004-08-31
imurdock@progeny.com
sata_promise
2004-08-31
imurdock@progeny.com
sata_promise
sata_promise
sata_promise
sata_promise
sata_promise
sata_promise
sata_promise
sata_promise
pdc202xx_old
2004-08-31
imurdock@progeny.com
pdc202xx_old
2004-08-31
imurdock@progeny.com
pdc202xx_old
2004-08-31
imurdock@progeny.com
pdc202xx_new
2004-08-31
imurdock@progeny.com
pdc202xx_new
2004-08-31
imurdock@progeny.com
pdc202xx_new
2004-08-31
imurdock@progeny.com
pdcraid
2004-08-31
imurdock@progeny.com
pdc202xx_new
sata_sx4
2004-08-31
imurdock@progeny.com
sata_promise
pdc202xx_new
sx8
XFree86
i128
XFree86
i128
XFree86
i128
XFree86
i128
XF86_AGX
DAC960
2004-04-26
imurdock@progeny.com
DAC960
2004-04-26
imurdock@progeny.com
DAC960
2004-04-26
imurdock@progeny.com
DAC960
2004-04-26
imurdock@progeny.com
ipr
2005-01-30
licquia@progeny.com
ipr
ipr
ipr
ipr
DAC960
2004-04-26
imurdock@progeny.com
DAC960
2004-04-26
imurdock@progeny.com
XFree86
fbdev
ohci1394
2004-04-26
imurdock@progeny.com
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
sungem
2004-04-26
imurdock@progeny.com
dmasound_pmac
snd-powermac
2006-08-13
pere@hungry.com
sungem
2004-04-26
imurdock@progeny.com
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
ohci1394
2004-04-26
imurdock@progeny.com
ohci1394
2004-08-31
imurdock@progeny.com
sungem
dmasound_pmac
snd-powermac
2006-09-05
ms419@freezone.co.uk
usb-ohci
ohci-hcd
2006-08-14
pere@hungry.com
sungem
2004-08-31
imurdock@progeny.com
sungem
sungem
tg3
2004-08-31
imurdock@progeny.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
ymfpci
snd-ymfpci
2006-08-13
pere@hungry.com
qla1280
2004-04-26
imurdock@progeny.com
qlogicisp
qlogicisp
qla1280
2004-04-26
imurdock@progeny.com
qla1280
qla1280
2004-04-26
imurdock@progeny.com
qla1280
2004-04-26
imurdock@progeny.com
qlogicisp
qlogicfc
2006-10-12
pere@hungry.com
qla2x00-source
2006-12-27
pere@hungry.com
qlogicfc
2006-10-12
pere@hungry.com
qla2x00-source
2006-12-27
pere@hungry.com
qla2300
qla2300
qla2322
qla2xxx
qla2xxx
qla6312
qla6312
XFree86
cyrix
XF86_SVGA
XFree86
geode
XF86_SVGA
2004-09-02
imurdock@progeny.com
cs5530
kahlua
2004-04-08
imurdock@progeny.com
XFree86
cyrix
XF86_SVGA
2004-09-02
imurdock@progeny.com
iph5526
iph5526
iphase
cy82c693
ibmtr
ibmtr
ibmtr
ibmtr
tlan
2004-04-08
imurdock@progeny.com
tlan
2004-04-08
imurdock@progeny.com
tlan
2004-04-08
imurdock@progeny.com
tlan
sunhme
2004-04-26
imurdock@progeny.com
sungem
2004-04-26
imurdock@progeny.com
ohci1394
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
sungem
2004-04-26
imurdock@progeny.com
cassini
XFree86
cirrus
XFree86
cirrus
XFree86
nv
XFree86
nv
XFree86
s3
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_SVGA
2004-09-02
imurdock@progeny.com
XF86_SVGA
XF86_SVGA
XF86_SVGA
XF86_SVGA
XF86_SVGA
XF86_SVGA
XF86_SVGA
XF86_SVGA
XF86_SVGA
XF86_SVGA
sata_sil
2004-08-31
imurdock@progeny.com
cmd64x
cmd64x
cmd64x
cmd64x
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
siimage
sata_sil
2004-08-31
imurdock@progeny.com
sata_sil
2004-08-31
imurdock@progeny.com
sata_sil24
sata_sil24
sata_sil
2004-08-31
imurdock@progeny.com
XF86_SVGA
XF86_SVGA
bttv
2004-04-26
imurdock@progeny.com
bttv
2004-04-26
imurdock@progeny.com
bttv
bttv
2004-04-26
imurdock@progeny.com
bttv
2004-04-26
imurdock@progeny.com
bttv
2004-04-26
imurdock@progeny.com
bttv
btaudio
snd-bt87x
2006-08-13
pere@hungry.com
snd-bt87x
snd-bt87x
btaudio
snd-bt87x
2006-08-13
pere@hungry.com
btaudio
snd-bt87x
2006-08-13
pere@hungry.com
XFree86
cirrus
XF86_SVGA
2004-09-02
imurdock@progeny.com
acenic
2004-04-26
imurdock@progeny.com
yenta_socket
2004-04-26
imurdock@progeny.com
XFree86
s3virge
8250_pci
8250_pci
8250_pci
parport_pc
2004-04-08
imurdock@progeny.com
parport_pc
snd-korg1212
2004-04-26
imurdock@progeny.com
abyss
horizon
ambassador
acenic
2004-04-26
imurdock@progeny.com
3c59x
3c59x
sk98lin
tmspci
3c359
2004-11-19
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
prism54
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
3c59x
2004-04-26
imurdock@progeny.com
3c59x
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
orinoco_plx
sk98lin
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
3c59x
3c59x
2005-02-02
licquia@progeny.com
3c59x
tulip
3c59x
2004-04-26
imurdock@progeny.com
3c59x
2004-04-26
imurdock@progeny.com
typhoon
2004-04-08
imurdock@progeny.com
typhoon
2004-04-08
imurdock@progeny.com
typhoon
2004-04-08
imurdock@progeny.com
typhoon
2004-04-08
imurdock@progeny.com
typhoon
2004-04-08
imurdock@progeny.com
typhoon
2004-04-08
imurdock@progeny.com
typhoon
2004-04-08
imurdock@progeny.com
typhoon
2004-04-08
imurdock@progeny.com
typhoon
epic100
2004-04-26
imurdock@progeny.com
epic100
2004-04-26
imurdock@progeny.com
snd-cmipci
2004-04-08
imurdock@progeny.com
i2c-ali1563
amd64-agp
alim15x3
alim15x3
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
dmfe
2004-11-19
imurdock@progeny.com
uli526x
sata_uli
sata_uli
ahci
sata_uli
trident
snd-ali5451
2006-08-13
pere@hungry.com
ali5455
snd-intel8x0
2006-08-13
pere@hungry.com
snd-hda-intel
i2c-ali1535
ne2k-pci
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
XFree86
neomagic
XFree86
neomagic
XFree86
neomagic
XFree86
neomagic
XFree86
neomagic
XFree86
neomagic
XFree86
neomagic
XFree86
neomagic
XFree86
neomagic
ad1848
ad1848
nm256_audio
snd-nm256
2006-08-13
pere@hungry.com
ad1848
nm256_audio
snd-nm256
2006-08-13
pere@hungry.com
nm256_audio
snd-nm256
2006-08-13
pere@hungry.com
advansys
2004-04-26
imurdock@progeny.com
advansys
2004-04-26
imurdock@progeny.com
advansys
2004-04-26
imurdock@progeny.com
advansys
2004-04-26
imurdock@progeny.com
tulip
2004-04-26
imurdock@progeny.com
tulip
2004-04-26
imurdock@progeny.com
tulip
XF86_SVGA
tmspci
XFree86
nv
XF86_SVGA
XFree86
nv
XF86_SVGA
XFree86
nv
XF86_SVGA
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
amd74xx
sata_nv
2004-11-19
imurdock@progeny.com
forcedeth
forcedeth
snd-intel8x0
sata_nv
2004-11-19
imurdock@progeny.com
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
i2c-nforce2
amd74xx
sata_nv
2004-11-19
imurdock@progeny.com
sata_nv
2004-11-19
imurdock@progeny.com
forcedeth
forcedeth
snd-intel8x0
i2c-nforce2
amd74xx
forcedeth
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
ehci-hcd
2004-08-31
imurdock@progeny.com
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
ohci1394
i2c-nforce2
amd74xx
forcedeth
snd-intel8x0
forcedeth
sata_nv
2004-11-19
imurdock@progeny.com
nvidiafb
XFree86
nv
nvidiafb
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
nvidiafb
XFree86
nv
nvidiafb
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
amd64-agp
i2c-nforce2
amd74xx
forcedeth
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
ehci-hcd
2004-08-31
imurdock@progeny.com
snd-intel8x0m
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
forcedeth
amd64-agp
sata_nv
2004-11-19
imurdock@progeny.com
i2c-nforce2
amd74xx
forcedeth
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
ehci-hcd
2005-02-02
licquia@progeny.com
snd-intel8x0
sata_nv
2004-11-19
imurdock@progeny.com
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
nvidia-agp
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
i2c-amd756
amd74xx
snd-intel8x0m
forcedeth
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
agpgart
2004-11-19
imurdock@progeny.com
agpgart
2004-11-19
imurdock@progeny.com
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
amd74xx
sata_nv
sata_nv
forcedeth
forcedeth
snd-hda-intel
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
rivafb
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
amd74xx
snd-hda-intel
forcedeth
forcedeth
sata_nv
sata_nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
2005-08-13
pere@hungry.com
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
lpfc
XFree86
imstt
XFree86
imstt
XF86_SVGA
XF86_SVGA
XF86_SVGA
cyber2000fb
XFree86
fbdev
cyber2000fb
trident
2004-04-08
imurdock@progeny.com
ne2k-pci
2004-04-26
imurdock@progeny.com
8139too
2004-04-26
imurdock@progeny.com
8139too
2004-04-26
imurdock@progeny.com
8139too
2004-04-26
imurdock@progeny.com
r8169
snd-rme96
2004-04-08
imurdock@progeny.com
snd-rme96
2004-04-08
imurdock@progeny.com
snd-rme96
2004-04-08
imurdock@progeny.com
snd-rme96
2004-04-08
imurdock@progeny.com
rme96xx
snd-rme9652
2006-08-13
pere@hungry.com
snd-hdsp
2004-04-08
imurdock@progeny.com
snd-hdspm
nsp32
initio
2004-08-31
imurdock@progeny.com
initio
2004-04-26
imurdock@progeny.com
initio
2004-04-26
imurdock@progeny.com
initio
2004-04-26
imurdock@progeny.com
initio
2004-04-26
imurdock@progeny.com
emu10k1
snd-emu10k1
2006-08-13
pere@hungry.com
emu10k1
snd-emu10k1
2006-08-13
pere@hungry.com
snd-emu10k1
2004-04-08
imurdock@progeny.com
snd-ca0106
snd-emu10k1
emu10k1-gp
emu10k1-gp
emu10k1-gp
emu10k1-gp
es1371
snd-ens1371
2006-08-13
pere@hungry.com
hpt34x
hpt366
hpt366
hpt366
hpt366
hpt366
hpt366
amd64-agp
amd64-agp
via-agp
via-agp
via-agp
amd64-agp
via-agp
via-agp
via-agp
via-agp
agpgart
via82cxxx
2004-11-19
imurdock@progeny.com
agpgart
agpgart
via-agp
via-agp
parport_pc
2004-04-08
imurdock@progeny.com
agpgart
ne2k-pci
2004-04-26
imurdock@progeny.com
via82cxxx
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i2c-via
via-rhine
2004-04-08
imurdock@progeny.com
ohci1394
2004-08-31
imurdock@progeny.com
i2c-viapro
i2c-viapro
via-rhine
2004-04-08
imurdock@progeny.com
via686a
via82cxxx_audio
snd-via82xx
2006-08-13
pere@hungry.com
via82cxxx_audio
snd-via82xx
2006-08-13
pere@hungry.com
via-rhine
2004-04-08
imurdock@progeny.com
snd-via82xx-modem
via-ircc
via-agp
via-agp
via-agp
ehci-hcd
2004-04-26
imurdock@progeny.com
via-rhine
2004-04-08
imurdock@progeny.com
XFree86
via
2006-10-11
pere@hungry.com
via-ircc
via-agp
via-agp
XFree86
via
via-velocity
XFree86
via
via-agp
via-agp
via-ircc
via-agp
sata_via
2004-08-31
imurdock@progeny.com
via-agp
via82cxxx
via-agp
via-ircc
amd64-agp
via-agp
via-agp
via-agp
i2c-viapro
sata_via
snd-hda-intel
via82cxxx_audio
snd-via82xx
2006-10-12
pere@hungry.com
via-rhine
2004-04-26
imurdock@progeny.com
XFree86
via
via-ircc
i2c-viapro
agpgart
amd64-agp
via-agp
dscc4
8139too
2004-04-26
imurdock@progeny.com
tulip
2004-04-26
imurdock@progeny.com
tulip
tulip
2004-04-26
imurdock@progeny.com
atmel_pci
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
gdth
2004-04-26
imurdock@progeny.com
eni
eni
lanai
lanai
orinoco_plx
nicstar
idt77252
fore_200e
he
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
saa7134
dvb-ttpci
budget-av
budget
budget
dvb-ttpci
dvb-ttpci
dvb-ttpci
dvb-ttpci
dvb-ttpci
dvb-ttpci
dvb-ttpci
budget
budget
budget
budget-ci
budget-ci
budget-ci
budget
budget
budget-av
hisax
hisax
2004-04-26
imurdock@progeny.com
hisax
hisax
2004-04-26
imurdock@progeny.com
hisax
2004-04-26
imurdock@progeny.com
hisax
divas
divas
divas
divas
divas
divas
divas
divas
divas
divas
divas
XF86_SVGA
XFree86
vesa
XFree86
apm
XF86_SVGA
2004-09-02
imurdock@progeny.com
nsp32
nsp32
nsp32
nsp32
nsp32
nsp32
skfp
tmspci
2004-04-26
imurdock@progeny.com
sk98lin
2004-04-26
imurdock@progeny.com
sk98lin
tg3
tg3
dgrs
2004-04-26
imurdock@progeny.com
epca
2004-04-26
imurdock@progeny.com
epca
2004-04-26
imurdock@progeny.com
epca
2004-04-26
imurdock@progeny.com
epca
2004-04-26
imurdock@progeny.com
hisax
hisax
hisax
hisax
jsm
jsm
jsm
jsm
xircom_cb
2004-04-26
imurdock@progeny.com
xircom_cb
xircom_cb
xircom_cb
xircom_cb
xircom_cb
xircom_cb
XFree86
vga
2004-09-02
imurdock@progeny.com
XFree86
vga
2004-09-02
imurdock@progeny.com
i2c-piix4
scb2_flash
i2c-piix4
serverworks
serverworks
serverworks
serverworks
serverworks
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
usb-ohci
ohci-hcd
2006-08-13
pere@hungry.com
sata_svw
2004-08-31
imurdock@progeny.com
sata_svw
sata_svw
sata_svw
i82365
2004-11-19
imurdock@progeny.com
yenta_socket
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
toshoboe
2004-04-26
imurdock@progeny.com
toshoboe
2004-04-26
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
2004-04-08
imurdock@progeny.com
yenta_socket
yenta_socket
yenta_socket
2004-04-08
imurdock@progeny.com
ohci1394
2004-08-31
imurdock@progeny.com
ohci1394
2004-06-07
licquia@progeny.com
ohci1394
2004-08-31
imurdock@progeny.com
tulip
sundance
2004-04-26
imurdock@progeny.com
sundance
sundance
8139too
2004-04-26
imurdock@progeny.com
8139too
tulip
tulip
dl2k
2004-04-26
imurdock@progeny.com
r8169
sk98lin
aec62xx
aec62xx
aec62xx
aec62xx
aec62xx
atp870u
2004-04-26
imurdock@progeny.com
atp870u
2004-04-26
imurdock@progeny.com
atp870u
2004-04-26
imurdock@progeny.com
atp870u
2004-04-26
imurdock@progeny.com
atp870u
2004-04-26
imurdock@progeny.com
atp870u
2004-04-26
imurdock@progeny.com
atp870u
atp870u
atp870u
atp870u
zatm
zatm
i82365
firestream
firestream
sk98lin
sk98lin
2006-10-11
pere@hungry.com
sk98lin
sata_mv
sata_mv
sata_mv
sata_mv
sata_mv
sata_mv
mv64340_eth
mv643xx_eth
2004-11-30
licquia@progeny.com
tulip
2004-04-26
imurdock@progeny.com
tulip
2004-04-26
imurdock@progeny.com
sdladrv
8250_pci
ohci1394
2004-08-31
imurdock@progeny.com
sx
2004-04-26
imurdock@progeny.com
ad1889
2004-04-08
imurdock@progeny.com
buz
2006-08-14
pere@hungry.com
zoran
2006-08-14
pere@hungry.com
pcwd
2006-08-14
pere@hungry.com
hp100
2004-04-26
imurdock@progeny.com
ne2k-pci
2004-04-26
imurdock@progeny.com
winbond-840
ne2k-pci
2004-04-26
imurdock@progeny.com
tulip
2004-04-26
imurdock@progeny.com
pc300
pc300
pc300
pc300
pc300
pc300
rrunner
2004-04-26
imurdock@progeny.com
i82365
i82365
yenta_socket
yenta_socket
yenta_socket
yenta_socket
yenta_socket
yenta_socket
XFree86
glide
XFree86
glide
XFree86
tdfx
XFree86
tdfx
XFree86
tdfx
XFree86
tdfx
snd-azt3328
2004-04-08
imurdock@progeny.com
snd-azt3328
2004-04-08
imurdock@progeny.com
b1pci
2004-04-26
imurdock@progeny.com
hisax_fcpcipnp
2004-04-26
imurdock@progeny.com
hisax_fcpcipnp
2004-09-02
imurdock@progeny.com
t1pci
istallion
pci2220i
2004-04-26
imurdock@progeny.com
pci2220i
2004-04-26
imurdock@progeny.com
pci2000
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
8139too
8139too
tulip
tulip
2004-04-26
imurdock@progeny.com
maestro
maestro
snd-es1968
2006-08-13
pere@hungry.com
esssolo1
snd-es1938
2006-08-13
pere@hungry.com
maestro
snd-es1968
2006-08-13
pere@hungry.com
maestro3
snd-maestro3
2006-08-13
pere@hungry.com
snd-maestro3
maestro3
snd-maestro3
2006-08-13
pere@hungry.com
snd-maestro3
maestro3
snd-maestro3
2006-08-13
pere@hungry.com
snd-maestro3
orinoco_pci
orinoco_pci
prism54
prism54
e100
2004-04-26
imurdock@progeny.com
8139too
orinoco_plx
XFree86
siliconmotion
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
siliconmotion
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
siliconmotion
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
siliconmotion
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
siliconmotion
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
siliconmotion
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
siliconmotion
XF86_SVGA
2004-09-02
imurdock@progeny.com
es1371
snd-ens1371
2006-08-13
pere@hungry.com
es1370
snd-ens1370
2006-08-13
pere@hungry.com
es1371
snd-ens1371
2006-08-13
pere@hungry.com
8250_pci
dmfe
2004-04-26
imurdock@progeny.com
dmfe
2004-11-19
imurdock@progeny.com
dmfe
dmfe
2004-04-26
imurdock@progeny.com
it821x
siimage
2004-08-31
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
maestro
snd-es1968
2006-08-13
pere@hungry.com
acenic
2004-04-26
imurdock@progeny.com
acenic
2004-04-26
imurdock@progeny.com
acenic
ne2k-pci
2004-04-26
imurdock@progeny.com
ne2k-pci
2004-04-26
imurdock@progeny.com
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
XFree86
nv
au8820
au8830
2004-11-19
imurdock@progeny.com
snd-au8810
tulip
2004-04-26
imurdock@progeny.com
tulip
2004-04-26
imurdock@progeny.com
tulip
2004-04-26
imurdock@progeny.com
tulip
hamachi
2004-04-26
imurdock@progeny.com
forte
snd-fm801
2006-08-13
pere@hungry.com
fm801-gp
8250_pci
8250_pci
8250_pci
parport_serial
2004-04-08
imurdock@progeny.com
parport_serial
2004-04-08
imurdock@progeny.com
parport_serial
2004-04-08
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
8250_pci
8250_pci
8250_pci
parport_serial
2004-04-08
imurdock@progeny.com
parport_serial
2004-04-08
imurdock@progeny.com
parport_serial
2004-04-08
imurdock@progeny.com
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
parport_serial
2004-04-08
imurdock@progeny.com
parport_serial
2004-04-08
imurdock@progeny.com
parport_serial
2004-04-08
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
8250_pci
8250_pci
8250_pci
parport_serial
2004-04-08
imurdock@progeny.com
parport_serial
2004-04-08
imurdock@progeny.com
parport_serial
2004-04-08
imurdock@progeny.com
8250_pci
8250_pci
8250_pci
parport_serial
2004-04-08
imurdock@progeny.com
parport_serial
2004-04-08
imurdock@progeny.com
parport_serial
2004-04-08
imurdock@progeny.com
umem
umem
dtc
dtc
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
meye
sk98lin
2004-08-31
imurdock@progeny.com
orinoco_plx
acenic
2004-04-26
imurdock@progeny.com
acenic
2004-04-26
imurdock@progeny.com
applicom
mxser
mxser
mxser
moxa
moxa
moxa
hfc4s8s_l1
hisax
2004-04-26
imurdock@progeny.com
8250_pci
8250_pci
synclink
2004-04-26
imurdock@progeny.com
synclinkmp
synclink
3w-xxxx
2004-04-26
imurdock@progeny.com
3w-xxxx
3w-9xxx
2004-11-19
imurdock@progeny.com
3w-9xxx
b2c2-flexcop-pci
tulip
tulip
8139too
tulip
sundance
2004-04-26
imurdock@progeny.com
cmpci
snd-cmipci
2006-08-13
pere@hungry.com
cmpci
snd-cmipci
2006-08-13
pere@hungry.com
cmpci
snd-cmipci
2006-08-13
pere@hungry.com
cmpci
snd-cmipci
2006-08-13
pere@hungry.com
epic100
2004-04-26
imurdock@progeny.com
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
parport_pc
2004-04-08
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
snd-ice1712
2004-04-08
imurdock@progeny.com
snd-ice1724
2004-04-08
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
8250_pci
8250_pci
8250_pci
parport_pc
8250_pci
8139too
airo
airo
2004-04-26
imurdock@progeny.com
airo
2004-04-26
imurdock@progeny.com
airo
2004-04-26
imurdock@progeny.com
airo
2004-04-26
imurdock@progeny.com
hostap_pci
airo
parport_pc
2004-04-08
imurdock@progeny.com
8250_pci
parport_serial
2004-04-08
imurdock@progeny.com
8250_pci
parport_serial
2004-04-08
imurdock@progeny.com
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
8250_pci
parport_pc
2004-04-08
imurdock@progeny.com
tg3
tg3
tg3
2004-04-08
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
2006-10-12
pere@hungry.com
bnx2
bnx2
bnx2
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
tg3
2004-12-14
licquia@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
tg3
tg3
tg3
tg3
tg3
2004-11-19
imurdock@progeny.com
tg3
tg3
tg3
tg3
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
bnx2
bnx2
bnx2
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
tg3
tg3
tg3
tg3
b44
tg3
2004-04-26
imurdock@progeny.com
tg3
2004-04-26
imurdock@progeny.com
b43-fwcutter
2009-12-19
pere@hungry.com
b43-fwcutter
2010-12-21
pere@hungry.com
b44
2004-04-26
imurdock@progeny.com
b44
bcm5820
2004-04-26
imurdock@progeny.com
bcm5820
8139too
8139too
tulip
tulip
cx8800
cx88-blackbird
parport_pc
2004-04-08
imurdock@progeny.com
pcips2
pcips2
8139too
2004-04-26
imurdock@progeny.com
fealnx
fealnx
fealnx
8250_pci
yenta_socket
yenta_socket
yenta_socket
yenta_socket
yenta_socket
yenta_socket
yenta_socket
yenta_socket
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
com20020-pci
parport_pc
2004-04-08
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
XFree86
vmware
XFree86
vmware
ib_mthca
ib_mthca
ib_mthca
ib_mthca
ib_mthca
orinoco_plx
pdc_adma
farsync
farsync
farsync
farsync
farsync
farsync
tulip
orinoco_plx
hostap_pci
ath_pci
ath_pci
ath_pci
ath_pci
orinoco_plx
orinoco_plx
orinoco_plx
r8169
orinoco_plx
sata_vsc
2004-08-31
imurdock@progeny.com
sk98lin
tulip
tulip
tg3
tg3
tg3
tg3
8139too
tulip
net2280
s2io
s2io
rt2x00-source
2007-08-06
pere@hungry.com
rt2x00-source
2007-08-06
pere@hungry.com
rt2x00-source
2007-08-06
pere@hungry.com
rt2x00-source
2007-08-06
pere@hungry.com
rt2x00-source
2007-08-06
pere@hungry.com
ib_mthca
ib_mthca
ib_mthca
sisfb
XFree86
sis
2006-10-11
pere@hungry.com
sisfb
XFree86
sis
2006-10-11
pere@hungry.com
eata
2004-04-26
imurdock@progeny.com
dc3x5
tmscsim
2004-04-26
imurdock@progeny.com
trm290
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XFree86
glint
XF86_SVGA
XF86_SVGA
XFree86
vga
snd-als4000
2004-04-08
imurdock@progeny.com
8139too
2004-04-26
imurdock@progeny.com
parport_pc
2004-04-08
imurdock@progeny.com
rcpci
2004-04-26
imurdock@progeny.com
ne2k-pci
2004-04-26
imurdock@progeny.com
radio-maxiradio
XFree86
apm
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
vesa
XFree86
s3virge
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3virge
XF86_S3
2004-08-17
imurdock@progeny.com
XF86_S3
XF86_S3
XF86_S3
XF86_S3
XF86_S3
XF86_S3
XF86_S3
XF86_S3
XF86_S3
XF86_S3
XF86_S3
XF86_S3
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
vesa
XF86_S3
2006-08-13
pere@hungry.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3virge
XFree86
s3virge
XF86_S3
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3
XF86_S3
2004-09-02
imurdock@progeny.com
XFree86
s3virge
XFree86
s3virge
XFree86
s3virge
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
s3virge
XFree86
s3virge
XFree86
s3virge
XFree86
s3virge
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
XFree86
savage
savagefb
XFree86
savage
XFree86
savage
XFree86
vesa
sonicvibes
snd-sonicvibes
2006-08-13
pere@hungry.com
8250_pci
8250_pci
paep
tulip
2004-04-26
imurdock@progeny.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
gdth
2004-04-26
imurdock@progeny.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
e1000
2006-12-27
pere@hungry.com
e1000
2006-12-27
pere@hungry.com
e100
e1000
2006-12-27
pere@hungry.com
e1000
2006-12-27
pere@hungry.com
e1000
e1000
e1000
e1000
2004-04-26
imurdock@progeny.com
e1000
e1000
2004-05-13
licquia@progeny.com
e1000
2004-05-13
licquia@progeny.com
e1000
2004-05-13
licquia@progeny.com
e1000
2004-05-13
licquia@progeny.com
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
2004-04-26
imurdock@progeny.com
e1000
e1000
e1000
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
e100
e100
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
e100
e100
e100
e100
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
e100
e100
e100
2004-04-26
imurdock@progeny.com
e100
e100
ipw2100
2004-08-31
imurdock@progeny.com
ipw2100
ixgb
e1000
e1000
e1000
e1000
e1000
e100
e100
e100
e100
e100
e100
e100
2004-04-26
imurdock@progeny.com
e1000
e1000
e1000
e100
2004-11-19
imurdock@progeny.com
e100
2004-11-19
imurdock@progeny.com
e100
2004-11-19
imurdock@progeny.com
e100
2004-11-19
imurdock@progeny.com
e100
2004-11-19
imurdock@progeny.com
e100
2004-11-19
imurdock@progeny.com
e100
2004-11-19
imurdock@progeny.com
e100
2004-11-19
imurdock@progeny.com
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e100
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
e1000
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
agpgart
2004-04-26
imurdock@progeny.com
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
paep
paep
e100
2004-04-26
imurdock@progeny.com
i82092
2004-04-08
imurdock@progeny.com
i82092
2004-08-31
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
piix
piix
2004-11-19
imurdock@progeny.com
piix
2004-11-19
imurdock@progeny.com
paep
megaraid2
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
megaraid
megaraid_mbox
2006-08-16
pere@hungry.com
agpgart
intel-agp
intel-agp
ixgb
i810-tco
2006-08-14
pere@hungry.com
piix
2004-11-19
imurdock@progeny.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i2c-i801
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
snd-intel8x0m
i810_rng
2006-08-14
pere@hungry.com
i810-tco
2006-08-14
pere@hungry.com
piix
2004-11-19
imurdock@progeny.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i2c-i801
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
snd-intel8x0m
i810_rng
2006-08-14
pere@hungry.com
i810_rng
2006-08-14
pere@hungry.com
i810-tco
2004-06-09
licquia@progeny.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i2c-i801
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
snd-intel8x0m
i810_rng
2006-08-14
pere@hungry.com
e100
2004-04-26
imurdock@progeny.com
piix
2004-11-19
imurdock@progeny.com
piix
2004-11-19
imurdock@progeny.com
i810-tco
2004-05-12
licquia@progeny.com
i810_rng
2006-08-14
pere@hungry.com
i810-tco
2004-05-12
licquia@progeny.com
e100
piix
2004-11-19
imurdock@progeny.com
e100
i810_rng
2006-08-14
pere@hungry.com
ich2rom
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i2c-i801
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
snd-intel8x0m
2004-11-19
imurdock@progeny.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
piix
2004-11-19
imurdock@progeny.com
piix
2004-11-19
imurdock@progeny.com
i810-tco
2004-05-12
licquia@progeny.com
i810-tco
2004-05-12
licquia@progeny.com
piix
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i2c-i801
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
snd-intel8x0m
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
piix
2004-11-19
imurdock@progeny.com
piix
2004-11-19
imurdock@progeny.com
i8xx_tco
ehci-hcd
i810-tco
2004-05-12
licquia@progeny.com
piix
2006-10-12
pere@hungry.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i2c-i801
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
snd-intel8x0m
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
piix
2004-11-19
imurdock@progeny.com
ehci-hcd
2004-08-31
imurdock@progeny.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
ata_piix
2004-11-19
imurdock@progeny.com
intel-agp
intel-agp
agpgart
agpgart
agpgart
agpgart
intel-agp
intel-agp
intel-agp
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
agpgart
intel-agp
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
intel-agp
agpgart
intel-agp
XFree86
i810
2006-08-18
pere@hungry.com
XFree86
intel
2007-08-07
pere@hungry.com
XFree86
i810
2006-10-11
pere@hungry.com
XFree86
intel
2007-08-07
pere@hungry.com
agpgart
intel-agp
XFree86
i810
2006-08-12
pere@hungry.com
XFree86
intel
2007-08-07
pere@hungry.com
915resolution
i810switch
2007-09-20
pere@hungry.com
i8xx_tco
piix
2004-11-19
imurdock@progeny.com
piix
2006-08-14
pere@hungry.com
i2c-i801
snd-intel8x0
i6300esb
ehci-hcd
2004-08-31
imurdock@progeny.com
piix
2004-11-19
imurdock@progeny.com
i8xx_tco
i8xx_tco
i8xx_tco
ata_piix
2004-11-19
imurdock@progeny.com
ata_piix
2004-11-19
imurdock@progeny.com
ahci
ata_piix
2006-12-28
pere@hungry.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
ehci-hcd
2006-08-12
pere@hungry.com
snd-hda-intel
i2c-i801
snd-intel8x0m
snd-intel8x0
piix
ata_piix
ahci
ahci
ahci
snd-intel8x0
snd-hda-intel
i2c-i801
piix
agpgart
intel-agp
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
915resolution
2006-08-18
pere@hungry.com
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
agpgart
intel-agp
XFree86
i810
2006-08-14
pere@hungry.com
XFree86
intel
2007-08-07
pere@hungry.com
2006-10-11
pere@hungry.com
i8xx_tco
2006-08-14
pere@hungry.com
ata_piix
2006-08-13
pere@hungry.com
ahci
2006-08-13
pere@hungry.com
ahci
ata_piix
2006-08-13
pere@hungry.com
ahci
ahci
snd-hda-intel
2006-08-14
pere@hungry.com
i2c-i801
2006-08-13
pere@hungry.com
e100
2006-08-12
pere@hungry.com
snd-intel8x0m
snd-intel8x0
piix
2006-08-13
pere@hungry.com
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
XFree86
intel
2007-08-07
pere@hungry.com
XFree86
intel
2007-08-07
pere@hungry.com
XFree86
intel
2007-08-07
pere@hungry.com
XFree86
intel
2007-08-07
pere@hungry.com
XFree86
intel
2008-06-25
pere@hungry.com
i2o_block
2004-04-26
imurdock@progeny.com
sata_vsc
2004-08-31
imurdock@progeny.com
intel-agp
agpgart
intel-agp
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
agpgart
intel-agp
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
i810switch
2010-06-25
pere@hungry.com
ipw2200
2006-08-13
pere@hungry.com
ipw3945-source
2010-05-01
pere@hungry.com
ipw2200
2006-08-13
pere@hungry.com
ipw2200
2006-08-12
pere@hungry.com
ipw3945-source
2010-05-01
pere@hungry.com
ipw3945-source
ipw3945d
2010-05-01
pere@hungry.com
e100
2004-04-26
imurdock@progeny.com
e100
2004-04-26
imurdock@progeny.com
pci
piix
2004-11-19
imurdock@progeny.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
piix
2004-11-19
imurdock@progeny.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i2c-piix4
agpgart
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
agpgart
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
agpgart
XFree86
i810
XFree86
intel
2007-08-07
pere@hungry.com
agpgart
agpgart
agpgart
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
snd-intel8x0m
piix
2004-11-19
imurdock@progeny.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
i2c-piix4
agpgart
piix
2004-04-26
imurdock@progeny.com
usb-uhci
uhci-hcd
2006-08-13
pere@hungry.com
XFree86
i740
i810_audio
snd-intel8x0
2006-08-13
pere@hungry.com
piix
i2o_block
2004-04-26
imurdock@progeny.com
i2o_block
2004-04-26
imurdock@progeny.com
i2o_block
2004-04-26
imurdock@progeny.com
i2o_block
2004-04-26
imurdock@progeny.com
umem
XFree86
i810
2005-08-13
pere@hungry.com
XFree86
intel
2007-08-07
pere@hungry.com
virtualbox-ose-guest-x11
2010-10-14
pere@hungry.com
ne2k-pci
ne2k-pci
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
starfire
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
aic7xxx
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
aic7xxx
aic7xxx
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
aic7xxx
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
aic7xxx
2004-04-26
imurdock@progeny.com
sata_mv
ips
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
aacraid
ipr
ipr
ipr
ipr
aacraid
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
2004-11-19
imurdock@progeny.com
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
aic79xx
parport_pc
parport_pc
2004-04-08
imurdock@progeny.com
parport_pc
parport_serial
parport_pc
parport_pc
hisax
2004-04-08
imurdock@progeny.com
hisax
snd-rme32
2004-04-08
imurdock@progeny.com
snd-rme32
2004-04-08
imurdock@progeny.com
snd-rme32
2004-04-08
imurdock@progeny.com
orinoco_plx
XFree86
ark
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
ark
XF86_SVGA
2004-09-02
imurdock@progeny.com
XFree86
ark
XF86_SVGA
2004-09-02
imurdock@progeny.com
XF86_SVGA
XFree86
vmware
discover-data-2.2013.01.11/pci-busclass-v1.xml 0000644 0000000 0000000 00000007251 11402435650 015316 0 ustar
discover-data-2.2013.01.11/linmod-device.xml 0000644 0000000 0000000 00000002213 11402435651 015113 0 ustar
cpqarrayd
2007-08-12
pere@hungry.com
hdapsd hdaps-utils
2007-08-11
pere@hungry.com
mpt-utils
2007-08-12
pere@hungry.com
discover-data-2.2013.01.11/usb-device.xml 0000644 0000000 0000000 00003662663 12073763254 014462 0 ustar
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
hplip hpijs-ppds
2006-09-03
pere@hungry.com
2005-01-30
licquia@progeny.com
gphoto2
2006-08-31
pere@hungry.com
sispmctl
2013-01-11
pere@hungry.com
sispmctl
2013-01-11
pere@hungry.com
sispmctl
2013-01-11
pere@hungry.com
sispmctl
2013-01-11
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
splix
2010-10-14
pere@hungry.com
gtkpod
2006-08-31
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
nqc
2012-01-09
pere@hungry.com
python-nxt nbc t2n
2012-01-09
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
thinkfinger-tools
2007-10-15
pere@hungry.com
gpsbabel gpsbabel-gui gpsman gpstrans mkgmap qlandkartegt qlandkartegt-garmin viking
2013-01-11
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
argyll
2010-05-31
pere@hungry.com
yubikey-personalization
2013-01-09
pere@hungry.com
pymissile
2013-01-09
pere@hungry.com
discover-data-2.2013.01.11/pcmcia-busclass.xml 0000644 0000000 0000000 00000000715 11402435650 015451 0 ustar
discover-data-2.2013.01.11/trim26lst 0000755 0000000 0000000 00000000237 11402435650 013451 0 ustar #! /usr/bin/awk -f
# $Progeny$
BEGIN {
FS = "\t";
}
/^[^\t]/ {
print $0;
}
/^\t/ && $3 !~ /(video)/ && $4 !~ /(unknown|ignore)/ {
print $0;
}
discover-data-2.2013.01.11/ata-vendor.xml 0000644 0000000 0000000 00000000164 11402435651 014437 0 ustar
discover-data-2.2013.01.11/discover-updater.pl 0000755 0000000 0000000 00000003620 11402435650 015474 0 ustar #! /usr/bin/perl
# Horrible hacky script in lead up to deadline. Please sort out!
# We don't use an XML parser as we want to minimize diffs. We rely on the
# textual structure of the discover.xml files. This is probably a bug, too,
# but not as big a bug as screwing with the entire file's format.
my %args;
my %mods;
my $name;
sub dev_attrs {
local $_=shift;
%args=();
while(s!(\w+)\=['"](.*?)["']!!) {
$args{$1}=$2;
}
}
sub make_name {
my $v=$args{'vendor'};
my $d=$args{'model'};
my $sv=$args{'subvendor'};
my $sd=$args{'subdevice'};
$sv='x' unless defined $sv;
$sd='x' unless defined $sd;
$name = "$v:$d:$sv:$sd";
}
sub short_tag {
my ($attrs)=@_;
dev_attrs($attrs);
make_name();
}
sub open_tag {
my ($attrs)=@_;
dev_attrs($attrs);
}
sub close_tag {
%args=();
}
# Read modules file
open(PCILST,"$ARGV[0]") || die "Cannot open $ARGV[0]";
while() {
/^(\S+)\s+0x([0-9a-fA-F]+)\s+0x([0-9a-fA-F]+)\s+0x([0-9a-fA-F]+)\s+0x([0-9a-fA-F]+)/;
my ($name,$v,$d,$sv,$sd)=($1,$2,$3,$4,$5);
$v =~ s/^0000//;
$d =~ s/^0000//;
$sv =~ s/^0000//;
$sd =~ s/^0000//;
$sv='x' if($sv eq "ffffffff");
$sd='x' if($sd eq "ffffffff");
# Avoid some entries we do not want. 'generic' seem to be some
# hardware independent driver, and i810-tco make the machine reboot
# after a minute.
next if ($name =~ m/^generic$|^i810-tco$/);
$mods{"$v:$d:$sv:$sd"}=$name;
}
close PCILST;
# Read discover config file
while() {
if(m!]*?)/>!) {
short_tag($1);
make_name();
if($mods{$name}) {
print STDERR "Device $name has module $mods{$name}\n";
s!/>!>!;
$_.=<<"EOF";
$mods{$name}
EOF
}
} elsif(m!!) {
open_tag($1);
} elsif(m!!) {
close_tag();
}
print;
}
discover-data-2.2013.01.11/usb-busclass.xml 0000644 0000000 0000000 00000001010 11402435650 014773 0 ustar
discover-data-2.2013.01.11/ata-device.xml 0000644 0000000 0000000 00000000251 11402435652 014377 0 ustar
discover-data-2.2013.01.11/xml-device-sort.xsl 0000644 0000000 0000000 00000001635 11402435650 015432 0 ustar
discover-data-2.2013.01.11/mkshorthwlist 0000755 0000000 0000000 00000000537 11402435650 014530 0 ustar #! /usr/bin/awk -f
# $Progeny$
BEGIN {
FS = "\t";
CURRENTVENDOR = "";
LASTVENDOR = "Nonexistent Vendor";
}
/^[^\t]/ {
CURRENTVENDOR = $0;
}
/^\t/ && $3 !~ /(sound|tvcard|video)/ && $4 !~ /(unknown|ignore)/ {
if (CURRENTVENDOR != LASTVENDOR) {
print CURRENTVENDOR;
}
print $0;
LASTVENDOR = CURRENTVENDOR;
}
discover-data-2.2013.01.11/pci-sparc.lst 0000644 0000000 0000000 00000000145 11402435651 014261 0 ustar 1282 Davicom Semiconductor, Inc.
12829102 ethernet tulip 21x4x DEC-Tulip compatible 10/100 Ethernet
discover-data-2.2013.01.11/merged_vendor_list.xls 0000644 0000000 0000000 00001047000 11402435651 016261 0 ustar ÐÏࡱá > þÿ % þÿÿÿ þÿÿÿ ! " # $ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ |'ÍI@ á °Á â \ p Robin Drake B °a À = œ ¯ ¼ = ð Z L,€%8 X@ " · Ú 1 È ÿ A r i a l 1 È ÿ A r i a l 1 È ÿ A r i a l 1 È ÿ A r i a l 1 È A r i a l 1 È $ A r i a l 1 ( ð ÿ¼ B o o k A n t i q u a 1 ( ð ÿ B o o k A n t i q u a "$"#,##0_);\("$"#,##0\)! "$"#,##0_);[Red]\("$"#,##0\)" "$"#,##0.00_);\("$"#,##0.00\)' " "$"#,##0.00_);[Red]\("$"#,##0.00\)7 * 2 _("$"* #,##0_);_("$"* \(#,##0\);_("$"* "-"_);_(@_). ) ) _(* #,##0_);_(* \(#,##0\);_(* "-"_);_(@_)? , : _("$"* #,##0.00_);_("$"* \(#,##0.00\);_("$"* "-"??_);_(@_)6 + 1 _(* #,##0.00_);_(* \(#,##0.00\);_(* "-"??_);_(@_) ¤ "Yes";"Yes";"No" ¥ "True";"True";"False" ¦ "On";"On";"Off"à õÿ À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à õÿ ô À à À à + õÿ ø À à ) õÿ ø À à , õÿ ø À à * õÿ ø À à ôÿ ô À à ôÿ ô À à õÿ ø À à 1 $ @ À à @ À à " 8a@ @ À à 1 , @ À à ( @ À à h @ À à 1 l @ À à À “ €ÿ“ €ÿ“ €ÿ“ €ÿ“ € ÿ“ €ÿ“ € ÿ“ €ÿ` … ò5 Sheet1Œ ® !
; z ; ÿ Á Á `i ü p" Z MemTech Technology MERIDATA Oy Meridata Finland Ltd METRUM MICROBTX MICROLIT MICROP
Micropolis MICROTEK Microtek Storage Corp Minitech Minolta MINSCRIB
Miniscribe MITSUMI MOSAID 110c 110d Znyx Advanced Systems 110e CPU Technology 110f Ross Technology 1110 Powerhouse Systems 1111 Santa Cruz Operation 1112 1113 1114 1115 3D Labs 1116 Data Translation 1117 1118 Berg Electronics 1119 ICP Vortex Computersysteme GmbH 111a 111b Teledyne Electronic Systems 111c 111d 111e Eldec 111f Precision Digital Images 1120 1121 Zilog 1122 1123 1124 Leutron Vision AG 1125 Eurocore 1126 Vigra 1127 FORE Systems Inc 1129 Firmworks 112a 112b Linotype - Hell AG 112c 112d Ravicad 112e 112f Pillar Data Systems PIONEER Pirus Pirus Networks PLASMON Plasmon Data PRAIRIE
PrairieTek PREPRESS PrePRESS Solutions PRESOFT PreSoft Architects PRESTON Preston Scientific PRIAM Priam PRIMAGFX Primagraphics Ltd PROCOM Procom Technology PTI QIC QLogic QUALSTAR Qualstar QUANTEL QUANTUM QUIX Quix Computerware AG RACALREC Racal Recorders RADSTONE R-BYTE RGI RHAPSODY RHS Racal-Heim Systems GmbH RICOH Ricoh RODIME Rodime RTI Reference Technology SAMSUNG SAN Sandial SANKYO Sankyo Seiki SANYO SCInc. SCREEN SDI SDS Solid Data Systems SEAGATE Seagate SEQUOIA StrmLgc SUMITOMO SUN SUNCORP 13e1 Silicom Multimedia Systems Inc 13e2 13e3 Nest Inc 13e4 Calculex Inc 13e5 Telesoft Design Ltd 13e6 Argosy Research Inc 13e7 13e8 13e9 13ea Dallas Semiconductor 13eb Hauppauge Computer Works Inc 13ec Zydacron Inc 13ed Raytheion E-Systems 13ee 13ef
Coppercom Inc 13f0 13f1 13f2 Ford Microelectronics Inc 13f3 13f4 Troika Design Inc 13f5 13f6 C-Media Electronics Inc 13f7 Wildfire Communications 13f8 Ad Lib Multimedia Inc 13f9 13fa Pentland Systems Ltd 13fb
Aydin Corp 13fc" Computer Peripherals International 13fd Micro Science Inc 13fe 13ff Silicon Spice Inc 1400 ARTX Inc 1401 CR-Systems A/S 1402 Meilhaus Electronic GmbH 1403 Ascor Inc 1404 Fundamental Software Inc 1405 Excalibur Systems Inc 1406 Oce' Printing Systems GmbH 1407 1408 1409 Timedia Technology Co Ltd 140a DSP Research Inc 140b Ramix Inc 140c Elmic Systems Inc 140d Matsushita Electric Works Ltd 140e Goepel Electronic GmbH 140f 1410 1411 1412 1413 Addonics 1414 1415 Oxford Semiconductor Ltd 1416 1417 Nakayo Telecommunications Inc Mythos Systems Inc Myricom Inc Mycom Inc NeoMagic NTT Electronics Technology Co Nvidia$ Nvidia / SGS Thomson (joint venture) Quickturn Design Systems Ratoc Systems Inc
Raycer Inc
ShareWave Inc SI Logic Ltd Tokyo Electronic Industry Co Ltd VisionTek Wyse Technology Taiwan Acqiris Adva Optical Networking AG AESP Inc AG Communications Aironet Wireless Communications
Algol Corp Altra Ambit Microsystem Corp Anam S&T Co Ltd
Ancot Corp Andor Technology Ltd Antal Electronic Aralion Inc Archtek Telecom Corp/ Atelier Informatiques et Electronique Etudes SA AudioCodes Inc2 AVM Audiovisuelles Mktg & Computer System GmbH Aware Inc Baltimore Banksoft Canada Ltd Bell Corp Biopac Systems Inc Canon Research Center France Cardio Control NV Carry Computer Eng Co Ltd Chameleon Systems Inc Chaplet System Inc Chryon Corp Cirtech (UK) Ltd Clevo / Kapok Computer
Combox Ltd Computex Co Ltd Coyote Technologies LLC Daikin Industries Ltd
Diatrend Corp Digital Audio Labs Inc
Dynarc Inc Echotek Corp Ennovate Networks Inc Evergreen Technologies Inc Featron Technologies Corp Flytech Technology Co Ltd Formosa Industrial Computing Forvus Research Inc Framedrive Corp Gesytec GmbH
Gigatape GmbH GN NetTest Telecom DIV 1526 1527 1528 ACKSYS 1529 152a 152b 152c 152d 152e 152f 1530 ACQIS Technology Inc 1531 1532 1533 1534 1535 1537 1538 1539 153a 153b 153c 153d 153e 153f 1540 1541 1542 1543 1544 1545 1546 IOI Technology Corp 1547 1548 1549 154a MAX Technologies Inc 154b 154c 154d 154e 154f 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 155a 155b 155c Cemax-Icon Inc 155d Mac System Co Ltd 155e LP Elektronik GmbH 155f Perle Systems Ltd 1560 1561 Viewgraphics Inc 1562 Symbol Technologies 1563 1564% Yamakatsu Electronics Industry Co Ltd 1565 1566 Ardent Technologies Inc 1567 Jungsoft 1568 DDK Electronics Inc 1569 156a
Avtec Systems 156b 156c Vidac Electronics GmbH 156d Alpha-Top Corp 156e Alfa Inc 156f! M-Systems Flash Disk Pioneers Ltd 1570 1571 Contemporary Controls 1572 Otis Elevator Company 1573 Lattice - Vantis 1574 Fairchild Semiconductor 1575# Voltaire Advanced Data Security Ltd 1576 Viewcast COM 1578 HITT 1579 Dual Technology Corp 157a 157b Star Multimedia Corp 157c
Eurosoft (UK) 157d Gemflex Networks 157e Transition Networks 157f PX Instruments Technology Ltd 1580 Primex Aerospace Co 1581 SEH Computertechnik GmbH 1582
Cytec Corp 1583 Inet Technologies Inc 1584 Uniwill Computer Corp 1585 Logitron 1586 Lancast Inc 1587 Konica Corp 1588 Solidum Systems Corp 1589 Atlantek Microsystems Pty Ltd 158a Digalog Systems Inc 158b Allied Data Technologies 158c 158d Point Multimedia Systems 158e Lara Technology Inc 158f Ditect Coop 1590 1591 ARN 1592
Syba Tech Ltd 1593 Bops Inc 1594 Netgame Ltd 1595 Diva Systems Corp 1596 Folsom Research Inc 1597 Memec Design Services 1598 1599 Delta Electronics Inc 159a General Instrument 159b Faraday Technology Corp 159c Stratus Computer Systems 159d" Ningbo Harrison Electronics Co Ltd 159e A-Max Technology Co Ltd 159f Galea Network Security 15a0 Compumaster SRL 15a1 Geocast Network Systems 15a2 Catalyst Enterprises Inc 15a3 Italtel 15a4 X-Net OY 15a5 Toyota Macs Inc 15a6$ Sunlight Ultrasound Technologies Ltd 15a7 SSE Telecom Inc 15a8+ Shanghai Communications Technologies Center 15aa Moreton Bay 15ab Bluesteel Networks Inc 15ac North Atlantic Instruments 15ad
VMWare Inc 15ae Amersham Pharmacia Biotech 15b0 Zoltrix International Ltd 15b1 Source Technology Inc 15b2 Mosaid Technologies Inc 15b3 Mellanox Technology 15b4 15b5
Cimetrics Inc 15b6 Texas Memory Systems Inc 15b7 15b8 ADDI-DATA GmbH 15b9 Maestro Digital Communications 15ba Impacct Technology Corp 15bb Portwell Inc 15bc Agilent Technologies 15bd DFI Inc 15be Sola Electronics 15bf High Tech Computer Corp (HTC) 15c0 BVM Ltd 15c1 Quantel 15c2 Newer Technology Inc 15c3 Taiwan Mycomp Co Ltd 15c4 EVSX Inc 15c5 Procomp Informatics Ltd 15c6 Technical University of Budapest 15c7! Tateyama Dystem Laboratory Co Ltd 15c8 Penta Media Co Ltd 15c9 Serome Technology Inc 15ca
Bitboys OY 15cb AG Electronics Ltd 15cc Hotrail Inc 15cd Dreamtech Co Ltd 15ce
Genrad Inc 15cf
Hilscher GmbH 15d1 Infineon Technologies AG 15d2&