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 * ident	"%Z%%M%	%I%	%E% SMI"
26*06e46062Sjbeloro *
27*06e46062Sjbeloro * This configuration file is parsed by PICL frudr plugin in response
28*06e46062Sjbeloro * to a PICL_FRU_ADDED event for HDD0
29*06e46062Sjbeloro *
30*06e46062Sjbeloro * supported prop types: void, int, uint, float, string
31*06e46062Sjbeloro * supported prop access_modes: r, w, rw
32*06e46062Sjbeloro *
33*06e46062Sjbeloro * VERSION <version_number>  -- supported version number is 1.0
34*06e46062Sjbeloro *
35*06e46062Sjbeloro * name:<namepath> --     gives the anchor node
36*06e46062Sjbeloro *      where <namepath> is <nodename>[@<bus-addr>][?<prop>=<val>]
37*06e46062Sjbeloro *
38*06e46062Sjbeloro * _class:<classpath> --   gives the anchor node
39*06e46062Sjbeloro *      where <classpath> is <classname>[@<bus-addr>][?<prop>=<val>]
40*06e46062Sjbeloro *
41*06e46062Sjbeloro * NODE <name> <class>
42*06e46062Sjbeloro *       {describes a subtree}
43*06e46062Sjbeloro * ENDNODE
44*06e46062Sjbeloro *
45*06e46062Sjbeloro * PROP <name> <type> <access_mode> [<size> <value>] -- per property
46*06e46062Sjbeloro *
47*06e46062Sjbeloro * REFPROP <name> <dstnode>
48*06e46062Sjbeloro *
49*06e46062Sjbeloro * REFNODE <name> <class> with <destnode> -- Associates a new node
50*06e46062Sjbeloro *       with <destnode> if exists
51*06e46062Sjbeloro *       where
52*06e46062Sjbeloro *             <name> is the nodename
53*06e46062Sjbeloro *             <class> is the picl class.
54*06e46062Sjbeloro *             <destnode> is name:<namepath> or _class:<classpath>
55*06e46062Sjbeloro *
56*06e46062Sjbeloro * If "name:" or "_class:" is not specified in the <path>,
57*06e46062Sjbeloro * the default is "name:"
58*06e46062Sjbeloro *
59*06e46062Sjbeloro */
60*06e46062Sjbeloro
61*06e46062Sjbeloro/*
62*06e46062Sjbeloro * define a macro to force a #ident line into the output stream
63*06e46062Sjbeloro * otherwise cpp removes it. Use #ifndef because of #included definitions.
64*06e46062Sjbeloro */
65*06e46062Sjbeloro#ifndef id
66*06e46062Sjbeloro#define	id(s)	#ident s
67*06e46062Sjbeloro#endif
68*06e46062Sjbeloroid("%Z%%M%	%I%	%E% SMI")
69*06e46062Sjbeloro
70*06e46062SjbeloroVERSION 1.1
71*06e46062SjbeloroVERBOSE 1
72*06e46062Sjbeloro
73*06e46062Sjbeloro#include "fru_HDD0_data.info"
74