]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
23 years agoForgot these files in my kerninclude limited run.
Poul-Henning Kamp [Thu, 12 Oct 2000 20:21:02 +0000 (20:21 +0000)]
Forgot these files in my kerninclude limited run.

(No core powers we abused during this commit)

23 years agoo Update BUGS entry to indicate in a more precise manner the implementation
Robert Watson [Thu, 12 Oct 2000 17:58:14 +0000 (17:58 +0000)]
o Update BUGS entry to indicate in a more precise manner the implementation
  status of capabilities (library is complete, kernel work is maintained
  outside the tree).

Obtained from: TrustedBSD Project

23 years agoAdd missing option NETGRAPH_ETHER.
Archie Cobbs [Thu, 12 Oct 2000 17:51:24 +0000 (17:51 +0000)]
Add missing option NETGRAPH_ETHER.

PR: kern/20288

23 years agoImplement a rudimentary interrupt handling system which should be good
Doug Rabson [Thu, 12 Oct 2000 17:47:01 +0000 (17:47 +0000)]
Implement a rudimentary interrupt handling system which should be good
enough for clock interrupts in SKI.

23 years agoTurn off a debugging printf.
Doug Rabson [Thu, 12 Oct 2000 17:46:12 +0000 (17:46 +0000)]
Turn off a debugging printf.

23 years agoRemoved unused include of <machine/lock.h>. The locking interface stopped
Bruce Evans [Thu, 12 Oct 2000 17:05:33 +0000 (17:05 +0000)]
Removed unused include of <machine/lock.h>.  The locking interface stopped
being (ab)used here in rev.1.97.

23 years agoRemove STARTTLS support as it breaks builds without crypto installed.
Gregory Neil Shapiro [Thu, 12 Oct 2000 17:04:32 +0000 (17:04 +0000)]
Remove STARTTLS support as it breaks builds without crypto installed.
Waiting to hear back regarding the best way to do this.

23 years agoMake the ENVIRONMENT section more legible, and mention that HTTP_AUTH is
Dag-Erling Smørgrav [Thu, 12 Oct 2000 16:55:52 +0000 (16:55 +0000)]
Make the ENVIRONMENT section more legible, and mention that HTTP_AUTH is
colon-separated.

23 years agoBackout my wrong attempt to fix the compilation warning in ip_input.c
Ruslan Ermilov [Thu, 12 Oct 2000 16:33:41 +0000 (16:33 +0000)]
Backout my wrong attempt to fix the compilation warning in ip_input.c
and instead reapply the revision 1.49 of mbuf.h, i.e.

Fixed regression of the type of the `header' member of struct pkthdr from
`void *' to caddr_t in rev.1.51.  This mainly caused an annoying warning
for compiling ip_input.c.

Requested by: bde

23 years agoFix suffix matching.
Dag-Erling Smørgrav [Thu, 12 Oct 2000 16:22:15 +0000 (16:22 +0000)]
Fix suffix matching.
Restore historical behaviour when the first argument is an empty string.

Submitted by: Alexander N. Kabaev <ak03@gte.com>
Pointed out by: bde

23 years agoDon't depend on <machine/cpufunc.h> unnecessarily including <machine/lock.h>.
Bruce Evans [Thu, 12 Oct 2000 16:15:24 +0000 (16:15 +0000)]
Don't depend on <machine/cpufunc.h> unnecessarily including <machine/lock.h>.

23 years agoWhen T308 times out while waiting for a RELEASE COMPLETE, clean up and
Hellmuth Michaelis [Thu, 12 Oct 2000 16:04:58 +0000 (16:04 +0000)]
When T308 times out while waiting for a RELEASE COMPLETE, clean up and
send a disconnect indication to the upper layers. This lets isdnd recover
from the situation instead of hanging in some intermediate state ...

23 years ago* Fix exception handling so that it actually works. We can now handle
Doug Rabson [Thu, 12 Oct 2000 14:36:39 +0000 (14:36 +0000)]
* Fix exception handling so that it actually works. We can now handle
  exceptions from both kernel and user mode.
* Fix context switching so that we can switch back to a proc which we
  switched away from (we were saving the state in the wrong place).
* Implement lazy switching of the high-fp state. This needs to be looked
  at again for SMP to cope with the case of a process migrating from one
  processor to another while it has the high-fp state.
* Make setregs() work properly. I still think this should be called
  cpu_exec() or something.
* Various other minor fixes.

