mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Whoops! I buggered up the tape dialog. Fixed. These changes allow
you to specify your tape drive device for the cases when the user has more than one.
This commit is contained in:
parent
927a6f682e
commit
66a5b326e1
2 changed files with 7 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile,v 1.67 1994/12/22 21:34:36 jkh Exp $
|
||||
# $Id: Makefile,v 1.68 1994/12/23 02:25:32 jkh Exp $
|
||||
#
|
||||
|
||||
FLOPPY= fd0
|
||||
|
|
@ -75,7 +75,7 @@ boot.flp:
|
|||
disklabel -w -B \
|
||||
-b ${DESTDIR}/usr/mdec/fdboot -s ${DESTDIR}/usr/mdec/bootfd \
|
||||
/dev/r${FLOPPY} ${FDLABEL}
|
||||
newfs -c 80 -b 4096 -f 512 -i 8192 -m 0 -o space /dev/r${FLOPPY}
|
||||
newfs -c 80 -b 4096 -f 512 -i 9000 -m 0 -o space /dev/r${FLOPPY}
|
||||
mount -o async /dev/${FLOPPY} ${MNT}
|
||||
mkdir ${MNT}/dev ${MNT}/stand ${MNT}/mnt
|
||||
strip ${.CURDIR}/../sys/compile/GENERIC/kernel
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
# putting your name on top after doing something trivial like reindenting
|
||||
# it, just to make it look like you wrote it!).
|
||||
#
|
||||
# $Id: instdist.sh,v 1.44 1994/12/21 04:57:07 jkh Exp $
|
||||
# $Id: instdist.sh,v 1.45 1994/12/23 02:55:07 jkh Exp $
|
||||
|
||||
if [ "${_INSTINST_SH_LOADED_}" = "yes" ]; then
|
||||
return 0
|
||||
|
|
@ -395,7 +395,8 @@ system? FreeBSD supports the following types:\n" -1 -1 3 \
|
|||
"If you only have one tape drive, simply press return - the
|
||||
default value should be correct. Otherwise, enter the
|
||||
correct value and press return."; then
|
||||
MEDIA_DEVICE=${ANSWER}
|
||||
MEDIA_DEVICE=${ANSWER}
|
||||
fi
|
||||
;;
|
||||
|
||||
QIC-02)
|
||||
|
|
@ -405,7 +406,8 @@ correct value and press return."; then
|
|||
"If you only have one tape drive, simply press return - the
|
||||
default value should be correct. Otherwise, enter the
|
||||
correct value and press return."; then
|
||||
MEDIA_DEVICE=${ANSWER}
|
||||
MEDIA_DEVICE=${ANSWER}
|
||||
fi
|
||||
;;
|
||||
|
||||
floppy)
|
||||
|
|
|
|||
Loading…
Reference in a new issue