usr/src/cmd/distro_const/text_install/text_mode_sparc.xml
author David Miner <dminer@opensolaris.org>
Tue, 17 Aug 2010 18:22:44 -0400
changeset 861 ccd399d2c6f7
parent 850 2baaed9dead8
child 872 8b098e92c2a9
permissions -rw-r--r--
6973927 Installation fails if Primary Administrator rights profile is removed from the system 4885 User created by installer gets unsafe profile "Primary Administrator" 9966 install unnecessarily propagates /lost+found from image to rpool 15454 pkg install failure in im_pop did not abort DC and AI 15507 SUNWcs and SUNWcsd can be removed from manifests 16295 install-finish runs update_boot_archive ICT twice for text and GUI installs 16645 Incorrect permissions on ict.py in build 144 can cause ict's to fail to run 16740 Special handling of SUNWcs and SUNWcsd can be removed from transfer module

<!--
    CDDL HEADER START
   
    The contents of this file are subject to the terms of the
    Common Development and Distribution License (the "License").
    You may not use this file except in compliance with the License.
   
    You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
    or http://www.opensolaris.org/os/licensing.
    See the License for the specific language governing permissions
    and limitations under the License.
   
    When distributing Covered Code, include this CDDL HEADER in each
    file and include the License file at usr/src/OPENSOLARIS.LICENSE.
    If applicable, add the following below this CDDL HEADER, with the
    fields enclosed by brackets "[]" replaced with your own identifying
    information: Portions Copyright [yyyy] [name of copyright owner]
   
    CDDL HEADER END
   
    Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.

    XML specification for building the limited language OpenSolaris
    Text Mode Installer iso and usb image
-->

