
FXJUNK=`echo $FXMACH | cut -d: -f1`
FXBASE=`basename $FXJUNK`
TARLIST2=

if test "$FXBASE" = "sgi"; then
	TARLIST=cvfL
        TARDRIVE=/dev/fdh0
elif test "$FXBASE" = "ibmaix"; then
	TARLIST=cvfL
        TARDRIVE=/dev/rfd0
elif test "$FXBASE" = "unix86"; then
	TARLIST=cvfF
        TARDRIVE=/dev/fd0135ds18
elif test "$FXBASE" = "scounx"; then
	TARLIST=cvfF
        TARDRIVE=/dev/fd0135ds18
elif test "$FXBASE" = "scoopen"; then
	TARLIST=cvfF
        TARDRIVE=/dev/fd0135ds18
elif test "$FXBASE" = "sunsolaris"; then
	TARLIST=cvf
        TARLIST2=-I
        TARDRIVE=/dev/fd0a
elif test "$FXBASE" = "interix"; then
	TARLIST=cvf
        TARLIST2=-CAT
        TARDRIVE=/dev/fd0a
else
#      FREEBSD & LINUX
	TARLIST=cvfT
        TARDRIVE=/dev/fd0
fi
export TARLIST
export TARLIST2
export TARDRIVE
echo "       Device: $TARLIST  $TARDRIVE"

