FreeBSD src
Go to file
Poul-Henning Kamp 8963028c59 Make the diagnostics a little more useful.
A word of wisdom, don't do this:

|	cd /usr/bin
|	for i in *
|	do
|		cp $i /tmp/a
|		gzip -9 < /tmp/a > $i
|	done

It will compress files with multiple links several times.  do it this way:

|	cd /usr/bin
|	for i in *
|	do
|		gunzip -f < $i > /tmp/a
|		gzip -9 < /tmp/a > $i
|	done
1994-10-22 11:55:16 +00:00
bin Use kvm_uread instead of kvm_read to access the upages. 1994-10-18 04:27:46 +00:00
eBones Zap 4.0 libkdb as well. 1994-10-06 00:48:55 +00:00
etc Reflect the fact that we only have one GENERIC kernel now. 1994-10-22 02:11:08 +00:00
games Allow to save/restore files (was games user suid problem) 1994-10-03 14:41:11 +00:00
gnu Added cvsinit shell script as a runnable command. 1994-10-22 04:51:40 +00:00
include Remove EOF handling after Bruce explanation. This step returns 1994-10-09 11:18:44 +00:00
lib makeraw(): forget to clear IMAXBEL, set VMIN/VTIME 1994-10-22 01:49:27 +00:00
libexec The X-10 demon. From 1.1.5.1. 1994-10-22 09:53:33 +00:00
lkm Added socksys module 1994-10-16 20:39:52 +00:00
release 1. Remove comments about broken procfs, it has been fixed. 1994-10-09 20:31:01 +00:00
sbin Fatal() fixed: 1994-10-22 02:37:24 +00:00
secure !Just! fixing makefile, no code changes Geoff 1994-09-30 06:04:40 +00:00
share Invoke install.man if USE_IMAKE is set. 1994-10-22 09:21:35 +00:00
sys Make the diagnostics a little more useful. 1994-10-22 11:55:16 +00:00
tools/regression/usr.bin/sed BSD 4.4 Lite Usr.bin Sources 1994-05-27 12:33:43 +00:00
usr.bin P was missing from getopt string 1994-10-19 11:15:30 +00:00
usr.sbin X-10 stuff from 1.1.5.1. 1994-10-22 09:55:43 +00:00
COPYRIGHT This is the official 4.4 Lite copyright. 1994-09-11 07:53:28 +00:00
CVS-INFO Documented the new CVS template. This really isn't the right place for it, 1994-07-24 22:27:27 +00:00
HW.TROUBLE Added the first three entries. Changed the intro a bit. 1994-08-28 20:48:37 +00:00
Makefile For those who want a little more control over their build process... 1994-10-15 21:19:56 +00:00
TODO Added a task: make PAS16 a controller. 1994-09-11 20:01:03 +00:00