1. Change all references for the kernel from /386bsd to /kernel.
2. Make this say it is 2.0.0 (Development). 3. Update the stty commands to say ^H for erase. 4. Update the disklabel commands to use the new 4.4 syntax.
This commit is contained in:
parent
f4059a707e
commit
1bb1429221
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
# cd install floppy disk /install script
|
||||
#
|
||||
# $Id: cdinst1.install,v 1.5 1994/06/28 05:56:11 jkh Exp $
|
||||
# $Id: cdinst1.install,v 1.6 1994/06/29 06:46:01 rgrimes Exp $
|
||||
|
||||
# ${OPSYSTEM}, the mounting of the cdrom drive, and the path are all
|
||||
# setup by .profile
|
||||
@ -928,7 +928,7 @@ if [ "$hname" != "" ]; then
|
||||
fi
|
||||
|
||||
cat /etc/disktab >etc/disktab.install
|
||||
cp -p /386bsd /mnt/386bsd
|
||||
cp -p /kernel /mnt
|
||||
|
||||
echo
|
||||
echo "Building /dev files..."
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $Id: cpio.rc,v 1.3 1994/06/04 11:55:56 jkh Exp $
|
||||
# $Id: cpio.rc,v 1.4 1994/06/04 12:00:51 jkh Exp $
|
||||
#
|
||||
|
||||
stty status '^T'
|
||||
@ -56,7 +56,8 @@ rm -f /fastboot
|
||||
(cd /var/run && { rm -rf -- *; cp /dev/null utmp; chmod 644 utmp; })
|
||||
|
||||
OPSYSTEM=FreeBSD
|
||||
RELEASE="1.1.5"
|
||||
# Sure wish we had uname at this point
|
||||
RELEASE="2.0.0 (Development)"
|
||||
NVTTYS="4"
|
||||
echo "${OPSYSTEM} Base System Release ${RELEASE}"
|
||||
echo ""
|
||||
@ -94,8 +95,8 @@ echo " "
|
||||
echo "If you should wish to uninstall ${OPSYSTEM}, delete the partition by using the"
|
||||
echo "DOS 5 FDISK program. If installed on the entire drive, use the FDISK/MBR"
|
||||
echo "to remove the ${OPSYSTEM} bootstrap from the drive."
|
||||
echo 'erase ^?, werase ^H, kill ^U, intr ^C'
|
||||
stty newcrt werase intr kill erase 9600
|
||||
echo 'erase ^H, kill ^U, intr ^C'
|
||||
stty newcrt erase ^H intr ^C kill ^U
|
||||
umask 0
|
||||
echo ". /magic" >>/.profile
|
||||
exit 1
|
||||
|
@ -861,7 +861,8 @@ put_fdisk_data
|
||||
echo
|
||||
echo -n "Labelling disk..."
|
||||
echo y |
|
||||
/sbin/disklabel -w -r ${drivename} $name /usr/mdec/${drivetype}boot /usr/mdec/boot${drivetype} >/dev/null 2>&1
|
||||
/sbin/disklabel -w -r -B ${drivename} $name
|
||||
# >/dev/null 2>&1
|
||||
echo " done."
|
||||
|
||||
# XXX - Do it again, incase we disklabeled sector 0!
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $Id: inst2.rc,v 1.3 1994/03/18 03:09:51 rgrimes Exp $
|
||||
# $Id: inst2.rc,v 1.4 1994/06/15 19:23:33 jkh Exp $
|
||||
#
|
||||
|
||||
stty status '^T'
|
||||
@ -59,7 +59,8 @@ rm -f /fastboot
|
||||
(cd /var/run && { rm -rf -- *; cp /dev/null utmp; chmod 644 utmp; })
|
||||
|
||||
OPSYSTEM=FreeBSD
|
||||
RELEASE="1.1.5"
|
||||
# Sure wish we had uname at this point!
|
||||
RELEASE="2.0.0 (Development)"
|
||||
echo "${OPSYSTEM} Base System Release ${RELEASE}"
|
||||
echo ""
|
||||
echo "Congratulations, you've got ${OPSYSTEM} on the hard disk!"
|
||||
@ -88,8 +89,8 @@ echo " "
|
||||
echo "If you wish to uninstall ${OPSYSTEM}, delete the partition by using the"
|
||||
echo "DOS 5 FDISK program. If installed on the entire drive, use the FDISK/MBR"
|
||||
echo "to remove the ${OPSYSTEM} bootstrap from the drive."
|
||||
echo 'erase ^?, werase ^H, kill ^U, intr ^C'
|
||||
stty newcrt werase intr kill erase 9600
|
||||
echo 'erase ^H, kill ^U, intr ^C'
|
||||
stty newcrt erase ^H intr ^C kill ^U
|
||||
umask 0
|
||||
exit 1
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $Id$
|
||||
# $Id: kc.profile,v 1.6 1994/02/21 21:52:00 rgrimes Exp $
|
||||
#
|
||||
# rc for kernel distribution floppy
|
||||
|
||||
@ -62,7 +62,7 @@ if [ X"$todo" = Xcopy ]; then
|
||||
fi
|
||||
echo "done."
|
||||
echo -n "Copying kernel... "
|
||||
cp /386bsd /mnt/386bsd
|
||||
cp -p /kernel /mnt
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "failed... (?!?!?!)"
|
||||
bail_out
|
||||
|
Loading…
Reference in New Issue
Block a user