Remove obsolete cruft that has not been used in several years.

Feature safe:	yes
This commit is contained in:
Mark Linimon 2010-06-22 23:55:31 +00:00
parent e8f9e57eca
commit 0f99ddce2e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=256851
7 changed files with 0 additions and 256 deletions

View File

@ -1,31 +0,0 @@
(1) Copy the following files to under the "files" subdirectory:
Copy the following files from a running 4.0 system:
/dev/{bpf0,kmem,lkm,mem,null,random,stderr,stdin,stdout,tty,zero}
/dev/fd/[0-9]
/etc/resolv.conf
/usr/bin/openssl
/usr/include/openssl/evp.h
/usr/include/openssl/rsa.h
/usr/include/openssl/rsaref.h
/usr/lib/libRSAglue.a
/usr/lib/libRSAglue.so.1
/usr/lib/libcrypto.a
/usr/lib/libcrypto.so.1
/usr/lib/libssl.a
/usr/lib/libssl.so.1
Copy the following files from a running 4-current system or a
2.2-stable system. In the latter case, it will be in /usr/lib.
/usr/lib/aout/c++rt0.o
Copy the following files from a very recent 4.0 system or source tree:
/usr/share/info/dir
(2) Run "sh mkbindist". Note the first time you should set "ftp=1".
(3) Copy "tarballs/bindist.tar" to the same directory in all the build machines.

View File

@ -1,64 +0,0 @@
compat
dev
tmp
usr/games/adventure
usr/games/arithmetic
usr/games/atc
usr/games/backgammon
usr/games/battlestar
usr/games/bcd
usr/games/bs
usr/games/caesar
usr/games/canfield
usr/games/cfscores
usr/games/cribbage
usr/games/dm
usr/games/factor
usr/games/fish
usr/games/fortune
usr/games/grdc
usr/games/hack
usr/games/hangman
usr/games/hide
usr/games/larn
usr/games/mille
usr/games/morse
usr/games/number
usr/games/phantasia
usr/games/piano
usr/games/pig
usr/games/pom
usr/games/ppt
usr/games/primes
usr/games/quiz
usr/games/rain
usr/games/random
usr/games/robots
usr/games/rogue
usr/games/rot13
usr/games/sail
usr/games/snake
usr/games/snscore
usr/games/teachgammon
usr/games/trek
usr/games/unstr
usr/games/wargames
usr/games/worm
usr/games/worms
usr/games/wump
usr/lib/lib*_p.a
usr/lib/aout/lib*_p.a
usr/share/calendar
usr/share/doc
usr/share/examples
usr/share/games
usr/share/info/*.info.gz
usr/share/isdn
usr/share/locale
usr/share/man
usr/share/nls
usr/share/perl/man
usr/share/zoneinfo
usr/sbin/sysctl
var/games
var/run

View File

@ -1,9 +0,0 @@
tmp/depends
tmp/distfiles
tmp/packages
usr/X11R6
usr/local
usr/opt/doc
usr/opt/www
usr/ports
usr/src

View File

@ -1,73 +0,0 @@
#!/bin/sh
# "sed -e 's/\(.\)/ -\1/g'" can be used to convert "abc" to "-a -b -c"
a=0
m=0
n=0
r=0
s=0
v=0
if [ $# = 0 ]; then
s=1
else
set $(printf "%s\n" "$*" | sed -e 's/-//g' -e 's/\([a-z]\)/ \1/g')
while [ $# -gt 0 ]; do
eval $1=1
shift
done
fi
if [ "$a" = 1 ]; then
m=1
n=1
r=1
s=1
v=1
fi
printed=0
if [ -f /usr/bin/UNAME_VERSION ]; then
VERSION=$(cat /usr/bin/UNAME_VERSION)
else
VERSION=4.5-RELEASE #XXX Perhaps make it the same as the host version?
fi
if [ "$s" = 1 ]; then
echo -n "FreeBSD"
printed=1
fi
printsp () {
if [ $1 = 1 ]; then
echo -n " "
fi
}
if [ "$n" = 1 ]; then
printsp $printed
echo -n $(hostname)
printed=1
fi
if [ "$r" = 1 ]; then
printsp $printed
echo -n "${VERSION}"
printed=1
fi
if [ "$v" = 1 ]; then
printsp $printed
echo -n "FreeBSD ${VERSION} #0: Sun Apr 1 02:34:56 PST 2002 asami@bento.freebsd.org:/usr/src/sys/compile/BENTO"
printed=1
fi
if [ "$m" = 1 ]; then
printsp $printed
echo -n "i386"
printed=1
fi
echo

View File

@ -1,6 +0,0 @@
rel=4-LATEST
ftpserver=current.jp.freebsd.org
ftpdists="bin/bin dict/dict games/games manpages/manpages compat22/compat22 compat3x/compat3x crypto/crypto crypto/krb4"
kernel=CLUSTER
ftp=1
useworld=0

View File

@ -1,67 +0,0 @@
#!/bin/sh
# "sed -e 's/\(.\)/ -\1/g'" can be used to convert "abc" to "-a -b -c"
a=0
m=0
n=0
r=0
s=0
v=0
if [ $# = 0 ]; then
s=1
else
set $(printf "%s\n" "$*" | sed -e 's/-//g' -e 's/\([a-z]\)/ \1/g')
while [ $# -gt 0 ]; do
eval $1=1
shift
done
fi
if [ "$a" = 1 ]; then
m=1
n=1
r=1
s=1
v=1
fi
printed=0
if [ "$s" = 1 ]; then
echo -n "FreeBSD"
printed=1
fi
printsp () {
if [ $1 = 1 ]; then
echo -n " "
fi
}
if [ "$n" = 1 ]; then
printsp $printed
echo -n $(hostname)
printed=1
fi
if [ "$r" = 1 ]; then
printsp $printed
echo -n "5.0-CURRENT"
printed=1
fi
if [ "$v" = 1 ]; then
printsp $printed
echo -n "FreeBSD 5.0-CURRENT #0: Sun Mar 18 03:47:56 PST 2000 asami@bento.freebsd.org:/usr/src/sys/compile/BENTO"
printed=1
fi
if [ "$m" = 1 ]; then
printsp $printed
echo -n "i386"
printed=1
fi
echo

View File

@ -1,6 +0,0 @@
rel=5-LATEST
ftpserver=snapshots.jp.freebsd.org
ftpdists="bin/bin dict/dict games/games compat22/compat22 compat3x/compat3x compat4x/compat4x crypto/crypto crypto/krb4"
kernel=CLUSTER
ftp=1
useworld=0