With this lot, we can execve() /sbin/init and we get all the way up to its
first syscall. At that point, we stop because syscall handling is not done
yet.

23 years agoBring back the ability to send cdbs of length 13->32 bytes. This was lost
Justin T. Gibbs [Thu, 12 Oct 2000 14:36:27 +0000 (14:36 +0000)]
Bring back the ability to send cdbs of length 13->32 bytes.  This was lost
during the qinfifo optimization.  When swapping HSCBs, we were only copying
the first 32 bytes, the amount used in the common case of a cdb <= 12 bytes.
Larger cdbs are stored in the second 32 bytes of the cdb.

Noticed by: Marc Frajola <marc@terasolutions.com>

23 years agoFix this so that it can cope with transfers to/from regions which are not
Doug Rabson [Thu, 12 Oct 2000 14:29:24 +0000 (14:29 +0000)]
Fix this so that it can cope with transfers to/from regions which are not
physically contiguous.

23 years ago* Allocate kernel stacks with contigmalloc() to make exception handling
Doug Rabson [Thu, 12 Oct 2000 14:28:05 +0000 (14:28 +0000)]
* Allocate kernel stacks with contigmalloc() to make exception handling
  safe - we can't afford to take a TLB trap when we are writing a
  trapframe. Possibly revisit this later.
* Various fixes to pmap_enter() so that it actually works properly.

23 years agoSome minor fixes and simplifications.
Doug Rabson [Thu, 12 Oct 2000 14:25:09 +0000 (14:25 +0000)]
Some minor fixes and simplifications.

23 years agoAdd a gross hack for ia64 to allocate the backing store for a new program.
Doug Rabson [Thu, 12 Oct 2000 14:24:03 +0000 (14:24 +0000)]
Add a gross hack for ia64 to allocate the backing store for a new program.

23 years agoMoved the declaration of astpending to the correct place.
Bruce Evans [Thu, 12 Oct 2000 13:02:13 +0000 (13:02 +0000)]
Moved the declaration of astpending to the correct place.

This shouldn't affect the alpha or ia64, since they don't have a
variable named astpending.  The alpha still has 2 declarations of
this nonexistent variable.

23 years agoFixed the reporting of ip_portrange_{first|last}.
Ruslan Ermilov [Thu, 12 Oct 2000 11:25:57 +0000 (11:25 +0000)]
Fixed the reporting of ip_portrange_{first|last}.

23 years agoMoved the definitions of AST_PENDING and AST_RESCHED to the correct place.
Bruce Evans [Thu, 12 Oct 2000 11:13:27 +0000 (11:13 +0000)]
Moved the definitions of AST_PENDING and AST_RESCHED to the correct place.

23 years agoFix the compilation warning.
Ruslan Ermilov [Thu, 12 Oct 2000 10:42:32 +0000 (10:42 +0000)]
Fix the compilation warning.

23 years agoTurn the verbose mode on for dumpon(8).
Ruslan Ermilov [Thu, 12 Oct 2000 10:34:59 +0000 (10:34 +0000)]
Turn the verbose mode on for dumpon(8).

23 years agoFix broken PAM with SKEY behaviour: the skey.access file checks
Guido van Rooij [Thu, 12 Oct 2000 10:21:05 +0000 (10:21 +0000)]
Fix broken PAM with SKEY behaviour: the skey.access file checks
were broken because the code failed to set PAM_RHOST.

23 years agoRemove one other dup.
David Malone [Thu, 12 Oct 2000 09:26:33 +0000 (09:26 +0000)]
Remove one other dup.

23 years agoRemove some duplicated Dijkstra quotes and add a new one.
David Malone [Thu, 12 Oct 2000 09:16:23 +0000 (09:16 +0000)]
Remove some duplicated Dijkstra quotes and add a new one.

Approved by: jkh

23 years agoRemove the #include kitchensink <netatm/kern_include.h> and add
Poul-Henning Kamp [Thu, 12 Oct 2000 08:14:20 +0000 (08:14 +0000)]
Remove the #include kitchensink <netatm/kern_include.h> and add
the #includes to the respective source files.

Also un-nest includes in <dev/hfa/fore_include.h>

I have run src/tools/tools/kerninclude to remove 1239 clearly
unneeded #includes reducing the total from 3524 includes to 2285.

