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