1 # 2 # CDDL HEADER START 3 # 4 # The contents of this file are subject to the terms of the 5 # Common Development and Distribution License (the "License"). 6 # You may not use this file except in compliance with the License. 7 # 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 # or http://www.opensolaris.org/os/licensing. 10 # See the License for the specific language governing permissions 11 # and limitations under the License. 12 # 13 # When distributing Covered Code, include this CDDL HEADER in each 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 # If applicable, add the following below this CDDL HEADER, with the 16 # fields enclosed by brackets "[]" replaced with your own identifying 17 # information: Portions Copyright [yyyy] [name of copyright owner] 18 # 19 # CDDL HEADER END 20 # 21 # 22 # Copyright 2008 Sun Microsystems, Inc. All rights reserved. 23 # Use is subject to license terms. 24 # 25 # ident "@(#)dist.conf 1.2 07/08/27 SMI" 26 # 27 # 28 # Configuration file for the distribution constructor 29 # 30 31 # 32 # Full path to file containing list of packages to be included in distribution 33 # 34 DIST_PKG_LIST= 35 36 # 37 # If additional changes need to be made to the image before the image 38 # is created, these changes can be passed into the Distro Constructor 39 # code as an archive. 40 # 41 # Each archive must contain at least one script with the name "post-process". 42 # If no script with the name "post-process" is found in the root of the 43 # archive, the archive will be ignored. 44 # If more than one archive needs to be applied to the microroot, list each 45 # with a semi-colon as the delimitor. 46 # 47 # This configuration value is optional 48 # 49 DIST_ADDITIONAL_MOD= 50 51 # 52 # Sort list for usr file system on CD 53 # 54 DIST_ISO_SORT= 55 56 # 57 # Server containing the packages to be included in the distribution 58 # 59 DIST_PKG_SERVER= 60 61 # 62 # The proto directory where the filesystem hierarchy for the distribution is 63 # created. If this directory does not currently exist, it will be created. 64 # 65 DIST_PROTO= 66 67 # 68 # If package adds to create the distribution fail, do you wish to exit 69 # the build? If not specified, the default is yes. 70 # 71 QUIT_ON_PKG_FAILURES= 72 73 # 74 # Compression type to use. You must specify a compression type that 75 # is allowed by lofiadm. 76 # 77 COMPRESSION_TYPE=lzma 78 79 # 80 # Name of this distribution. If this value is not specified, the default 81 # id of YYYYMMDD-HHMI will be used. 82 # 83 DIST_ID= 84 85 # 86 # The full path to the ISO to be created 87 # 88 DIST_ISO= 89 90 # 91 # The full path to the USB file for the USB image 92 # If this value is not specified, the USB image will not be created. 93 # 94 DIST_USB= 95