23 years agoAllow for IP_FW_ADD to be used in getsockopt(2) incarnation as
Ruslan Ermilov [Thu, 12 Oct 2000 07:59:14 +0000 (07:59 +0000)]
Allow for IP_FW_ADD to be used in getsockopt(2) incarnation as
well, in which case return the rule number back into userland.

PR: bin/18351
Reviewed by: archie, luigi

23 years agoMore HARP polishina:
Poul-Henning Kamp [Thu, 12 Oct 2000 07:42:34 +0000 (07:42 +0000)]
More HARP polishina:
unifdef -UFORE_SBUS -DFORE_PCI
s/ATM_KERNEL/_KERNER/g

23 years agoRemoved broken PAM support from rshd(8) and rlogind(8). rshd does
Ruslan Ermilov [Thu, 12 Oct 2000 07:18:20 +0000 (07:18 +0000)]
Removed broken PAM support from rshd(8) and rlogind(8).  rshd does
not allocate a pty(4) so it is not suitable at all for interactive
PAM modules.  rlogind calls login(1) which is already PAM enabled.

Approved by: markm

23 years agoRemove 'device tx'. In wilko's testing it traps on bringing the interface
Bill Fumerola [Thu, 12 Oct 2000 06:10:12 +0000 (06:10 +0000)]
Remove 'device tx'. In wilko's testing it traps on bringing the interface
up. Even though this has recieved all the right MI treatment (newbus, miibus)
it stands for now a i386 only driver.

23 years agoFix pthread cancellation point propagation.
Jason Evans [Thu, 12 Oct 2000 04:29:44 +0000 (04:29 +0000)]
Fix pthread cancellation point propagation.

23 years agoAnother PnP pcic card: SMC Swapbox Plug and Play
Warner Losh [Thu, 12 Oct 2000 03:51:16 +0000 (03:51 +0000)]
Another PnP pcic card: SMC Swapbox Plug and Play

Submitted by: gallatin

23 years agoMake if_sk stop using the "hide the softc structure in the jumbo buffer"
Bosko Milekic [Thu, 12 Oct 2000 02:42:25 +0000 (02:42 +0000)]
Make if_sk stop using the "hide the softc structure in the jumbo buffer"
now that the mbuf system can handle passing it to the driver itself.

Reviewed by: wpaul
Tested by: wpaul (Bill Paul) with "jumbograms" enabled

23 years agoBring the 'twe' driver back now that we think it should work.
Mike Smith [Thu, 12 Oct 2000 01:46:43 +0000 (01:46 +0000)]
Bring the 'twe' driver back now that we think it should work.

23 years agoReduce the number of outstanding commands we will send to the controller
Mike Smith [Thu, 12 Oct 2000 01:43:40 +0000 (01:43 +0000)]
Reduce the number of outstanding commands we will send to the controller
to 50.  This has been reported to avoid the problems that many users have
been experiencing with crashing the card firmware during rebuilds.

23 years agosync to last commit
Warner Losh [Thu, 12 Oct 2000 00:16:19 +0000 (00:16 +0000)]
sync to last commit

23 years agoForced commit. Last commit was submitted by Jonathan Chen.
Warner Losh [Thu, 12 Oct 2000 00:15:52 +0000 (00:15 +0000)]
Forced commit.  Last commit was submitted by Jonathan Chen.

Submitted by: Jonathan Chen

23 years agoAdd mii entry for tdk phy found on some cardbus cards.
Warner Losh [Thu, 12 Oct 2000 00:15:10 +0000 (00:15 +0000)]
Add mii entry for tdk phy found on some cardbus cards.

23 years agoDo some cleanups of the HARP atm codes interface into the system:
Poul-Henning Kamp [Thu, 12 Oct 2000 00:03:50 +0000 (00:03 +0000)]
Do some cleanups of the HARP atm codes interface into the system:

Define the NETISR just like all the other NETISRs.

unifdef -Usun -D__FreeBSD__  we will probably never support sun4c
and if we do we can't use the solaris code anyway and  I doubt
anybody will be running Fore ATM cards in then in the first place.

23 years agoStore a pointer to our softc in the kernel's SCB structure. In the
Justin T. Gibbs [Wed, 11 Oct 2000 23:46:34 +0000 (23:46 +0000)]
Store a pointer to our softc in the kernel's SCB structure.  In the
past we stored this data in the CCB and attained the CCB via a pointer
in the SCB.  In ahc_timeout(), however, the timedout SCB may have already
been completed (inherent race), meaning that the CCB could have been recycled,
and the ahc pointer reset.

