dragonfly.git
18 years agoAnsify getcwd and declare the syscall prototype.
Joerg Sonnenberger [Mon, 25 Apr 2005 18:19:48 +0000 (18:19 +0000)]
Ansify getcwd and declare the syscall prototype.

18 years agoImplement a course offset adjustment for large time steps.
Matthew Dillon [Mon, 25 Apr 2005 17:42:49 +0000 (17:42 +0000)]
Implement a course offset adjustment for large time steps.

Rework the logging code.  Add four logging levels (default 1, which logs
any corrections > 10 ppm made).

Log to syslog when not in debug mode.

18 years agoRemove inactive code for the maclabel parameter. DragonFly doesn't support
Sascha Wildner [Mon, 25 Apr 2005 17:33:26 +0000 (17:33 +0000)]
Remove inactive code for the maclabel parameter. DragonFly doesn't support
Mandatory Access Control currently.

18 years ago- ANSI
Liam J. Foy [Mon, 25 Apr 2005 16:10:25 +0000 (16:10 +0000)]
- ANSI
- WARNS 6

Submitted by: Peter Avalos <pavalos@theshell.com>

18 years agoCISS quirk.
Joerg Sonnenberger [Mon, 25 Apr 2005 15:14:54 +0000 (15:14 +0000)]
CISS quirk.

Obtained-from: FreeBSD

18 years agoBe consistent for preventing redundant header inclusion.
Hiten Pandya [Mon, 25 Apr 2005 14:27:03 +0000 (14:27 +0000)]
Be consistent for preventing redundant header inclusion.

18 years agoANSIfy.
Joerg Sonnenberger [Mon, 25 Apr 2005 08:33:25 +0000 (08:33 +0000)]
ANSIfy.

18 years agoANSIfy and fix function casts.
Joerg Sonnenberger [Mon, 25 Apr 2005 08:25:23 +0000 (08:25 +0000)]
ANSIfy and fix function casts.

18 years agoProperly create and destroy the DMA maps.
Joerg Sonnenberger [Mon, 25 Apr 2005 07:05:55 +0000 (07:05 +0000)]
Properly create and destroy the DMA maps.

18 years agoRemoved duplicate static variable, created when I merged compat.c and job.c
Max Okumoto [Mon, 25 Apr 2005 05:52:18 +0000 (05:52 +0000)]
Removed duplicate static variable, created when I merged compat.c and job.c

18 years agoDon't issue a frequency correction if it is the same as the last
Matthew Dillon [Mon, 25 Apr 2005 02:28:47 +0000 (02:28 +0000)]
Don't issue a frequency correction if it is the same as the last
frequency correction.

18 years agoImplement a variable polling rate capability.
Matthew Dillon [Sun, 24 Apr 2005 23:09:32 +0000 (23:09 +0000)]
Implement a variable polling rate capability.

Implement a polling state which runs through a fast-startup to get a rough
offset correction, a medium-polled acquisition mode to get a rough
frequency correction, and a long-polled maintainance mode (assuming the
time source is good enough) to get a fine frequency correction.

startup mode: 6 five-second polls
acquisition mode: 16 five-minute polls
maintainance mode: 30 minute polls (if the correllation is good enough)

Implement a short failure mode (3 failed polls in a row) which returns
to an aquisition state on recovery, and a long failure mode (10 failed polls
in a row) which returns to a startup state on recovery.

