do md_install_sets.

This commit is contained in:
mrg 1996-08-22 03:24:15 +00:00
parent 4be6fcfb6e
commit 682e5d1a57
6 changed files with 84 additions and 9 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: install.md,v 1.5 1996/07/04 06:41:00 leo Exp $
# $NetBSD: install.md,v 1.6 1996/08/22 03:24:15 mrg Exp $
#
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
@ -349,3 +349,5 @@ __md_copy_kernel_1
done
umount -f /mnt2 > /dev/null 2>&1
}
md_install_sets() {}

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $NetBSD: install.md,v 1.2 1996/06/26 21:11:07 thorpej Exp $
# $NetBSD: install.md,v 1.3 1996/08/22 03:24:17 mrg Exp $
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
@ -487,3 +487,4 @@ __congratulations_1
md_native_fstype() {}
md_native_fsopts() {}
md_install_sets() {}

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $NetBSD: install.sh,v 1.10 1996/06/27 13:45:45 pk Exp $
# $NetBSD: install.sh,v 1.11 1996/08/22 03:24:19 mrg Exp $
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
@ -61,6 +61,7 @@ MODE="install"
# md_congrats() - display friendly message
# md_native_fstype() - native filesystem type for disk installs
# md_native_fsopts() - native filesystem options for disk installs
# md_install_sets() - any MD install sets go in `MDSETS'
# include machine dependent subroutines
. install.md
@ -353,8 +354,8 @@ mount | while read line; do
fi
done
THESETS="$ALLSETS"
install_sets
md_install_sets
install_sets $ALLSETS $MDSETS
# Copy in configuration information and make devices in target root.
(

View File

@ -66,6 +66,21 @@ subdirectory of the NetBSD RELEASE distribution tree, and are as follows:
manual pages.
[ 0.8M gzipped, 3.1M uncompressed ]
xbin12 This set is the X11R6.1 binary and library set. It
includes all the programs, fonts and libraries used
in the X window system, and is mandatory to use X.
[ 11M gzipped, 20M uncompressed ]
xcon12 This set is the X11R6.1 contributed software collection,
made up from programs in the contrib distribution.
[ ? gzipped, ? uncompressed ]
xinc12 This set is the X11R6.1 include set.
[ 0.3M gzipped, 2.2M uncompressed ]
xman12 This set in the X11R6.1 manual set.
[ 0.5M gzipped, 2.9M uncompressed ]
The sparc security distribution set is named "secr12" and can be found
in the "sparc/security" subdirectory of the NetBSD RELEASE distribution
tree. It contains crypt.c (the source file for the DES encryption

View File

@ -1,5 +1,4 @@
NetBSD RELEASE is the second release for the sparc. Many more sparc
models and devices are now supported.
In addition to the SunOS 4.1 compatibility introduced in NetBSD/sparc 1.0,
version RELEASE will also run some number of SunOS 5 (SVR4) executables
in binary emulation mode.
NetBSD/sparc RELEASE supports SunOS 4.1 compatibility as well as some
SunOS 5 (SVR4) compatibility.

View File

@ -1,4 +1,4 @@
# $NetBSD: install.md,v 1.6 1996/06/26 21:35:32 pk Exp $
# $NetBSD: install.md,v 1.7 1996/08/22 03:24:24 mrg Exp $
#
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
@ -227,3 +227,60 @@ system has halted, reset the machine and boot from the disk.
__congratulations_1
}
md_install_sets() {
MDSETS='xbin xman xinc xcon'
}
md_install_sets() {
cat << __want_x_1;
Version ${VERSION} of NetBSD/sparc includes an X11R6.1 binary set. Sources
are, of course, also available. You must now decide whether or not
to install X11R6.1 into the /usr/X11R6 directory. The installation
takes:
23M for binary and library set (necessary)
3M for manual pages (recommended)
2M for X11 include files (recommended)
__want_x_1
echo -n "Install X11R6.1? [y] "
getresp "y"
case "$resp" in
y*|Y*)
MDSETS="X11R6.bin"
tar -C/mnt -zxf X11R6.bin.tar.gz
cat << __want_x_2
Mandatory X11R6.1 binaries and libraries installed.
__wait_x_2
echo -n "Do you want to install the X11R6.1 manual pages? [y] "
getresp "y"
case "$resp" in
y*|Y*)
nresp=y
MDSETS="${MDSETS} X11R6.man"
;;
*)
nresp=n
;;
esac
echo -n "Do you want to install the X11R6.1 include files? [$nresp] "
getresp $nresp
case "$resp" in
y*|Y*)
MDSETS="${MDSETS} X11R6.include.tar.gz"
;;
*)
;;
esac
;;
*)
MDSETS=
echo "Not installing X11R6.1."
echo ""
;;
esac
}