Clean up the logic in ahc_search_qinfifo that deals with the busy device
table.  For some reason it assumed that the only valid time to search
to see if additional lun entries should be checked was if lun 0 matched.
Now we properly itterate through the necessary luns.  The busy device
table is used to detect invalid reselections, so a device would have had
to perform an unexpected reselection for this to cause problems.  Further,
all luns are collapsed to a single entry unless we have external ram
with large SCBs (3940AU models) so the chance of this happening was
rather remote.

Clean up the logic for dealing with the untagged queues.  We now set a
flag in the SCB that indicates that it is on the untagged queue instead
of inferring this from the type and setup of the CCB pased into us by
CAM.

In ahc_timeout(), don't print the path of the SCB until the controller
is paused and we are sure that it has not completed yet.  This, in
conjunction with referencing the ahc pointer in the SCB rather than
the CCB in the SCB avoids panics in the case of a timedout scb completing
just before the timeout handler runs.  This turns out to be guaranteed
if interrupt delivery is failing, as we run our interrupt handler to
flush any "just missed events" when a timeout occurs.  Mention the
likelyhood of broken interrupts if a timedout SCB is completed by
our call to ahc_intr().

23 years agoWhen testing for PCI bus overlap with another enumerator, make sure we
Mike Smith [Wed, 11 Oct 2000 23:03:11 +0000 (23:03 +0000)]
When testing for PCI bus overlap with another enumerator, make sure we
check for the right bus number.  This is still not quite right, but
fixes things for multi-bus machines again.

Submitted by: tegge

23 years agoCalling untimeout(9) leads to a race window where memory could be leaked.
Archie Cobbs [Wed, 11 Oct 2000 20:29:12 +0000 (20:29 +0000)]
Calling untimeout(9) leads to a race window where memory could be leaked.
Close this window by simply not calling untimeout(9).

23 years agoAdd `isoC-99' to the list of availble abbreviations.
David E. O'Brien [Wed, 11 Oct 2000 19:30:41 +0000 (19:30 +0000)]
Add `isoC-99' to the list of availble abbreviations.

23 years agoFix memory leak.
Archie Cobbs [Wed, 11 Oct 2000 19:04:34 +0000 (19:04 +0000)]
Fix memory leak.

Submitted by: Christopher N. Harrell <cnh@ivmg.net>

23 years agoReset globals for every new command read from preprocessed file.
Ruslan Ermilov [Wed, 11 Oct 2000 13:02:30 +0000 (13:02 +0000)]
Reset globals for every new command read from preprocessed file.

23 years agoWith apoligies to Greg Shapiro, fix the world. The previous commit
Peter Wemm [Wed, 11 Oct 2000 12:19:42 +0000 (12:19 +0000)]
With apoligies to Greg Shapiro, fix the world.  The previous commit
lost -lutil and -lwrap by replacing $LDADD and $DPADD rather than
appending to them with +=.

23 years agoOnly interpret the last command line argument as a file to
Ruslan Ermilov [Wed, 11 Oct 2000 12:17:06 +0000 (12:17 +0000)]
Only interpret the last command line argument as a file to
be preprocessed if it is specified as an absolute pathname.

PR: bin/16179

23 years agoFix a buildworld hiccup with build-tools that wasn't present in standalone
Peter Wemm [Wed, 11 Oct 2000 11:25:47 +0000 (11:25 +0000)]
Fix a buildworld hiccup with build-tools that wasn't present in standalone
library builds.

23 years agoMinor doc tweaks: reorder the "SEE ALSO" section alphabetically; add
Joseph Koshy [Wed, 11 Oct 2000 10:46:12 +0000 (10:46 +0000)]
Minor doc tweaks: reorder the "SEE ALSO" section alphabetically; add
punctuation.

23 years agoCleaned up the .St macro.
Ruslan Ermilov [Wed, 11 Oct 2000 09:51:27 +0000 (09:51 +0000)]
Cleaned up the .St macro.

Obtained from: NetBSD

23 years agoOops, beforedepend isn't needed. The build problem I had was due to
Peter Wemm [Wed, 11 Oct 2000 08:20:37 +0000 (08:20 +0000)]
Oops, beforedepend isn't needed.  The build problem I had was due to
something else.

23 years agoUpdate for ncurses 5.1-20001009 import
Peter Wemm [Wed, 11 Oct 2000 08:19:56 +0000 (08:19 +0000)]
Update for ncurses 5.1-20001009 import

