#! /bin/sh
#
# @(#)getbootfile	1.2	LPS_UNX_COM	2/19/95
#
# Copyright 1994   Digital Equipment Corporation, Maynard, MA
#
# Return the proper standard boot filename for the target printer model.
#
# Parameters:
#    $1 - Printer model (eg, "LPS17", "LPS32", etc)
#
# Exit values:
#    0 - Success, stdout contains the boot filename.
#    1 - Error or interruption occurred, error messages go to stderr,
#	 contents of stdout are undefined.
###

MODEL="$1"

case "$MODEL" in
    LPS17 ) BOOTFILE="lps17.sys" ;;
    LPS20 ) BOOTFILE="lps.sys"   ;;
    LPS32 ) BOOTFILE="lps.sys"   ;;
    LPS40 ) BOOTFILE=""	         ;;	# We no boot these guys
     *    ) BOOTFILE="lps.sys"		# Hope its 20/32, huh?
esac

echo "$BOOTFILE"

exit 0