When resetting a regression, also remove any alternate regression further
on down the alt chain (since they won't be staggered any more).

18 years agoComment out description of the maclabel parameter.
Sascha Wildner [Sun, 24 Apr 2005 20:20:57 +0000 (20:20 +0000)]
Comment out description of the maclabel parameter.

19 years ago- ANSI
Liam J. Foy [Sun, 24 Apr 2005 15:31:30 +0000 (15:31 +0000)]
- ANSI
- WARNS 6

Submitted by: Peter Avalos <pavalos@theshell.com>

19 years ago- Add further functionality to check for invalid characters
Liam J. Foy [Sun, 24 Apr 2005 14:36:55 +0000 (14:36 +0000)]
- Add further functionality to check for invalid characters
- Remove keyword 'continue' for more indepth error reporting
  on each line
- WARNS 6 Clean

No objections: kernel@

19 years agoMove redirection of stdin into ProcExec().
Max Okumoto [Sun, 24 Apr 2005 12:44:50 +0000 (12:44 +0000)]
Move redirection of stdin into ProcExec().

19 years agoMove redirection of stdout into ProcExec().
Max Okumoto [Sun, 24 Apr 2005 12:44:08 +0000 (12:44 +0000)]
Move redirection of stdout into ProcExec().

19 years agoMoved manupulation of close-on-exec flags on std{in,out,err} into
Max Okumoto [Sun, 24 Apr 2005 12:43:43 +0000 (12:43 +0000)]
Moved manupulation of close-on-exec flags on std{in,out,err} into
ProcExec().  The old code was broken in that it cleared all the
flags, not just close-on-exec.

19 years agoUse a temp variable to move dups2() out of conditional.
Max Okumoto [Sun, 24 Apr 2005 12:43:09 +0000 (12:43 +0000)]
Use a temp variable to move dups2() out of conditional.

19 years agoMove clearing of close-on-exec of both stdin, stdout together.
Max Okumoto [Sun, 24 Apr 2005 12:42:38 +0000 (12:42 +0000)]
Move clearing of close-on-exec of both stdin, stdout together.

19 years agoMoved execvp() into ProcExec().
Max Okumoto [Sun, 24 Apr 2005 12:42:22 +0000 (12:42 +0000)]
Moved execvp() into ProcExec().

19 years agoMove redirection of stderr into ProcExec().
Max Okumoto [Sun, 24 Apr 2005 12:41:54 +0000 (12:41 +0000)]
Move redirection of stderr into ProcExec().

19 years agoMove common exec code into a ProcExec().
Max Okumoto [Sun, 24 Apr 2005 12:41:08 +0000 (12:41 +0000)]
Move common exec code into a ProcExec().

19 years agoMove OP_* #defines out of make.h and into GNode.h were they belong.
Max Okumoto [Sun, 24 Apr 2005 12:40:23 +0000 (12:40 +0000)]
Move OP_* #defines out of make.h and into GNode.h were they belong.

19 years agoCopy string into temp variable to quiet warning.
Max Okumoto [Sun, 24 Apr 2005 12:39:45 +0000 (12:39 +0000)]
Copy string into temp variable to quiet warning.

19 years agoMove variable declarations out of globals.h into var.h
Max Okumoto [Sun, 24 Apr 2005 12:39:17 +0000 (12:39 +0000)]
Move variable declarations out of globals.h into var.h

19 years agoRevert using execl(), it makes it difficult to extract common code.
Max Okumoto [Sun, 24 Apr 2005 12:38:26 +0000 (12:38 +0000)]
Revert using execl(), it makes it difficult to extract common code.

19 years agoGet rid off the wrappers around __va_copy(), they serve no real purpose.
Jeroen Ruigrok/asmodai [Sun, 24 Apr 2005 10:58:19 +0000 (10:58 +0000)]
Get rid off the wrappers around __va_copy(), they serve no real purpose.
Wrap va_copy() in __ISO_C_VISIBLE.

19 years ago__pure__ is supported from 2.96 onward, not 3.0.
Jeroen Ruigrok/asmodai [Sun, 24 Apr 2005 09:56:31 +0000 (09:56 +0000)]
__pure__ is supported from 2.96 onward, not 3.0.

19 years agoSynch our GNU_PREREQ() macro with FreeBSD:
Jeroen Ruigrok/asmodai [Sun, 24 Apr 2005 09:41:27 +0000 (09:41 +0000)]
Synch our GNU_PREREQ() macro with FreeBSD:

explicitly exclude the Intel C compiler and make the layout a tad bit
better to read.

19 years agoChange client_check() to calculate the best offset and the best frequency
Matthew Dillon [Sun, 24 Apr 2005 09:39:27 +0000 (09:39 +0000)]
Change client_check() to calculate the best offset and the best frequency
correction separately.

The best offset correction now utilizes a standard deviation of the offset
error with a minimum of 4 samples.  An offset correction occurs when the
standard deviation is less then 1/4 the average offset.  When an offset
correction is made, the offset data is cleared (since it becomes invalid
once a correction is made).  This calculation gives the code an almost
human perception of when the offset can be safely adjusted, regardless
of the 'mess' on the internet.

Change tv_delta_micro() into tv_delta_double() since most of the callers
were (previously) dividing the result by 1E6.

NOTE: the correllation for frequency correction is not working quite as
well as I had hoped, it's bouncing around a lot for internet ntp sources.
But the standard deviation on the offset appears to work very well.

19 years agoAllows 16 samples with a correllation >= 0.96 in addition to the
Matthew Dillon [Sun, 24 Apr 2005 06:24:42 +0000 (06:24 +0000)]
Allows 16 samples with a correllation >= 0.96 in addition to the
pre-existing 8 samples with a correllation >= 0.99 to satisfy the
requirements for a correction to be issued to the system.

19 years agoFix an overflow in the delta time calculation. A double as incorrectly
Matthew Dillon [Sun, 24 Apr 2005 06:23:56 +0000 (06:23 +0000)]
Fix an overflow in the delta time calculation.  A double as incorrectly
converted to a long.

19 years agoCleanup compiler warnings. Generate cleaner debug output. Change the
Matthew Dillon [Sun, 24 Apr 2005 05:04:28 +0000 (05:04 +0000)]
Cleanup compiler warnings.  Generate cleaner debug output.  Change the
default polling interval to 60 seconds.

Add a -T option to specify the polling interval.  Enhance test mode (-t).

19 years agoCorrect some packet ntohs/htons issues. Fix a documentation bug.
Matthew Dillon [Sun, 24 Apr 2005 03:10:53 +0000 (03:10 +0000)]
Correct some packet ntohs/htons issues.  Fix a documentation bug.
Adjust the command byte, rootdelay, and precision in the message to
conform to what ntpdate uses.

19 years agoInitial commit for the DragonFly home-made ntpd client. Why? Because
Matthew Dillon [Sun, 24 Apr 2005 02:36:50 +0000 (02:36 +0000)]
Initial commit for the DragonFly home-made ntpd client.  Why?  Because
xntpd is ridiculously huge, and OpenBSD's ntpd doesn't handle frequency
correction properly.

This is a work in progress, not yet ready for prime time.  Expect many
more commits.

19 years agoFix the structural type for kern.boottime and kern.basetime. Fix basetime
Matthew Dillon [Sun, 24 Apr 2005 02:01:08 +0000 (02:01 +0000)]
Fix the structural type for kern.boottime and kern.basetime.  Fix basetime
so the sysctl is properly sized with a NULL oldp.

Fix kern.ntp.delta.  It was doing a relative adjustment instead of an
absolute adjustment.

Document the ntp sysctl_*() PROC's.

19 years agoFix stupid order bug. The code should ignore the first sample(s),
Joerg Sonnenberger [Sat, 23 Apr 2005 20:43:34 +0000 (20:43 +0000)]
Fix stupid order bug. The code should ignore the first sample(s),
which means it should terminate before updating the statistics.

19 years agoMake access to basetime MP safe and interrupt-race safe by using a simple
Matthew Dillon [Sat, 23 Apr 2005 20:34:32 +0000 (20:34 +0000)]
Make access to basetime MP safe and interrupt-race safe by using a simple
tail-chasing FIFO for updates to basetime.

Reorganize the PROC sysctl's.  This actually undoes part of the last commit
and redoes it, though there was nothing wrong with the last commit.

Move the SYSCTL_OUT phase to *after* the SYSCTL_IN phase.

19 years agoAlways use SYSCTL_OUT, sysctl doesn't print the value otherwise.
Joerg Sonnenberger [Sat, 23 Apr 2005 19:59:05 +0000 (19:59 +0000)]
Always use SYSCTL_OUT, sysctl doesn't print the value otherwise.
Use CTLTYPE_QUAD to correctly descripe the various variables.

19 years agoAdd support for unsigned quads. Use strtoq and %qd / %qu.
Joerg Sonnenberger [Sat, 23 Apr 2005 19:57:35 +0000 (19:57 +0000)]
Add support for unsigned quads. Use strtoq and %qd / %qu.

19 years agoAdd forgotten SYSCTL_ADD_QUAD, move the SYSCTL_ADD_INT up where it belongs.
Joerg Sonnenberger [Sat, 23 Apr 2005 19:46:42 +0000 (19:46 +0000)]
Add forgotten SYSCTL_ADD_QUAD, move the SYSCTL_ADD_INT up where it belongs.
Add support for unsigned quads.

19 years agoMake kern.ntp.delta preemption save.
Joerg Sonnenberger [Sat, 23 Apr 2005 18:46:54 +0000 (18:46 +0000)]
Make kern.ntp.delta preemption save.

19 years agoGC more mips parts.
Joerg Sonnenberger [Sat, 23 Apr 2005 18:20:40 +0000 (18:20 +0000)]
GC more mips parts.

19 years agoRemove MIPS bits.
Joerg Sonnenberger [Sat, 23 Apr 2005 18:14:49 +0000 (18:14 +0000)]
Remove MIPS bits.

19 years agoRemove support for canbus (which is PC98 specific).
Sascha Wildner [Fri, 22 Apr 2005 22:02:58 +0000 (22:02 +0000)]
Remove support for canbus (which is PC98 specific).

19 years agoAdd some convenient targets for cvs maintanance by the cvs meister.
Matthew Dillon [Fri, 22 Apr 2005 20:51:37 +0000 (20:51 +0000)]
Add some convenient targets for cvs maintanance by the cvs meister.

19 years agoReally removed the hack. The last patch just added another
Max Okumoto [Fri, 22 Apr 2005 18:05:56 +0000 (18:05 +0000)]
Really removed the hack.  The last patch just added another
copy of the hack. sigh

19 years agoRemoved stdint.h hack
Max Okumoto [Fri, 22 Apr 2005 18:01:32 +0000 (18:01 +0000)]
Removed stdint.h hack

requested by joerg.

19 years agoDon't call cpu_mb1 after lwkt_setcpu_self, but call it internally
Joerg Sonnenberger [Fri, 22 Apr 2005 17:41:15 +0000 (17:41 +0000)]
Don't call cpu_mb1 after lwkt_setcpu_self, but call it internally
after the processing is done in lwkt_setcpu_self. The extern call
should automatically invalidate all non-local data and keeping it
in lwkt_setcpu_self ensures that it continues to work even with
IPO.

Requested-by: dillon
19 years ago- Check return value of setenv(3)
Liam J. Foy [Fri, 22 Apr 2005 16:59:46 +0000 (16:59 +0000)]
- Check return value of setenv(3)

Submitted by: Joe Talbott <josepht@cstone.net>

19 years agoremove spaces before tabs in this file
Max Okumoto [Fri, 22 Apr 2005 16:02:21 +0000 (16:02 +0000)]
remove spaces before tabs in this file

19 years agouse execl() instead of execv() so we can reduce the number of warnings.
Max Okumoto [Fri, 22 Apr 2005 16:01:56 +0000 (16:01 +0000)]
use execl() instead of execv() so we can reduce the number of warnings.

suggested by: joerg.

19 years agoMove prototype for Main_ParseArgLine() into make.h so we can delete
Max Okumoto [Fri, 22 Apr 2005 16:01:03 +0000 (16:01 +0000)]
Move prototype for Main_ParseArgLine() into make.h so we can delete
nonints.h

19 years agoMove some #defines related to parsing into parse.h
Max Okumoto [Fri, 22 Apr 2005 15:59:54 +0000 (15:59 +0000)]
Move some #defines related to parsing into parse.h

19 years agoMake shellName and shellPath static to job.c
Max Okumoto [Fri, 22 Apr 2005 15:59:32 +0000 (15:59 +0000)]
Make shellName and shellPath static to job.c

19 years agoMake the three version of the fork code more uniform.
Max Okumoto [Fri, 22 Apr 2005 15:59:07 +0000 (15:59 +0000)]
Make the three version of the fork code more uniform.

19 years ago- Use errno to report why freopen(3) failed
Liam J. Foy [Fri, 22 Apr 2005 15:36:39 +0000 (15:36 +0000)]
- Use errno to report why freopen(3) failed
- Minor cleanups

19 years agoBack out last commit, we are not there yet and I have to study
Joerg Sonnenberger [Fri, 22 Apr 2005 11:00:36 +0000 (11:00 +0000)]
Back out last commit, we are not there yet and I have to study
the interactions between the network RC scripts more.

19 years agoChange .EXPORT: to .EXPORTVAR: earlier versions of pmake used
Max Okumoto [Fri, 22 Apr 2005 10:38:30 +0000 (10:38 +0000)]
Change .EXPORT: to .EXPORTVAR: earlier versions of pmake used
.EXPORT: and .NOEXPORT: as special targets.

19 years agoMove to CPU #0 in settime() to prevent races.
Joerg Sonnenberger [Fri, 22 Apr 2005 10:12:26 +0000 (10:12 +0000)]
Move to CPU #0 in settime() to prevent races.

19 years agoUse normal variable names for rtsold, provide default values.
Joerg Sonnenberger [Fri, 22 Apr 2005 10:05:41 +0000 (10:05 +0000)]
Use normal variable names for rtsold, provide default values.

19 years agoRemove obsolete rcNG scripts as part of make upgrade.
Joerg Sonnenberger [Fri, 22 Apr 2005 09:14:08 +0000 (09:14 +0000)]
Remove obsolete rcNG scripts as part of make upgrade.

19 years agoDon't install wscons.
Joerg Sonnenberger [Fri, 22 Apr 2005 08:58:42 +0000 (08:58 +0000)]
Don't install wscons.

19 years agoAdd frequency correction support. The drift factor is currently
Joerg Sonnenberger [Fri, 22 Apr 2005 08:35:04 +0000 (08:35 +0000)]
Add frequency correction support. The drift factor is currently
determined via linear regression of the last 8 offset corrections.
It is bound to 128 ppm in one step to avoid extreme drifts when
the drift calculation is incorrect for some reason. With the
default values this can result in a maximum wrong drift of
8 * 60 * 8 * 128e-6 s ~= 0.5s (samples per update, update interval,
samples to trigger drift correction, max. drift error) until the
next iteration is done.

19 years agoRemove RC scripts for stuff we have don't have in our tree.
Joerg Sonnenberger [Fri, 22 Apr 2005 08:30:25 +0000 (08:30 +0000)]
Remove RC scripts for stuff we have don't have in our tree.
Add KEYWORD DragonFly for those we have and which didn't have it.
Remove mountall, replace it with mountcritremote when necessary.
Remove lkm dependencies, we don't use it anyway.
Run mixer script before LOGIN.

19 years agoRIP PCVT userland.
Joerg Sonnenberger [Fri, 22 Apr 2005 07:39:54 +0000 (07:39 +0000)]
RIP PCVT userland.

19 years agoUnhook gperf, it was only used by gcc2.
Joerg Sonnenberger [Fri, 22 Apr 2005 07:38:58 +0000 (07:38 +0000)]
Unhook gperf, it was only used by gcc2.

19 years agoUse system version of getopt_long and basename for the bootstrapping tools.
Joerg Sonnenberger [Fri, 22 Apr 2005 06:52:42 +0000 (06:52 +0000)]
Use system version of getopt_long and basename for the bootstrapping tools.

19 years agoRemove DEC Alpha support.
Sascha Wildner [Fri, 22 Apr 2005 02:23:23 +0000 (02:23 +0000)]
Remove DEC Alpha support.

19 years agoRemove DEC Alpha support.
Sascha Wildner [Fri, 22 Apr 2005 02:18:46 +0000 (02:18 +0000)]
Remove DEC Alpha support.

19 years agoRemove DEC Alpha support.
Sascha Wildner [Fri, 22 Apr 2005 02:09:15 +0000 (02:09 +0000)]
Remove DEC Alpha support.

19 years agoRemove support for dead architectures.
Sascha Wildner [Fri, 22 Apr 2005 01:47:03 +0000 (01:47 +0000)]
Remove support for dead architectures.

19 years agoRemove DEC Alpha support.
Sascha Wildner [Fri, 22 Apr 2005 01:07:59 +0000 (01:07 +0000)]
Remove DEC Alpha support.

19 years agoNo longer check if PCVT is configured.
Sascha Wildner [Fri, 22 Apr 2005 00:55:32 +0000 (00:55 +0000)]
No longer check if PCVT is configured.

19 years agoAdd Copyright (c) 2002 Juli Mallett, since I merged with var_modify.c
Max Okumoto [Fri, 22 Apr 2005 00:38:12 +0000 (00:38 +0000)]
Add Copyright (c) 2002 Juli Mallett, since I merged with var_modify.c

19 years agomove defines from job.h into job.c since nothing else needs them.
Max Okumoto [Thu, 21 Apr 2005 23:13:47 +0000 (23:13 +0000)]
move defines from job.h into job.c since nothing else needs them.

19 years agoMerge compat.[ch] into job.[ch]
Max Okumoto [Thu, 21 Apr 2005 23:13:19 +0000 (23:13 +0000)]
Merge compat.[ch] into job.[ch]

19 years agoMove Cmd_Exec() from main.c to job.c
Max Okumoto [Thu, 21 Apr 2005 23:11:40 +0000 (23:11 +0000)]
Move Cmd_Exec() from main.c to job.c

19 years agoRemoved paramter to Var_SubstOnly()
Max Okumoto [Thu, 21 Apr 2005 23:09:42 +0000 (23:09 +0000)]
Removed paramter to Var_SubstOnly()

19 years agomove VAR_CMD, and VAR_GLOBAL from globals.h to var.h
Max Okumoto [Thu, 21 Apr 2005 23:08:42 +0000 (23:08 +0000)]
move VAR_CMD, and VAR_GLOBAL from globals.h to var.h

19 years agoClean up comments.
Max Okumoto [Thu, 21 Apr 2005 23:08:16 +0000 (23:08 +0000)]
Clean up comments.

19 years agoRemove types and functions that are not used by other files out of
Max Okumoto [Thu, 21 Apr 2005 23:04:27 +0000 (23:04 +0000)]
Remove types and functions that are not used by other files out of
var.h and move them into var.c

19 years agoMoved all the code in var_modify.c into var.c since no other
Max Okumoto [Thu, 21 Apr 2005 23:03:13 +0000 (23:03 +0000)]
Moved all the code in var_modify.c into var.c since no other
file uses those functions.

19 years agoMove code code to print out variable from
Max Okumoto [Thu, 21 Apr 2005 23:01:53 +0000 (23:01 +0000)]
Move code code to print out variable from
targ.c:Targ_PrintGraph() into var.c.

19 years agoAdd new function Var_Match(), it returns the number of characters
Max Okumoto [Thu, 21 Apr 2005 22:59:30 +0000 (22:59 +0000)]
Add new function Var_Match(), it returns the number of characters
in the variable specification.

19 years agoHandle double dash '--' in command line.
Max Okumoto [Thu, 21 Apr 2005 22:57:29 +0000 (22:57 +0000)]
Handle double dash '--' in command line.

19 years agoSync with OpenBSD.
Sascha Wildner [Thu, 21 Apr 2005 18:50:50 +0000 (18:50 +0000)]
Sync with OpenBSD.

bcode.c - obsd rev. 1.29
dc.1    - obsd rev. 1.19
dc.c    - obsd rev. 1.6
inout.c - obsd rev. 1.12
stack.c - obsd rev. 1.7

19 years agoSync with OpenBSD.
Sascha Wildner [Thu, 21 Apr 2005 18:50:22 +0000 (18:50 +0000)]
Sync with OpenBSD.

bc.1     - obsd rev. 1.18
bc.y     - obsd rev. 1.25
extern.h - obsd rev. 1.5
scan.l   - obsd rev. 1.18

19 years agoUpdate to 3.0.1.
Jeroen Ruigrok/asmodai [Thu, 21 Apr 2005 18:31:29 +0000 (18:31 +0000)]
Update to 3.0.1.

Submitted by: Andreas Hauser

19 years agoMerge from vendor branch GPERF:
Jeroen Ruigrok/asmodai [Thu, 21 Apr 2005 18:16:32 +0000 (18:16 +0000)]
Merge from vendor branch GPERF:
Add gperf 3.0.1.

Submitted by: Andreas Hauser

19 years agoAdd gperf 3.0.1. vendor/GPERF
Jeroen Ruigrok/asmodai [Thu, 21 Apr 2005 18:16:32 +0000 (18:16 +0000)]
Add gperf 3.0.1.

Submitted by: Andreas Hauser

19 years agoChange EXIT STATUS to DIAGNOSTICS. We have standardised on the latter.
Jeroen Ruigrok/asmodai [Thu, 21 Apr 2005 17:09:06 +0000 (17:09 +0000)]
Change EXIT STATUS to DIAGNOSTICS.  We have standardised on the latter.

19 years agoComplete Citrus import. Import message catalog implement from
Joerg Sonnenberger [Thu, 21 Apr 2005 16:36:35 +0000 (16:36 +0000)]
Complete Citrus import. Import message catalog implement from
NetBSD. Remove external visible rune interface.

Obtained-from: Project Citrus / NetBSD

19 years agoBuild aicasm as host program, not via world's compiler.
Joerg Sonnenberger [Thu, 21 Apr 2005 14:43:58 +0000 (14:43 +0000)]
Build aicasm as host program, not via world's compiler.

19 years agoDon't create directories for gcc2 and binutils212 anymore.
Joerg Sonnenberger [Thu, 21 Apr 2005 13:48:56 +0000 (13:48 +0000)]
Don't create directories for gcc2 and binutils212 anymore.

19 years agoBump major numbers in preparation for libc work.
Joerg Sonnenberger [Thu, 21 Apr 2005 13:42:34 +0000 (13:42 +0000)]
Bump major numbers in preparation for libc work.

19 years agoConsider only drifts smaller than 32 ms as negligible.
Joerg Sonnenberger [Thu, 21 Apr 2005 13:34:59 +0000 (13:34 +0000)]
Consider only drifts smaller than 32 ms as negligible.

19 years agoAs long as a peer has some trust left, use the aggressive retry interval
Joerg Sonnenberger [Thu, 21 Apr 2005 13:32:22 +0000 (13:32 +0000)]
As long as a peer has some trust left, use the aggressive retry interval
when the deadline is not met.

19 years agoOverride gcc2 for buildworld. Necessary to handle the former default
Joerg Sonnenberger [Thu, 21 Apr 2005 13:23:07 +0000 (13:23 +0000)]
Override gcc2 for buildworld. Necessary to handle the former default
value which might still be active via /usr/share/mk.