#!/bin/sh
# @(#)kconfig.cpp	1.57 revision of 98/02/09  15:42:08
# This is an unpublished work copyright (c) 1989 HELIOS Software GmbH
# 30159 Hannover, Germany
set +vx

# @(#)HeliosVersion 2.5.0a2 Copyright 1989-1998 HELIOS Software Garbsen

# @(#)setup.cpp	1.28 revision of 98/02/09  19:27:44
PATH=$ESDIR:$ESDIR/etc:$PATH
export PATH
grop="macusers"
user="macuser"
hostupper=`hostname|sed 's/\..*//'|tr '[a-z]' '[A-Z]'` 2>/dev/null
if test -z "$hostupper"
then
	hostupper=`uname -n|sed 's/\..*//'|tr '[a-z]' '[A-Z]'`
fi
hostid=`machid`
# test how we can suppress the new line on echo
if test "X`echo -n`" = "X-n"
then
	en=''
else
	en='-n'
fi
if test "X`echo '\c'`" = "X\c"
then
	ec=''
else
	ec='\c'
fi










fstyp="-k -l"
Slevel=3000
Klevel=3000
rcdir=/etc










# @(#)line.cpp	1.9 revision of 93/04/20  22:29:16
# Berkeley has a stoneage bourne shell, so this mess is really necessary.
# this is also the reason not to use cat <<-eof to keep the code nicely
# indented.
status=0
line=""
gets=". /tmp/gets$$"
trap "rm -f /tmp/gets$$; exit \$status" 0 1 2 3 15
cat >/tmp/gets$$ <<\eof
line="!"
while test x"$line" = x"!"
do
	echo $en "* $p ? [$d] "$ec
	read line
	if test x"$line" = x"!"
	then
		$SHELL
	fi
done
if test -z "$line"
then
	line="$d"
fi
eof









echo "No Kernel configuration necessary on this system."
status=2
exit 2







