Commit Graph

137847 Commits

Author SHA1 Message Date
junyoung
6a5baa993c ANSIfy and de-__P. 2005-06-22 17:34:30 +00:00
taca
fbf091a5b6 Postfix 2.2.4 released. 2005-06-22 16:51:41 +00:00
junyoung
600b956be0 Remove trailing spaces. 2005-06-22 16:35:58 +00:00
junyoung
bacc083333 Do not mix assembly-style comments and C-style comments. 2005-06-22 15:29:48 +00:00
manu
6593739f61 Implent CLONE_PARENT_SETTID, CLONE_CHILD_CLEARTID, and CLONE_CHILD_SETTID
options to clone(). This makes fork() work on amd64.

clone() prototype has changed and the changes is probably revelant on some
other arches.
2005-06-22 15:10:51 +00:00
junyoung
1341f2c732 Fix build breakage. 2005-06-22 15:06:19 +00:00
wiz
08ff3e7e12 Remove duplicate apci at mainbus line, from Nicolas Joly in PR 30564. 2005-06-22 14:10:34 +00:00
christos
8fa006901b Deal with nic.de stupidity. Idea from OpenBSD, but simplified. 2005-06-22 12:17:56 +00:00
peter
26b3362b67 Missing m_freem() in bpf_write. PR/29138. 2005-06-22 10:36:16 +00:00
dyoung
9063402978 Resolve conflicts in importation of 18-May-2005 ath(4) / net80211(9)
from FreeBSD.  Introduce compatibility shims (sys/dev/ic/ath_netbsd.[ch],
sys/net80211/ieee80211_netbsd.[ch]).  Update drivers (an, atu, atw,
awi, ipw, iwi, rtw, wi) for the new net80211(9) API.
2005-06-22 06:14:51 +00:00
junyoung
753f88cef9 Use get_harddrives(). 2005-06-22 06:09:47 +00:00
junyoung
c53f251ee6 Add support for cd9660 file system to the i386 BIOS bootloader. 2005-06-22 06:06:34 +00:00
junyoung
e7cb351275 Cosmetic changes. 2005-06-22 05:30:13 +00:00
kent
4239255ec0 correct synopsis: "audio* at audiobus?", not "audio* at devicename?"
bump date
2005-06-22 04:30:08 +00:00
kent
ea2fd937b5 - cross-reference from/to ac97(4)
- correct synopsis: "audio* at audiobus?" instead of "audio* at devicename?"

bump date
2005-06-22 04:19:09 +00:00
atatat
fc1ed39348 Also fix (wrt the new const stuff) the one user of sysctl_locate()
outside of the main sysctl code.
2005-06-22 03:13:34 +00:00
enami
230b1ca68c Backout part of previous since it breaks kernel build and not described
in the commit log.  I don't see merged log of ath(4) yet.
2005-06-22 01:51:03 +00:00
sekiya
a3df0e92f9 It turns out that pci_addr_fixup() doesn't require PCIBIOS either. Decouple,
run it from mainbus_attach().
2005-06-22 00:58:48 +00:00
lha
3baf9430ad Remove static local variable so its easier to correctly use strlcpy. 2005-06-21 22:29:53 +00:00
dyoung
d1f006118e Import FreeBSD's ath(4) of 2005-05-18 2005-06-21 20:37:47 +00:00
dyoung
3cdc4fcd5f Import FreeBSD's net80211(9) of 2005-05-18 2005-06-21 20:37:38 +00:00
christos
098f26dce7 Document that passing NULL to %s prints "(null)". 2005-06-21 18:43:17 +00:00
junyoung
d2c188d7c7 Cosmetic changes. 2005-06-21 18:34:47 +00:00
junyoung
59c7a166e2 If any of libraries needed by the "boot" is rebuilt vers.c should be
regenerated so that the build date is updated accordingly.
2005-06-21 18:25:14 +00:00
junyoung
321d917810 ANSI, KNF, trailing spaces, and etc. 2005-06-21 18:16:59 +00:00
wiz
1129c8c029 Add ac97(4) man page from OpenBSD, written by Constantine Sapuntzakis.
Suggested by kent@.
2005-06-21 18:11:38 +00:00
kent
c782306795 add azalia(4) man page 2005-06-21 17:37:06 +00:00
kent
ad8ef76d8d support for recording 2005-06-21 14:51:37 +00:00
junyoung
38e1b7dac2 Remove trailing spaces. 2005-06-21 14:48:47 +00:00
junyoung
0b6edcdedb - It is worthless to endlessly try to boot unbootable images. If all predefined
boot images are failed to boot, fall into the prompt.
- Fix a garbage in previous commit.
2005-06-21 14:20:35 +00:00
junyoung
8ea8555169 More cosmetic changes. 2005-06-21 14:16:27 +00:00
junyoung
6b49899231 - KNF & cosmetic changes
- Remove #if 0'ed netbsd.el{,.gz} from bootfile list. I have no idea what
  those files are (emacs lisp source??? :-).
