1 <?xml version='
1.0' encoding='UTF-
8'
?>
6 The contents of this file are subject to the terms of the
7 Common Development and Distribution License (the "License").
8 You may not use this file except in compliance with the License.
10 You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
11 or http://www.opensolaris.org/os/licensing.
12 See the License for the specific language governing permissions
13 and limitations under the License.
15 When distributing Covered Code, include this CDDL HEADER in each
16 file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17 If applicable, add the following below this CDDL HEADER, with the
18 fields enclosed by brackets "[]" replaced with your own identifying
19 information: Portions Copyright [yyyy] [name of copyright owner]
23 Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 Use is subject to license terms.
26 ident "%Z%%M% %I% %E% SMI"
28 DO NOT EDIT THIS FILE.
34 Defines a device (or set of devices) to be exported into the zone.
38 match Pattern to match under /dev. Follows fnmatch(3c) rules.
39 The following replacements are performed:
42 name Name of device in non-global zone. This is optional; the
43 default is the same name as the global zone.
45 arch Identifies devices only available for certain architectures.
46 Can be "sparc" or "i386".
48 ip-type Optional, identifies devices only available for certain IP
49 types. Can be "shared" or "exclusive". If it's not specified,
50 the default value "all" will be used, which means it's
51 available regardless the IP type.
53 For example, the following entry:
54 <device match="brand/windows/foo" name="bar" arch="sparc" />
55 would result in mapping the following global zone device:
56 /dev/brand/windows/foo
57 into the zone (disregarding its IP type) as:
59 but the mapping would only exist on sparc machines.
62 <!ELEMENT device EMPTY
>
64 <!ATTLIST device match CDATA #REQUIRED
66 arch ( sparc | i386 )
"all"
67 ip-type ( shared | exclusive )
"all" >
72 Defines a symlink to be created under /dev.
80 <!ELEMENT symlink EMPTY
>
82 <!ATTLIST symlink source CDATA #REQUIRED
83 target CDATA #REQUIRED
>
88 Describes a filesystem that must be mounted before the zone is booted.
89 This mount is performed by a thread executing in the the context of
94 special The special device as used by the mount command.
95 This path is relative to the global zone.
96 The following replacements are performed:
99 directory The directory where it will be mounted.
100 This path is relative to the non-global zone.
102 type The filesystem type
104 <!ELEMENT global_mount EMPTY
>
106 <!ATTLIST global_mount special CDATA #REQUIRED
107 directory CDATA #REQUIRED
109 type CDATA #REQUIRED
>
114 Describes a filesystem that must be mounted before the zone is booted.
115 This mount is performed by a thread executing in the the context of
120 special The special device as used by the mount command
121 This path is relative to the non-global zone.
123 directory The directory where it will be mounted.
124 This path is relative to the non-global zone.
126 type The filesystem type
128 <!ELEMENT mount EMPTY
>
130 <!ATTLIST mount special CDATA #REQUIRED
131 directory CDATA #REQUIRED
133 type CDATA #REQUIRED
>
138 The toplevel container for a virtual platform configuration. The virtual
139 platform describes the basic elements to bring up the necessary services
140 (filesystems, devices, etc) to boot the zone.
144 name The name of the brand. This must match the name of the
145 directory in which this file is stored, as well as the name
146 of the brand that refers to it.
147 allow-exclusive-ip Whether the zones of this brand can have their
148 own exclusive IP stack. It is a boolean value.
150 <!ELEMENT platform (device | global_mount | mount | symlink)*
>
152 <!ATTLIST platform name CDATA #REQUIRED
153 allow-exclusive-ip (true | false) #REQUIRED
>