<distribution name="OpenSolaris_Text_SPARC">
	<distro_constr_params>
		<!--
		     Where to build. This can be a zfs dataset or a mountpoint.
		     The area will be created if it doesn't exist. If the build_area
		     is not a zfs dataset or mountpoint, checkpointing will not
		     be enabled.
		-->
		<build_area>rpool/dc</build_area>
		<distro_constr_flags>
			<!--
			     Controls whether the DC should stop
			     if there is an error when the DC is running 
			-->
			<stop_on_error>true</stop_on_error>
			<!--
			     You can specify the step to resume the
			     build from here with the resume_from
			     attribute field of checkpoint_enable.
			     This value will be overridden by
			     the command line if the -r flag is used.
			     Valid values are step
			     numbers or name
			-->
			<checkpoint_enable>
				<!--
				     true implies Checkpointing is enabled
				-->
				true
			</checkpoint_enable>
		</distro_constr_flags>
		<output_image>
			<!--
			     List of finalizer scripts to be run. They are used
			     to customize the image and will be run in the
			     order listed. The name of the checkpoint to
			     be created when this script is run is required.
			     The checkpoint message is displayed when the
			     step is run and is optional.
			     There are 5 standard arguments that are passed to
			     every finalizer script (manifest socket, pkg_image path,
			     tmp dir, boot archive build area, media dir). You may also
			     specify additional arguments (arg6+) in the argslist.
			     This argslist is a whitespace-separated list of double
			     quoted strings.
			-->
			<finalizer>
				<script name="/usr/share/distro_const/im_pop.py">
					<checkpoint
						name="im-pop"
						message="Image area creation"/>
				</script>
				<script name="/usr/share/distro_const/pre_boot_archive_pkg_image_mod.py">
					<checkpoint
						name="im-mod"
						message="Image area modifications"/>
				</script>
				<script name="/usr/share/distro_const/text_install/tm_pre_boot_archive_pkg_image_mod">
					<checkpoint
						name="tm-im-mod"
						message="Text mode Image area Modifications"/>
				</script>
				<script name="/usr/share/distro_const/boot_archive_initialize.py">
					<checkpoint
						name="ba-init"
						message="Boot archive initialization"/>
				</script>
				<script name="/usr/share/distro_const/boot_archive_configure">
					<checkpoint
						name="ba-config"
						message="Boot archive configuration"/>
					<argslist>
						".textinstall"
					</argslist>
				</script>
				<script name="/usr/share/distro_const/plat_setup.py">
					<checkpoint
						name="plat-setup"
						message="Platform specific setup"/>
				</script>
				<script name="/usr/share/distro_const/boot_archive_archive.py">
					<checkpoint
						name="ba-arch"
						message="Boot archive archiving"/>
					<argslist>"sparc"</argslist>
				</script>
				<script name="/usr/share/distro_const/post_boot_archive_pkg_image_mod_custom">
					<checkpoint
						name="post-mod-custom"
						message="Post boot archive image area custom modification"/>
				</script>
				<script name="/usr/share/distro_const/post_boot_archive_pkg_image_mod">
					<checkpoint
						name="post-mod"
						message="Post boot archive image area modification"/>
					<argslist>
						"usr_zlib_compression=lzma"
					</argslist>
				</script>
				<script name="/usr/share/distro_const/gen_cd_content">
					<checkpoint
						name="gen-cd-cont"
						message="Generate CD image content list"/>
				</script>
				<script name="/usr/share/distro_const/create_iso">
					<checkpoint
						name="iso"
						message="ISO image creation"/>
				</script>
			</finalizer>
			<boot_archive>
				<!--
				     If/how to compress the boot archive. Valid
				     types are gzip and none
				-->
				<compression type="gzip" level="9"/>
				<!--
				    SMF service profiles to apply to the 
				    boot archive. If the "use_build_sys_file" 
				    attribute is set to true, the build
				    system's copy of the file is used.  If not 
				    specified, or "use_build_sys_file" is set 
				    to false, the image's copy of the file 
				    is used.

				    Service profiles will be applied to the 
				    root archive in the order listed.
				-->
				<smf_service_profile>
					<profile path="/etc/svc/profile/generic_limited_net.xml"
					         use_build_sys_file="false"/>
					<profile path="/var/svc/profile/generic_limited_net.xml"
					         use_build_sys_file="false"/>
					<profile path="/usr/share/distro_const/generic_live.xml"
					         use_build_sys_file="true"/>
					<profile path="/usr/share/distro_const/text_install/text_live.xml"
					         use_build_sys_file="true"/>
					<profile path="/etc/svc/profile/ns_files.xml"
					         use_build_sys_file="false"/>
					<profile path="/var/svc/profile/ns_files.xml"
					         use_build_sys_file="false"/>
				</smf_service_profile>
			</boot_archive>
		</output_image>
	</distro_constr_params>
	<img_params>
		<!--
		     The preferred authority to install packages into the
		     pkg_image area from.
		     The default url is: http://pkg.opensolaris.org/release
		     The default authname is opensolaris.org
		-->
		<pkg_repo_default_authority>
			<main
				url="http://pkg.opensolaris.org/release"
				authname="opensolaris.org"/>
			<!--
			     If you want to use one or more  mirrors that are
			     setup for the authority, specify the urls here.
			-->
			<!--
			     Uncomment before using
			<mirror url="" />
			-->
		</pkg_repo_default_authority>
		<!--
		     Any additional non-preferred authorities to pull packages
		     from should be specified here. Multiple additional
		     authorities may be specified.
		     If you want to use one or more  mirrors that are
		     setup for the authority, specify the urls here.
		-->
		<!--
		     Uncomment before using.
		<pkg_repo_addl_authority>
			<main
				url=""
				authname=""/>
			<mirror url="" />
		</pkg_repo_addl_authority>
		-->
		<!--
		     The default preferred authority to be used by the system
		     after it has been installed.
		     The default url is: http://pkg.opensolaris.org/release
		     The default authname is opensolaris.org
		     If you want to use one or more  mirrors that are
		     setup for the authority, specify the urls here.
		-->
		<post_install_repo_default_authority>
			<main
				url="http://pkg.opensolaris.org/release"
				authname="opensolaris.org"/>
			<!--
			     Uncomment before using.
			<mirror url="" />
			-->
		</post_install_repo_default_authority>
		<!--
		     Any additional non-preferred authorities to use after the
		     system has been installed. Multiple additional authorities
		     may be specified.
		     If you want to use one or more  mirrors that are
		     setup for the authority, specify the urls here.
		-->
		<!--
		    Uncomment before using.
		<post_install_repo_addl_authority>
			<main
				url=""
				authname=""/>
			<mirror url="" />
		</post_install_repo_addl_authority>
		-->
		<!--
		     list of packages used to form the installed image
		-->
		<packages>
			<!--
			    By default the latest build available, in the
			    specified IPS repository, is installed.
			    If another build is required, the build number has
			    to be appended to the 'entire' package in following
			    form:

			    <pkg name="pkg:/[email protected]#/>
			-->
			<pkg name="pkg:/entire"/>
			<pkg name="pkg:/SUNWcs"/>
			<pkg name="pkg:/SUNWcsd"/>
			<pkg name="pkg:/archiver/gnu-tar"/>
			<pkg name="pkg:/compress/bzip2"/>
			<pkg name="pkg:/compress/gzip"/>
			<pkg name="pkg:/compress/p7zip"/>
			<pkg name="pkg:/compress/unzip"/>
			<pkg name="pkg:/compress/zip"/>
			<pkg name="pkg:/data/iso-codes"/>
			<pkg name="pkg:/database/sqlite-3"/>
			<pkg name="pkg:/developer/apptrace/platform"/>
			<pkg name="pkg:/developer/build/make"/>
			<pkg name="pkg:/developer/debug/mdb"/>
			<pkg name="pkg:/developer/debug/mdb/module/module-fibre-channel"/>
			<pkg name="pkg:/developer/debug/mdb/module/module-qlc"/>
			<pkg name="pkg:/developer/dtrace"/>
			<pkg name="pkg:/developer/dtrace/toolkit"/>
			<pkg name="pkg:/developer/linker"/>
			<pkg name="pkg:/developer/macro/cpp"/>
			<pkg name="pkg:/developer/object-file"/>
			<pkg name="pkg:/diagnostic/cpu-counters"/>
			<pkg name="pkg:/diagnostic/ddu/text"/>
			<pkg name="pkg:/diagnostic/powertop"/>
			<pkg name="pkg:/diagnostic/scanpci"/>
			<pkg name="pkg:/diagnostic/top"/>
			<pkg name="pkg:/driver/cpu/us"/>
			<pkg name="pkg:/driver/crypto/n2cp"/>
			<pkg name="pkg:/driver/crypto/tpm"/>
			<pkg name="pkg:/driver/firewire"/>
			<pkg name="pkg:/driver/graphics/ast"/>
			<pkg name="pkg:/driver/graphics/dcam1394"/>
			<pkg name="pkg:/driver/graphics/dcam1394/devfsadm-dcam1394"/>
			<pkg name="pkg:/driver/graphics/efb"/>
			<pkg name="pkg:/driver/graphics/kfb"/>
			<pkg name="pkg:/driver/network/afe"/>
			<pkg name="pkg:/driver/network/bge"/>
			<pkg name="pkg:/driver/network/bpf"/>
			<pkg name="pkg:/driver/network/ce"/>
			<pkg name="pkg:/driver/network/chxge"/>
			<pkg name="pkg:/driver/network/dmfe"/>
			<pkg name="pkg:/driver/network/e1000g"/>
			<pkg name="pkg:/driver/network/emlxs"/>
			<pkg name="pkg:/driver/network/eri"/>
			<pkg name="pkg:/driver/network/fcip"/>
			<pkg name="pkg:/driver/network/fcp"/>
			<pkg name="pkg:/driver/network/fcsm"/>
			<pkg name="pkg:/driver/network/fp"/>
			<pkg name="pkg:/driver/network/ge"/>
			<pkg name="pkg:/driver/network/hme"/>
			<pkg name="pkg:/driver/network/hxge"/>
			<pkg name="pkg:/driver/network/ib"/>
			<pkg name="pkg:/driver/network/ibd"/>
			<pkg name="pkg:/driver/network/igb"/>
			<pkg name="pkg:/driver/network/ixgb"/>
			<pkg name="pkg:/driver/network/ixgbe"/>
			<pkg name="pkg:/driver/network/mxfe"/>
			<pkg name="pkg:/driver/network/myri10ge"/>
			<pkg name="pkg:/driver/network/niumx"/>
			<pkg name="pkg:/driver/network/nxge"/>
			<pkg name="pkg:/driver/network/qfe"/>
			<pkg name="pkg:/driver/network/qlc"/>
			<pkg name="pkg:/driver/network/rge"/>
			<pkg name="pkg:/driver/network/rpcib"/>
			<pkg name="pkg:/driver/network/sdp"/>
			<pkg name="pkg:/driver/network/sdpib"/>
			<pkg name="pkg:/driver/network/sfe"/>
			<pkg name="pkg:/driver/network/socal"/>
			<pkg name="pkg:/driver/network/tavor"/>
			<pkg name="pkg:/driver/network/vr"/>
			<pkg name="pkg:/driver/network/xge"/>
			<pkg name="pkg:/driver/network/yge"/>
			<pkg name="pkg:/driver/pcmcia"/>
			<pkg name="pkg:/driver/serial/pcser"/>
			<pkg name="pkg:/driver/serial/usbftdi"/>
			<pkg name="pkg:/driver/serial/usbsacm"/>
			<pkg name="pkg:/driver/serial/usbser_edge"/>
			<pkg name="pkg:/driver/serial/usbser"/>
			<pkg name="pkg:/driver/serial/usbsksp"/>
			<pkg name="pkg:/driver/serial/usbsksp/usbs49_fw"/>
			<pkg name="pkg:/driver/serial/usbsprl"/>
			<pkg name="pkg:/driver/sparc/platform"/>
			<pkg name="pkg:/driver/storage/aac"/>
			<pkg name="pkg:/driver/storage/fas/header-fas"/>
			<pkg name="pkg:/driver/storage/mpt_sas"/>
			<pkg name="pkg:/driver/storage/mr_sas"/>
			<pkg name="pkg:/driver/storage/pcata"/>
			<pkg name="pkg:/driver/storage/pmcs"/>
			<pkg name="pkg:/driver/storage/sbp2"/>
			<pkg name="pkg:/driver/storage/scsa1394"/>
			<pkg name="pkg:/driver/storage/sdcard"/>
			<pkg name="pkg:/driver/storage/ses"/>
			<pkg name="pkg:/driver/storage/sf"/>
			<pkg name="pkg:/driver/storage/smp"/>
			<pkg name="pkg:/driver/storage/ssd"/>
			<pkg name="pkg:/driver/usb"/>
			<pkg name="pkg:/driver/usb/ugen"/>
			<pkg name="pkg:/editor/nano"/>
			<pkg name="pkg:/editor/vim"/>
			<pkg name="pkg:/file/gnu-coreutils"/>
			<pkg name="pkg:/file/gnu-findutils"/>
			<pkg name="pkg:/image/library/libtiff"/>
			<pkg name="pkg:/install/beadm"/>
			<pkg name="pkg:/install/installadm"/>
			<pkg name="pkg:/library/aalib"/>
			<pkg name="pkg:/library/c++/sigcpp"/>
			<pkg name="pkg:/library/expat"/>
			<pkg name="pkg:/library/gmp"/>
			<pkg name="pkg:/library/gnutls"/>
			<pkg name="pkg:/library/idnkit"/>
			<pkg name="pkg:/library/libdaemon"/>
			<pkg name="pkg:/library/libffi"/>
			<pkg name="pkg:/library/libidn"/>
			<pkg name="pkg:/library/libtasn1"/>
			<pkg name="pkg:/library/libtecla"/>
			<pkg name="pkg:/library/libtool/libltdl"/>
			<pkg name="pkg:/library/libxml2"/>
			<pkg name="pkg:/library/libxslt"/>
			<pkg name="pkg:/library/ncurses"/>
			<pkg name="pkg:/library/nspr"/>
			<pkg name="pkg:/library/pcre"/>
			<pkg name="pkg:/library/perl-5/authen-pam"/>
			<pkg name="pkg:/library/perl-5/xml-parser"/>
			<pkg name="pkg:/library/popt"/>
			<pkg name="pkg:/library/print/cups-libs"/>
			<pkg name="pkg:/library/print/open-printing"/>
			<pkg name="pkg:/library/print/open-printing/ipp"/>
			<pkg name="pkg:/library/print/open-printing/lpd"/>
			<pkg name="pkg:/library/python-2/cherrypy"/>
			<pkg name="pkg:/library/python-2/lxml-24"/>
			<pkg name="pkg:/library/python-2/mako"/>
			<pkg name="pkg:/library/python-2/ply"/>
			<pkg name="pkg:/library/python-2/pycurl"/>
			<pkg name="pkg:/library/python-2/pyopenssl-24"/>
			<pkg name="pkg:/library/python-2/python-twisted-24"/>
			<pkg name="pkg:/library/python-2/python-xdg-24"/>
			<pkg name="pkg:/library/python-2/python-zope-interface-24"/>
			<pkg name="pkg:/library/python-2/pyyaml-24"/>
			<pkg name="pkg:/library/samba/libsmbclient"/>
			<pkg name="pkg:/library/security/libgpg-error"/>
			<pkg name="pkg:/library/security/openssl"/>
			<pkg name="pkg:/library/security/tcp-wrapper"/>
			<pkg name="pkg:/library/security/trousers"/>
			<pkg name="pkg:/library/zlib"/>
			<pkg name="pkg:/media/cdrtools"/>
			<pkg name="pkg:/naming/ldap"/>
			<pkg name="pkg:/network/bridging"/>
			<pkg name="pkg:/network/dns/bind"/>
			<pkg name="pkg:/network/ftp"/>
			<pkg name="pkg:/network/ipfilter"/>
			<pkg name="pkg:/network/iscsi/initiator"/>
			<pkg name="pkg:/network/rsync"/>
			<pkg name="pkg:/network/ssh"/>
			<pkg name="pkg:/network/ssh/ssh-key"/>
			<pkg name="pkg:/network/telnet"/>
			<pkg name="pkg:/package/pkg"/>
			<pkg name="pkg:/package/svr4"/>
			<pkg name="pkg:/print/cups"/>
			<pkg name="pkg:/print/lp"/>
			<pkg name="pkg:/print/lp/filter/a2ps"/>
			<pkg name="pkg:/print/lp/filter/foomatic-ppds"/>
			<pkg name="pkg:/print/lp/filter/foomatic-rip"/>
			<pkg name="pkg:/print/lp/filter/postscript-lp-filter"/>
			<pkg name="pkg:/print/lp/ipp/ipp-listener"/>
			<pkg name="pkg:/print/lp/ipp/libipp"/>
			<pkg name="pkg:/release/copyright"/>
			<pkg name="pkg:/release/name"/>
			<pkg name="pkg:/runtime/perl-584"/>
			<pkg name="pkg:/runtime/perl-584/extra"/>
			<pkg name="pkg:/runtime/perl-584/manual"/>
			<pkg name="pkg:/runtime/tcl-8"/>
			<pkg name="pkg:/runtime/tk-8"/>
			<pkg name="pkg:/security/bart"/>
			<pkg name="pkg:/security/sudo"/>
			<pkg name="pkg:/service/fault-management"/>
			<pkg name="pkg:/service/file-system/nfs"/>
			<pkg name="pkg:/service/hal"/>
			<pkg name="pkg:/service/key-management/sun-fire-15000"/>
			<pkg name="pkg:/service/management/sysidtool"/>
			<pkg name="pkg:/service/network/dns/bind"/>
			<pkg name="pkg:/service/network/dns/mdns"/>
			<pkg name="pkg:/service/network/ftp"/>
			<pkg name="pkg:/service/network/network-clients"/>
			<pkg name="pkg:/service/network/network-servers"/>
			<pkg name="pkg:/service/network/ntp"/>
			<pkg name="pkg:/service/network/smtp/sendmail"/>
			<pkg name="pkg:/service/network/ssh"/>
			<pkg name="pkg:/service/network/telnet"/>
			<pkg name="pkg:/service/network/tftp"/>
			<pkg name="pkg:/service/picl"/>
			<pkg name="pkg:/service/resource-pools"/>
			<pkg name="pkg:/service/resource-pools/poold"/>
			<pkg name="pkg:/service/security/kerberos-5"/>
			<pkg name="pkg:/service/storage/fibre-channel/fc-fabric"/>
			<pkg name="pkg:/service/storage/media-volume-manager"/>
			<pkg name="pkg:/service/storage/removable-media"/>
			<pkg name="pkg:/shell/bash"/>
			<pkg name="pkg:/shell/expect"/>
			<pkg name="pkg:/shell/tcsh"/>
			<pkg name="pkg:/shell/which"/>
			<pkg name="pkg:/shell/zsh"/>
			<pkg name="pkg:/storage/library/network-array"/>
			<pkg name="pkg:/storage/mpathadm"/>
			<pkg name="pkg:/storage/svm"/>
			<pkg name="pkg:/system/accounting/legacy"/>
			<pkg name="pkg:/system/boot/grub"/>
			<pkg name="pkg:/system/boot/wanboot"/>
			<pkg name="pkg:/system/data/hardware-registry"/>
			<pkg name="pkg:/system/data/keyboard/keytables"/>
			<pkg name="pkg:/system/data/terminfo"/>
			<pkg name="pkg:/system/domain-configuration/sparc-enterprise"/>
			<pkg name="pkg:/system/domain-service-processor-protocol/sparc-enterprise"/>
			<pkg name="pkg:/system/embedded-fcode-interpreter"/>
			<pkg name="pkg:/system/extended-system-utilities"/>
			<pkg name="pkg:/system/file-system/autofs"/>
			<pkg name="pkg:/system/file-system/nfs"/>
			<pkg name="pkg:/system/file-system/smb"/>
			<pkg name="pkg:/system/file-system/udfs"/>
			<pkg name="pkg:/system/file-system/zfs"/>
			<pkg name="pkg:/system/flash/fwflash"/>
			<pkg name="pkg:/system/floating-point-scrubber"/>
			<pkg name="pkg:/system/fru-id"/>
			<pkg name="pkg:/system/fru-id/platform"/>
			<pkg name="pkg:/system/graphics/fbconfig"/>
			<pkg name="pkg:/system/graphics/fbconfig/fbconfig-ast"/>
			<pkg name="pkg:/system/graphics/fbconfig/fbconfig-efb"/>
			<pkg name="pkg:/system/graphics/fbconfig/fbconfig-kfb"/>
			<pkg name="pkg:/system/install"/>
			<pkg name="pkg:/system/install/auto-install"/>
			<pkg name="pkg:/system/install/auto-install/auto-install-common"/>
			<pkg name="pkg:/system/install/locale"/>
			<pkg name="pkg:/system/install/media/internal"/>
			<pkg name="pkg:/system/install/tests"/>
			<pkg name="pkg:/system/install/text-install"/>
			<pkg name="pkg:/system/ipc"/>
			<pkg name="pkg:/system/ipmi/ipmitool"/>
			<pkg name="pkg:/system/kernel"/>
			<pkg name="pkg:/system/kernel/cpu-counters"/>
			<pkg name="pkg:/system/kernel/cpu/sun4v"/>
			<pkg name="pkg:/system/kernel/dtrace/providers"/>
			<pkg name="pkg:/system/kernel/dynamic-reconfiguration/sun-fire-15000"/>
			<pkg name="pkg:/system/kernel/dynamic-reconfiguration/sun-fire-880"/>
			<pkg name="pkg:/system/kernel/dynamic-reconfiguration/ultra-enterprise-10000"/>
			<pkg name="pkg:/system/kernel/inter-domain/ultra-enterprise-10000"/>
			<pkg name="pkg:/system/kernel/io-performance-counters"/>
			<pkg name="pkg:/system/kernel/platform"/>
			<pkg name="pkg:/system/kernel/platform/netra"/>
			<pkg name="pkg:/system/kernel/power"/>
			<pkg name="pkg:/system/kernel/suspend-resume"/>
			<pkg name="pkg:/system/kernel/ultra-wideband"/>
			<pkg name="pkg:/system/ldoms"/>
			<pkg name="pkg:/system/library"/>
			<pkg name="pkg:/system/library/c++/sunpro"/>
			<pkg name="pkg:/system/library/dbus"/>
			<pkg name="pkg:/system/library/iconv/utf-8"/>
			<pkg name="pkg:/system/library/iconv/xsh4/eastern-european"/>
			<pkg name="pkg:/system/library/install"/>
			<pkg name="pkg:/system/library/libdiskmgt"/>
			<pkg name="pkg:/system/library/libfcoe"/>
			<pkg name="pkg:/system/library/libpcap"/>
			<pkg name="pkg:/system/library/math"/>
			<pkg name="pkg:/system/library/math/header-math"/>
			<pkg name="pkg:/system/library/mozilla-nss"/>
			<pkg name="pkg:/system/library/platform"/>
			<pkg name="pkg:/system/library/processor"/>
			<pkg name="pkg:/system/library/security/libgcrypt"/>
			<pkg name="pkg:/system/library/security/libsasl"/>
			<pkg name="pkg:/system/library/storage/fibre-channel/hbaapi"/>
			<pkg name="pkg:/system/library/storage/fibre-channel/libsun_fc"/>
			<pkg name="pkg:/system/library/storage/ima"/>
			<pkg name="pkg:/system/library/storage/ima/header-ima"/>
			<pkg name="pkg:/system/library/storage/libmpapi"/>
			<pkg name="pkg:/system/library/storage/libmpscsi_vhci"/>
			<pkg name="pkg:/system/library/sysidtool"/>
			<pkg name="pkg:/system/library/usb/libusb"/>
			<pkg name="pkg:/system/library/usb/libusbugen"/>
			<pkg name="pkg:/system/locale"/>
			<pkg name="pkg:/system/locale/ar"/>
			<pkg name="pkg:/system/locale/be"/>
			<pkg name="pkg:/system/locale/bg"/>
			<pkg name="pkg:/system/locale/ca"/>
			<pkg name="pkg:/system/locale/cs"/>
			<pkg name="pkg:/system/locale/da"/>
			<pkg name="pkg:/system/locale/de_de"/>
			<pkg name="pkg:/system/locale/de"/>
			<pkg name="pkg:/system/locale/el"/>
			<pkg name="pkg:/system/locale/en_us"/>
			<pkg name="pkg:/system/locale/en"/>
			<pkg name="pkg:/system/locale/es_es"/>
			<pkg name="pkg:/system/locale/es"/>
			<pkg name="pkg:/system/locale/et_ee"/>
			<pkg name="pkg:/system/locale/fi"/>
			<pkg name="pkg:/system/locale/fr_fr"/>
			<pkg name="pkg:/system/locale/fr"/>
			<pkg name="pkg:/system/locale/he"/>
			<pkg name="pkg:/system/locale/hi"/>
			<pkg name="pkg:/system/locale/hr"/>
			<pkg name="pkg:/system/locale/hu"/>
			<pkg name="pkg:/system/locale/id"/>
			<pkg name="pkg:/system/locale/is"/>
			<pkg name="pkg:/system/locale/it"/>
			<pkg name="pkg:/system/locale/ja"/>
			<pkg name="pkg:/system/locale/ka"/>
			<pkg name="pkg:/system/locale/kk"/>
			<pkg name="pkg:/system/locale/ko"/>
			<pkg name="pkg:/system/locale/lt"/>
			<pkg name="pkg:/system/locale/lv"/>
			<pkg name="pkg:/system/locale/mk"/>
			<pkg name="pkg:/system/locale/ms"/>
			<pkg name="pkg:/system/locale/mt"/>
			<pkg name="pkg:/system/locale/nb"/>
			<pkg name="pkg:/system/locale/nl"/>
			<pkg name="pkg:/system/locale/nn"/>
			<pkg name="pkg:/system/locale/pl"/>
			<pkg name="pkg:/system/locale/pt_br"/>
			<pkg name="pkg:/system/locale/pt"/>
			<pkg name="pkg:/system/locale/ro"/>
			<pkg name="pkg:/system/locale/ru"/>
			<pkg name="pkg:/system/locale/sh"/>
			<pkg name="pkg:/system/locale/sk"/>
			<pkg name="pkg:/system/locale/sl"/>
			<pkg name="pkg:/system/locale/sq"/>
			<pkg name="pkg:/system/locale/sr"/>
			<pkg name="pkg:/system/locale/sv"/>
			<pkg name="pkg:/system/locale/th"/>
			<pkg name="pkg:/system/locale/tr"/>
			<pkg name="pkg:/system/locale/uk"/>
			<pkg name="pkg:/system/locale/vi"/>
			<pkg name="pkg:/system/locale/zh_cn"/>
			<pkg name="pkg:/system/locale/zh_hk"/>
			<pkg name="pkg:/system/locale/zh_tw"/>
			<pkg name="pkg:/system/management/product-registry"/>
			<pkg name="pkg:/system/management/snmp/net-snmp"/>
			<pkg name="pkg:/system/management/sysidtool"/>
			<pkg name="pkg:/system/manual"/>
			<pkg name="pkg:/system/manual/locale/ja"/>
			<pkg name="pkg:/system/network-console"/>
			<pkg name="pkg:/system/network"/>
			<pkg name="pkg:/system/network/nis"/>
			<pkg name="pkg:/system/network/ppp"/>
			<pkg name="pkg:/system/network/ppp/pppdump"/>
			<pkg name="pkg:/system/network/ppp/tunnel"/>
			<pkg name="pkg:/system/network/routing"/>
			<pkg name="pkg:/system/network/spdadm"/>
			<pkg name="pkg:/system/network/udapl"/>
			<pkg name="pkg:/system/network/udapl/udapl-tavor"/>
			<pkg name="pkg:/system/prerequisite/gnu"/>
			<pkg name="pkg:/system/scheduler/fss"/>
			<pkg name="pkg:/system/storage/fibre-channel/port-utility"/>
			<pkg name="pkg:/system/storage/luxadm"/>
			<pkg name="pkg:/system/trusted"/>
			<pkg name="pkg:/system/xopen/xcu4"/>
			<pkg name="pkg:/system/zones"/>
			<pkg name="pkg:/system/zones/brand/ipkg"/>
			<pkg name="pkg:/text/doctools"/>
			<pkg name="pkg:/text/gawk"/>
			<pkg name="pkg:/text/gnu-diffutils"/>
			<pkg name="pkg:/text/gnu-grep"/>
			<pkg name="pkg:/text/gnu-patch"/>
			<pkg name="pkg:/text/gnu-sed"/>
			<pkg name="pkg:/text/less"/>
			<pkg name="pkg:/text/locale"/>
			<pkg name="pkg:/text/texinfo"/>
			<pkg name="pkg:/web/curl"/>
			<pkg name="pkg:/web/wget"/>
			<pkg name="pkg:/x11/server/xorg/driver/xorg-efb"/>
			<pkg name="pkg:/x11/server/xorg/driver/xorg-kfb"/>
		</packages>
