]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
29 years agoMake depends a separate target. Now you can select when the dependency
jkh [Tue, 15 Nov 1994 10:16:56 +0000 (10:16 +0000)]
Make depends a separate target.  Now you can select when the dependency
list is traversed.

29 years agoAdd back tar - I'm not sure where it went again! I know that
jkh [Tue, 15 Nov 1994 08:10:35 +0000 (08:10 +0000)]
Add back tar - I'm not sure where it went again!  I know that
cpio reads tar files, but this gives you "tar" in its old familar
way, which is important for those trying to read the old extract.sh'd
bindist.

29 years agoIntegrated GCC-2.6.1 -> GCC-2.6.2 changes.
phk [Tue, 15 Nov 1994 04:52:19 +0000 (04:52 +0000)]
Integrated GCC-2.6.1 -> GCC-2.6.2 changes.

Notice that the libgcc DOESN'T change number, because there are no
changes.

Also now the gnu2bmake stuff is synchronized again.

I commit this so that others can test too.

You might want to postpone any "make worlds" until tomorrow, to
avoid any problems I didn't see in the first pass.

Thanks to Bruce for rounding up our changes to gcc.

29 years agosendbug -> send_pr
jkh [Mon, 14 Nov 1994 23:52:42 +0000 (23:52 +0000)]
sendbug -> send_pr

29 years agoscsiconf.h:
ats [Mon, 14 Nov 1994 23:39:33 +0000 (23:39 +0000)]
scsiconf.h:
Change the sc_link structure from 8 targets with 8 lun's to
16 targets with 8 lun's. Wide scsi and the ncr 825 does support 16 targets.
scsiconf.c:
move the addition of the trailing NUL's out of a then clause, they are also
needed in the else clause for an unknown device.

29 years agoA little fix for "make distribute".
phk [Mon, 14 Nov 1994 21:28:46 +0000 (21:28 +0000)]
A little fix for "make distribute".

29 years agoFinal changes. Now "make distribute" should work as advertised.
phk [Mon, 14 Nov 1994 20:56:17 +0000 (20:56 +0000)]
Final changes.  Now "make distribute" should work as advertised.

29 years agoMore changes for the "distribute" target.
phk [Mon, 14 Nov 1994 20:52:54 +0000 (20:52 +0000)]
More changes for the "distribute" target.

29 years agoMake the "distribute" target build the "des" distribution. Make des'ed
phk [Mon, 14 Nov 1994 20:45:35 +0000 (20:45 +0000)]
Make the "distribute" target build the "des" distribution.  Make des'ed
init and ed, by pointing to real sources.

29 years agostrncmp use wrong utmp name size
ache [Mon, 14 Nov 1994 20:26:52 +0000 (20:26 +0000)]
strncmp use wrong utmp name size
Submitted by: rlz@zeus.id.net

29 years agoCheck exit code of the dialer, from asa@gw.cronyx.msk.su
ache [Mon, 14 Nov 1994 20:17:36 +0000 (20:17 +0000)]
Check exit code of the dialer, from asa@gw.cronyx.msk.su
Set HUPCL as default modem flag, idea from asa@gw.cronyx.msk.su
but different implementation.

29 years ago"distribute" games into their own distribution.
phk [Mon, 14 Nov 1994 20:10:49 +0000 (20:10 +0000)]
"distribute" games into their own distribution.
Reviewed by:
Submitted by:
Obtained from:

29 years agoRemove unused variable from previous commit
ache [Mon, 14 Nov 1994 19:32:11 +0000 (19:32 +0000)]
Remove unused variable from previous commit

29 years agoAdd model autodetection code, idea from burgess@s069.infonet.net
ache [Mon, 14 Nov 1994 19:25:43 +0000 (19:25 +0000)]
Add model autodetection code, idea from burgess@s069.infonet.net
This change affects probe printout, disklabel, devconf stuff

29 years agoRewrite almost everything.
bde [Mon, 14 Nov 1994 15:04:06 +0000 (15:04 +0000)]
Rewrite almost everything.

Alphabetize.

Write all i/o functions in sleep so that we don't use anything from
NetBSD.

Restore the correct type of u_int for ports.  This saves a whole cycle
per i/o on 486's.

