# $Copyright
# Copyright 1992, 1993, 1994, 1995 Intel Corporation
# INTEL CONFIDENTIAL
# The technical data and computer software contained herein are subject
# to the copyright notices; trademarks; and use and disclosure
# restrictions identified in the file located in /etc/copyright on
# this system.
# Copyright$
# ******************************************************************************
# ***				IDENTIFICATION				    ***
# ******************************************************************************
# Name:		ccf_g
# Title:	Canned Configuration "g"
# Version:	
# Revision:	$Revision: 1.1.4.1 $
# Update Date:	$Date: 1995/06/11 23:26:23 $ 
# Programmer:	ach
# Documents:	UNIX V.4 Disk Array Utilities FS no. 348-0027726
#
# COPYRIGHT 1991, NCR Corp.
#
# Description:	This script sets up the following DAC parameters:
#
##	Read Retry Count				    1
##	Write Retry Count				    1
##	Automatic Write Reallocation			   on		
##	Automatic Read Reallocation			   on
##	Recovered Error Reporting			   on
##	Logical Block Size				  512
##	RAID Level					    5
##	Segment Size					  512
##	Segment Zero Size				    1
##	Auto Drive Reconstruct				  off
##	Writable in Degraded Mode			  off
##	Array Assurance Diagnostics			  off
##	Reconstruction Frequency			    1
##	Reconstruction Amount				   64		
#
# ******************************************************************************
# ***				  PROCEDURES				    ***
# ******************************************************************************
#
acf -e -z$1 -r1 -w1 -Won -Ron -Pon
status=$?
if [ $status != 0 ]; then 
	exit $status
fi
acf -u -z$1 -b512 -r5 -S512 -Z1 -Aoff -Doff -Toff -F1 -a64
status=$?
exit $status
