contents revision 1.6
1The sun3-specific portion of the NetBSD _VER release is found in the
2"sun3" subdirectory of the distribution.  That subdirectory is laid
3out as follows:
4
5.../NetBSD-_VER/sun3/
6	INSTALL			Installation notes; this file.
7
8	installation/
9		miniroot/	sun3 miniroot image
10		netboot/	sun3 network boot support
11		tapeimage/	sun3 boot tape support
12
13	binary/
14		kernel/		sun3 kernels
15		sets/		sun3 binary distribution sets
16		security/	sun3 security distribution
17
18Detailed content descriptions by directory:
19
20.../sun3/installation/
21
22Files and scripts used during installation.  This distribution
23supports installation of NetBSD/sun3 onto a sun3 with no previous
24operating system, with initial boot from network or tape.  See
25"Getting the NetBSD System onto Useful Media" for instructions
26on either method.
27
28.../sun3/installation/miniroot/
29
30	miniroot.gz	A gzipped copy of the miniroot filesystem.
31			This image is to be un-gzipped and copied
32			into the swap area of a disk.
33
34.../sun3/installation/netboot/
35
36	netboot		A copy of the network boot program.
37			This is useful if you are installing
38			a diskless NetBSD/sun3 system.
39
40.../sun3/installation/tapeboot/
41
42	MakeBootTape	A script for creating the boot tape.
43
44	MakeInstTape	A script for creating the install tape.
45
46	tapeboot	A copy of the tape boot program, used
47			as the first segment of a boot tape.
48
49.../sun3/binary/kernel/
50
51	netbsd-gen.gz	A gzipped GENERIC kernel (for upgrade)
52
53	netbsd-rd.gz	A gzipped copy of the "RAMDISK kernel"
54			for installing the miniroot filesystem.
55
56.../sun3/binary/sets/
57
58The NetBSD/sun3 binary distribution sets contain the binaries which
59comprise the NetBSD _VER release for the sun3.  There are seven binary
60distribution sets and the "security" distribution set.  The binary
61distribution sets can be found in the "sun3/binary/sets" subdirectory
62of the NetBSD _VER distribution tree, and are as follows:
63
64	base	The NetBSD/sun3 _VER base binary distribution.  You
65		MUST install this distribution set.  It contains the
66		base NetBSD utilities that are necessary for the
67		system to run and be minimally functional.  It
68		includes shared library support, and excludes
69		everything described below.
70		[ 9M gzipped, 26M uncompressed ]
71
72	comp	The NetBSD/sun3 Compiler tools.  All of the tools
73		relating to C, C++, and FORTRAN (yes, there are two!).
74		This set includes the system include files
75		(/usr/include), the linker, the compiler tool chain,
76		and the various system libraries (except the shared
77		libraries, which are included as part of the base
78		set).  This set also includes the manual pages for all
79		of the utilities it contains, as well as the system
80		call and library manual pages.
81		[ 7M gzipped, 24M uncompressed ]
82
83	etc	This distribution set contains the system configuration
84		files that reside in /etc and in several other places.
85		This set MUST be installed if you are installing the
86		system from scratch, but should NOT be used if you are
87		upgrading.  (If you are upgrading, it's recommended that
88		you get a copy of this set and CAREFULLY upgrade your
89		configuration files by hand.)
90		[ 54K gzipped, 330K uncompressed ]
91
92	games	This set includes the games and their manual pages.
93		[ 3M gzipped, 7M uncompressed ]
94
95	man	This set includes all of the manual pages for the
96		binaries and other software contained in the base set.
97		Note that it does not include any of the manual pages
98		that are included in the other sets.
99		[ 3M gzipped, 10M uncompressed ]
100
101	misc	This set includes the system dictionaries (which are
102		rather large), the typesettable document set, and
103		man pages for other architectures which happen to be
104		installed from the source tree by default.
105		[ 2M gzipped, 8M uncompressed ]
106
107	text	This set includes NetBSD's text processing tools,
108		including groff, all related programs, and their
109		manual pages.
110		[ 1M gzipped, 4M uncompressed ]
111
112.../sun3/binary/security/
113
114Contains executables which are built from the "src/domestic"
115portion if the NetBSD source tree.  It can only be found on those
116sites which carry the complete NetBSD distribution and that can
117legally obtain it.  (Remember, because of United States law, it
118may not be legal to distribute this set to locations outside of
119the United States and Canada.)
120	[ 128K gzipped, 275K uncompressed ]
121
122The sun3 binary distribution sets are distributed as gzipped tar files
123named with the extension ".tgz", e.g. "base.tgz".  Each sun3 binary
124distribution set also has its own checksum files, just as the source
125distribution sets do.
126
127The instructions given for extracting the source sets work equally
128well for the binary sets, but it is worth noting that if you use that
129method, the files are extracted "below" the current directory.  That
130is, if you want to extract the binaries "into" your system, i.e.
131replace the system binaries with them, you have to run the commands:
132
133	cd /
134	tar --unlink -zxvpf set.tar.gz
135
136Note that the "--unlink" flags is very important!  If you upgrade or
137install this way, those programs that you are using at the time will
138NOT be replaced unless you run "tar" with the "--unlink" option.  If
139you follow the normal installation or upgrade procedures, this will be
140taken care of for you.
141