Commit Graph

157385 Commits

Author SHA1 Message Date
tnozaki ab9a36c548 add nn_NO(Nynorsk) and nb_NO(Bokmal) locale. 2007-03-08 16:26:26 +00:00
tsutsui 735e70459c Remove #ifdef _KERNEL since this file is no longer exported to userland. 2007-03-08 15:40:54 +00:00
tsutsui c13e98e3d4 Stop installing <machine/intr.h> on ews4800mips. Suggested by simonb. 2007-03-08 15:39:42 +00:00
joerg eafde1f2ac First step to killing the require script heritage: remove support
in pkg_create for them and complain in pkg_add and pkg_info.
2007-03-08 15:36:57 +00:00
joerg fc6d83e38e Remove documentation for -h as well. 2007-03-08 15:20:18 +00:00
njoly 8a8ad502db Add hpet support to i386/amd64 kernels.
- `hpet* at acpi?' to kernels that already support ACPI.
- `hpet* at amdpcib?' (commented out) to amd64 GENERIC.
2007-03-08 15:16:04 +00:00
he 95f7f99810 Convert sc_inbuf and sc_outbuf from char* to void* to avoid introducing
casts in lpt.c.
2007-03-08 14:45:07 +00:00
njoly 90b3c9e789 High Precision Event Timer driver, following Intel specifications.
Allow attachement at both ACPI (hpet@acpi) and AMD8111 LPC Controller
(hpet@amdpcib).

Requested by xtraeme, and tested by a few users.
2007-03-08 14:26:26 +00:00
bouyer a931914f53 Switch i386 and amd64 to native boot, if INTFILES contains bootxx_cd9660.
Use x86 native boot for current.
Swap i386 and amd64 in multiarch CD sets (cd1 would overflow by 30M otherwise)
and leave vax out (cd3 would overflow by more than 100M - time for a
multi-cd4 ?)
2007-03-08 13:51:37 +00:00
bouyer 7faa36afb7 Use nblaptop and nbnoacpi for the alternative kernel names; as suggected by
Alan Barrett. While there factor out the kernels in Makefile.cdrom.
2007-03-08 13:48:36 +00:00
ad a99fcd719d Remove an obsolete comment. 2007-03-08 13:46:31 +00:00
itohy caf9a4f90d Since netbsd-4 branch moved itself, this driver will be included in 4.0. 2007-03-08 13:05:51 +00:00
tsutsui 25283a8672 In snintr(), reset the chip on fatal errors and
call snstart() after all events are handled.

XXX: We should switch to MI sys/dev/ic/dp83932.c.
2007-03-08 12:57:20 +00:00
tsutsui 002694356b Use volatile on access to DMA descriptors. 2007-03-08 12:54:15 +00:00
he df278bdaa1 Correct typo: the directory is named cdroms, not cdrom. 2007-03-08 12:13:43 +00:00
he 3b1966670e Due to pointer arithmetic, convert local "page" variable from void* to char*. 2007-03-08 07:14:41 +00:00
he 6c9343a7bd Convert a local variable from void* to vaddr_t, which is neutral in the
number of casts.  In another instance, use char* before pointer arithmetic.
2007-03-08 07:11:53 +00:00
he 2d8af2a7de Cast to char* before doing pointer arithmetic. 2007-03-08 07:10:22 +00:00
he 6bb7e42af6 Due to pointer arithmetic and comparison, it appears to be least
invasive to convert three local variables from void* to char*.
2007-03-08 07:04:42 +00:00
he b2ba218c77 Cast to char* before doing pointer arithmetic. 2007-03-08 06:57:14 +00:00
matt a59429a2da More caddr_t -> void * fallout. 2007-03-08 05:33:04 +00:00
tsutsui 3c3f50b339 MI softintr(9)'fy.
Probably problematic, but LC630 is running at single user.
2007-03-08 02:24:39 +00:00
joerg 8f8f925511 Nuke -h option for pkg_create. Following all symlinks is not useful
either and can fail for those packages which intentionally or not
install broken symlinks.
2007-03-08 00:52:04 +00:00
joerg 91ba7f5d95 Nuke -X option for pkg_create. Filtering the PLIST thrown at tar is not
really useful and easier done directly. This feature was supposedly
never used at all.

