fix typos. from Kouichi Matsuda <kmatsuda@elsip.hokudai.ac.jp> in [i386/3454]

This commit is contained in:
lukem 1997-05-30 01:34:42 +00:00
parent 9d04fc8ed1
commit 56e7a6f2db
2 changed files with 7 additions and 7 deletions

View File

@ -1,10 +1,10 @@
#! /bin/sh #! /bin/sh
# #
# $NetBSD: copy_kernel.sh,v 1.3 1996/10/09 00:13:36 jtc Exp $ # $NetBSD: copy_kernel.sh,v 1.4 1997/05/30 01:34:42 lukem Exp $
# #
# Kernel copy script # Kernel copy script
DEFAULT_PARTITON=sd0a DEFAULT_PARTITION=sd0a
MOUNT_POINT=/mnt MOUNT_POINT=/mnt
KERNEL_NAME=/netbsd KERNEL_NAME=/netbsd
#TEST=testfn #TEST=testfn
@ -50,10 +50,10 @@ echo ""
echo "What disk partition should the kernel be installed on?" echo "What disk partition should the kernel be installed on?"
echo "(For example, \"sd0a\", \"wd0a\", etc.)" echo "(For example, \"sd0a\", \"wd0a\", etc.)"
echo "" echo ""
echo -n "Partition? [${DEFAULT_PARTITON}] " echo -n "Partition? [${DEFAULT_PARTITION}] "
read diskpart read diskpart
if [ "X${diskpart}" = "X" ]; then if [ "X${diskpart}" = "X" ]; then
diskpart=${DEFAULT_PARTITON} diskpart=${DEFAULT_PARTITION}
fi fi
rawdiskpart="r${diskpart}" rawdiskpart="r${diskpart}"

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# #
# $NetBSD: upgrade.sh,v 1.6 1996/10/26 19:04:47 perry Exp $ # $NetBSD: upgrade.sh,v 1.7 1997/05/30 01:34:48 lukem Exp $
# #
# Copyright (c) 1994 Christopher G. Demetriou # Copyright (c) 1994 Christopher G. Demetriou
# All rights reserved. # All rights reserved.
@ -102,7 +102,7 @@ echo "on disks NOT listed above), this upgrade disk can upgrade your"
echo "system. If it cannot, hit Control-C at the prompt." echo "system. If it cannot, hit Control-C at the prompt."
echo "" echo ""
while [ "X${drivename}" = "X" ]; do while [ "X${drivename}" = "X" ]; do
echo -n "Which disk contains your root partion? " echo -n "Which disk contains your root partition? "
getresp getresp
otherdrives=`echo "${driveunits}" | sed -e s,${resp},,` otherdrives=`echo "${driveunits}" | sed -e s,${resp},,`
if [ "X${driveunits}" = "X${otherdrives}" ]; then if [ "X${driveunits}" = "X${otherdrives}" ]; then
@ -128,7 +128,7 @@ getresp "y"
case "$resp" in case "$resp" in
n*|N*) n*|N*)
echo "" echo ""
echo "If you are upgrading from NetBSD 0.9 or above," echo "If you are upgrading from NetBSD 0.9 or below,"
echo "you should upgrade your file systems with 'fsck -c 2'" echo "you should upgrade your file systems with 'fsck -c 2'"
echo "as soon as is feasible, because the new file system" echo "as soon as is feasible, because the new file system"
echo "code is better-tested and more performant." echo "code is better-tested and more performant."