23 years agoUpdate for ncurses 20001009 import
Peter Wemm [Wed, 11 Oct 2000 08:17:19 +0000 (08:17 +0000)]
Update for ncurses 20001009 import

23 years agoUpdate after ncurses 20001009 import
Peter Wemm [Wed, 11 Oct 2000 08:14:44 +0000 (08:14 +0000)]
Update after ncurses 20001009 import

23 years agoUpdate bmake glue after ncurses 5.1-20001009 import.
Peter Wemm [Wed, 11 Oct 2000 08:07:28 +0000 (08:07 +0000)]
Update bmake glue after ncurses 5.1-20001009 import.

23 years agoMerge ncurses vendor changes (v5_1_20000701->v5_1_20001009) onto mainline
Peter Wemm [Wed, 11 Oct 2000 07:33:47 +0000 (07:33 +0000)]
Merge ncurses vendor changes (v5_1_20000701->v5_1_20001009) onto mainline

23 years agoThis commit was generated by cvs2svn to compensate for changes in r66963,
Peter Wemm [Wed, 11 Oct 2000 07:31:01 +0000 (07:31 +0000)]
This commit was generated by cvs2svn to compensate for changes in r66963,
which included commits to RCS files with non-trunk default branches.

23 years agoImport ncurses-5.1-20001009 onto the vendor branch
Peter Wemm [Wed, 11 Oct 2000 07:31:01 +0000 (07:31 +0000)]
Import ncurses-5.1-20001009 onto the vendor branch

23 years agoStyle fixes
Gregory Neil Shapiro [Wed, 11 Oct 2000 05:04:21 +0000 (05:04 +0000)]
Style fixes

23 years agoFix man page installation
Gregory Neil Shapiro [Wed, 11 Oct 2000 04:53:30 +0000 (04:53 +0000)]
Fix man page installation
Style fixes

Submitted by: bde

23 years agoNOCRYPT imples NO_OPENSSL.
Gregory Neil Shapiro [Wed, 11 Oct 2000 03:35:32 +0000 (03:35 +0000)]
NOCRYPT imples NO_OPENSSL.
Still need to solve the distribution problem.

Submitted by: kris

23 years agoAdd missing comma at the end of line.
Jun Kuriyama [Wed, 11 Oct 2000 01:12:55 +0000 (01:12 +0000)]
Add missing comma at the end of line.

23 years agokmem transfers were being double-counted due to a missing continue.
Andrew Gallatin [Wed, 11 Oct 2000 01:01:54 +0000 (01:01 +0000)]
kmem transfers were being double-counted due to a missing continue.
This silences the dreaded "swapinfo:cannot read blmeta_t" messages at boot.
I'm really suprised there were no PRs open about this...

23 years agoAdd support for the Kingston KNU101TX 10/100 USB ethernet adapter. We're
Bill Paul [Tue, 10 Oct 2000 23:45:17 +0000 (23:45 +0000)]
Add support for the Kingston KNU101TX 10/100 USB ethernet adapter. We're
up to 11 of these now.

23 years agoregenetate
Bill Paul [Tue, 10 Oct 2000 23:24:45 +0000 (23:24 +0000)]
regenetate

23 years agoAdd vendor ID for Kingston Technology and add device ID for
Bill Paul [Tue, 10 Oct 2000 23:23:54 +0000 (23:23 +0000)]
Add vendor ID for Kingston Technology and add device ID for
KNU101TX USB ethernet adapter. (Yes, another one.)

23 years agoAdd a macro for ISO C99 ("isoC-99").
David E. O'Brien [Tue, 10 Oct 2000 23:14:55 +0000 (23:14 +0000)]
Add a macro for ISO C99 ("isoC-99").

23 years agoNote Ports Collection restructuring, new make(1) variable substitution
Bruce A. Mah [Tue, 10 Oct 2000 22:31:55 +0000 (22:31 +0000)]
Note Ports Collection restructuring, new make(1) variable substitution
modifiers.

23 years agoAdd FreeBSD-only options to the getopt string
Gregory Neil Shapiro [Tue, 10 Oct 2000 22:27:08 +0000 (22:27 +0000)]
Add FreeBSD-only options to the getopt string

PR: 21544
Submitted by: Peter Jeremy <peter.jeremy@alcatel.com.au>

