1*0Sstevel@tonic-gate<?xml version='1.0' encoding='UTF-8' ?> 2*0Sstevel@tonic-gate 3*0Sstevel@tonic-gate<!-- 4*0Sstevel@tonic-gate Copyright 2005 Sun Microsystems, Inc. All rights reserved. 5*0Sstevel@tonic-gate Use is subject to license terms. 6*0Sstevel@tonic-gate 7*0Sstevel@tonic-gate CDDL HEADER START 8*0Sstevel@tonic-gate 9*0Sstevel@tonic-gate The contents of this file are subject to the terms of the 10*0Sstevel@tonic-gate Common Development and Distribution License, Version 1.0 only 11*0Sstevel@tonic-gate (the "License"). You may not use this file except in compliance 12*0Sstevel@tonic-gate with the License. 13*0Sstevel@tonic-gate 14*0Sstevel@tonic-gate You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15*0Sstevel@tonic-gate or http://www.opensolaris.org/os/licensing. 16*0Sstevel@tonic-gate See the License for the specific language governing permissions 17*0Sstevel@tonic-gate and limitations under the License. 18*0Sstevel@tonic-gate 19*0Sstevel@tonic-gate When distributing Covered Code, include this CDDL HEADER in each 20*0Sstevel@tonic-gate file and include the License file at usr/src/OPENSOLARIS.LICENSE. 21*0Sstevel@tonic-gate If applicable, add the following below this CDDL HEADER, with the 22*0Sstevel@tonic-gate fields enclosed by brackets "[]" replaced with your own identifying 23*0Sstevel@tonic-gate information: Portions Copyright [yyyy] [name of copyright owner] 24*0Sstevel@tonic-gate 25*0Sstevel@tonic-gate CDDL HEADER END 26*0Sstevel@tonic-gate 27*0Sstevel@tonic-gate ident "%Z%%M% %I% %E% SMI" 28*0Sstevel@tonic-gate--> 29*0Sstevel@tonic-gate 30*0Sstevel@tonic-gate<!--Entity Definitions--> 31*0Sstevel@tonic-gate 32*0Sstevel@tonic-gate<!ENTITY % dynamic_doc "INCLUDE"> 33*0Sstevel@tonic-gate 34*0Sstevel@tonic-gate<!ENTITY % static_doc "IGNORE"> 35*0Sstevel@tonic-gate 36*0Sstevel@tonic-gate<![ %dynamic_doc; [ 37*0Sstevel@tonic-gate<!ENTITY % core "comment CDATA #IMPLIED 38*0Sstevel@tonic-gate ref_id ID #REQUIRED"> 39*0Sstevel@tonic-gate]]> 40*0Sstevel@tonic-gate 41*0Sstevel@tonic-gate<![ %static_doc; [ 42*0Sstevel@tonic-gate<!ENTITY % core "comment CDATA #IMPLIED 43*0Sstevel@tonic-gate ref_id ID #REQUIRED"> 44*0Sstevel@tonic-gate]]> 45*0Sstevel@tonic-gate 46*0Sstevel@tonic-gate<!ENTITY % min_max "min CDATA #REQUIRED 47*0Sstevel@tonic-gate max CDATA #REQUIRED"> 48*0Sstevel@tonic-gate 49*0Sstevel@tonic-gate<!--Element Definitions--> 50*0Sstevel@tonic-gate 51*0Sstevel@tonic-gate<!-- res_comp describes a component resource, this may contain components --> 52*0Sstevel@tonic-gate<!ELEMENT res_comp (comp | property)*> 53*0Sstevel@tonic-gate 54*0Sstevel@tonic-gate<!ATTLIST res_comp %core; 55*0Sstevel@tonic-gate %min_max; 56*0Sstevel@tonic-gate name CDATA #REQUIRED 57*0Sstevel@tonic-gate default (true | false) 'false' 58*0Sstevel@tonic-gate units CDATA #REQUIRED 59*0Sstevel@tonic-gate sys_id CDATA #REQUIRED 60*0Sstevel@tonic-gate type CDATA #REQUIRED 61*0Sstevel@tonic-gate a-dtype NMTOKENS 'min uint 62*0Sstevel@tonic-gate max uint 63*0Sstevel@tonic-gate default boolean 64*0Sstevel@tonic-gate units string 65*0Sstevel@tonic-gate sys_id int 66*0Sstevel@tonic-gate type string'> 67*0Sstevel@tonic-gate<!-- res_agg describes an aggregate resource --> 68*0Sstevel@tonic-gate<!ELEMENT res_agg (property)*> 69*0Sstevel@tonic-gate 70*0Sstevel@tonic-gate<!ATTLIST res_agg %core; 71*0Sstevel@tonic-gate name CDATA #REQUIRED 72*0Sstevel@tonic-gate default (true | false) 'false' 73*0Sstevel@tonic-gate units CDATA #REQUIRED 74*0Sstevel@tonic-gate sys_id CDATA #REQUIRED 75*0Sstevel@tonic-gate type CDATA #REQUIRED 76*0Sstevel@tonic-gate a-dtype NMTOKENS 'default boolean 77*0Sstevel@tonic-gate units string 78*0Sstevel@tonic-gate sys_id int 79*0Sstevel@tonic-gate type string'> 80*0Sstevel@tonic-gate 81*0Sstevel@tonic-gate<!-- comp describes a resource component --> 82*0Sstevel@tonic-gate<!ELEMENT comp (#PCDATA | property)*> 83*0Sstevel@tonic-gate 84*0Sstevel@tonic-gate<!ATTLIST comp %core; 85*0Sstevel@tonic-gate type CDATA #REQUIRED 86*0Sstevel@tonic-gate sys_id NMTOKEN #REQUIRED 87*0Sstevel@tonic-gate a-dtype NMTOKENS 'type string 88*0Sstevel@tonic-gate sys_id int'> 89*0Sstevel@tonic-gate 90*0Sstevel@tonic-gate<!-- pool describes a resource pool --> 91*0Sstevel@tonic-gate<!ELEMENT pool (#PCDATA | property)*> 92*0Sstevel@tonic-gate 93*0Sstevel@tonic-gate<!ATTLIST pool %core; 94*0Sstevel@tonic-gate name CDATA #REQUIRED 95*0Sstevel@tonic-gate importance CDATA #REQUIRED 96*0Sstevel@tonic-gate active (true | false) 'true' 97*0Sstevel@tonic-gate default (true | false) 'false' 98*0Sstevel@tonic-gate res IDREFS #REQUIRED 99*0Sstevel@tonic-gate a-dtype NMTOKENS 'importance int 100*0Sstevel@tonic-gate default boolean 101*0Sstevel@tonic-gate active boolean' > 102*0Sstevel@tonic-gate 103*0Sstevel@tonic-gate<!-- property describes a resource property --> 104*0Sstevel@tonic-gate<!ELEMENT property (#PCDATA)> 105*0Sstevel@tonic-gate 106*0Sstevel@tonic-gate<!ATTLIST property name NMTOKEN #REQUIRED 107*0Sstevel@tonic-gate type NMTOKEN #REQUIRED 108*0Sstevel@tonic-gate a-dtype NMTOKENS 'name string 109*0Sstevel@tonic-gate type string'> 110*0Sstevel@tonic-gate 111*0Sstevel@tonic-gate<!-- system describes a resource system --> 112*0Sstevel@tonic-gate<!ELEMENT system (property | res_comp | res_agg | pool)*> 113*0Sstevel@tonic-gate 114*0Sstevel@tonic-gate<!ATTLIST system %core; 115*0Sstevel@tonic-gate name CDATA #REQUIRED 116*0Sstevel@tonic-gate bind-default (true | false) 'false' 117*0Sstevel@tonic-gate version NMTOKEN #FIXED '1' 118*0Sstevel@tonic-gate a-dtype NMTOKENS 'bind-default boolean 119*0Sstevel@tonic-gate version int'> 120