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