]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
28 years agoDon't fiddle page tables by hand, use pmap_enter.
phk [Thu, 2 May 1996 22:20:52 +0000 (22:20 +0000)]
Don't fiddle page tables by hand, use pmap_enter.
(copied from wd.c)

28 years agoAdd missing kD to cons25 default entry
ache [Thu, 2 May 1996 22:05:32 +0000 (22:05 +0000)]
Add missing kD to cons25 default entry

28 years agoFix ^[[1K (clear from beginning of line to cursor) and
ache [Thu, 2 May 1996 21:47:50 +0000 (21:47 +0000)]
Fix ^[[1K (clear from beginning of line to cursor) and
^[[2K (clear whole line), they not work _initially_

28 years agoOops, forgot to `cvs add' this one first...
joerg [Thu, 2 May 1996 21:47:45 +0000 (21:47 +0000)]
Oops, forgot to `cvs add' this one first...

28 years agoAdd a man page.
joerg [Thu, 2 May 1996 21:42:18 +0000 (21:42 +0000)]
Add a man page.

28 years agoReplace the dependency of `install' from `kernel' by a test for the
joerg [Thu, 2 May 1996 21:40:50 +0000 (21:40 +0000)]
Replace the dependency of `install' from `kernel' by a test for the
existance fo `kernel'.

Submitted by: peter

28 years agoXref chat(8) and ppp(8).
mpp [Thu, 2 May 1996 19:21:40 +0000 (19:21 +0000)]
Xref chat(8) and ppp(8).

Pointed-out-by: Someone in the mailing lists
28 years agoXref chat(8) and pppd(8). Also change .It references to .Pa for file
mpp [Thu, 2 May 1996 19:18:47 +0000 (19:18 +0000)]
Xref chat(8) and pppd(8).  Also change .It references to .Pa for file
name references in the file section.

28 years agoNIS client-side performance tweak:
wpaul [Thu, 2 May 1996 15:44:53 +0000 (15:44 +0000)]
NIS client-side performance tweak:

Each of the ypclnt functions does a _yp_dobind() when it starts and then
a _yp_unbind() when it finishes. This is not strictly necessary and it
wastes cycles: it means we do a new clnt_create() and clnt_destroy()
for each yp_whatever() call. In fact, you can do multiple clnt_call()s
using a single RPC client handle returned by clnt_create(). Ideally we only
have to create a handle to ypserv once (the first time we call a ypclnt
function) and then destroy it and rebind only if a call to ypserv fails.

- Modify _yp_dobind() so that it only creates a new RPC client handle
  when establishing a new binding or when one of the ypclnt calls
  invalidates an existing binding and calls _yp_dobind() to establish
  a new one.

- Modify the various ypclnt functions to only call _yp_unbind() if a
  call to ypserv fails.

28 years agoRemoved $Log$
phk [Thu, 2 May 1996 14:58:15 +0000 (14:58 +0000)]
Removed $Log$

28 years agoThis can go now.
phk [Thu, 2 May 1996 14:21:57 +0000 (14:21 +0000)]
This can go now.

28 years agoremoved:
phk [Thu, 2 May 1996 14:21:14 +0000 (14:21 +0000)]
removed:
        CLBYTES PD_SHIFT PGSHIFT NBPG PGOFSET CLSIZELOG2 CLSIZE pdei()
        ptei() kvtopte() ptetov() ispt() ptetoav() &c &c
new:
        NPDEPG

Major macro cleanup.

28 years agoPD_SHIFT -> PDRSHIFT
phk [Thu, 2 May 1996 13:08:51 +0000 (13:08 +0000)]
PD_SHIFT -> PDRSHIFT
PGOFSET -> PAGE_MASK

28 years agoCLSIZE -> getpagesize()
phk [Thu, 2 May 1996 13:06:21 +0000 (13:06 +0000)]
CLSIZE -> getpagesize()

28 years agoFix a nasty bug that causes random crashes and lockups particularly on
peter [Thu, 2 May 1996 11:38:05 +0000 (11:38 +0000)]
Fix a nasty bug that causes random crashes and lockups particularly on
very busy servers (eg: news, web).  This is an interaction between
embryonic processes that have not yet finished forking, and happen to
cause the kernel VM space to grow, hitting the uninitialised variable.

It was possible for this to strike at any time, depending on the size of
your kernel and load patterns.  One machine had paniced occasionally
when cron launches a job since before the 2.1 release.

If you had "options DIAGNOSTIC", you may have seen references to bogus
addresses like 0xdeadc142 and the like.

This is a minimal change to fix the problem, it will probably be done
better by reordering p_vmspace to be in the startzero section, but it
becomes harder to validate then.

It's been vulnerable since pmap.c rev 1.40 (Jan 9, 1995), so it's been a
cause of problems since well before 2.0.5.  This was when the merged
VM/buffer cache and the dynamic growing kernel VM space were first
committed.  This probably fixes a few of PR's.

28 years agoFirst pass at cleaning up macros relating to pages, clusters and all that.
phk [Thu, 2 May 1996 10:43:17 +0000 (10:43 +0000)]
First pass at cleaning up macros relating to pages, clusters and all that.

28 years agoRename the very bogus indeed option "LINUX" to "COMPAT_LINUX".
phk [Thu, 2 May 1996 10:41:18 +0000 (10:41 +0000)]
Rename the very bogus indeed option "LINUX" to "COMPAT_LINUX".
I can only presume that the brain behind this have never seen code
that says "#ifdef LINUX" :-(

28 years agoClear the TCP/IP device configuration screen away after we invoke it.
jkh [Thu, 2 May 1996 10:09:45 +0000 (10:09 +0000)]
Clear the TCP/IP device configuration screen away after we invoke it.

28 years agoNBPG -> PAGE_SIZE
phk [Thu, 2 May 1996 09:42:45 +0000 (09:42 +0000)]
NBPG -> PAGE_SIZE
Avoid using the struct pte stuff.

28 years agoKGDB is dead. It may come back one day if somebody does it.
phk [Thu, 2 May 1996 09:34:51 +0000 (09:34 +0000)]
KGDB is dead.  It may come back one day if somebody does it.

28 years agoNBPG -> PAGE_SIZE
phk [Thu, 2 May 1996 09:23:36 +0000 (09:23 +0000)]
NBPG -> PAGE_SIZE

28 years agoAdd wcd0 to `all' target. The fate of the IDE CDROM support in 2.2
jkh [Thu, 2 May 1996 09:15:57 +0000 (09:15 +0000)]
Add wcd0 to `all' target.  The fate of the IDE CDROM support in 2.2
is becoming clearer.. :-)

28 years agoNBPG -> PAGE_SIZE
phk [Thu, 2 May 1996 09:10:21 +0000 (09:10 +0000)]
NBPG -> PAGE_SIZE

28 years agoNBPG -> getpagesize()
phk [Thu, 2 May 1996 09:09:04 +0000 (09:09 +0000)]
NBPG -> getpagesize()

28 years agoUse PAGE_SIZE instead of NBPG
phk [Thu, 2 May 1996 08:43:37 +0000 (08:43 +0000)]
Use PAGE_SIZE instead of NBPG

28 years agoCache the result of getpagesize() so we only make one syscall.
phk [Thu, 2 May 1996 08:43:05 +0000 (08:43 +0000)]
Cache the result of getpagesize() so we only make one syscall.
Use getpagesize instead of CLBYTES.

28 years agoReplace NBPG with getpagesize()
phk [Thu, 2 May 1996 08:37:16 +0000 (08:37 +0000)]
Replace NBPG with getpagesize()

28 years agoYow! /dev/wcd0c got omitted from the boot.flp somehow. Guess that explains
jkh [Thu, 2 May 1996 08:18:28 +0000 (08:18 +0000)]
Yow!  /dev/wcd0c got omitted from the boot.flp somehow.  Guess that explains
why ATAPI CDROMs were broken in the last (and this!) SNAPSHOT.. :-(
Oh well, next SNAP I guess.

28 years agoBack out my stupid braino; I was thinking strlen and not sizeof.
fenner [Thu, 2 May 1996 05:54:14 +0000 (05:54 +0000)]
Back out my stupid braino; I was thinking strlen and not sizeof.

28 years agoSize temp var correctly; buf[4*sizeof "123"] is not long enough
fenner [Thu, 2 May 1996 05:31:13 +0000 (05:31 +0000)]
Size temp var correctly; buf[4*sizeof "123"] is not long enough
to store "192.252.119.189\0".

28 years agoConvert the time2posix man page to mdoc format. This still
mpp [Wed, 1 May 1996 23:17:27 +0000 (23:17 +0000)]
Convert the time2posix man page to mdoc format.  This still
needs some other cleanup, but it is good enough for now.

28 years agoFix a typo.
mpp [Wed, 1 May 1996 22:49:36 +0000 (22:49 +0000)]
Fix a typo.

28 years agoRemove a redundant description of the EMFILE error, and fix a typo.
mpp [Wed, 1 May 1996 22:20:40 +0000 (22:20 +0000)]
Remove a redundant description of the EMFILE error, and fix a typo.

Submitted by: James Raynard <jraynard@dial.pipex.com>

28 years agoAdd section with pgp keys (feel free to give it a better layout)
phk [Wed, 1 May 1996 20:11:01 +0000 (20:11 +0000)]
Add section with pgp keys (feel free to give it a better layout)
Add me back as patch-kit contributor.

28 years agoProvide a rudimentary man page for this, based mostly on the README.PATCH.
markm [Wed, 1 May 1996 17:16:23 +0000 (17:16 +0000)]
Provide a rudimentary man page for this, based mostly on the README.PATCH.

28 years agoRewrite this a bit. The patch has already been applied, and users
markm [Wed, 1 May 1996 17:15:30 +0000 (17:15 +0000)]
Rewrite this a bit. The patch has already been applied, and users
do not need to followmost of the upgrading instructions.

28 years agoBump SNAP date to 960501 since that's what it is now. Next SNAP, these
jkh [Wed, 1 May 1996 09:42:17 +0000 (09:42 +0000)]
Bump SNAP date to 960501 since that's what it is now.  Next SNAP, these
WON'T be hardcoded in here! :-)

28 years agoMight as well be factual. Sigh!
jkh [Wed, 1 May 1996 09:35:34 +0000 (09:35 +0000)]
Might as well be factual.  Sigh!

28 years agoFix the last known bogon with the packages menu. It's SNAP time!
jkh [Wed, 1 May 1996 09:31:50 +0000 (09:31 +0000)]
Fix the last known bogon with the packages menu.  It's SNAP time!

28 years agoMake the call to fortune here conditional as well.
jkh [Wed, 1 May 1996 09:23:30 +0000 (09:23 +0000)]
Make the call to fortune here conditional as well.

28 years agoIf we've selected X, select the compat21 distribution as well.
jkh [Wed, 1 May 1996 08:50:00 +0000 (08:50 +0000)]
If we've selected X, select the compat21 distribution as well.

28 years agoAdd the compat21 dist.
jkh [Wed, 1 May 1996 08:42:40 +0000 (08:42 +0000)]
Add the compat21 dist.

28 years agoAdded calibration the i8254 and the i586 clocks agains the RTC at boot
bde [Wed, 1 May 1996 08:39:02 +0000 (08:39 +0000)]
Added calibration the i8254 and the i586 clocks agains the RTC at boot
time.  The results are currently ignored unless certain temporary options
are used.

Added sysctls to support reading and writing the clock frequency variables
(not the frequencies themselves).  Writing is supposed to atomically
adjust all related variables.

machdep.c:
Fixed spelling of a function name in a comment so that I can log this
message which should have been with the previous commit.

Initialize `cpu_class' earlier so that it can be used in startrtclock()
instead of in calibrate_cyclecounter() (which no longer exists).

Removed range checking of `cpu'.  It is always initialized to CPU_XXX
so it is less likely to be out of bounds than most variables.

clock.h:
Removed I586_CYCLECTR().  Use rdtsc() instead.

clock.c:
TIMER_FREQ is now a variable timer_freq that defaults to the old value of
TIMER_FREQ.  #define'ing TIMER_FREQ should still work and may be the best
way of setting the frequency.

Calibration involves counting cycles while watching the RTC for one second.
This gives values correct to within (a few ppm) + (the innaccuracy of the
RTC) on my systems.

28 years agoi386/machdep.c
bde [Wed, 1 May 1996 08:31:21 +0000 (08:31 +0000)]
i386/machdep.c
include/clock.h
isa/clock.c

28 years agoInclude <sys/buf.h> so that this does't blow up with B_WRITE undefined.
jkh [Wed, 1 May 1996 06:31:18 +0000 (06:31 +0000)]
Include <sys/buf.h> so that this does't blow up with B_WRITE undefined.
I fully updated my src tree and did a `make includes' in /usr/src before
trying this fix, so I can only presume that Bruce missed something.

28 years agoOops, restored existent option LINUX. It is used at config-time.
bde [Wed, 1 May 1996 05:04:38 +0000 (05:04 +0000)]
Oops, restored existent option LINUX.  It is used at config-time.

28 years agoMade this self-sufficent (except for <sys/types.h>) when compiled in
bde [Wed, 1 May 1996 04:18:20 +0000 (04:18 +0000)]
Made this self-sufficent (except for <sys/types.h>) when compiled in
user mode.

Improved formatting and comments (mostly punctuation in comments).

28 years agoFixed a race that caused panics in kernel printfs when the screen timeout
bde [Wed, 1 May 1996 03:58:21 +0000 (03:58 +0000)]
Fixed a race that caused panics in kernel printfs when the screen timeout
routine changed the screen pointers while output was in progress.

28 years agoDon't return unused values in cpu_switch() or savectx().
bde [Wed, 1 May 1996 03:47:04 +0000 (03:47 +0000)]
Don't return unused values in cpu_switch() or savectx().

Don't preserve unused registers in the NPX case in savectx().

28 years agoRemoved unused #include.
bde [Wed, 1 May 1996 03:32:46 +0000 (03:32 +0000)]
Removed unused #include.

28 years agoMicro tweak for getting the Holographic shell message to stay on the
jkh [Wed, 1 May 1996 03:31:08 +0000 (03:31 +0000)]
Micro tweak for getting the Holographic shell message to stay on the
screen longer.

28 years agoRemoved nonexistent option "LINUX" (what's that :-).
bde [Wed, 1 May 1996 03:30:04 +0000 (03:30 +0000)]
Removed nonexistent option "LINUX" (what's that :-).

28 years agoOnly disable sio3 by default.
bde [Wed, 1 May 1996 03:26:58 +0000 (03:26 +0000)]
Only disable sio3 by default.

28 years agoDefault to udp if neither udp nor tcp is specified. The previous revision
bde [Wed, 1 May 1996 03:13:45 +0000 (03:13 +0000)]
Default to udp if neither udp nor tcp is specified.  The previous revision
was broken.  It forced udp in all cases except the extremely unusual case
argc == 0.

28 years agoRemoved prototype for obsolete function sleep().
bde [Wed, 1 May 1996 02:52:05 +0000 (02:52 +0000)]
Removed prototype for obsolete function sleep().

28 years agoRemoved unnecessary #includes from <sys/imgact.h> so that it is
bde [Wed, 1 May 1996 02:43:13 +0000 (02:43 +0000)]
Removed unnecessary #includes from <sys/imgact.h> so that it is
self-sufficient and added explicit #includes where required.

28 years agoRemoved bogus _BEGIN_DECLS/_END_DECLS.
bde [Wed, 1 May 1996 02:16:17 +0000 (02:16 +0000)]
Removed bogus _BEGIN_DECLS/_END_DECLS.

Removed unused struct tag declarations in cloned code.

Added or cleaned up idempotency ifdefs.

28 years agoMade this self-sufficent (apart from <sys/types.h>) again. It included
bde [Wed, 1 May 1996 01:53:59 +0000 (01:53 +0000)]
Made this self-sufficent (apart from <sys/types.h>) again.  It included
<sys/stat.h> and <sys/filedesc.h> just to get struct tags and depended
on a previous #include for <sys/queue.h>

28 years agoAlex Nash added for his contribution of the compat21 distribution.
jkh [Wed, 1 May 1996 01:49:03 +0000 (01:49 +0000)]
Alex Nash added for his contribution of the compat21 distribution.

28 years agoMade this compile again. A comment delimiter got deleted in the Lite2
bde [Wed, 1 May 1996 01:46:00 +0000 (01:46 +0000)]
Made this compile again.  A comment delimiter got deleted in the Lite2
changes.

28 years agoFixed incomplete or wrong lists of prerequisite #includes related to
bde [Wed, 1 May 1996 01:45:23 +0000 (01:45 +0000)]
Fixed incomplete or wrong lists of prerequisite #includes related to
<sys/types.h>.

28 years agoFixed incomplete or wrong lists of prerequisite #includes related to
bde [Wed, 1 May 1996 01:40:04 +0000 (01:40 +0000)]
Fixed incomplete or wrong lists of prerequisite #includes related to
<sys/types.h>.

28 years agoFixed a wrong prerequisite #include and a missing function-arg type.
bde [Wed, 1 May 1996 01:18:43 +0000 (01:18 +0000)]
Fixed a wrong prerequisite #include and a missing function-arg type.

28 years agoFixed misformatted #include (.Ft -> .Fd).
bde [Wed, 1 May 1996 01:04:44 +0000 (01:04 +0000)]
Fixed misformatted #include (.Ft -> .Fd).

28 years agoMade this work with the documented prerequisite #includes (none).
bde [Wed, 1 May 1996 00:57:57 +0000 (00:57 +0000)]
Made this work with the documented prerequisite #includes (none).

28 years agoOops, this should have been with the ctype changes.
bde [Wed, 1 May 1996 00:47:05 +0000 (00:47 +0000)]
Oops, this should have been with the ctype changes.

Fixed longstanding namespace convolution involving rune_t vs wchar_t...

This change breaks similar (but more convoluted) convolutions in the
stddef.h in gcc distributions.  Ports of gcc should avoid using the
gcc headers.

28 years agoFixed longstanding namespace convolution involving rune_t vs wchar_t.
bde [Wed, 1 May 1996 00:40:10 +0000 (00:40 +0000)]
Fixed longstanding namespace convolution involving rune_t vs wchar_t.
If _ANSI_SOURCE or _POSIX_SOURCE is defined, then <ctype.h> had to
be included before <stddef.h> or <stdlib.h> to get rune_t declared.
Now rune_t is declared perfectly bogusly in all cases when <ctype.h>
is included.

This change breaks similar (but more convoluted) convolutions in the
stddef.h in gcc distributions.  Ports of gcc should avoid using the
gcc headers.

28 years agoFixed timeouts. I broke them in rev.1.17 for the FORCE_COMCONSOLE and
bde [Tue, 30 Apr 1996 23:43:25 +0000 (23:43 +0000)]
Fixed timeouts.  I broke them in rev.1.17 for the FORCE_COMCONSOLE and
(interactively set RB_SERIAL) && BOOTWAIT (serial i/o) cases.

28 years agoRemoved gratuitous differences from Lite2.
bde [Tue, 30 Apr 1996 23:35:57 +0000 (23:35 +0000)]
Removed gratuitous differences from Lite2.

Cleaned up vm typedefs.

28 years ago#include <sys/filedesc.h> explicitly instead of depending on it being
bde [Tue, 30 Apr 1996 23:26:52 +0000 (23:26 +0000)]
#include <sys/filedesc.h> explicitly instead of depending on it being
bogusly included by <sys/socketvar.h>.

28 years agoFixed nfs sysctls. They missed out on the fs -> vfs name changes from
bde [Tue, 30 Apr 1996 23:23:09 +0000 (23:23 +0000)]
Fixed nfs sysctls.  They missed out on the fs -> vfs name changes from
Lite2.  This broke nfsstat.

28 years agoMake pcibus_check() ignore Device/Vendor IDs of all 0.
se [Tue, 30 Apr 1996 21:37:21 +0000 (21:37 +0000)]
Make pcibus_check() ignore Device/Vendor IDs of all 0.

28 years agoFix another couple of bogons with the package menu.
jkh [Tue, 30 Apr 1996 21:22:29 +0000 (21:22 +0000)]
Fix another couple of bogons with the package menu.

28 years agoAdd ports-all and comment out individual ports-*. Add commented out
asami [Tue, 30 Apr 1996 21:05:07 +0000 (21:05 +0000)]
Add ports-all and comment out individual ports-*.  Add commented out
ports-distfiles to ports-supfile.  Add explanations.

28 years agoChange Masafumi Nakane's address (masafumi@pobox.com -> max@sfc.wide.ad.jp).
asami [Tue, 30 Apr 1996 20:39:51 +0000 (20:39 +0000)]
Change Masafumi Nakane's address (masafumi@pobox.com -> max@sfc.wide.ad.jp).

28 years agoDocument the /etc/fbtab fix for X.
jkh [Tue, 30 Apr 1996 19:07:58 +0000 (19:07 +0000)]
Document the /etc/fbtab fix for X.
Inspired-By: Nik Clayton <nik@blueberry.co.uk>
28 years agoDon't include <machine/ansi.h> twice.
phk [Tue, 30 Apr 1996 12:54:27 +0000 (12:54 +0000)]
Don't include <machine/ansi.h> twice.

Reviewed by: phk
Submitted by: "Philippe Charnier" <charnier@lirmm.fr>

28 years agopte.h: Add the VADDR(pdi,pti) macro to construct virtual address from
phk [Tue, 30 Apr 1996 12:02:12 +0000 (12:02 +0000)]
pte.h: Add the VADDR(pdi,pti) macro to construct virtual address from
page dir+table index.
pmap.h: remove NUPDE, it was wrong and not used.  Sanitize KSTKPTEOFF.
vmparam.h: Calculate virtual addr from PDI+PTI from pmap.h rather than
using magic math.  Remove UPDT, not used.

28 years agoRemove a spurious mapping that was introduced earlier.
phk [Tue, 30 Apr 1996 11:58:56 +0000 (11:58 +0000)]
Remove a spurious mapping that was introduced earlier.

28 years agoAdd a missing close that left ftpd's scattered around on pkg_installs
jkh [Tue, 30 Apr 1996 06:13:50 +0000 (06:13 +0000)]
Add a missing close that left ftpd's scattered around on pkg_installs

28 years agoproperly reset SYSTEM_STATE after installCommit runs.
jkh [Tue, 30 Apr 1996 06:02:51 +0000 (06:02 +0000)]
properly reset SYSTEM_STATE after installCommit runs.

28 years agoFix some bogons in the package installer menu and search function.
jkh [Tue, 30 Apr 1996 06:00:06 +0000 (06:00 +0000)]
Fix some bogons in the package installer menu and search function.

28 years agoMake sure package-installers refresh the screen properly.
jkh [Tue, 30 Apr 1996 05:40:15 +0000 (05:40 +0000)]
Make sure package-installers refresh the screen properly.

28 years agoClear the screen before putting up tcpip dialog.
jkh [Tue, 30 Apr 1996 05:25:15 +0000 (05:25 +0000)]
Clear the screen before putting up tcpip dialog.

28 years agoMore cosmetic changes before tomorrow's snapshot.
jkh [Tue, 30 Apr 1996 05:23:49 +0000 (05:23 +0000)]
More cosmetic changes before tomorrow's snapshot.

28 years agoCorrect a typo.
joerg [Tue, 30 Apr 1996 05:20:32 +0000 (05:20 +0000)]
Correct a typo.

Submitted by: mbarkah@hemi.com (Ade Barkah)

28 years agoHighly cosmetic tweaks.
jkh [Tue, 30 Apr 1996 04:59:57 +0000 (04:59 +0000)]
Highly cosmetic tweaks.

28 years agoMake the invocation of fortune conditional
jkh [Tue, 30 Apr 1996 04:44:37 +0000 (04:44 +0000)]
Make the invocation of fortune conditional

28 years agohash_search() has changed its calling semantics somewhat - bring
jkh [Tue, 30 Apr 1996 00:17:56 +0000 (00:17 +0000)]
hash_search() has changed its calling semantics somewhat - bring
libforms back into sync.

28 years agoMove the map entry allocations from the kmem_map to the kernel_map. As
dyson [Mon, 29 Apr 1996 22:04:57 +0000 (22:04 +0000)]
Move the map entry allocations from the kmem_map to the kernel_map.  As
a side effect, correct the associated object offset.

28 years agoFix more display weirdnesses that only show up during a real installation.
jkh [Mon, 29 Apr 1996 21:15:44 +0000 (21:15 +0000)]
Fix more display weirdnesses that only show up during a real installation.

28 years agoRemove a bogus dialog_clear();
jkh [Mon, 29 Apr 1996 21:07:44 +0000 (21:07 +0000)]
Remove a bogus dialog_clear();

28 years agoSupport for "-u" which sets the timestamp from the delta on the file.
phk [Mon, 29 Apr 1996 21:02:42 +0000 (21:02 +0000)]
Support for "-u" which sets the timestamp from the delta on the file.
Intended for sup mirrors etc.  Not well tested yet.

Reviewed by: phk
Submitted by: Giles Lean <giles@nemeton.com.au>
Submitted by: John Hay <jhay@mikom.csir.co.za>

28 years agoFace the truth and bump the 2.2-960428-SNAP to 2.2-960430; that's the
jkh [Mon, 29 Apr 1996 20:29:29 +0000 (20:29 +0000)]
Face the truth and bump the 2.2-960428-SNAP to 2.2-960430; that's the
last bump, I promise!

28 years agoslight re-ordering to allow the qcam to compile with devfs enabled.
julian [Mon, 29 Apr 1996 20:05:52 +0000 (20:05 +0000)]
slight re-ordering to allow the qcam to compile with devfs enabled.

28 years agoAdd ATAPI_STATIC so that the ATAPI cdroms work correctly again
jkh [Mon, 29 Apr 1996 20:03:41 +0000 (20:03 +0000)]
Add ATAPI_STATIC so that the ATAPI cdroms work correctly again
under -current.
Submitted-By: Serge Vakulenko <vak@cronyx.ru>
28 years agoAdd an extra line to the floppies target which will make it refresh
jkh [Mon, 29 Apr 1996 19:38:36 +0000 (19:38 +0000)]
Add an extra line to the floppies target which will make it refresh
the distribution area's floppy images.

28 years agoReshuffle the installation routines a little for greater clarify.
jkh [Mon, 29 Apr 1996 19:34:25 +0000 (19:34 +0000)]
Reshuffle the installation routines a little for greater clarify.

28 years agoYikes - bogon crept into the NFS setup menu.
jkh [Mon, 29 Apr 1996 18:06:08 +0000 (18:06 +0000)]
Yikes - bogon crept into the NFS setup menu.

28 years agoFix a small display bogon with the progress indicators.
jkh [Mon, 29 Apr 1996 17:59:07 +0000 (17:59 +0000)]
Fix a small display bogon with the progress indicators.