Skip to content

Commit 00b977c

Browse files
committed
Add klh10-2.0a-aux.tgz.
1 parent 742b43d commit 00b977c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+11505
-0
lines changed

READaux

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
/* READaux - README file for KLH10 Auxiliary Distribution
2+
*/
3+
/* $Id: klh10aux.rdm,v 2.1 2001/11/10 10:38:16 klh Exp $
4+
*/
5+
/* Copyright � 2001 Kenneth L. Harrenstien
6+
**
7+
** This file is part of and describes the "Auxiliary Distribution"
8+
** package, built and released as a companion to the KLH10 Distribution.
9+
** The legal text is contained below.
10+
*/
11+
12+
----------------------------
13+
14+
The KLH10 Auxiliary Distribution consists of all the components (both
15+
software and documentation) residing in the "contrib" and "run"
16+
directories of a typical installation of the KLH10 Distribution.
17+
18+
The KLH10 Distribution license does NOT apply to these components.
19+
They are derived from several sources, each of which may have its own
20+
licensing terms. They are included solely for the convenience of
21+
users, and in order to avoid licensing conflicts have been made
22+
available in the form of a separate "Auxiliary Distribution" package.
23+
They are subject to removal if their inclusion causes any legal
24+
problems.
25+
26+
The Auxiliary Distribution package includes the following specific
27+
components:
28+
29+
[1] PDP-10 software (bootstrap and diagnostic binaries) from Digital
30+
Equipment Corporation (now Compaq Corporation). These may be used
31+
only with a valid Digital license such as the "Home Hobbyist License"
32+
(see <http://pdp-10.trailing-edge.com/#license>).
33+
The specific components are identified by various README files in
34+
the following subdirectories.
35+
36+
run/dfkfb/ - Digital (KL10) DFKFB timing test diagnostic binary
37+
run/klnic/ - Digital (KL10 SRI-NIC) bootstrap binaries
38+
run/klt10/ - Digital (KL10 TOPS-10) bootstrap binaries
39+
run/klt20/ - Digital (KL10 TOPS-20) bootstrap binaries
40+
run/kst10/ - Digital (KS10 TOPS-10) bootstrap binaries
41+
run/kst20/ - Digital (KS10 TOPS-20) bootstrap binaries
42+
43+
44+
[2] PDP-10 software derived from the MIT ITS systems. These are
45+
believed to be usable on terms similar to those of the GNU Public
46+
License.
47+
The specific components are listed in the file "run/ksits/README".
48+
49+
run/ksits/ - MIT (KS10 ITS) system binaries
50+
51+
52+
[3] Utility software from other contributors, where terms were not
53+
specifically stated but are believed to be similar to those of
54+
the "BSD" style licenses (e.g. FreeBSD, NetBSD).
55+
More detail is provided in the file "contrib/README" and the
56+
individual subdirectories.
57+
58+
contrib/supdup/ - Unix SUPDUP client and server
59+
contrib/read20/ - Unix DUMPER tape image reader
60+
61+
62+
Disclaimer:
63+
64+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
65+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
66+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
67+
IN NO EVENT SHALL KENNETH L. HARRENSTIEN BE LIABLE FOR ANY CLAIM,
68+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
69+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
70+
THE USE OR OTHER DEALINGS IN THE SOFTWARE.
71+
72+
----------------------------
73+
74+
To reiterate: If there is any likelihood that your intended use may
75+
violate any of the licensing terms of the separate components, you
76+
should NOT use them. If any of the original copyright holders object
77+
to this packaging, I will remove the offending components or simply
78+
stop providing the Auxiliary Distribution altogether.

contrib/README

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
The following directories contain programs of uncertain lineage where
2+
the original authors gave no explicit instructions as to the terms of
3+
use or redistribution.
4+
5+
Based on history and e-mail exchanges I believe that "BSD" style
6+
licensing terms are probably what was intended, but could be wrong.
7+
8+
supdup/ (Unix C version of ITS SUPDUP)
9+
read20/ (Unix utility to read TOPS-20 DUMPER tape images)
10+

contrib/read20/Makefile

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Quick and dirty makefile for read20.
2+
# Invoke with appropriate system, e.g. "make freebsd"
3+
4+
SRCS= dump.h read20.c
5+
OBJS= read20.o
6+
7+
usage:
8+
@echo 'Use appropriate system as target, eg "make freebsd"'
9+
10+
freebsd:
11+
cc -g -O -o read20 read20.c -lcompat
12+
13+
osfaxp:
14+
cc -g -O -std1 -o read20 read20.c
15+
16+
linux:
17+
cc -g -O -o read20 read20.c
18+
19+
solaris:
20+
gcc -g -O -o read20 read20.c
21+
22+
solaris-cc:
23+
/opt/SUNWspro/bin/cc -g -O -o read20 read20.c

0 commit comments

Comments
 (0)