23 years agoMinor clarification about the "bypass" hook.
Archie Cobbs [Tue, 10 Oct 2000 20:07:11 +0000 (20:07 +0000)]
Minor clarification about the "bypass" hook.

23 years agoFix alphabetical ordering for libsmutil
Gregory Neil Shapiro [Tue, 10 Oct 2000 18:32:38 +0000 (18:32 +0000)]
Fix alphabetical ordering for libsmutil

23 years agoDocument the recent sendmail related changes:
Gregory Neil Shapiro [Tue, 10 Oct 2000 18:17:29 +0000 (18:17 +0000)]
Document the recent sendmail related changes:

- STARTTLS support in sendmail
- Use sendmail's version of vacation
- mail.local no longer installed set-user-id root
- Disable EXPN/VRFY SMTP commands by default
- Copy sendmail/cf config building tree into /usr/share/sendmail/cf/

23 years agoBuild sendmail with STARTTLS support unless NO_OPENSSL is set.
Gregory Neil Shapiro [Tue, 10 Oct 2000 18:15:41 +0000 (18:15 +0000)]
Build sendmail with STARTTLS support unless NO_OPENSSL is set.

23 years agoUse sendmail's version of vacation. It is command line and database
Gregory Neil Shapiro [Tue, 10 Oct 2000 18:14:30 +0000 (18:14 +0000)]
Use sendmail's version of vacation.  It is command line and database
compatible with the old version but includes new functionality and bug fixes.

Since it is not part of the NO_SENDMAIL make.conf option, libsmdb and
libsmutil should always be built for vacation's sake.

PR: 15227

23 years agomail.local(8) is no longer installed as a set-user-id binary.
Gregory Neil Shapiro [Tue, 10 Oct 2000 18:12:30 +0000 (18:12 +0000)]
mail.local(8) is no longer installed as a set-user-id binary.

Users may have to adjust their configuration to call mail.local as root
by adding the F=S flag to the local mailer.  Most probably already have this.

23 years agoDisable the SMTP EXPN and VRFY commands by default to prevent information
Gregory Neil Shapiro [Tue, 10 Oct 2000 18:10:38 +0000 (18:10 +0000)]
Disable the SMTP EXPN and VRFY commands by default to prevent information
leakage.

Submitted by: Maxime Henrion <mux@qualys.com>

23 years agoInstall the sendmail cf building tools (contrib/sendmail/cf) in
Gregory Neil Shapiro [Tue, 10 Oct 2000 18:08:19 +0000 (18:08 +0000)]
Install the sendmail cf building tools (contrib/sendmail/cf) in
/usr/share/sendmail/cf.

PR: 19790

23 years agofix conflicting types for ng_ing_rcvmsg() and ng_ing_rcvdata().
Hellmuth Michaelis [Tue, 10 Oct 2000 15:22:00 +0000 (15:22 +0000)]
fix conflicting types for ng_ing_rcvmsg() and ng_ing_rcvdata().

23 years agoupdate with information about isdn4bsd upgrade
Hellmuth Michaelis [Tue, 10 Oct 2000 15:11:45 +0000 (15:11 +0000)]
update with information about isdn4bsd upgrade

23 years ago* Add rudimentary DDB support (no kgdb, no backtrace, no single step).
Doug Rabson [Tue, 10 Oct 2000 14:57:10 +0000 (14:57 +0000)]
* Add rudimentary DDB support (no kgdb, no backtrace, no single step).
* Track recent changes to SWI code.
* Allocate RIDs for pmaps (untested).
* Implement assembler version of cpu_switch - its cleaner that way.

23 years agoupdate to include the new isdn4bsd drivers
Hellmuth Michaelis [Tue, 10 Oct 2000 14:54:45 +0000 (14:54 +0000)]
update to include the new isdn4bsd drivers

23 years agoadd new version of ELECOM Air@Hawk/LD-WL11/PCC
MIHIRA Sanpei Yoshiro [Tue, 10 Oct 2000 14:27:30 +0000 (14:27 +0000)]
add new version of ELECOM Air@Hawk/LD-WL11/PCC
(Yasuhiro Magara <gama@rose.zero.ad.jp> in [bsd-nomads:14588])

add "wi" cards into HARDWARE.TXT and RELNOTES.TXT

23 years agocorrect "device iwic0" to "device iwic"
Hellmuth Michaelis [Tue, 10 Oct 2000 14:23:04 +0000 (14:23 +0000)]
correct "device iwic0" to "device iwic"