Change `inline' back to __inline to avoid compiler warnings with
-Wreally-all.

Don't implement bdb() unless BDE_DEBUGGER is defined.  Declare bdb_exists
outside the function to avoid hundreds of compiler warnings.

Let the compiler pick the register in asms if possible.

Implement ffs() using inline asm().  gcc provides a slightly different
one.  It was broken in gcc-2.4.5 but works now.  Declaring a correct
version inline ensures getting a correct version.  FreeBSD-1.1.5 has
an slow inline version but FreeBSD-2.0 has a library version (which
probably never gets used).

Do inb() and outb() without using %edx for constant ports below 0x100.

Remove casts to the same type in queue functions.

Declare prototypes for everything implemented i386/*.s and also for
everything that is normally implemented as an inline here (I don't
like the current complete dependency on gcc).  Ifdef out the prototypes
that are declared elsewhere.  THere should be a separate header to
declare things implemented in i386/*.s, but then it would be harder
to override declarations with inlines.

${UII}

29 years agoLog processes that exit with an masked npx exception that would trap
bde [Mon, 14 Nov 1994 14:59:06 +0000 (14:59 +0000)]
Log processes that exit with an masked npx exception that would trap
with the current default exception (un)mask.  There should be no such
processes unless you change the mask.  Someday the mask should be
changed to the IEEE default of everything masked.  The npx state
gets saved so that it can be checked and this may have the side effect
of fixing a bug that was reported for 1.1.5.  (npx exceptions may
sometimes leak across exits and clobber another process.  I can't see
how this can happen.)

Get some missing/wrong declarations from headers now that the headers
have them.

29 years agoHide the declaration of ffs() if an inline ffs() is implemented.
bde [Mon, 14 Nov 1994 14:56:46 +0000 (14:56 +0000)]
Hide the declaration of ffs() if an inline ffs() is implemented.

I couldn't find a better way to avoid compiler warnings about
redundant and/or inconsistent declaration of ffs().  I'd like to
be able to declare prototypes in general headers without committing
to implementing them as `static inline' or `extern', but there
seems to be no way to do this with gcc-2.6.1.  E.g.,

int foo(void);
static __inline int foo(void) { return 1; }

causes a warning about the linkage mismatch, while the opposite
order causes a warning about the redundant declaration.

29 years agoOops, the previous commit got the diff for the log message instead of
bde [Mon, 14 Nov 1994 14:23:54 +0000 (14:23 +0000)]
Oops, the previous commit got the diff for the log message instead of
the following.

Move declarations to and from <machine/segments.h>.  Make segment stuff
static if possible.

Remove unused (although initialized) global variables _default_ldt,
currentldt, _gsel_tss (rename the latter to the auto variable
gtel_tss).

Use "correct" and consistent types for interrupt handlers.

Remove a mailing address from the code.

Fix type mismatches found by adding prototypes.