<!--
     Items below this line are rarely configured
-->
		<!--
		     If/how to compress the live image.
		     type = compression algorithm to use for pkg.zlib and misc.zlib.
		     Valid types are lzma, gzip, and none.
		-->
		<live_img_compression type="lzma"/>
		<!--
		     Indicate whether the IPS index should be generated for
		     pkg install and uninstall.  The default is to not
		     generate the IPS search index
		-->
		<generate_ips_search_index>
			false
		</generate_ips_search_index>
		<!--
		     Files and dirs to be included in the boot archive of all media
		     delivered by this distribution. Boot archive contains the
		     minimal list of contents in order to be able to
		     boot and setup a running system. These files and dirs
		     must exist in the pkg_image area.
		-->
		<boot_archive_contents>			
			<base_include type="file">usr/bin/nawk</base_include>
			<base_include type="file">usr/bin/pkill</base_include>
			<base_include type="file">usr/bin/cp</base_include>
			<base_include type="file">usr/bin/sort</base_include>
			<base_include type="file">usr/bin/sparcv9/sort</base_include>
			<base_include type="file">usr/sbin/nwamcfg</base_include>
			<base_include type="file">usr/sbin/nwamadm</base_include>

			<!-- libraries needed by /usr/sbin/prtconf -->
			<base_include type="file">usr/lib/libsmbios.so.1</base_include>

			<!-- libraries needed by /usr/sbin/svccfg -->
			<base_include type="file">usr/lib/libtecla.so.1</base_include>
			<base_include type="file">usr/lib/libl.so.1</base_include>
			<base_include type="file">usr/lib/libexacct.so.1</base_include>
			<base_include type="file">usr/lib/libpool.so.1</base_include>
			<base_include type="file">usr/lib/libidmap.so.1</base_include>
			<base_include type="file">usr/lib/libldap.so.5</base_include>
			<base_include type="file">usr/lib/libldap.so.1</base_include>
			<base_include type="file">usr/lib/libadutils.so.1</base_include>
			<base_include type="file">usr/lib/libsasl.so.1</base_include>
			<base_include type="file">usr/lib/mps/libnspr4.so</base_include>
			<base_include type="file">usr/lib/mps/libplc4.so</base_include>
			<base_include type="file">usr/lib/mps/libnss3.so</base_include>
			<base_include type="file">usr/lib/mps/libssl3.so</base_include>
			<base_include type="file">usr/lib/mps/libnssutil3.so</base_include>
			<base_include type="file">usr/lib/mps/libplds4.so</base_include>
			<base_include type="file">usr/lib/mps/cpu/sparcv8plus/libnspr_flt4.so</base_include>

			<base_include type="file">usr/sbin/pmadm</base_include>
			<base_include type="file">usr/sbin/prtconf</base_include>
			<base_include type="file">usr/sbin/sparcv9/prtconf</base_include>
			<base_include type="file">usr/sbin/lofiadm</base_include>
			<base_include type="file">usr/sbin/devfsadm</base_include>
			<base_include type="file">usr/sbin/modload</base_include>
			<base_include type="file">usr/sbin/sparcv9/modload</base_include>
			<base_include type="file">usr/sbin/mount</base_include>
			<base_include type="file">usr/sbin/hostconfig</base_include>
			<base_include type="file">usr/sbin/chroot</base_include>
			<base_include type="file">usr/sbin/syslogd</base_include>
			<base_include type="file">usr/sbin/svcadm</base_include>
			<base_include type="file">usr/sbin/svccfg</base_include>
			<base_include type="file">usr/sbin/df</base_include>
			<base_include type="file">usr/bin/coreadm</base_include>
			<base_include type="file">usr/bin/bash</base_include>
			<base_include type="file">usr/bin/ksh</base_include>
			<base_include type="file">usr/bin/cut</base_include>
			<base_include type="file">usr/bin/sed</base_include>
			<base_include type="file">usr/bin/mkdir</base_include>
			<base_include type="file">usr/bin/more</base_include>
			<base_include type="file">usr/bin/cat</base_include>
			<base_include type="file">usr/bin/echo</base_include>
			<base_include type="file">usr/bin/false</base_include>
			<base_include type="file">usr/bin/grep</base_include>
			<base_include type="file">usr/bin/ls</base_include>
			<base_include type="file">usr/bin/rm</base_include>
			<base_include type="file">usr/bin/svcprop</base_include>
			<base_include type="file">usr/bin/true</base_include>
			<base_include type="file">usr/bin/cd</base_include>
			<base_include type="file">usr/bin/test</base_include>
			<base_include type="file">usr/bin/sleep</base_include>
			<base_include type="file">usr/bin/expr</base_include>
			<base_include type="file">usr/bin/isaexec</base_include>
			<base_include type="file">usr/bin/vi</base_include>
			<base_include type="file">usr/bin/wget</base_include>
			<base_include type="file">usr/has/bin/vi</base_include>
			<base_include type="file">usr/lib/fs/hsfs/fstyp</base_include>
			<base_include type="file">usr/lib/fs/hsfs/fstyp.so.1</base_include>
			<base_include type="file">usr/lib/fs/hsfs/mount</base_include>
			<base_include type="file">usr/lib/fs/tmpfs/mount</base_include>
			<base_include type="file">usr/lib/fs/ufs/fstyp</base_include>
			<base_include type="file">usr/lib/fs/ufs/fstyp.so.1</base_include>
			<base_include type="file">usr/lib/fs/ufs/mount</base_include>
			<base_include type="file">usr/lib/libfstyp.so.1</base_include>
			<base_include type="file">usr/lib/platexec</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_audio_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_cfg_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_disk_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_fssnap_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_ieee1394_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_lofi_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_md_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_misc_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_port_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_ramdisk_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_sgen_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_tape_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_usb_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/linkmod/SUNW_zfs_link.so</base_include>
			<base_include type="file">usr/lib/devfsadm/devfsadmd</base_include>
			<base_include type="file">usr/lib/libm.so.2</base_include>
			<base_include type="file">usr/lib/libm.so</base_include>
			<base_include type="file">usr/lib/libfstyp.so</base_include>
			<base_include type="file">usr/lib/libz.so</base_include>
			<base_include type="file">usr/lib/libz.so.1</base_include>
			<base_include type="file">usr/bin/sparcv9/ksh93</base_include>
			<base_include type="file">usr/bin/sparcv7/ksh93</base_include>
			<base_include type="file">usr/lib/isaexec</base_include>
			<base_include type="file">usr/lib/libast.so.1</base_include>
			<base_include type="file">usr/lib/libcmd.so.1</base_include>
			<base_include type="file">usr/lib/libdll.so.1</base_include>
			<base_include type="file">usr/lib/libshell.so.1</base_include>
			<base_include type="file">usr/lib/libcrypt.so.1</base_include>
			<base_include type="file">usr/lib/libmapmalloc.so.1</base_include>
			<base_include type="file">usr/sfw/lib/libcrypto.so.0.9.8</base_include>
			<base_include type="file">usr/sfw/lib/libssl.so.0.9.8</base_include>
			<base_include type="file">usr/share/lib/xml/dtd/service_bundle.dtd.1</base_include>
			<base_include type="file">var/sadm/install/admin/default</base_include>
			<base_include type="file">var/sadm/system/admin/default_java</base_include>
			<base_include type="file">var/sadm/install/contents</base_include>
			<base_include type="file">var/adm/utmpx</base_include>
			<base_include type="file">var/adm/wtmpx</base_include>
			<base_include type="file">var/adm/aculog</base_include>
			<base_include type="file">var/lib/postrun/postrun-runq</base_include>
			<base_include type="file">var/lib/postrun/postrun</base_include>
			<base_include type="file">var/log/postrun.log</base_include>
			<base_include type="file">var/log/authlog</base_include>
			<base_include type="file">var/log/syslog</base_include>
			<base_include type="file">var/saf/zsmon/log</base_include>
			<base_include type="file">var/spool/cron/crontabs/adm</base_include>
			<base_include type="file">var/spool/cron/crontabs/root</base_include>
			<base_include type="file">var/nis/NIS+LDAPmapping.template</base_include>
			<base_include type="file">var/yp/aliases</base_include>
			<base_include type="file">var/yp/nicknames</base_include>
			<base_include type="dir">kernel</base_include>
			<base_include type="dir">boot</base_include>
			<base_include type="dir">platform</base_include>
			<base_include type="dir">system</base_include>
			<base_include type="dir">lib</base_include>
			<base_include type="dir">sbin</base_include>
			<base_include type="dir">dev</base_include>
			<base_include type="dir">devices</base_include>
			<base_include type="dir">root</base_include>
			<base_include type="dir">jack</base_include>
			<base_include type="dir">etc</base_include>
			<base_include type="dir">var/svc/manifest</base_include>
			<base_include type="dir">var/svc/profile</base_include>
			<base_include type="dir">var/sadm</base_include>
			<base_include type="file" fiocompress="false">etc/svc/repository.db</base_include>
			<base_include type="file" fiocompress="false">etc/dev/.devfsadm_dev.lock</base_include>
			<base_include type="file" fiocompress="false">etc/name_to_major</base_include>
			<base_include type="file" fiocompress="false">etc/minor_perm</base_include>
			<base_include type="file" fiocompress="false">etc/driver_aliases</base_include>
			<base_include type="file" fiocompress="false">etc/driver_classes</base_include>
			<base_include type="file" fiocompress="false">etc/path_to_inst</base_include>
			<base_include type="file" fiocompress="false">etc/default/init</base_include>
			<base_include type="file" fiocompress="false">etc/nsswitch.conf</base_include>
		</boot_archive_contents>
	</img_params>
	<key_value_pairs/>
</distribution>