2005-06-21 14:13:40 +00:00
ws
9d78e0cf36 PR-30566: Poll must not return <sys/errno.h> values.
Start with those places I can easily test.
2005-06-21 14:01:11 +00:00
sekiya
b72e560799 Likewise, ACPI_PCI_FIXUP has been replaced by PCI_INTR_FIXUP, and we should
notify when an old kernel config is used.  Recommended by wiz@
2005-06-21 11:49:10 +00:00
sekiya
087e54e558 Error out if obsolete fixup config directives are used.
Pointed out by wiz@
2005-06-21 11:46:25 +00:00
sekiya
0919f4d283 Rework the configuration scheme for PCI fixups:
* bus enumeration fixups are not PCIBIOS-specific, interrupt fixups are done
  by both PCIBIOS and ACPI.  The redundancy is very redundant.  Therefore,
  rename PCIBIOS_*_FIXUP to PCI_*_FIXUP, use PCI_INTR_FIXUP in place of
  ACPI_PCI_FIXUP, and change code refences to match.

* move the fixup defines from opt_pcibios.h to opt_pcifixup.h to reflect
  the above.

* fix up the PCI bus numbering in mainbus_attach(), right after we detect the
  configuration mode.  This probably renders the fixup in pcibios.c
  redundant -- but it should be harmless.

These changes make cardbus work in ACPI-only machines, when PCI_BUS_FIXUP
and PCI_INTR_FIXUP are defined.
2005-06-21 08:19:25 +00:00
sekiya
b7d7ac9d1a Fix uninitialized pointer problem in rbus code ... just because the kernel is
compiled with PCIBIOS_ADDR_FIXUP doesn't necessarily mean that
pcibios_addr_fixup() succeeded ...
2005-06-21 06:51:29 +00:00
kent
51a6455183 note addition of azalia driver 2005-06-21 02:24:15 +00:00
kent
05ff5da3a7 add "azalia at pci" 2005-06-21 02:23:13 +00:00
thorpej
26d517435c Fix mis-placed newline. 2005-06-21 01:12:17 +00:00
darcy
77a3cb4427 Fix another portability issue. Part of PR kern/30456. 2005-06-20 20:40:21 +00:00
elad
ced2e2a09a Remove veriexec_dprintf() calls forgotten in last commit. 2005-06-20 15:32:29 +00:00
elad
0e4dfe1792 - Use more calls to veriexec_report() where possible.
- Change #ifdef VERIFIED_EXEC_VERBOSE to another verbose level, 2. Add
  sysctl(3) bits.

- Simplify access type conflict handling during load. This depends on
  the values of access type defines to be ordered from least to most
  'strict'.
2005-06-20 15:06:18 +00:00
skrll
5fb9715482 Add a const 2005-06-20 14:30:29 +00:00
peter
52eb5d87eb Use .Fx for FreeBSD. 2005-06-20 14:02:30 +00:00
peter
0105f057d6 siginfo(5) -> siginfo(2). 2005-06-20 13:48:14 +00:00
peter
a9b411c198 Change all .Xr config 8 to .Xr config 1, following the recent move of
config from usr.sbin -> usr.bin.

Reviewed by wiz.
2005-06-20 13:25:23 +00:00
briggs
11925ed1a8 Mention ataraid(4) support for Adaptec HostRAID. 2005-06-20 13:15:24 +00:00
sekiya
da1b13d741 Also fix up interrupt line if interrupt is zero, as well as 255. Fixes
interrupt issues on two of my laptops that lack PCIBIOS.
2005-06-20 12:21:36 +00:00
kent
e3c53b72af - print the controller name if possible
- make the max values of mixers AUDIO_MAX_GAIN
- reset the stream in trigger_output()
2005-06-20 11:48:47 +00:00