1*06e46062Sjbeloro/*
2*06e46062Sjbeloro * CDDL HEADER START
3*06e46062Sjbeloro *
4*06e46062Sjbeloro * The contents of this file are subject to the terms of the
5*06e46062Sjbeloro * Common Development and Distribution License (the "License").
6*06e46062Sjbeloro * You may not use this file except in compliance with the License.
7*06e46062Sjbeloro *
8*06e46062Sjbeloro * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*06e46062Sjbeloro * or http://www.opensolaris.org/os/licensing.
10*06e46062Sjbeloro * See the License for the specific language governing permissions
11*06e46062Sjbeloro * and limitations under the License.
12*06e46062Sjbeloro *
13*06e46062Sjbeloro * When distributing Covered Code, include this CDDL HEADER in each
14*06e46062Sjbeloro * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*06e46062Sjbeloro * If applicable, add the following below this CDDL HEADER, with the
16*06e46062Sjbeloro * fields enclosed by brackets "[]" replaced with your own identifying
17*06e46062Sjbeloro * information: Portions Copyright [yyyy] [name of copyright owner]
18*06e46062Sjbeloro *
19*06e46062Sjbeloro * CDDL HEADER END
20*06e46062Sjbeloro */
21*06e46062Sjbeloro
22*06e46062Sjbeloro/*
23*06e46062Sjbeloro * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24*06e46062Sjbeloro * Use is subject to license terms.
25*06e46062Sjbeloro *
26*06e46062Sjbeloro * ident	"%Z%%M%	%I%	%E% SMI"
27*06e46062Sjbeloro *
28*06e46062Sjbeloro * This configuration file is parsed by PICL frudr plugin in response
29*06e46062Sjbeloro * to a PICL_FRU_ADDED event for HDD6
30*06e46062Sjbeloro *
31*06e46062Sjbeloro * supported prop types: void, int, uint, float, string
32*06e46062Sjbeloro * supported prop access_modes: r, w, rw
33*06e46062Sjbeloro *
34*06e46062Sjbeloro * VERSION <version_number>  -- supported version number is 1.0
35*06e46062Sjbeloro *
36*06e46062Sjbeloro * name:<namepath> --     gives the anchor node
37*06e46062Sjbeloro *      where <namepath> is <nodename>[@<bus-addr>][?<prop>=<val>]
38*06e46062Sjbeloro *
39*06e46062Sjbeloro * _class:<classpath> --   gives the anchor node
40*06e46062Sjbeloro *      where <classpath> is <classname>[@<bus-addr>][?<prop>=<val>]
41*06e46062Sjbeloro *
42*06e46062Sjbeloro * NODE <name> <class>
43*06e46062Sjbeloro *       {describes a subtree}
44*06e46062Sjbeloro * ENDNODE
45*06e46062Sjbeloro *
46*06e46062Sjbeloro * PROP <name> <type> <access_mode> [<size> <value>] -- per property
47*06e46062Sjbeloro *
48*06e46062Sjbeloro * REFPROP <name> <dstnode>
49*06e46062Sjbeloro *
50*06e46062Sjbeloro * REFNODE <name> <class> with <destnode> -- Associates a new node
51*06e46062Sjbeloro *       with <destnode> if exists
52*06e46062Sjbeloro *       where
53*06e46062Sjbeloro *             <name> is the nodename
54*06e46062Sjbeloro *             <class> is the picl class.
55*06e46062Sjbeloro *             <destnode> is name:<namepath> or _class:<classpath>
56*06e46062Sjbeloro *
57*06e46062Sjbeloro * If "name:" or "_class:" is not specified in the <path>,
58*06e46062Sjbeloro * the default is "name:"
59*06e46062Sjbeloro *
60*06e46062Sjbeloro */
61*06e46062Sjbeloro
62*06e46062Sjbeloro/*
63*06e46062Sjbeloro * define a macro to force a #ident line into the output stream
64*06e46062Sjbeloro * otherwise cpp removes it. Use #ifndef because of #included definitions.
65*06e46062Sjbeloro */
66*06e46062Sjbeloro#ifndef id
67*06e46062Sjbeloro#define	id(s)	#ident s
68*06e46062Sjbeloro#endif
69*06e46062Sjbeloroid("%Z%%M%	%I%	%E% SMI")
70*06e46062Sjbeloro
71*06e46062SjbeloroVERSION 1.1
72*06e46062SjbeloroVERBOSE 1
73*06e46062Sjbeloro
74*06e46062Sjbeloro#include "fru_HDD6_data.info"
75