#!/sbin/sh
# @(#) $Revision: 76.2 $       
# Savecore configuration
#
#

# SAVECORE:	Set to 0 to disable saving system core files.
SAVECORE=1


# SAVECORE_DIR:	Directory name for system core files.  Note: the filesystem
#		in which this directory is located should have as much free
#		space as your system has RAM.  
SAVECORE_DIR=/var/adm/crash


# CHUNK_SIZE:	size of single core image file (i.e. how big you want
#		each of core.n.x, core.n.x+1, etc. to be)
#		If not specified, savecore will choose one based on the
#		physical memory size of the system. Can be specified in
#		bytes (b), kilobytes (k), megabytes (m), or gigabytes (g).
#		Default value is 0, and the default unit is kilobytes.
CHUNK_SIZE=


# COMPRESS:	Whether you want the kernel and core image files to be
#		compressed.  Compression option can be:
#			0 - don't compress
#			1 - compress
#			2 - don't care (default)
#		If defaulted, savecore will choose based on the physical
#		memory size and available disk space.  Compressing will
#		take longer for savecore to complete.
COMPRESS=2


# MIN_FREE:	Amount of free space remaining for non-root user after
#		savecore completes.  Can be specified in bytes (b), 
#		kilobytes (k), megabytes (m), or gigabytes (g).
#		Default value is 0, and the default unit is kilobytes.
MIN_FREE=

# SWAP_LEVEL:	Defines interaction betweeen savecore and swapon.
#			0 - don't run swapon from savecore
#			    (DO NOT PICK THIS UNLESS -f is SELECTED, or 
#			    you will not have ANY auxiliary swap enabled)
#			1 - call swapon each time savecore finishes saving
#			    from each dump device (default)
#			2 - call swapon when savecore finishes saving from 
#			    all dump devices
SWAP_LEVEL=1

# FOREGRD:	Set to 1 to force savecore to run as foreground process.
FOREGRD=