23 years agoA quote from the ia64 compiler:
Doug Rabson [Tue, 10 Oct 2000 14:18:50 +0000 (14:18 +0000)]
A quote from the ia64 compiler:
`char' is promoted to `int' when passed through `...'
(so you should pass `int' not `char' to `va_arg')

23 years agoupdate i4b version to 0.96.00
Hellmuth Michaelis [Tue, 10 Oct 2000 14:16:55 +0000 (14:16 +0000)]
update i4b version to 0.96.00

23 years agoSet i4b version number to 0.96.00.
Hellmuth Michaelis [Tue, 10 Oct 2000 14:14:20 +0000 (14:14 +0000)]
Set i4b version number to 0.96.00.
It is (nearly) identical to i4b-00.96.00-beta-101000.tar.gz

23 years agoDo not exit when no holiday file is found. Issue warning and continue.
Hellmuth Michaelis [Tue, 10 Oct 2000 13:28:49 +0000 (13:28 +0000)]
Do not exit when no holiday file is found. Issue warning and continue.

23 years agoInital PowerPC loader build support.
David E. O'Brien [Tue, 10 Oct 2000 13:22:41 +0000 (13:22 +0000)]
Inital PowerPC loader build support.

Submitted by: Benno Rice <benno@jeamland.net>

23 years agoFix the embeded VCS ID for FreeBSD vs. NetBSD.
David E. O'Brien [Tue, 10 Oct 2000 13:15:26 +0000 (13:15 +0000)]
Fix the embeded VCS ID for FreeBSD vs. NetBSD.

23 years agoAdd a quirk entry for the USB Sony DSC drive.
Nick Hibma [Tue, 10 Oct 2000 13:12:11 +0000 (13:12 +0000)]
Add a quirk entry for the USB Sony DSC drive.

23 years agoArchitecture-specific setjump()/longjmp() bits for the PowerPC
David E. O'Brien [Tue, 10 Oct 2000 13:11:47 +0000 (13:11 +0000)]
Architecture-specific setjump()/longjmp() bits for the PowerPC
needed by the loader.

Submitted by: Benno Rice <benno@jeamland.net>
Obtained from: NetBSD (Wolfgang Solfrank <ws@@tools.de>)

23 years agoprint out error reason if it was failed in assign_io
MIHIRA Sanpei Yoshiro [Tue, 10 Oct 2000 13:01:18 +0000 (13:01 +0000)]
print out error reason if it was failed in assign_io

Obtained from: PAO3

23 years agoRemove unneccessary includes. (phk)
Nick Hibma [Tue, 10 Oct 2000 12:41:46 +0000 (12:41 +0000)]
Remove unneccessary includes. (phk)

23 years agoMark directories as directories, not as regular files.
Dag-Erling Smørgrav [Tue, 10 Oct 2000 12:32:44 +0000 (12:32 +0000)]
Mark directories as directories, not as regular files.

23 years agoRemove unneeded includes (phk)
Nick Hibma [Tue, 10 Oct 2000 10:56:53 +0000 (10:56 +0000)]
Remove unneeded includes (phk)

23 years agoAdd MAE0021 - Jetstream Int V.90 56k Voice Series 2.
Seigo Tanimura [Tue, 10 Oct 2000 10:06:26 +0000 (10:06 +0000)]
Add MAE0021 - Jetstream Int V.90 56k Voice Series 2.

PR: i386/19920
Submitted by: Peter Ortner <port@iname.com>

23 years agoawi needs to access memory with 8bit,
Atsushi Onoe [Tue, 10 Oct 2000 09:50:25 +0000 (09:50 +0000)]
awi needs to access memory with 8bit,
but pccardd apparently maps memory with MDF_16BITS flag.
So memory mapped access is disabled and use IO port instead for now.

This fixes the problem for config index 0x01 in the pccard.conf
with the message: "awi0: failed to complete selftest (timeout)"

23 years agoWe want the FreeBSD ID as the RCS ID, not the NetBSD one.
David E. O'Brien [Tue, 10 Oct 2000 08:57:30 +0000 (08:57 +0000)]
We want the FreeBSD ID as the RCS ID, not the NetBSD one.

23 years agoRemoved the FreeBSD ID I was forced to add in rev 1.9.
David E. O'Brien [Tue, 10 Oct 2000 08:53:27 +0000 (08:53 +0000)]
Removed the FreeBSD ID I was forced to add in rev 1.9.