OK agc@, jlam@
2007-03-08 00:33:53 +00:00
bjh21 a3ad5d7241 TRUE -> true; FALSE -> false. 2007-03-07 23:17:01 +00:00
liamjfoy c056d61bbe Document IPv6 Fast Forward addition 2007-03-07 22:44:29 +00:00
he 78fdb9937b Cast to char* before doing pointer arithmetic. 2007-03-07 22:43:32 +00:00
rmind 8c218ddd5e We no longer have uio_segflg and uio_procp members in the the struct uio.
Instead of these, we use uio_vmspace. OK: ad@
2007-03-07 22:40:24 +00:00
he 1b50aea089 Cast to char* before doint pointer arithmetic. 2007-03-07 22:38:33 +00:00
he 25eb40abe8 Fix typo on previous. 2007-03-07 22:36:43 +00:00
he 278741e2a4 Cast to char* before doing pointer arithmetic. 2007-03-07 22:35:22 +00:00
liamjfoy 16b93348a3 Document net.inet6.ip6.maxflows for IPv6 Fast Forward 2007-03-07 22:24:31 +00:00
bouyer d6610037ac Remove duplicate ACPIVERBOSE and ACPI_SCANPCI; pointed out by Nicolas Joly. 2007-03-07 22:23:14 +00:00
liamjfoy 5e73ba0829 Add new IPv6 Fast Forward statistics 2007-03-07 22:22:50 +00:00
liamjfoy 9763fa0590 Add IPv6 Fast Forward:
Add call to ip6flow_invalidate_all()

ok christos, matt, dyoung and joerg
2007-03-07 22:21:45 +00:00
liamjfoy 8aa640dadd Add IPv6 Fast Forward - the IPv4 counterpart:
If ip6_forward successfully forwards a packet, a cache, in this case a
ip6flow struct entry, will be created. ether_input and friends will
then be able to call ip6flow_fastforward with the packet which will then
be passed to if_output (unless an issue is found - in that case the packet
is passed back to ip6_input).

ok matt@ christos@ dyoung@ and joerg@
2007-03-07 22:20:04 +00:00
bouyer 03d4f68c12 Remove sgimips from multi-cd sets where EXTFILES.sgimips is defined.
A bootable sgimips has a volume header prepended, and so is useless for
anything but sgimips. The issue was not found before because the
logic to make an ISO bootable on sgimips was broken, and has been fixed by
tsutsui@ on 2007/03/04.
2007-03-07 21:59:15 +00:00
thorpej f00c540051 TRUE -> true, FALSE -> false 2007-03-07 21:43:43 +00:00
plunky 3617998677 add validity check for inbound packets 2007-03-07 20:44:52 +00:00
mjf 0e981a1e1c - Fix man pages for openssl upgrade
- Add myself to list of maintainers for openssl
- Note the openssl upgrade in CHANGES
2007-03-07 20:43:10 +00:00
macallan f658e972f2 correct the maximum supported dotclock on monitors that report one value
but claim to support modes which need something higher, while there also
initialize the edid_preferred_mode pointer before using it
2007-03-07 19:56:40 +00:00
bouyer 6b01cea87b Fix SUBDIR in previous 2007-03-07 19:42:02 +00:00
bouyer 476384386e Note ACPI by default in i386/amd64, and the iso-image changes. 2007-03-07 19:04:02 +00:00
bouyer 7b1bb0a86b Revert local changes that went in accidentally with the "add ACPI" commit. 2007-03-07 18:58:48 +00:00
bouyer 549da70806 Fix typo in subdir name. 2007-03-07 18:58:05 +00:00
macallan 9975dc8fd4 initialize edid_nmodes before using it (in edid_parse() ) 2007-03-07 18:49:31 +00:00
macallan eb5de43ad9 add 1280x1024@70Hz 2007-03-07 18:48:37 +00:00
macallan 710e3dc0d7 add Relisys 2007-03-07 18:47:13 +00:00
tsutsui 52d4f5af01 Remove lines not intended to commit in the previous. 2007-03-07 18:00:49 +00:00
njoly 35052cfd97 Fix features display for Intel CPUs.
Slightly updated version from PR/35302.

ok by cube
2007-03-07 18:00:20 +00:00