mikeh
98c48a5fa1
Fix typo: clnt_destroy() only takes one arg.
...
MFC after: 2 weeks
2001-06-18 00:45:31 +00:00
cg
c24cb000aa
use devclass_get_maxunit() correctly
2001-06-18 00:10:47 +00:00
cg
420f58376d
revise dsp_clone() to return the first nonbusy channel instead of simply
...
cycling channel numbers.
remove unused fields from struct snddev_info.
2001-06-17 23:23:06 +00:00
cg
494b7c7475
fix a potential panic in dsp_clone() if no pcm devices were detected
2001-06-17 20:15:29 +00:00
wilko
ca48033e45
Note support for the Digital Etherworks DE305 card
2001-06-17 14:25:09 +00:00
nyan
8e35240c43
Don't assume that resource type is ioport and rid equal 0.
2001-06-17 13:33:59 +00:00
alex
258cf0e7e2
Document the -a flag.
2001-06-17 11:22:57 +00:00
benno
b8d88b43ff
The final commit for the first phase of PowerPC support.
...
This adds the config stuff needed to build kernels.
Reviewed by: obrien
2001-06-17 09:39:44 +00:00
dd
9e14329549
Satisfy gcc's parenthetical needs and clamp down with WANRS=2.
...
Reviewed by: md5(1)
2001-06-17 06:22:30 +00:00
nyan
2d7a18646d
Allocate all resources using keyboard controller.
2001-06-17 04:43:28 +00:00
mikeh
714cc67ab6
Add the -p flag to force unknown control sequences to be passed
...
through unchanged.
Reviewed by: silence on -audit
Obtained from: NetBSD
MFC after: 3 weeks
2001-06-17 04:24:16 +00:00
mikeh
8174fd75ca
Use err(3) and style(9) cleanup.
...
MFC after: 2 weeks
2001-06-17 03:56:00 +00:00
nyan
d3a49deed9
Supported to select a keymap for PC-98x1.
2001-06-17 03:13:48 +00:00
nyan
d5c9b58974
Added PC-98x1 keymaps.
2001-06-17 03:10:38 +00:00
dd
92e25ce88b
Add missing article.
2001-06-17 02:24:04 +00:00
imp
134fd54559
Move cardbus and pccard bus bridge devices to near the bridge chips. This
...
is so that all the pccard options are together and this reduces diffs with
GENERIC.
2001-06-17 02:02:33 +00:00
dd
b5460aa75b
Don't call printf without a format string (harmless in this case).
2001-06-17 02:01:43 +00:00
imp
97a5b3098d
MFGENERIC:
...
1.307 Turn on kernel debug support
1.309 Turn off pcm
1.311 move wx to miibus chipsets
1.312 Comment out USERCONFIG
Reminded by: mihira-san <sanpei@sanpei.org>
2001-06-17 01:57:39 +00:00
peter
2b68a1d009
Revise wording of osreldate.h vs kernel warning to make it clear that it
...
is a userland-only header.
2001-06-17 01:20:25 +00:00
dd
a6546ead98
Add an -a option which will make send-pr copy the specified file into
...
the Fix: section. Binary files (as determined by file(1)) are
uuencode'd.
Submitted by: alex
2001-06-17 00:35:46 +00:00
peter
e05ff7e2d6
Move setugid() a little sooner to before we release tracing in case
...
crdup() or change_e*id() block on malloc() or mutex.
2001-06-16 23:34:23 +00:00
imp
59b4b8de49
Some people are having problems with insert/eject. Add some debug
...
information until the problems can be tracked down. Right now these
are unconditional, but later it will be hidden behind a boot verbose.
Also, if there are no events listed in the event mask, return right
away. Specifically avoid writing back interrupt acks in this case.
2001-06-16 23:26:18 +00:00
dd
268df752d0
Correct a typo in an error message.
2001-06-16 23:15:15 +00:00
dd
bff6376490
Make the synopsis resemble the usage in the source file.
2001-06-16 23:09:12 +00:00
peter
caf4a686e5
Use INTR_TYPE_AV for the interrupt handlers because:
...
1: most drivers are sensitive to timing, and
2: the handlers are MPSAFE and need a chance to get into the kernel
before some other non-mpsafe handler blocks the ithread on Giant in
shared irq cases.
Reviewed by: cg (in principle)
2001-06-16 22:59:46 +00:00
peter
38ecd59e07
Add INTR_TYPE_AV so that we can get to the PI_AV priority in the ithread
...
handlers. This is beneficial since it means that pcm's MPSAFE handler
can get run before things that will block on Giant in the shared irq
case.
2001-06-16 22:42:19 +00:00
peter
e3c015c7bb
Clean up some junk. The bogus trapframe on the stack was removed from the
...
MI code in August 2000 elsewhere.
2001-06-16 22:07:32 +00:00
tegge
6008da3fbd
Check for the PS_SINTR flag in the right field of struct kinfo_proc
...
(ki_sflag).
2001-06-16 21:39:29 +00:00
cg
4a0664e88e
use a global devclass for all drivers - i'm not entirely sure why this
...
worked before.
mixer, dsp and sndstat are seperate devices - give them their own cdevsws
instead of demuxing requests sent to a single cdevsw.
use the si_drv1/si_drv2 fields in dev_t structures for holding information
specific to an open instance of mixer/dsp.
nuke /dev/{dsp,dspW,audio}[0-9]* links - this functionality is now provided
using cloning.
various locking fixes.
2001-06-16 21:25:10 +00:00
wilko
b81ba90a5f
Add note about partition a better be at offset 0 for a disk to be bootable.
2001-06-16 21:10:54 +00:00
ume
33474f7afa
less warning
...
warning: cast discards qualifiers from pointer target type
2001-06-16 19:32:37 +00:00
jlemon
6506d09c7b
Comply with POSIX rules:
...
o Use %u for printing u_int.
o Cast sizeof() to u_long, and print with %lu
Reviewed by: wollman
2001-06-16 18:55:13 +00:00
dwmalone
229831d19f
Give inetd the ability to manage unix domain sockets. Details of
...
how to use this feature are in the man page. This is based on work
by Lyndon Nerenberg.
(The only difficult part about this patch is the fact that you
can't fchown a unix domain socket, which means the sockets must be
put in a secure directory).
Reviewed by: dillon
2001-06-16 18:54:54 +00:00
nik
68be106995
More tips. I'd never heard of look(1) before.
...
Submitted by: Dru <genisis@istar.ca>
2001-06-16 16:45:52 +00:00
schweikh
0ecfad7b16
Fix misindented esac.
...
MFC after: 1 week
2001-06-16 15:48:43 +00:00
alex
ed6e38dd8c
Fix "alignemnt" typo.
2001-06-16 15:28:28 +00:00
nik
0068679017
More tips, this time from the Russian Fidonet FreeBSD Echo.
...
And I never knew about ports(7) before.
Submitted by: Alexey V. Neyman <avn@any.ru>
2001-06-16 11:42:28 +00:00
markm
196c104586
This file was a horrible mixture of styles old and new.
...
Apply style(9).
2001-06-16 10:47:34 +00:00
schweikh
13b243ec3c
Remove ncheck in an example; FreeBSD does not have it.
...
PR: 10158
Submitted by: Remy Card <card@ens.uvsq.fr>
MFC after: 2 weeks
2001-06-16 09:05:24 +00:00
assar
116337ea17
(do_authloop): handle !KRB4 && KRB5
2001-06-16 07:44:17 +00:00
obrien
61020736f6
Add the ".FreeBSD" symbol so we can do things like ".if define(.FreeBSD)"
...
in Makefile's shared with NetBSD.
2001-06-16 07:27:23 +00:00
benno
10abd05c14
OpenFirmware kernel support, as used by the PowerPC and hopefully other
...
ports later on.
This includes the basic MI interface routines as well as a console driver.
The MD code is kept in the MD directories.
Reviewed by: obrien
2001-06-16 07:17:56 +00:00
obrien
04a12c6e39
This commit was generated by cvs2svn to compensate for changes in r78344,
...
which included commits to RCS files with non-trunk default branches.
2001-06-16 07:16:14 +00:00
obrien
4d3fc79b76
Import the NetBSD 1.5 RC system.
...
Note that `rc' and `rc.shutdown' could not be imported because we already
have files with those names.
2001-06-16 07:16:14 +00:00
obrien
afad76ee76
Import the NetBSD 1.5 RC system.
...
Note that `rc' and `rc.shutdown' could not be imported because we already
have files with those names.
2001-06-16 07:16:14 +00:00
jlemon
b02e9205fc
Fix warning (and obviously broken code)
...
77: warning: cast from pointer to integer of different size
2001-06-16 07:15:48 +00:00
benno
f371c393d1
This commit (along with one pending in sys/dev/ofw and one in sys/conf) give
...
us our first minimal glimpse of PowerPC support.
With this code we can get to the "mountroot>" prompt on my Apple iMac. We
can't get any further due to lack of clock and interrupt handling, among other
things. This does however mean that pmap and VM are initialising.
We're fairly dependant on OpenFirmware at this point, but I hope to add
support for other classes of firmware at a later stage.
Reviewed by: obrien, dfr
2001-06-16 07:14:07 +00:00
mikeh
99efa6b196
Print spaces on the leading edge rather than the trailing edge of each
...
field to avoid trailing spaces.
PR: bin/16649
MFC after: 2 weeks
2001-06-16 07:08:37 +00:00
jlemon
d115ce425b
Fix warnings:
...
112: warning: cast to pointer from integer of different size
125: warning: cast to pointer from integer of different size
2001-06-16 07:02:47 +00:00
assar
f3f4f15f6e
generate ksrvtgt
...
PR: bin/25561
MFC after: 1 week
2001-06-16 06:51:35 +00:00