xref: /illumos-gate/usr/src/cmd/hal/fdi/preprobe/10osvendor/20-printers.fdi (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
4  Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
5  Use is subject to license terms.
6
7  Licensed under the Academic Free License version 2.1
8
9  ident	"%Z%%M%	%I%	%E% SMI"
10-->
11
12<deviceinfo version="0.2">
13
14  <!-- probe network attached printers for information -->
15  <device>
16    <match key="network_device.address" exists="true">
17      <match key="info.capabilities" contains="printer">
18        <append key="info.callouts.add" type="strlist">hald-probe-network-printer</append>
19      </match>
20    </match>
21  </device>
22
23  <!-- probe USB printers for information -->
24  <device>
25    <match key="info.solaris.driver" equals="usbprn">
26      <append key="info.callouts.add" type="strlist">hald-probe-printer</append>
27    </match>
28  </device>
29
30  <!-- probe ECPP parallel ports for printer information -->
31  <device>
32    <match key="info.solaris.driver" contains="ecpp">
33      <append key="info.callouts.add" type="strlist">hald-probe-printer</append>
34    </match>
35  </device>
36
37</deviceinfo>
38
39