29 years ago(Bogus several hundred line diff for a log message deleted. See rev 1.91
bde [Mon, 14 Nov 1994 14:19:54 +0000 (14:19 +0000)]
(Bogus several hundred line diff for a log message deleted. See rev 1.91
for the intended log message. -DG)

29 years agoMove declarations of atdevbase and rtcin() to cpufunc.h (a less wrong
bde [Mon, 14 Nov 1994 14:19:10 +0000 (14:19 +0000)]
Move declarations of atdevbase and rtcin() to cpufunc.h (a less wrong
place).

Fix spelling error.

Uniformize idempotency ifdef.

29 years agoRemove 1.5+K of bloat for unused idt entries.
bde [Mon, 14 Nov 1994 14:18:15 +0000 (14:18 +0000)]
Remove 1.5+K of bloat for unused idt entries.

Partly support BDE_DEBUGGER.  Still broken by conflict with APM.  Does
nothing if BDE_DEBUGGER is not defined.

Clean up prototypes and data declarations.  Declare most of the segment
functions that are implemented in support.s.  Make data private in
machdep.c if possible.

Parenthesize expressions in macros properly!

${Uniformize idempotency ifdef}.

29 years agoRemove extra idempotency ifdef and uniformize the other one.
bde [Mon, 14 Nov 1994 14:13:13 +0000 (14:13 +0000)]
Remove extra idempotency ifdef and uniformize the other one.

Comment about support for 4 different spellings of KERNEL.

29 years agoDeclare inline functions as __inline and with new-style parameter lists
bde [Mon, 14 Nov 1994 14:12:24 +0000 (14:12 +0000)]
Declare inline functions as __inline and with new-style parameter lists
to avoid compiler warnings.

Clean up prototypes: alphabetize; don't use redundant `extern' or
meaningless `extern inline'.

Uniformize idempotency ifdef.

29 years agoDeclare fuswintr() and suswintr() the same as fusword() and susword().
bde [Mon, 14 Nov 1994 14:09:38 +0000 (14:09 +0000)]
Declare fuswintr() and suswintr() the same as fusword() and susword().
(These functions are implemented in assembler so the compiler can't
check the declarations.)

Clean up prototypes: restore CSRG's alphabetical order, arg names in
prototypes, formatting to fit in 80 columns

29 years agoif.h:
bde [Mon, 14 Nov 1994 14:06:06 +0000 (14:06 +0000)]
if.h:
Declare a complete prototype for the function pointer *ifa_rtrequest.

radix.h:
Declare a complete prototype for the function pointer *rnh_walktree
and for the function rn_walktree.

Uniformize idempotency ifdef.

29 years agoUpdate stupid declaration in comment to match code.
bde [Mon, 14 Nov 1994 13:59:09 +0000 (13:59 +0000)]
Update stupid declaration in comment to match code.

Declare all public syscntlfn's here.

29 years agoMove declarations of public functions to <sys/sysctl.h>.
bde [Mon, 14 Nov 1994 13:58:30 +0000 (13:58 +0000)]
Move declarations of public functions to <sys/sysctl.h>.

Make some private data static.

Comment about MAXPATHLEN bytes of bloat for the kernel name.

29 years agoDeclare a complete prototype for the function pointer *ext_free and the
bde [Mon, 14 Nov 1994 13:54:20 +0000 (13:54 +0000)]
Declare a complete prototype for the function pointer *ext_free and the
function m_devget.

Uniformize idempotency ifdef.

29 years agoAdd prototype for vfinddev().
bde [Mon, 14 Nov 1994 13:51:53 +0000 (13:51 +0000)]
Add prototype for vfinddev().

29 years agoRemove unused `struct disklabel' (the declarations that used it went away).
bde [Mon, 14 Nov 1994 13:50:15 +0000 (13:50 +0000)]
Remove unused `struct disklabel' (the declarations that used it went away).

Uniformize idempotency ifdef.

29 years agoUndo a previous change. <sys/disklabel.h> was broken, not these files.
bde [Mon, 14 Nov 1994 13:22:52 +0000 (13:22 +0000)]
Undo a previous change.  <sys/disklabel.h> was broken, not these files.

29 years agoDeclare `struct dkbad' with the correct scope so that everything including
bde [Mon, 14 Nov 1994 13:08:44 +0000 (13:08 +0000)]
Declare `struct dkbad' with the correct scope so that everything including
<sys/disklabel.h> doesn't have to include <sys/dkbad.h> to avoid compiler
warnings.

29 years agopmap.h:
bde [Mon, 14 Nov 1994 08:19:08 +0000 (08:19 +0000)]
pmap.h:
Disable the bogus declaration of pmap_bootstrap().  Since its arg list
is machine-dependent, it must be declared in a machine-dependent header.

vm_page.h:
Change `inline' to `__inline' and old-style function parameter lists for
inlined functions to new-style.

`inline' and old-style function parameter lists should never be used in
system headers, even in very machine-dependent ones, because they cause
warnings from gcc -Wreally-all.

29 years agoAdd missing define of DPADD. Remove uneccessary define SRCS. Reorder
bde [Mon, 14 Nov 1994 08:02:40 +0000 (08:02 +0000)]
Add missing define of DPADD.  Remove uneccessary define SRCS.  Reorder
defines.

29 years agoDon't follow a null pointer for the reporting error if kvm_openfiles() fails.
bde [Mon, 14 Nov 1994 07:54:06 +0000 (07:54 +0000)]
Don't follow a null pointer for the reporting error if kvm_openfiles() fails.

Don't ever pretend that the program is named "." and has no args.

29 years agoDon't build an unused array of kernel names when HAVE_GETBOOTFILE is
bde [Mon, 14 Nov 1994 07:51:11 +0000 (07:51 +0000)]
Don't build an unused array of kernel names when HAVE_GETBOOTFILE is
defined.

Don't use the newfangled C features to waste time building the array
at runtime when HAVE_GETBOOTFILE is not defined.

29 years agoFix logic in previous commit.
bde [Mon, 14 Nov 1994 07:13:12 +0000 (07:13 +0000)]
Fix logic in previous commit.

29 years agoRemove the bogus include of <sys/dkbad.h>.
bde [Mon, 14 Nov 1994 07:01:58 +0000 (07:01 +0000)]
Remove the bogus include of <sys/dkbad.h>.

29 years agoInstall shared libraries in ${SHLIBDIR} instead of in ${LIBDIR}.
bde [Mon, 14 Nov 1994 06:45:23 +0000 (06:45 +0000)]
Install shared libraries in ${SHLIBDIR} instead of in ${LIBDIR}.

Add missing ${DESTDIR}'s.

29 years agoInstall shared libraries in ${DESTDIR}${SHLIBDIR} instead of in
bde [Mon, 14 Nov 1994 06:44:45 +0000 (06:44 +0000)]
Install shared libraries in ${DESTDIR}${SHLIBDIR} instead of in
$(DESTDIR)/$(LIBDIR) (I need SHLIBDIR.  The / was a bug and the
$(...) style was inconsistent.)

Install ordinary libraries in ${DESTDIR}${LIBDIR} instead of in
$(DESTDIR)/$(LIBDIR).

Change remaining $(...) to ${...}.

29 years agoThis change was actually made in the previous revision:
bde [Mon, 14 Nov 1994 06:28:20 +0000 (06:28 +0000)]
This change was actually made in the previous revision:

Define SHLIBDIR?= ${LIBDIR} and install shared libraries in
${DESTDIR}${SHLIBDIR} instead of in ${DESTDIR}${LIBDIR}.
SHLIBDIR may be defined in /etc/make.conf to override the
default of /usr/lib (I use /lib).  Other changes are required
for non-default shared library directories to actually work
(ld* and crtso have too many hard-coded paths).

Bruce

29 years agoClean up some foreign makefiles a bit, attempting to handle .sh files
bde [Mon, 14 Nov 1994 05:57:36 +0000 (05:57 +0000)]
Clean up some foreign makefiles a bit, attempting to handle .sh files
more like binaries.  This is hard to do using a general rules because
the natural `.sh:' rule has a null suffix and null suffixes are broken.
(With 1.1.5's make they sometimes work and sometimes cause core dumps.
2.0's make has a botched fixed and they never work.)

29 years agoInclude <sys/types.h> early. This will be required when <stdio.h> and/or
bde [Mon, 14 Nov 1994 05:16:46 +0000 (05:16 +0000)]
Include <sys/types.h> early.  This will be required when <stdio.h> and/or
<signal.h> are fixed to not include it.

Bruce

29 years agoDefine `RANTOUCH?= ${RANLIB} -t' and use it instead of ${RANLIB} -t.
bde [Mon, 14 Nov 1994 04:55:39 +0000 (04:55 +0000)]
Define `RANTOUCH?= ${RANLIB} -t' and use it instead of ${RANLIB} -t.

RANTOUCH may be defined in /etc/make.conf as
`${ECHO} skipping ${RANLIB} -t' to help stop `make install' from
changing the timestamps on unchanged libraries, thus making the
uninstalled binaries appear to be out of date...  Other changes
are required to stop install from clobbering the timestamps.

29 years agoDefine LIBEDIT, LIBGCC, LIBKVM, LIBSCRYPT and LIBY.
bde [Mon, 14 Nov 1994 04:28:44 +0000 (04:28 +0000)]
Define LIBEDIT, LIBGCC, LIBKVM, LIBSCRYPT and LIBY.

Comment about missing libraries for LIBDES, LIBKDB, LIBKRB, LIBMP, LIBPC
and LIBPLOT.

Don't define LIBDBM since it was replaced by db in libc.

Remove duplication.  ${DESTDIR}/usr/lib/... gives /usr/lib/... even when
DESTDIR is not defined.

29 years agoReplace strtol() by strtoul() so that "negative" addresses and masks don't
bde [Mon, 14 Nov 1994 03:22:28 +0000 (03:22 +0000)]
Replace strtol() by strtoul() so that "negative" addresses and masks don't
get truncated to LONG_MAX.  Don't lobotomize the merged library source.

Make all private data static.

Use int_parms for the i/o "address" since the "address" is really a number
and is represented as an int.

Add command `flags' to allow changing device flags.

Fix scrolling of device listing.  Only scrolling of the current devtab
was controlled.  Reprint the header after scrolling.

Rename commands and change strings to match their config(8) keywords:

io -> port
IOaddr -> port
mem -> iomem (abbreviation is io :-()
MemAddr -> iomem
case changes

Don't use NULL for ASCII NUL.

Call strtoul() with base 0 for both numbers and addresses so that input
is consistent and hex and octal can be used for numbers.

Fix entry of irq number.  Check the range at no extra cost.  It wasn't
possible to enter irq -1.

Format device listing better.  Large numbers (such as 0xffffffff for the
GENERIC lpt0 port) messed up the formatting.

Show the unit number in the device listing.  Comment about the fields
that aren't shown.

29 years agoSet laundry flag when transitioning an inactive page from clean to dirty.
dg [Mon, 14 Nov 1994 02:57:40 +0000 (02:57 +0000)]
Set laundry flag when transitioning an inactive page from clean to dirty.
This fixes a performance bug where pages would sometimes not be paged
out when they could be.

Submitted by: John Dyson

29 years agoFixed bug where a read-behind to a negative offset would occur if the
dg [Sun, 13 Nov 1994 22:48:55 +0000 (22:48 +0000)]
Fixed bug where a read-behind to a negative offset would occur if the
fault was at offset 0 in the object. This resulted in more overhead but
was othewise benign. Added incore() check in vnode_pager_has_page()
to work around a problem with LFS...other than slightly higher overhead,
this change has no affect on UFS.

29 years agoFixed a mis-spelling.
nate [Sun, 13 Nov 1994 21:19:18 +0000 (21:19 +0000)]
Fixed a mis-spelling.

29 years agoAdded the DEC ethernet cards to the list of supported ethernet drivers.
nate [Sun, 13 Nov 1994 21:17:38 +0000 (21:17 +0000)]
Added the DEC ethernet cards to the list of supported ethernet drivers.

29 years agoChanged output message in interrupt-driven lp device from
nate [Sun, 13 Nov 1994 21:14:30 +0000 (21:14 +0000)]
Changed output message in interrupt-driven lp device from
'TCP/IP interface' to 'TCP/IP capable interface' to avoid confusion.

29 years agoAdd a new "distribute" target. This is a variant of install, which will
phk [Sun, 13 Nov 1994 21:05:28 +0000 (21:05 +0000)]
Add a new "distribute" target.  This is a variant of install, which will
put the stuff into the right "distribution".  As default things end up
in "bindist".

Normal (ie: most) makefiles know naught of this.

More commits will follow, which will direct various parts of the tree
into the distribution we want them in.

Some of the grief of being release-engineer is supposed to go away with this.

29 years agoAdded routines to read the canonical UNIX configuration file. This will
phk [Sun, 13 Nov 1994 20:47:44 +0000 (20:47 +0000)]
Added routines to read the canonical UNIX configuration file.  This will
later be applied to a number of programs (inetd for instance) to clean
out the bogus code doing the same thing, modulus all the bugs.

If you need to read a '#'-is-a-comment-file, please use these routines.

I realize that the shlib# should be bumped (for the non-US world:
increased by something), but will defer this until something significant
happens.

29 years agoFixed bugs in accounting of swap space that resulted in the pager thinking
dg [Sun, 13 Nov 1994 15:36:48 +0000 (15:36 +0000)]
Fixed bugs in accounting of swap space that resulted in the pager thinking
it was out of space when it really wasn't.

Submitted by: John Dyson

29 years agoImplemented swap locking via P_SWAPPING flag. It was possible for a process
dg [Sun, 13 Nov 1994 12:47:07 +0000 (12:47 +0000)]
Implemented swap locking via P_SWAPPING flag. It was possible for a process
to be chosen for swap-in while it was being swapped-out. This was BAD.

Submitted by: John Dyson

29 years agoAdded P_SWAPPING flag to implement a lock for swap in. It was possible for
dg [Sun, 13 Nov 1994 12:46:08 +0000 (12:46 +0000)]
Added P_SWAPPING flag to implement a lock for swap in. It was possible for
a process to be chosen for swap-in while it was being swapped-out. This was
BAD.

Submitted by: John Dyson

29 years agoAdded support for SIOCSIFMTU ioctl. Fixed bug that caused panic at boot time
dg [Sun, 13 Nov 1994 12:39:38 +0000 (12:39 +0000)]
Added support for SIOCSIFMTU ioctl. Fixed bug that caused panic at boot time
related to interrupts being enabled before the device attach. The interrupt
should be mapped *after* the device attach.

29 years agoAdd ep0 line to kernel config files.
gibbs [Sun, 13 Nov 1994 10:17:07 +0000 (10:17 +0000)]
Add ep0 line to kernel config files.

29 years agoAndres Vega Garcia's improvements to the ep driver. This driver is a merging
gibbs [Sun, 13 Nov 1994 10:12:37 +0000 (10:12 +0000)]
Andres Vega Garcia's improvements to the ep driver.  This driver is a merging
of the 1.1.5 driver, a recent version of the NetBSD driver, Andres'
transmission start threshold code, and all other relavent changes to the driver
since it was brought into 2.0.  The multicast support from NetBSD has not be
folded in yet.  I've tested it under high loads for two weeks and it is now
robust enough to be included in the GENERIC kernel.
Reviewed by: gibbs
Submitted by: vega@sophia.inria.fr (Andres Vega Garcia)

29 years agoAdd Matt Thomas' le0 DEPCA driver to the GENERIC kernel. This works
nate [Sun, 13 Nov 1994 09:42:07 +0000 (09:42 +0000)]
Add Matt Thomas' le0 DEPCA driver to the GENERIC kernel.  This works
but I can't test to see if it walks on other ethernet drivers.  Can the
install folks add this driver to the install script?

29 years agoAdded VLB to the list of PC busses supported since this question comes up
nate [Sun, 13 Nov 1994 09:19:04 +0000 (09:19 +0000)]
Added VLB to the list of PC busses supported since this question comes up
often on USENET.

Added comments regarding the new 'extended IDE' controllers, which work with
FreeBSD but do not use the extended features.

Minor formatting changes.

29 years agoFix some bugs with forms that have only text fields.
paul [Sun, 13 Nov 1994 07:43:43 +0000 (07:43 +0000)]
Fix some bugs with forms that have only text fields.
Add an extern form to forms.h for apps to pick up.

29 years agoThere were some bogons with redirection to /dev/ttyv1 lurking here.
jkh [Sun, 13 Nov 1994 07:27:36 +0000 (07:27 +0000)]
There were some bogons with redirection to /dev/ttyv1 lurking here.
Fix them.

29 years agoNuked ed2 - it was added for the common 16bit card case where the
dg [Sun, 13 Nov 1994 07:20:03 +0000 (07:20 +0000)]
Nuked ed2 - it was added for the common 16bit card case where the
irq is 10. This is auto-sensed/configured now in the 'ed' driver.

29 years agoIn cases where it is possible, use the card's configured irq rather than
dg [Sun, 13 Nov 1994 07:17:46 +0000 (07:17 +0000)]
In cases where it is possible, use the card's configured irq rather than
the one compiled into the kernel. Left in some commented-out shared memory
performance test code.

29 years agoThe start of a forms editor library. Currently implements text and
paul [Sun, 13 Nov 1994 06:45:44 +0000 (06:45 +0000)]
The start of a forms editor library. Currently implements text and
input fields. It reads a template file passed to init_forms(char *)
and creates a curses based form editor. See the examples directory
for a basic demo.

29 years agoAdjust the size of the input box. It looks a bit funkier now,
jkh [Sun, 13 Nov 1994 06:32:40 +0000 (06:32 +0000)]
Adjust the size of the input box.  It looks a bit funkier now,
but at least the code is smaller!

29 years agoFix merge conflicts.
jkh [Sun, 13 Nov 1994 06:11:02 +0000 (06:11 +0000)]
Fix merge conflicts.

29 years agoThis commit was generated by cvs2svn to compensate for changes in r4422,
jkh [Sun, 13 Nov 1994 05:57:35 +0000 (05:57 +0000)]
This commit was generated by cvs2svn to compensate for changes in r4422,
which included commits to RCS files with non-trunk default branches.

29 years agoMichael Reifenberger's libg++ port
jkh [Sun, 13 Nov 1994 05:57:35 +0000 (05:57 +0000)]
Michael Reifenberger's libg++ port
Submitted by: mr

29 years agoMichael Reifenberger's libg++ port
jkh [Sun, 13 Nov 1994 05:57:35 +0000 (05:57 +0000)]
Michael Reifenberger's libg++ port
Submitted by: mr

29 years agoThis commit was generated by cvs2svn to compensate for changes in r4420,
jkh [Sun, 13 Nov 1994 05:54:27 +0000 (05:54 +0000)]
This commit was generated by cvs2svn to compensate for changes in r4420,
which included commits to RCS files with non-trunk default branches.

29 years agoMichael Reifenberger's libg++ 2.6.1 port.
jkh [Sun, 13 Nov 1994 05:54:27 +0000 (05:54 +0000)]
Michael Reifenberger's libg++ 2.6.1 port.
Submitted by: mr

29 years agoI buggered the last commit. Make sysinstall work again (^$&*!! missing
jkh [Sun, 13 Nov 1994 04:20:23 +0000 (04:20 +0000)]
I buggered the last commit.  Make sysinstall work again (^$&*!! missing
comma!).

29 years agoSupport ufs installations.
jkh [Sun, 13 Nov 1994 03:48:55 +0000 (03:48 +0000)]
Support ufs installations.

29 years agoWhoops! Update the size of the main menu to 7 items. I'm sleepy.
jkh [Sun, 13 Nov 1994 02:06:50 +0000 (02:06 +0000)]
Whoops!  Update the size of the main menu to 7 items.  I'm sleepy.

29 years agoI *almost* had it right. Skip over the rest of the command if it's
jkh [Sun, 13 Nov 1994 01:55:33 +0000 (01:55 +0000)]
I *almost* had it right.  Skip over the rest of the command if it's
abbreviated.

29 years agoDisable the building of the evil floppy images. We blew through the
jkh [Sun, 13 Nov 1994 01:46:22 +0000 (01:46 +0000)]
Disable the building of the evil floppy images.  We blew through the
1.2MB barrier again.  I tell ya, Poul, it's a losing game!  You shave
50 bytes off, the next change takes 100 back, and this is just ALPHA!
The 1.2MB weenies will _just have to buy new drives_!

29 years agoAdd my first-cut at a very short troubleshooting document. We can add
jkh [Sun, 13 Nov 1994 01:21:11 +0000 (01:21 +0000)]
Add my first-cut at a very short troubleshooting document.  We can add
more stuff here as people report it.

29 years agoChange the name of the TROUBLE-2.0 file to TROUBLESHOOTING; it just makes
jkh [Sun, 13 Nov 1994 01:20:37 +0000 (01:20 +0000)]
Change the name of the TROUBLE-2.0 file to TROUBLESHOOTING; it just makes
more sense.

29 years agoNow I know what this message is really supposed to say.. :-)
jkh [Sun, 13 Nov 1994 01:14:38 +0000 (01:14 +0000)]
Now I know what this message is really supposed to say.. :-)

29 years agoMake the command set actually work the way I'd intended - you can abbrevate
jkh [Sun, 13 Nov 1994 00:57:06 +0000 (00:57 +0000)]
Make the command set actually work the way I'd intended - you can abbrevate
commands now, as long as whatever you abbreviate them to remains unique.

29 years agoWhoops, make the comment match the new reality while we're at it.
jkh [Sun, 13 Nov 1994 00:43:29 +0000 (00:43 +0000)]
Whoops, make the comment match the new reality while we're at it.

29 years agomem's 2nd arg was incorrectly defined as an integer, not address parameter.
jkh [Sun, 13 Nov 1994 00:42:01 +0000 (00:42 +0000)]
mem's 2nd arg was incorrectly defined as an integer, not address parameter.
I found this out the hard way when I went to do:

mem ed0 0xe8000

And found out that I had to enter the second parameter in decimal.. :-)

29 years agoDelete duplicate pppd entry. Also move pppstats in the right spot lexically.
lars [Sat, 12 Nov 1994 22:24:17 +0000 (22:24 +0000)]
Delete duplicate pppd entry. Also move pppstats in the right spot lexically.

29 years agoInstall the soon-to-be-written troubleshooting file.
jkh [Sat, 12 Nov 1994 20:40:14 +0000 (20:40 +0000)]
Install the soon-to-be-written troubleshooting file.

29 years agoErm, on second thought, if it's named `mkextract.sh' then everyone
jkh [Sat, 12 Nov 1994 20:39:15 +0000 (20:39 +0000)]
Erm, on second thought, if it's named `mkextract.sh' then everyone
will think that it builds the extract.sh in THIS directory, which it
most certainly doesn't.  Rename it to be a bit longer, but more explanatory.

29 years agoAdd the mkextract.sh script I use for the XFree86 distribution, just so
jkh [Sat, 12 Nov 1994 20:37:41 +0000 (20:37 +0000)]
Add the mkextract.sh script I use for the XFree86 distribution, just so
I have a master copy someplace.

29 years agoAdd dmesg.
jkh [Sat, 12 Nov 1994 20:36:28 +0000 (20:36 +0000)]
Add dmesg.

29 years agoAdd hooks for a short trouble shooting document.
jkh [Sat, 12 Nov 1994 20:34:18 +0000 (20:34 +0000)]
Add hooks for a short trouble shooting document.

29 years agoAdd back ed2. Harrumph..
jkh [Sat, 12 Nov 1994 20:27:24 +0000 (20:27 +0000)]
Add back ed2.  Harrumph..

29 years agoObtained from: ppp-2.1.2
lars [Sat, 12 Nov 1994 19:33:41 +0000 (19:33 +0000)]
Obtained from: ppp-2.1.2

More correct use of __FreeBSD__ and BSD4_4 ifdefs. Fixed kvm_openfile()
call based upon suggestion from Bruce Evans.

29 years agopppd was missing from the SUBDIRS.
lars [Sat, 12 Nov 1994 19:15:01 +0000 (19:15 +0000)]
pppd was missing from the SUBDIRS.

29 years agoUse CDIOCALLOW before CDIOCEJECT
ache [Sat, 12 Nov 1994 18:25:03 +0000 (18:25 +0000)]
Use CDIOCALLOW before CDIOCEJECT

29 years agoImplement CDIOCALLOW as dummy function (for xcdplayer)
ache [Sat, 12 Nov 1994 18:18:20 +0000 (18:18 +0000)]
Implement CDIOCALLOW as dummy function (for xcdplayer)

29 years agoDelete a bogus check that the SCSI_DELAY only works for the first
ats [Sat, 12 Nov 1994 17:13:23 +0000 (17:13 +0000)]
Delete a bogus check that the SCSI_DELAY only works for the first
scsi adapter. Let it work on every adapter. Someone want to rewrite
this to be coupled with the adapter specification in the config file,
so that you can say which adapters need it ?

29 years agoRevision 1.6 fix was lost: don't write 0 to RTC_DIAG
ache [Sat, 12 Nov 1994 16:24:54 +0000 (16:24 +0000)]
Revision 1.6 fix was lost: don't write 0 to RTC_DIAG

29 years agocdplay added
ache [Sat, 12 Nov 1994 16:05:43 +0000 (16:05 +0000)]
cdplay added

29 years agoThis commit was generated by cvs2svn to compensate for changes in r4392,
ache [Sat, 12 Nov 1994 16:03:14 +0000 (16:03 +0000)]
This commit was generated by cvs2svn to compensate for changes in r4392,
which included commits to RCS files with non-trunk default branches.

29 years agoVery simple non-X CD player for testing purposes,
ache [Sat, 12 Nov 1994 16:03:14 +0000 (16:03 +0000)]
Very simple non-X CD player for testing purposes,
better than nothing