The NetBSD Project

CVS log for src/sys/arch/i386/conf/GENERIC

[BACK] Up to [cvs.NetBSD.org] / src / sys / arch / i386 / conf

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.1243.2.5: download - view: text, markup, annotated - select for diffs
Wed Oct 9 13:25:11 2024 UTC (2 months ago) by martin
Branches: netbsd-10
Diff to: previous 1.1243.2.4: preferred, colored; branchpoint 1.1243: preferred, colored; next MAIN 1.1244: preferred, colored
Changes since revision 1.1243.2.4: +5 -2 lines
Pull up following revision(s) (requested by riastradh in ticket #939):

	distrib/sets/lists/debug/module.md.amd64: revision 1.18
	sys/modules/Makefile: revision 1.292
	lib/libc/gen/arc4random.c: revision 1.34
	lib/libc/gen/arc4random.c: revision 1.35
	lib/libc/gen/arc4random.c: revision 1.36
	lib/libc/gen/arc4random.c: revision 1.37
	sys/kern/kern_entropy.c: revision 1.70
	lib/libc/gen/arc4random.c: revision 1.38
	sys/kern/kern_entropy.c: revision 1.71
	lib/libc/gen/getentropy.3: revision 1.8
	distrib/sets/lists/modules/md.amd64: revision 1.103
	share/man/man4/rnd.4: revision 1.42
	share/man/man4/rnd.4: revision 1.44
	lib/libc/include/arc4random.h: revision 1.1
	distrib/sets/lists/man/mi: revision 1.1786
	sys/arch/i386/conf/GENERIC: revision 1.1258
	sys/modules/acpivmgenid/acpivmgenid.ioconf: revision 1.1
	sys/arch/amd64/conf/ALL: revision 1.190
	distrib/sets/lists/debug/mi: revision 1.446
	sys/arch/i386/conf/ALL: revision 1.521
	lib/libc/gen/Makefile.inc: revision 1.219
	distrib/sets/lists/debug/module.md.i386: revision 1.12
	sys/dev/acpi/acpi_vmgenid.c: revision 1.1
	sys/dev/acpi/acpi_vmgenid.c: revision 1.2
	lib/libc/include/reentrant.h: revision 1.22
	sys/arch/evbarm/conf/GENERIC64: revision 1.219
	share/man/man4/Makefile: revision 1.735
	distrib/sets/lists/modules/md.i386: revision 1.100
	distrib/sets/lists/tests/mi: revision 1.1334
	lib/libc/gen/arc4random.3: revision 1.22
	sys/dev/acpi/files.acpi: revision 1.133
	lib/libc/gen/arc4random.3: revision 1.23
	tests/lib/libc/gen/t_arc4random.c: revision 1.1
	sys/sys/entropy.h: revision 1.6
	sys/arch/amd64/conf/GENERIC: revision 1.614
	sys/modules/acpivmgenid/Makefile: revision 1.1
	share/man/man4/acpivmgenid.4: revision 1.1
	lib/libc/gen/Makefile.inc: revision 1.220
	tests/lib/libc/gen/Makefile: revision 1.56
	share/man/man4/acpivmgenid.4: revision 1.2
	share/man/man4/acpivmgenid.4: revision 1.3

	(all via patch)

Catch up with all the lint warnings since exit on warning was disabled.

Disable 'missing header declaration' and 'nested extern' warnings for now.
acpivmgenid(4): New driver for virtual machine generation ID.

Added to amd64/ALL and i386/ALL kernel configurations, and made
available as a loadable module acpivmgenid.kmod on x86, for now.
TBD: Add to all ACPI-supporting GENERIC kernels.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

entropy(9): Factor out subroutines to reset and gather entropy.
`Reset' means we keep the data in the pool, but assume it had zero
entropy.  `Gather' means we request samples from all on-demand
sources and wait for the synchronous ones to complete.

No functional change intended, other than to expose new symbols --
just preparation to expose these to acpivmgenid(4), so it can use
these when the VM host notifies us that we, the guest, have been
cloned.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

acpivmgenid(4): Reset and gather entropy on VM clone notification.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

arc4random(3): Reseed if system entropy epoch changes.
This can happen, for example, if the system is a VM instance, and the
VM is cloned.

This incurs the cost of a system call on every arc4random call, which
is unfortunate, but
1. we don't currently have a (machine-independent) mechanism for
   exposing a read-only page to userland shared by the kernel to
   enable a cheaper access path to the entropy epoch; and
2. the algorithm here -- a simple application of ChaCha -- is likely
   also a bottleneck and could be much cheaper by
   (a) using sys/crypto/chacha for machine-dependent vectorized
       ChaCha code, and
   (b) filling a buffer (somewhere between a cipher block and a page)
       in a batch at a time, instead of running ChaCha to generate
       only 32 bytes at a time.
So although this might be a performance hit, the security benefit is
worthwhile and we have a clear path to do better than reversing the
performance hit later.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

acpivmgenid(4): Nix BUGS that have been squashed.
Reference kern.entropy.epoch for the remaining bug (which is a
performance issue, not a security issue).
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

entropy(9): Allow unprivileged reads of sysctl kern.entropy.epoch.

Applications need this in order to know when to reseed.  (We should
also expose it through a page shared read-only with userland for
cheaper access, but until we do, let's let applications get at it
through sysctl.)
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

arc4random.c: Fix test program.

This isn't wired up anywhere, but let's reduce the bitrot.  It was
helpful in reminding me that kern.entropy.epoch was, for reasons I
can't remember, restricted to privileged access.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

amd64, evbarm, i386: Add acpivmgenid(4) to GENERIC.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

rnd(4): Document kern.entropy.epoch is unprivileged and elaborate.
Cross-reference acpivmgenid(4).
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

arc4random(3): Note that arc4random respects kern.entropy.epoch.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
Add debug info for new acpivmgenid module

arc4random(3): Add automatic tests.

This verifies that:
- arc4random zeroes its state and reseeds itself on fork
- arc4random reseeds itself on entropy consolidation (e.g., VM clone)
- arc4random falls back to global state if it can't allocate local
  state because address space limits cause mmap to fail

NOTE: This adds a new libc symbol __arc4random_global, but it's in
the reserved namespace and only used by t_arc4random, so no libc
minor bump.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

getentropy(3): Note intent to reseed on VM clone, and caveats.

Tidy markup and pacify some mandoc -Tlint complaints while here.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

Bump dates on man pages recently updated to mention VM clones.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

arc4random(3): Pacify some of lint's complaints.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

arc4random: suppress another lint warning

Revision 1.1258: download - view: text, markup, annotated - select for diffs
Tue Aug 27 00:56:16 2024 UTC (3 months, 2 weeks ago) by riastradh
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.1257: preferred, colored
Changes since revision 1.1257: +3 -2 lines
amd64, evbarm, i386: Add acpivmgenid(4) to GENERIC.

PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork

Revision 1.1257: download - view: text, markup, annotated - select for diffs
Tue Jul 16 12:01:19 2024 UTC (4 months, 3 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.1256: preferred, colored
Changes since revision 1.1256: +3 -2 lines
viocon(4): Add to various kernel configs.

Revision 1.1243.2.4: download - view: text, markup, annotated - select for diffs
Thu Jun 20 11:00:06 2024 UTC (5 months, 3 weeks ago) by martin
Branches: netbsd-10
Diff to: previous 1.1243.2.3: preferred, colored; branchpoint 1.1243: preferred, colored
Changes since revision 1.1243.2.3: +3 -3 lines
Pull up following revision(s) (requested by andvar in ticket #700):

	sys/arch/i386/conf/GENERIC: revision 1.1256
	share/man/man4/man4.x86/viac7temp.4: revision 1.1
	sys/arch/x86/x86/viac7temp.c: revision 1.11
	share/man/man4/man4.x86/Makefile: revision 1.24
	share/man/man4/man4.i386/viac7temp.4: file removal
	share/man/man4/man4.i386/Makefile: revision 1.81
	distrib/sets/lists/man/mi: revision 1.1773
	sys/arch/amd64/conf/GENERIC: revision 1.612
	sys/arch/amd64/conf/ALL: revision 1.188
	sys/arch/i386/conf/ALL: revision 1.519

viac7temp(4): rewrite temperature sensor to read value from MSR instead of using
documented cpuid instruction and eax register.

This approach is adapted from linux via-cputemp.c, no official documentation is
currently available. However, msr value seems to work on all tested CPUs while
documented cpuid instruction typically reports 0, even for my C7-D CPU.
msr value seems to have temperature in Celsius in lower 24-bits without fraction
(thus "msr & 0xffffff;" is used).

Tested on my personal systems based on CPUs below (i386 and amd64):
C7-D 1.6GHz (i386 only), Nano X2 L4350E, Nano X2 U4300, U2300 Nano, KX-U6580.
Also got one response via email which was based on Nano X2 L4050 (VE-900).

Nano reports independent values for each core.

KX-U6580 seems to show the same value for all cores but more testing is needed.

Since it works on amd64 capable CPUs, adding driver to GENERIC kernel config.

Also moving viac7temp man page to x86 instead of i386 (with updates).

In theory the change should add support for all VIA Nano CPUs and Zhaoxin CPUs
 at least up to KX-6000(G) series.

In the future I may need to introduce amd64 kernel module as well.

Patch mainly reviewed by riastradh.

Revision 1.1256: download - view: text, markup, annotated - select for diffs
Tue Apr 30 19:35:28 2024 UTC (7 months, 1 week ago) by andvar
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs
Diff to: previous 1.1255: preferred, colored
Changes since revision 1.1255: +3 -3 lines
viac7temp(4): rewrite temperature sensor to read value from MSR instead of using
documented cpuid instruction and eax register.

This approach is adapted from linux via-cputemp.c, no official documentation is
currently available. However, msr value seems to work on all tested CPUs while
documented cpuid instruction typically reports 0, even for my C7-D CPU.
msr value seems to have temperature in Celsius in lower 24-bits without fraction
(thus "msr & 0xffffff;" is used).

Tested on my personal systems based on CPUs below (i386 and amd64):
C7-D 1.6GHz (i386 only), Nano X2 L4350E, Nano X2 U4300, U2300 Nano, KX-U6580.
Also got one response via email which was based on Nano X2 L4050 (VE-900).
Nano reports independent values for each core.
KX-U6580 seems to show the same value for all cores but more testing is needed.

Since it works on amd64 capable CPUs, adding driver to GENERIC kernel config.
Also moving viac7temp man page to x86 instead of i386 (with updates).
In theory the change should add support for all VIA Nano CPUs and Zhaoxin CPUs
 at least up to KX-6000(G) series.

In the future I may need to introduce amd64 kernel module as well.

Plan to pullup to at least netbsd-10.

Patch mainly reviewed by riastradh.

Revision 1.1255: download - view: text, markup, annotated - select for diffs
Sun Apr 21 14:11:12 2024 UTC (7 months, 2 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.1254: preferred, colored
Changes since revision 1.1254: +4 -2 lines
apei(4), acpihed(4): Enable in x86 GENERIC.

Let's just see how this works out in practice.  Might need to reduce
the overhead of each GHES on machines with thousands of them, but
we'll see.

PR kern/58046

Revision 1.1254: download - view: text, markup, annotated - select for diffs
Tue Apr 2 22:56:50 2024 UTC (8 months, 1 week ago) by charlotte
Branches: MAIN
Diff to: previous 1.1253: preferred, colored
Changes since revision 1.1253: +3 -2 lines
Mention DKWEDGE_METHOD_TOS in several kernel config files

Revision 1.1253: download - view: text, markup, annotated - select for diffs
Mon Jan 29 18:27:13 2024 UTC (10 months, 1 week ago) by christos
Branches: MAIN
Diff to: previous 1.1252: preferred, colored
Changes since revision 1.1252: +2 -4 lines
PR/57889: Ricardo Branco: ext2fs does not have user immutable and append
file flags, only system ones. Restrict those to the superuser. Before
the behavior was controlled by EXT2FS_SYSTEM_FLAGS. Make that behavior the
default.

Revision 1.1243.2.3: download - view: text, markup, annotated - select for diffs
Fri Nov 3 08:56:36 2023 UTC (13 months, 1 week ago) by martin
Branches: netbsd-10
CVS tags: netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1
Diff to: previous 1.1243.2.2: preferred, colored; branchpoint 1.1243: preferred, colored
Changes since revision 1.1243.2.2: +3 -2 lines
Pull up following revision(s) (requested by msaitoh in ticket #446):

	sys/dev/pci/if_eqos_pci.c: revision 1.3
	sys/arch/i386/conf/GENERIC: revision 1.1251
	sys/arch/i386/conf/GENERIC: revision 1.1252
	sys/arch/amd64/conf/GENERIC: revision 1.607
	sys/arch/amd64/conf/GENERIC: revision 1.608
	sys/dev/ic/dwc_eqos.c: revision 1.20
	sys/dev/ic/dwc_eqos.c: revision 1.21
	share/man/man4/eqos.4: revision 1.2
	sys/dev/ic/dwc_eqos.c: revision 1.22
	sys/dev/ic/dwc_eqos_reg.h: revision 1.7
	sys/dev/ic/dwc_eqos.c: revision 1.23
	sys/dev/ic/dwc_eqos_reg.h: revision 1.8
	sys/dev/ic/dwc_eqos.c: revision 1.24
	sys/dev/ic/dwc_eqos.c: revision 1.25
	sys/dev/ic/dwc_eqos.c: revision 1.26
	sys/dev/ic/dwc_eqos.c: revision 1.27
	sys/dev/ic/dwc_eqos_var.h: revision 1.5
	sys/dev/ic/dwc_eqos.c: revision 1.28
	sys/dev/ic/dwc_eqos_var.h: revision 1.6
	sys/dev/ic/dwc_eqos.c: revision 1.29
	sys/dev/ic/dwc_eqos.c: revision 1.18
	sys/dev/ic/dwc_eqos.c: revision 1.19
	sys/dev/pci/files.pci: revision 1.448
	sys/dev/pci/if_eqos_pci.c: revision 1.1
	sys/dev/pci/if_eqos_pci.c: revision 1.2

eqos(4): Fix definition of GMAC_MAC_HW_FEATURE1_RXFIFOSIZE.

eqos(4): Fix a bug that the MAC address is swapped.
 Don't swap the MAC address in eqos_get_eaddr(). Other OSes except FreeBSD
(which was based on NetBSD's) don't swap it. With this change, my own
OnLogic Helix 330's MAC address becomes correct. The OUI is 84:8b:cd:4d.
It's owned by Logic Supply and they were acquired by OnLogic.

On Quartz64 with UEFI, the MAC address is wrongly set and the multicast
bit might be set. To do workaround, clear the bit if it's set.

eqos(4): Add missing clock range.

eqos(4): Accept if snpsver == 0x52. Tested with Intel Elkhart Lake.

 TODO:
	Multiqueue support.
	Add watchdog timer.
	Add detach function.

eqos(4): Add initial support for Intel Elkhart Lake internal Ethernet devices.
 - Only tested on PSE SGMII 1G Ethernet MAC with MaxLinear GPY115.
 - I don't know why dmat64 doesn't work. eqos_attach() have a special
   code if EQOS_HW_FEATURE_ADDR64_32BIT(sc) is true, but it seems it doesn't
   work.
 - TODO:
 	Multiqueue support.
	Detach support.

eqos(4): Fix compile error for arch that sizeof(bus_size_t) == 4 (i386).
Trailing whitespace

eqos(4): Disable eqos(4) by default because it's not stable on x86.

eqos(4): KNF. No functional change.

eqos(4): Add and modify some DPRINTF()s.

eqos(4): Add sysctls for debugging.

eqos(4): Use EQOS_TXLOCK() more to be stable.
 Fix a bug that sc_tx.{cur,next,queued} become inconsitent.
Use txlock when accessing TX data.

eqos(4): Set TX/RX DMA burst length to improve performance.

eqos(4): Set flow control correctly.

eqos_pci: Limit to 32bit DMA only for PSE devices.

eqos(4): Fix typo in comment.

Revision 1.1252: download - view: text, markup, annotated - select for diffs
Mon Oct 23 01:43:55 2023 UTC (13 months, 2 weeks ago) by msaitoh
Branches: MAIN
CVS tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation
Diff to: previous 1.1251: preferred, colored
Changes since revision 1.1251: +3 -3 lines
eqos(4): Disable eqos(4) by default because it's not stable on x86.

Revision 1.1251: download - view: text, markup, annotated - select for diffs
Fri Oct 20 10:09:44 2023 UTC (13 months, 3 weeks ago) by msaitoh
Branches: MAIN
Diff to: previous 1.1250: preferred, colored
Changes since revision 1.1250: +3 -2 lines
eqos(4): Add initial support for Intel Elkhart Lake internal Ethernet devices.

 - Only tested on PSE SGMII 1G Ethernet MAC with MaxLinear GPY115.
 - I don't know why dmat64 doesn't work. eqos_attach() have a special
   code if EQOS_HW_FEATURE_ADDR64_32BIT(sc) is true, but it seems it doesn't
   work.
 - TODO:
 	Multiqueue support.
	Detach support.

Revision 1.1243.2.2: download - view: text, markup, annotated - select for diffs
Mon Oct 9 23:33:46 2023 UTC (14 months ago) by snj
Branches: netbsd-10
Diff to: previous 1.1243.2.1: preferred, colored; branchpoint 1.1243: preferred, colored
Changes since revision 1.1243.2.1: +3 -3 lines
Apply patch (requested by martin in ticket #401):
Disable DIAGNOSTIC/DEBUG.

Revision 1.1243.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 1 16:07:19 2023 UTC (16 months, 1 week ago) by martin
Branches: netbsd-10
Diff to: previous 1.1243: preferred, colored
Changes since revision 1.1243: +5 -5 lines
Pull up following revision(s) (requested by riastradh in ticket #293):

	sys/arch/i386/conf/ALL: revision 1.507
	sys/arch/i386/conf/GENERIC: revision 1.1247

i386/ALL: Enable EFI runtime support.
PR kern/57076

i386/GENERIC: Enable EFI runtime support.
PR kern/57076

Revision 1.1250: download - view: text, markup, annotated - select for diffs
Sun Jul 16 10:20:07 2023 UTC (16 months, 3 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.1249: preferred, colored
Changes since revision 1.1249: +6 -2 lines
i386: Re-enable HEARTBEAT.

Revision 1.1249: download - view: text, markup, annotated - select for diffs
Sun Jul 16 05:24:08 2023 UTC (16 months, 3 weeks ago) by mrg
Branches: MAIN
Diff to: previous 1.1248: preferred, colored
Changes since revision 1.1248: +2 -6 lines
revert previous change to enable HEARTBEAT.

the new code has a "needs 64-bit atomic ops" trigger:

	ci->ci_heartbeat_uptime_cache = atomic_load_relaxed(&time_uptime);

but time_uptime is a 64-bit value, and this trips CTASSERT().

Revision 1.1248: download - view: text, markup, annotated - select for diffs
Sat Jul 15 22:14:39 2023 UTC (16 months, 3 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.1247: preferred, colored
Changes since revision 1.1247: +6 -2 lines
x86: Enable HEARTBEAT by default in GENERIC.

Revision 1.1247: download - view: text, markup, annotated - select for diffs
Mon May 22 16:28:34 2023 UTC (18 months, 2 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.1246: preferred, colored
Changes since revision 1.1246: +5 -5 lines
i386/GENERIC: Enable EFI runtime support.

PR kern/57076

XXX pullup-10

Revision 1.1208.2.6: download - view: text, markup, annotated - select for diffs
Sun Feb 12 11:43:29 2023 UTC (21 months, 4 weeks ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-4-RELEASE
Diff to: previous 1.1208.2.5: preferred, colored; branchpoint 1.1208: preferred, colored; next MAIN 1.1209: preferred, colored
Changes since revision 1.1208.2.5: +3 -3 lines
Pull up following revision(s) (requested by tsutsui in ticket #1589):

	sys/arch/i386/conf/GENERIC: revision 1.1243

Enable options DISKLABEL_EI by default as amd64.

No particular comment no port-i386@:
https://mail-index.netbsd.org/port-i386/2022/12/02/msg004063.html

Revision 1.1246: download - view: text, markup, annotated - select for diffs
Thu Feb 9 14:09:48 2023 UTC (22 months ago) by abs
Branches: MAIN
Diff to: previous 1.1245: preferred, colored
Changes since revision 1.1245: +4 -4 lines
Adjust _all_ cinclude of *.local files

- Ensure always at end
- Use tab rather than spaces
- Add consistent comment
  "Pull in optional local configuration - always at end"

The only functional change is that a local file which tried to
override an existing setting (eg with "no foo") would have failed
in some cases before, but now will work

Revision 1.1245: download - view: text, markup, annotated - select for diffs
Thu Feb 9 13:16:04 2023 UTC (22 months ago) by abs
Branches: MAIN
Diff to: previous 1.1244: preferred, colored
Changes since revision 1.1244: +5 -7 lines
Ensure GENERIC.local is always at the end of GENERIC

Where a GENERIC config had an existing inclusion of GENERIC.local,
ensure it is always at the end of the file, with a consistent
comment:

# Pull in optional local configuration
cinclude "arch/landisk/conf/GENERIC.local"

This allows GENERIC.local to correctly override all options

(This pass does not affect any GENERIC which did not already have
an include of GENERIC.local)

Revision 1.1244: download - view: text, markup, annotated - select for diffs
Thu Dec 22 19:07:16 2022 UTC (23 months, 2 weeks ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1243: preferred, colored
Changes since revision 1.1243: +3 -2 lines
Add commented vio9p* to match amd64 GENERIC

Revision 1.1243: download - view: text, markup, annotated - select for diffs
Sun Dec 11 04:20:52 2022 UTC (2 years ago) by tsutsui
Branches: MAIN
CVS tags: netbsd-10-base
Branch point for: netbsd-10
Diff to: previous 1.1242: preferred, colored
Changes since revision 1.1242: +3 -3 lines
Enable options DISKLABEL_EI by default as amd64.

No particular comment no port-i386@:
 https://mail-index.netbsd.org/port-i386/2022/12/02/msg004063.html

Revision 1.1242: download - view: text, markup, annotated - select for diffs
Thu Sep 29 10:10:07 2022 UTC (2 years, 2 months ago) by riastradh
Branches: MAIN
CVS tags: bouyer-sunxi-drm-base, bouyer-sunxi-drm
Diff to: previous 1.1241: preferred, colored
Changes since revision 1.1241: +3 -2 lines
swwdog(4): Add to GENERIC kernels.

Plus a handful of others that I'm familiar with.  Lots of special-
purpose kernels should probably have this too but I'm not going
through all the arm, mips, and ppc evaluation board kernels to see
which ones are relevant.

Omitted from systems I know to be very small:
- sun2/GENERIC
- dreamcast/GENERIC
Feel free to remove it from others that need to be kept smaller.

Compile-tested a few of these just in case:
- alpha/GENERIC
- amd64/GENERIC
- evbmips/OCTEON
- i386/GENERIC
- riscv/GENERIC

PR kern/29702

Revision 1.1241: download - view: text, markup, annotated - select for diffs
Sat Sep 24 11:05:17 2022 UTC (2 years, 2 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1240: preferred, colored
Changes since revision 1.1240: +6 -2 lines
x86: Support EFI runtime services.

This creates a special pmap, efi_runtime_pmap, which avoids setting
PTE_U but allows mappings to lie in what would normally be user VM --
this way we don't fall afoul of SMAP/SMEP when executing EFI runtime
services from CPL 0.  SVS does not apply to the EFI runtime pmap.

The mechanism is intended to work with either physical addressing or
virtual addressing; currently the bootloader does physical addressing
but in principle it could be modified to do virtual addressing
instead, if it allocated virtual pages, assigned them in the memory
map, and issued RT->SetVirtualAddressMap.

Not sure pmap_activate_sync and pmap_deactivate_sync are correct,
need more review from an x86 wizard.

If this causes fallout, it can be disabled temporarily without
reverting anything by just making efi_runtime_init return immediately
without doing anything, or by removing options EFI_RUNTIME.

amd64-only for now pending type fixes and testing on i386.

Revision 1.1240: download - view: text, markup, annotated - select for diffs
Sun Aug 7 02:52:26 2022 UTC (2 years, 4 months ago) by simonb
Branches: MAIN
Diff to: previous 1.1239: preferred, colored
Changes since revision 1.1239: +9 -8 lines
UFS/LFS dirhash:
- Enable UFS_DIRHASH if the architecture or kernel model specific config
  file can use 128MB of RAM or more.
- Remove experimental tag from UFS_DIRHASH; it's been with RUMP kernel
  and by a number of NetBSD developers for years.
- Add LFS_DIRHASH if LFS was enabled.
- Be somewhat consistent with FS options order.

Revision 1.1239: download - view: text, markup, annotated - select for diffs
Thu Jul 28 21:52:36 2022 UTC (2 years, 4 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1238: preferred, colored
Changes since revision 1.1238: +4 -3 lines
drm: New option DRM_LEGACY.

This brings in the `drmums' components, which are the parts of the
current drm code base (sys/external/bsd/drm2) needed by legacy
user-mode-setting drivers (currently just viadrmums), in contrast to
the old drm code base (sys/external/bsd/drm).

This way, viadrmums.kmod can be loaded into GENERIC i386 kernels, but
platforms without any relevant legacy UMS drivers don't get the
legacy goo statically baked in.

Revision 1.1238: download - view: text, markup, annotated - select for diffs
Sat Apr 16 11:57:46 2022 UTC (2 years, 7 months ago) by nia
Branches: MAIN
Diff to: previous 1.1237: preferred, colored
Changes since revision 1.1237: +3 -3 lines
x86: Enable HDAUDIOVERBOSE (as on arm) in order for AUDIO_GETDEV
to return human-readable data.  Especially now that HDMI/DP audio
is enabled by default, it helps to be able to tell two devices
apart in audiocfg/aiomixer.

Revision 1.1236.4.1: download - view: text, markup, annotated - select for diffs
Thu Jun 17 04:46:20 2021 UTC (3 years, 5 months ago) by thorpej
Branches: thorpej-i2c-spi-conf
Diff to: previous 1.1236: preferred, colored; next MAIN 1.1237: preferred, colored
Changes since revision 1.1236: +3 -2 lines
Sync w/ HEAD.

Revision 1.1236.6.1: download - view: text, markup, annotated - select for diffs
Mon May 31 22:15:12 2021 UTC (3 years, 6 months ago) by cjep
Branches: cjep_staticlib_x
Diff to: previous 1.1236: preferred, colored; next MAIN 1.1237: preferred, colored
Changes since revision 1.1236: +3 -2 lines
sync with head

Revision 1.1237: download - view: text, markup, annotated - select for diffs
Mon May 17 04:07:43 2021 UTC (3 years, 6 months ago) by yamaguchi
Branches: MAIN
CVS tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-futex2-base, thorpej-futex2, thorpej-cfargs2-base, thorpej-cfargs2, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1
Diff to: previous 1.1236: preferred, colored
Changes since revision 1.1236: +3 -2 lines
Add a new link-aggregation pseudo interface named lagg(4)

 - FreeBSD's lagg(4) based implementation
 - MP-safe and MP-scalable

Revision 1.1233.2.1: download - view: text, markup, annotated - select for diffs
Sat Apr 3 22:28:27 2021 UTC (3 years, 8 months ago) by thorpej
Branches: thorpej-futex
Diff to: previous 1.1233: preferred, colored; next MAIN 1.1234: preferred, colored
Changes since revision 1.1233: +4 -4 lines
Sync with HEAD.

Revision 1.1236: download - view: text, markup, annotated - select for diffs
Wed Mar 10 06:38:44 2021 UTC (3 years, 9 months ago) by msaitoh
Branches: MAIN
CVS tags: thorpej-futex-base, thorpej-cfargs-base, thorpej-cfargs, cjep_staticlib_x-base
Branch point for: thorpej-i2c-spi-conf, cjep_staticlib_x
Diff to: previous 1.1235: preferred, colored
Changes since revision 1.1235: +3 -2 lines
 Add micphy(4).

Revision 1.1235: download - view: text, markup, annotated - select for diffs
Mon Mar 1 18:12:58 2021 UTC (3 years, 9 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1234: preferred, colored
Changes since revision 1.1234: +3 -2 lines
enable rge(4) on x86 and evbarm64

Revision 1.1234: download - view: text, markup, annotated - select for diffs
Wed Jan 20 13:22:08 2021 UTC (3 years, 10 months ago) by nia
Branches: MAIN
Diff to: previous 1.1233: preferred, colored
Changes since revision 1.1233: +2 -4 lines
remove compat_ossaudio from kernel modules

this is only useful with compat_linux and gets autoloaded when
compat_linux is loaded, so there's no reason to bake it into kernels
any more.

Revision 1.1233: download - view: text, markup, annotated - select for diffs
Sun Sep 27 13:48:51 2020 UTC (4 years, 2 months ago) by roy
Branches: MAIN
Branch point for: thorpej-futex
Diff to: previous 1.1232: preferred, colored
Changes since revision 1.1232: +3 -2 lines
vether: Add to kernel configurations

It's only enabled if the kernel enabled bridge AND tap.
Otherwise it's commented out.

Revision 1.1232: download - view: text, markup, annotated - select for diffs
Tue Sep 8 10:05:47 2020 UTC (4 years, 3 months ago) by yamaguchi
Branches: MAIN
Diff to: previous 1.1231: preferred, colored
Changes since revision 1.1231: +3 -2 lines
Added iavf(4) that is based on OpenBSD's iavf(4) implementation

reviewed by msaitoh@n.o and knakahara@n.o

Revision 1.1231: download - view: text, markup, annotated - select for diffs
Sun Aug 16 10:27:47 2020 UTC (4 years, 3 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.1230: preferred, colored
Changes since revision 1.1230: +2 -4 lines
make COMPAT_LINUX option disabled by default

leave the option enabled only in amd64/i386 ALL kernels to make
sure it continues to be compilable also when included in kernel

Revision 1.1230: download - view: text, markup, annotated - select for diffs
Sat Aug 1 08:20:49 2020 UTC (4 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1229: preferred, colored
Changes since revision 1.1229: +2 -3 lines
Remove references to BRIDGE_IPF, it is now compiled in by default.

Revision 1.1208.2.5: download - view: text, markup, annotated - select for diffs
Tue Jul 7 10:29:06 2020 UTC (4 years, 5 months ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE
Diff to: previous 1.1208.2.4: preferred, colored; branchpoint 1.1208: preferred, colored
Changes since revision 1.1208.2.4: +3 -2 lines
Pull up following revision(s) (requested by jmcneill in ticket #980):

	sys/dev/pci/if_aq.c: revision 1.4
	sys/dev/pci/if_aq.c: revision 1.5
	sys/arch/amd64/conf/GENERIC: revision 1.553
	sys/dev/pci/files.pci: revision 1.419
	sys/arch/amd64/conf/XEN3_DOM0: revision 1.170
	sys/dev/pci/if_aq.c: revision 1.9
	share/man/man4/Makefile: revision 1.693
	sys/dev/pci/pcidevs: revision 1.1411
	share/man/man4/aq.4: revision 1.1
	share/man/man4/aq.4: revision 1.3
	sys/arch/i386/conf/ALL: revision 1.479
	share/man/man4/aq.4: revision 1.4
	sys/dev/pci/if_aq.c: revision 1.10
	sys/dev/pci/files.pci: revision 1.421
	sys/dev/pci/if_aq.c: revision 1.11
	sys/dev/pci/if_aq.c: revision 1.12
	sys/dev/pci/if_aq.c: revision 1.13
	sys/dev/pci/if_aq.c: revision 1.14
	sys/dev/pci/if_aq.c: revision 1.15
	sys/dev/pci/if_aq.c: revision 1.16
	sys/dev/pci/pcidevs: revision 1.1408
	sys/arch/amd64/conf/ALL: revision 1.135
	sys/net/ethertypes.h: revision 1.19
	sys/arch/i386/conf/GENERIC: revision 1.1218
	distrib/sets/lists/man/mi: revision 1.1668
	sys/dev/pci/if_aq.c: revision 1.1
	sys/dev/pci/if_aq.c: revision 1.2
	sys/dev/pci/pcidevs: revision 1.1395
	sys/dev/pci/if_aq.c: revision 1.3
	sys/arch/evbarm/conf/GENERIC64: revision 1.125

Add the ETHERTYPE_QINQ for 802.1ad VLAN stacking

add Aquantia AQC 10G network adapters
add support Aquantia AQC seriese 10G network adapters.

this driver is based on the FreeBSD version https://github.com/Aquantia/aqtion-freebsd ,
but drastically rewritten for NetBSD.

add aq(4)

 Add Aquantia AQC100, AQC100S and D100.

add support VLAN HW filter

set/clear IFF_OACTIVE flag only on txring 0

make counters per queue

support internal PHY temperature sensor

Found by kUBSan:
- Use unsigned to avoid undefined behavior in aq_hw_init().
- Cast to unsigned to avoid undefined behavior in aq_set_mac_addr().

fix descriptions of register map in comment

return the ifmedia active status correctly even while the link is not up after attach.
pointed out by msaitoh@. thanks.

On FIBRE devices, there are times when linkstat interrupt doesn't occur?
reported from Andrius V. thanks.
- use polling instead of linkstat interrupt when FIBRE
- add AQ_FORCE_POLL_LINKSTAT options (not by default)

sort product table, and tabify

add support AQC100S and D100.
not tested, but they are probably the same as the AQC100.

Revision 1.1229: download - view: text, markup, annotated - select for diffs
Sat Apr 25 16:10:06 2020 UTC (4 years, 7 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.1228: preferred, colored
Changes since revision 1.1228: +3 -3 lines
Disable -g, which got enabled by mistake in the bouyer-xenpvh merge

Revision 1.1228: download - view: text, markup, annotated - select for diffs
Sat Apr 25 15:26:16 2020 UTC (4 years, 7 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.1227: preferred, colored
Changes since revision 1.1227: +12 -3 lines
Merge the bouyer-xenpvh branch, bringing in Xen PV drivers support under HVM
guests in GENERIC.
Xen support can be disabled at runtime with
boot -c
disable hypervisor

Revision 1.1227.2.2: download - view: text, markup, annotated - select for diffs
Sat Apr 25 15:03:18 2020 UTC (4 years, 7 months ago) by bouyer
Branches: bouyer-xenpvh
Diff to: previous 1.1227.2.1: preferred, colored; branchpoint 1.1227: preferred, colored; next MAIN 1.1228: preferred, colored
Changes since revision 1.1227.2.1: +11 -2 lines
Merge GENERIC_XENHVM in GENERIC.
Remove XEN3_PVHVM/XEN3PAE_PVHVM files which have been obsolete for some time
on the branch

Revision 1.1227.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 20 19:38:11 2020 UTC (4 years, 7 months ago) by bouyer
Branches: bouyer-xenpvh
Diff to: previous 1.1227: preferred, colored
Changes since revision 1.1227: +3 -3 lines
build with -g on the branch

Revision 1.1180.2.3: download - view: text, markup, annotated - select for diffs
Mon Apr 13 08:03:52 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.1180.2.2: preferred, colored; branchpoint 1.1180: preferred, colored; next MAIN 1.1181: preferred, colored
Changes since revision 1.1180.2.2: +9 -7 lines
Mostly merge changes from HEAD upto 20200411

Revision 1.1180.2.2: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:07:39 2020 UTC (4 years, 8 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.1180.2.1: preferred, colored; branchpoint 1.1180: preferred, colored
Changes since revision 1.1180.2.1: +6 -16 lines
Merge changes from current as of 20200406

Revision 1.1227: download - view: text, markup, annotated - select for diffs
Sat Mar 28 08:35:36 2020 UTC (4 years, 8 months ago) by isaki
Branches: MAIN
CVS tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base
Branch point for: bouyer-xenpvh
Diff to: previous 1.1226: preferred, colored
Changes since revision 1.1226: +2 -5 lines
Reduce default AUDIO_BLK_MS from 40msec to 10msec on all platform except m68k
(m68k uses 40msec default as before).  And remove the option from GENERIC.
- It's not good idea to set such parameter in individual GENERICs.
- 4msec is (probably no problem for most modern real hardware but)
  too aggressive to be default.
- 10msec is too severe for antique machines but it's hard to draw a line.

Revision 1.1226: download - view: text, markup, annotated - select for diffs
Mon Mar 16 19:09:34 2020 UTC (4 years, 8 months ago) by nia
Branches: MAIN
Diff to: previous 1.1225: preferred, colored
Changes since revision 1.1225: +5 -2 lines
Lower blk_ms on more ports that are even slightly likely to play video

Revision 1.1218.2.2: download - view: text, markup, annotated - select for diffs
Sat Feb 29 20:18:24 2020 UTC (4 years, 9 months ago) by ad
Branches: ad-namecache
Diff to: previous 1.1218.2.1: preferred, colored; branchpoint 1.1218: preferred, colored; next MAIN 1.1219: preferred, colored
Changes since revision 1.1218.2.1: +3 -3 lines
Sync with head.

Revision 1.1225: download - view: text, markup, annotated - select for diffs
Mon Feb 17 06:32:46 2020 UTC (4 years, 9 months ago) by nisimura
Branches: MAIN
CVS tags: is-mlppp-base, is-mlppp, ad-namecache-base3
Diff to: previous 1.1224: preferred, colored
Changes since revision 1.1224: +3 -2 lines
add kse(4) for i386/amd64 GENERIC

Revision 1.1224: download - view: text, markup, annotated - select for diffs
Sun Feb 9 16:06:18 2020 UTC (4 years, 10 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1223: preferred, colored
Changes since revision 1.1223: +2 -3 lines
Retire azalia(4).

Revision 1.1218.2.1: download - view: text, markup, annotated - select for diffs
Sat Jan 25 22:38:40 2020 UTC (4 years, 10 months ago) by ad
Branches: ad-namecache
Diff to: previous 1.1218: preferred, colored
Changes since revision 1.1218: +2 -14 lines
Sync with head.

Revision 1.1223: download - view: text, markup, annotated - select for diffs
Sat Jan 25 18:38:36 2020 UTC (4 years, 10 months ago) by thorpej
Branches: MAIN
CVS tags: ad-namecache-base2
Diff to: previous 1.1222: preferred, colored
Changes since revision 1.1222: +2 -3 lines
Retire "le* at pci?" from the shipped kernel configs:
- If the config had both an le@pci and a pcn, simply remove le@pci
  (pcn would match at a higher priority anyway).
- If the config had le@pci enabled, but no pcn, change le@pci to pcn.
- If the config had le@pci commented out, but no pcn, change le@pci
  to pcn and leave it commented out.

The pcn driver supports more chips than le@pci and does DMA directly
to/from mbufs rather than memory copies.

Revision 1.1222: download - view: text, markup, annotated - select for diffs
Mon Jan 20 18:38:20 2020 UTC (4 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.1221: preferred, colored
Changes since revision 1.1221: +2 -4 lines
Remove FDDI support.

Revision 1.1221: download - view: text, markup, annotated - select for diffs
Sun Jan 19 20:00:37 2020 UTC (4 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.1220: preferred, colored
Changes since revision 1.1220: +2 -9 lines
Remove Token Ring support.

Revision 1.1220: download - view: text, markup, annotated - select for diffs
Sun Jan 19 06:55:23 2020 UTC (4 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.1219: preferred, colored
Changes since revision 1.1219: +2 -3 lines
Remove HIPPI support and the esh(4) driver that uses it.  There have not
been any users of HIPPI for some time, and it is unlikely to be resurrected.

Revision 1.1219: download - view: text, markup, annotated - select for diffs
Sun Jan 19 01:25:05 2020 UTC (4 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.1218: preferred, colored
Changes since revision 1.1218: +2 -3 lines
Remove the strip(4) - Starmode Radio IP - pseudo-device driver.  It is
long since obsolete.

Revision 1.1218: download - view: text, markup, annotated - select for diffs
Wed Jan 1 10:36:43 2020 UTC (4 years, 11 months ago) by ryo
Branches: MAIN
CVS tags: ad-namecache-base1, ad-namecache-base
Branch point for: ad-namecache
Diff to: previous 1.1217: preferred, colored
Changes since revision 1.1217: +3 -2 lines
add aq(4)

Revision 1.1217: download - view: text, markup, annotated - select for diffs
Tue Dec 10 12:08:52 2019 UTC (5 years ago) by yamaguchi
Branches: MAIN
Diff to: previous 1.1216: preferred, colored
Changes since revision 1.1216: +3 -2 lines
Ported driver for Intel Ethernet 700 series

reviewed by msaitoh and knakahara

Revision 1.1216: download - view: text, markup, annotated - select for diffs
Thu Dec 5 22:05:05 2019 UTC (5 years ago) by sevan
Branches: MAIN
Diff to: previous 1.1215: preferred, colored
Changes since revision 1.1215: +3 -3 lines
Enable pciverbose option to make use of the pcidevs database by default.

ok ad, mrg

Revision 1.1208.2.4: download - view: text, markup, annotated - select for diffs
Mon Nov 25 20:47:24 2019 UTC (5 years ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1
Diff to: previous 1.1208.2.3: preferred, colored; branchpoint 1.1208: preferred, colored
Changes since revision 1.1208.2.3: +4 -2 lines
Pull up following revision(s) (requested by msaitoh in ticket #478):

	sys/dev/mii/smscphy.c: revision 1.1
	sys/arch/amd64/conf/ALL: revision 1.127
	sys/arch/amd64/conf/ALL: revision 1.128
	sys/dev/mii/files.mii: revision 1.52
	sys/dev/mii/files.mii: revision 1.53
	sys/arch/i386/conf/ALL: revision 1.473
	share/man/man4/mii.4: revision 1.29
	sys/arch/i386/conf/ALL: revision 1.474
	sys/arch/amd64/conf/GENERIC: revision 1.543
	sys/arch/amd64/conf/GENERIC: revision 1.544
	sys/dev/mii/jmphyreg.h: revision 1.1
	share/man/man4/Makefile: revision 1.687
	share/man/man4/smscphy.4: revision 1.1
	share/man/man4/Makefile: revision 1.688
	sys/dev/mii/jmphy.c: revision 1.1
	sys/dev/DEVNAMES: revision 1.324
	sys/dev/DEVNAMES: revision 1.325
	distrib/sets/lists/man/mi: revision 1.1661
	sys/arch/i386/conf/GENERIC: revision 1.1214
	distrib/sets/lists/man/mi: revision 1.1662
	sys/arch/i386/conf/GENERIC: revision 1.1215
	share/man/man4/jmphy.4: revision 1.1
	share/man/man4/jme.4: revision 1.8

Add jmphy(4) from OpenBSD.

Add jmphy.4.

 Port SMSC LAN87xx 10/100 Ethernet PHY driver from FreeBSD with some cleanup
and IFM_NONE support.

Revision 1.1208.2.3: download - view: text, markup, annotated - select for diffs
Mon Nov 25 16:44:32 2019 UTC (5 years ago) by martin
Branches: netbsd-9
Diff to: previous 1.1208.2.2: preferred, colored; branchpoint 1.1208: preferred, colored
Changes since revision 1.1208.2.2: +3 -2 lines
Pull up following revision(s) (requested by msaitoh in ticket #476):

	sys/dev/pci/if_stgereg.h: revision 1.6
	sys/arch/amd64/conf/ALL: revision 1.124
	sys/dev/mii/files.mii: revision 1.51
	share/man/man4/vge.4: revision 1.8
	share/man/man4/vge.4: revision 1.9
	distrib/sets/lists/man/mi: revision 1.1656
	sys/arch/i386/conf/ALL: revision 1.471
	share/man/man4/mii.4: revision 1.28
	sys/dev/pci/if_stge.c: revision 1.71
	sys/dev/mii/ipgphy.c: revision 1.1
	sys/dev/mii/ipgphy.c: revision 1.2
	share/man/man4/Makefile: revision 1.684
	sys/dev/mii/ipgphy.c: revision 1.3
	sys/dev/mii/ipgphyreg.h: revision 1.1
	sys/dev/mii/ipgphy.c: revision 1.4
	sys/dev/mii/ipgphyreg.h: revision 1.2
	sys/dev/mii/ipgphy.c: revision 1.5
	sys/dev/mii/ipgphyreg.h: revision 1.3
	sys/dev/DEVNAMES: revision 1.322
	sys/arch/i386/conf/GENERIC: revision 1.1211
	sys/arch/amd64/conf/GENERIC: revision 1.537
	share/man/man4/ipgphy.4: revision 1.1
	share/man/man4/ipgphy.4: revision 1.2

 Add support IC Plus IP1000* PHYs. PR/kern 42314 first reported by

Tomokazu HARADA and patch provided by Andrius V.

New sentence, new line.
Fix date. Add RCS Id.

 KNF. No functional change.

 STGE_PhyCtrl is not PHY register but MAC register, so use ukphy_status()
for IP1000A device.

- Use auto-negotiation when forcing 1000BASE-T.
- Add XXX comment for strange pause setting code. I suspect this is wrong.
- On my environments, 1000BASE-T half duplex doesn't work, so we might remove
  IFM_1000T_HDX from this device in future.
- Define IPGPHY_SCR's address.
- Whitespace fix.

 Add missing NetBSD RCS Id. Reported by Andrius V.

Revision 1.1208.2.2: download - view: text, markup, annotated - select for diffs
Thu Nov 21 18:17:59 2019 UTC (5 years ago) by martin
Branches: netbsd-9
Diff to: previous 1.1208.2.1: preferred, colored; branchpoint 1.1208: preferred, colored
Changes since revision 1.1208.2.1: +5 -5 lines
In preparation for the upcoming release, turn off DIAGNOSTIC in most
kernel configs, modules and libc.

Revision 1.1215: download - view: text, markup, annotated - select for diffs
Fri Nov 1 02:53:23 2019 UTC (5 years, 1 month ago) by msaitoh
Branches: MAIN
CVS tags: phil-wifi-20191119
Diff to: previous 1.1214: preferred, colored
Changes since revision 1.1214: +3 -2 lines
 Port SMSC LAN87xx 10/100 Ethernet PHY driver from FreeBSD with some cleanup
and IFM_NONE support.

Revision 1.1214: download - view: text, markup, annotated - select for diffs
Wed Oct 30 12:06:25 2019 UTC (5 years, 1 month ago) by msaitoh
Branches: MAIN
Diff to: previous 1.1213: preferred, colored
Changes since revision 1.1213: +3 -2 lines
Add jmphy(4) from OpenBSD.

Revision 1.1213: download - view: text, markup, annotated - select for diffs
Fri Oct 25 17:39:57 2019 UTC (5 years, 1 month ago) by martin
Branches: MAIN
Diff to: previous 1.1212: preferred, colored
Changes since revision 1.1212: +5 -2 lines
Add support for Nuvoton NCT5104D GPIO chips, as found on PC Engines APU
systems. From Andrew Doran in PR kern/54648.

Revision 1.1212: download - view: text, markup, annotated - select for diffs
Tue Oct 8 18:50:44 2019 UTC (5 years, 2 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1211: preferred, colored
Changes since revision 1.1211: +2 -6 lines
No I/O ports for TPM-ISA, only MMIO, so remove commented-out options.

Revision 1.1211: download - view: text, markup, annotated - select for diffs
Mon Oct 7 11:53:40 2019 UTC (5 years, 2 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.1210: preferred, colored
Changes since revision 1.1210: +3 -2 lines
 Add support IC Plus IP1000* PHYs. PR/kern 42314 first reported by
Tomokazu HARADA and patch provided by Andrius V.

Revision 1.1208.2.1: download - view: text, markup, annotated - select for diffs
Fri Aug 9 15:59:52 2019 UTC (5 years, 4 months ago) by martin
Branches: netbsd-9
Diff to: previous 1.1208: preferred, colored
Changes since revision 1.1208: +2 -3 lines
Pull up following revision(s) (requested by rin in ticket #35):

	sys/arch/amd64/conf/ALL: revision 1.121
	sys/arch/i386/conf/XEN3PAE_DOM0: revision 1.14
	sys/arch/amd64/conf/XEN3_DOM0: revision 1.168
	sys/arch/i386/conf/GENERIC: revision 1.1210
	sys/arch/amd64/conf/GENERIC: revision 1.534

xhci(4) is considered stable enough. So, remove misleading comments.

XXX
pullup to netbsd-9

Revision 1.1210: download - view: text, markup, annotated - select for diffs
Fri Aug 9 08:01:06 2019 UTC (5 years, 4 months ago) by rin
Branches: MAIN
Diff to: previous 1.1209: preferred, colored
Changes since revision 1.1209: +2 -3 lines
xhci(4) is considered stable enough. So, remove misleading comments.

XXX
pullup to netbsd-9

Revision 1.1209: download - view: text, markup, annotated - select for diffs
Thu Aug 8 04:25:21 2019 UTC (5 years, 4 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.1208: preferred, colored
Changes since revision 1.1208: +5 -5 lines
 Use <SPACE>+<TAB>

Revision 1.1208: download - view: text, markup, annotated - select for diffs
Mon Jun 17 19:01:17 2019 UTC (5 years, 5 months ago) by kamil
Branches: MAIN
CVS tags: netbsd-9-base
Branch point for: netbsd-9
Diff to: previous 1.1207: preferred, colored
Changes since revision 1.1207: +3 -2 lines
Register UBSAN_ALWAYS_FATAL in kernel configs for kUBSan

Revision 1.1156.2.15: download - view: text, markup, annotated - select for diffs
Wed Jun 12 10:17:32 2019 UTC (5 years, 6 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE, netbsd-8-2-RELEASE
Diff to: previous 1.1156.2.14: preferred, colored; branchpoint 1.1156: preferred, colored; next MAIN 1.1157: preferred, colored
Changes since revision 1.1156.2.14: +5 -2 lines
Pull up following revision(s) (requested by nonaka in ticket #1280):

	sys/arch/x86/x86/consinit.c: revision 1.29
	sys/dev/hyperv/vmbusvar.h: revision 1.2
	sys/dev/hyperv/genfb_vmbusvar.h: revision 1.1
	sys/arch/x86/x86/x86_autoconf.c: revision 1.78
	sys/arch/x86/x86/identcpu.c: revision 1.91
	sys/arch/x86/x86/hyperv.c: revision 1.2
	sys/arch/x86/x86/hyperv.c: revision 1.3
	sys/arch/x86/x86/hyperv.c: revision 1.4
	sys/arch/i386/conf/GENERIC: revision 1.1207
	sys/dev/wscons/wsconsio.h: revision 1.123
	sys/arch/x86/x86/hypervvar.h: revision 1.1
	sys/arch/amd64/conf/GENERIC: revision 1.528
	sys/dev/hyperv/files.hyperv: revision 1.2
	sys/arch/x86/include/autoconf.h: revision 1.6
	sys/dev/hyperv/hyperv_common.c: revision 1.2
	sys/arch/xen/x86/autoconf.c: revision 1.23
	sys/arch/x86/pci/pci_machdep.c: revision 1.86
	sys/dev/hyperv/hvkbd.c: revision 1.1
	sys/dev/hyperv/hypervvar.h: revision 1.2
	sys/dev/acpi/vmbus_acpi.c: revision 1.2
	sys/dev/hyperv/vmbus.c: revision 1.3
	sys/dev/hyperv/hvkbdvar.h: revision 1.1
	sys/dev/hyperv/genfb_vmbus.c: revision 1.1

Added drivers for Hyper-V Synthetic Keyboard and Video device.

Avoid undefined reference to `hyperv_guid_video' without vmbus(4).

Avoid undefined reference to `hyperv_is_gen1' without hyperv(4).

Use efi_probe().

Revision 1.1180.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:06:20 2019 UTC (5 years, 6 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.1180: preferred, colored
Changes since revision 1.1180: +32 -257 lines
Sync with HEAD

Revision 1.1207: download - view: text, markup, annotated - select for diffs
Fri May 24 14:28:48 2019 UTC (5 years, 6 months ago) by nonaka
Branches: MAIN
CVS tags: phil-wifi-20190609
Diff to: previous 1.1206: preferred, colored
Changes since revision 1.1206: +5 -2 lines
Added drivers for Hyper-V Synthetic Keyboard and Video device.

Revision 1.1206: download - view: text, markup, annotated - select for diffs
Mon May 6 02:24:37 2019 UTC (5 years, 7 months ago) by sevan
Branches: MAIN
Diff to: previous 1.1205: preferred, colored
Changes since revision 1.1205: +4 -33 lines
Use filesystems.config to reduce duplication

Revision 1.1205: download - view: text, markup, annotated - select for diffs
Fri Apr 26 21:40:30 2019 UTC (5 years, 7 months ago) by sevan
Branches: MAIN
Diff to: previous 1.1204: preferred, colored
Changes since revision 1.1204: +4 -16 lines
Enable BUFQ_PRIOCSCAN, CARP, Veriexec by default in GENERIC kernel configs.
On ports without a GENERIC kernel config enable in individul files, e.g evbmips.
Omit on:
atari, dreamcast, emips, epoc32, evbppc/VIRTEX*, ia64, luna68x, mvme68k,
mvmeppc, playstation2, riscv, sun2, sun3, x68k, zaurus due to resource
constraints or port infancy.

Revision 1.1156.2.14: download - view: text, markup, annotated - select for diffs
Sat Mar 9 17:10:20 2019 UTC (5 years, 9 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-1-RELEASE, netbsd-8-1-RC1
Diff to: previous 1.1156.2.13: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.13: +12 -2 lines
Pull up following revision(s) via patch (requested by nonaka in ticket #1210):

	sys/dev/hyperv/vmbusvar.h: revision 1.1
	sys/dev/hyperv/hvs.c: revision 1.1
	sys/dev/hyperv/if_hvn.c: revision 1.1
	sys/dev/hyperv/vmbusic.c: revision 1.1
	sys/arch/x86/x86/lapic.c: revision 1.69
	sys/arch/x86/isa/clock.c: revision 1.34
	sys/arch/x86/include/intrdefs.h: revision 1.22
	sys/arch/i386/conf/GENERIC: revision 1.1201
	sys/arch/x86/x86/hyperv.c: revision 1.1
	sys/arch/x86/include/cpu.h: revision 1.105
	sys/arch/x86/x86/x86_machdep.c: revision 1.124
	sys/arch/i386/conf/GENERIC: revision 1.1203
	sys/arch/amd64/amd64/genassym.cf: revision 1.74
	sys/arch/i386/conf/GENERIC: revision 1.1204
	sys/arch/amd64/conf/GENERIC: revision 1.520
	sys/arch/x86/x86/hypervreg.h: revision 1.1
	sys/arch/amd64/amd64/vector.S: revision 1.69
	sys/dev/hyperv/hvshutdown.c: revision 1.1
	sys/dev/hyperv/hvshutdown.c: revision 1.2
	sys/dev/usb/if_urndisreg.h: file removal
	sys/arch/x86/x86/cpu.c: revision 1.167
	sys/arch/x86/conf/files.x86: revision 1.107
	sys/dev/usb/if_urndis.c: revision 1.20
	sys/dev/hyperv/vmbusicreg.h: revision 1.1
	sys/dev/hyperv/hvheartbeat.c: revision 1.1
	sys/dev/hyperv/vmbusicreg.h: revision 1.2
	sys/dev/hyperv/hvheartbeat.c: revision 1.2
	sys/dev/hyperv/files.hyperv: revision 1.1
	sys/dev/ic/rndisreg.h: revision 1.1
	sys/arch/i386/i386/genassym.cf: revision 1.111
	sys/dev/ic/rndisreg.h: revision 1.2
	sys/dev/hyperv/hyperv_common.c: revision 1.1
	sys/dev/hyperv/hvtimesync.c: revision 1.1
	sys/dev/hyperv/hypervreg.h: revision 1.1
	sys/dev/hyperv/hvtimesync.c: revision 1.2
	sys/dev/hyperv/vmbusicvar.h: revision 1.1
	sys/dev/hyperv/if_hvnreg.h: revision 1.1
	sys/arch/x86/x86/lapic.c: revision 1.70
	sys/arch/amd64/amd64/vector.S: revision 1.70
	sys/dev/ic/ndisreg.h: revision 1.1
	sys/arch/amd64/conf/GENERIC: revision 1.516
	sys/dev/hyperv/hypervvar.h: revision 1.1
	sys/arch/amd64/conf/GENERIC: revision 1.518
	sys/arch/amd64/conf/GENERIC: revision 1.519
	sys/arch/i386/conf/files.i386: revision 1.400
	sys/dev/acpi/vmbus_acpi.c: revision 1.1
	sys/dev/hyperv/vmbus.c: revision 1.1
	sys/dev/hyperv/vmbus.c: revision 1.2
	sys/arch/x86/x86/intr.c: revision 1.144
	sys/arch/i386/i386/vector.S: revision 1.83
	sys/arch/amd64/conf/files.amd64: revision 1.112

separate RNDIS definitions from urndis(4) for use with Hyper-V NetVSC.

 -

Added Microsoft Hyper-V support.  It ported from OpenBSD and FreeBSD.
graphical console is not work on Gen.2 VM yet. To use the serial console,
enter "consdev com,0x3f8,115200" on efiboot.

 -

Add __diagused.

 -

PR/53984: Partial revert of modify lapic_calibrate_timer() in lapic.c r1.69.

 -

Update Hyper-V related drivers description.

 -

Remove unused definition.

 -

Rename the MODULE_*_HOOK() macros to MODULE_HOOK_*() as briefly
discussed on irc.
NFCI intended.

 -

commented out hvkvp entry.

 -

fix typo. pointed out by pgoyette@n.o.

 -

Use IDTVEC instead of NENTRY for handle_hyperv_hypercall.

 -

Rename the MODULE_*_HOOK() macros to MODULE_HOOK_*() as briefly
discussed on irc.

Revision 1.1204: download - view: text, markup, annotated - select for diffs
Fri Mar 1 12:23:10 2019 UTC (5 years, 9 months ago) by nonaka
Branches: MAIN
CVS tags: isaki-audio2-base, isaki-audio2
Diff to: previous 1.1203: preferred, colored
Changes since revision 1.1203: +3 -3 lines
commented out hvkvp entry.

Revision 1.1203: download - view: text, markup, annotated - select for diffs
Fri Mar 1 08:17:51 2019 UTC (5 years, 9 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.1202: preferred, colored
Changes since revision 1.1202: +6 -5 lines
Update Hyper-V related drivers description.

Revision 1.1202: download - view: text, markup, annotated - select for diffs
Sat Feb 23 12:28:22 2019 UTC (5 years, 9 months ago) by kamil
Branches: MAIN
Diff to: previous 1.1201: preferred, colored
Changes since revision 1.1201: +7 -2 lines
Register kUBSan and KCOV in kernel=GENERIC of NetBSD/i386

Both options are disabled by default.

Revision 1.1201: download - view: text, markup, annotated - select for diffs
Fri Feb 15 08:54:01 2019 UTC (5 years, 9 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.1200: preferred, colored
Changes since revision 1.1200: +11 -2 lines
Added Microsoft Hyper-V support.  It ported from OpenBSD and FreeBSD.

graphical console is not work on Gen.2 VM yet. To use the serial console,
enter "consdev com,0x3f8,115200" on efiboot.

Revision 1.1200: download - view: text, markup, annotated - select for diffs
Sun Jan 27 08:53:30 2019 UTC (5 years, 10 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1199: preferred, colored
Changes since revision 1.1199: +2 -5 lines
Remove the satlink driver. It was disabled everywhere, had no man page and
no use either. Spotted by thorpej in PR/21345, ok christos.

Revision 1.1174.2.8: download - view: text, markup, annotated - select for diffs
Wed Dec 26 14:01:38 2018 UTC (5 years, 11 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.1174.2.7: preferred, colored; branchpoint 1.1174: preferred, colored; next MAIN 1.1175: preferred, colored
Changes since revision 1.1174.2.7: +5 -3 lines
Sync with HEAD, resolve a few conflicts

Revision 1.1199: download - view: text, markup, annotated - select for diffs
Tue Dec 25 11:56:14 2018 UTC (5 years, 11 months ago) by mlelstv
Branches: MAIN
CVS tags: pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226
Diff to: previous 1.1198: preferred, colored
Changes since revision 1.1198: +4 -2 lines
Make ipmi driver available to other platforms.
Add ACPI attachment.

Revision 1.1198: download - view: text, markup, annotated - select for diffs
Fri Dec 14 22:00:26 2018 UTC (5 years, 11 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1197: preferred, colored
Changes since revision 1.1197: +3 -2 lines
add cardbus malo(4) to x86 GENERIC and ALL kernels

Revision 1.1197: download - view: text, markup, annotated - select for diffs
Wed Dec 12 06:29:37 2018 UTC (6 years ago) by maxv
Branches: MAIN
Diff to: previous 1.1196: preferred, colored
Changes since revision 1.1196: +2 -3 lines
Remove references to "lmc" in the kernel configurations.

Revision 1.1196: download - view: text, markup, annotated - select for diffs
Tue Dec 11 16:52:49 2018 UTC (6 years ago) by maya
Branches: MAIN
Diff to: previous 1.1195: preferred, colored
Changes since revision 1.1195: +4 -4 lines
revert previous, nouveau apparently works for some people.

Revision 1.1195: download - view: text, markup, annotated - select for diffs
Tue Dec 11 11:00:18 2018 UTC (6 years ago) by maya
Branches: MAIN
Diff to: previous 1.1194: preferred, colored
Changes since revision 1.1194: +4 -4 lines
disable nouveau. it hasn't been functional since the import of new drmkms
code.

Revision 1.1156.2.13: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:11:37 2018 UTC (6 years ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156.2.12: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.12: +3 -2 lines
Pull up following revision(s) (requested by bouyer in ticket #1129):

	sys/arch/amd64/conf/XEN3_DOM0: revision 1.159
	sys/arch/amd64/conf/GENERIC: revision 1.508
	sys/arch/i386/conf/ALL: revision 1.458
	sys/dev/ic/mfi.c: revision 1.60
	sys/dev/pci/mpiireg.h: revision 1.1
	distrib/sets/lists/man/mi: revision 1.1628
	sys/dev/pci/mfii.c: revision 1.1,1.2 (adapted)
	sys/arch/i386/conf/GENERIC: revision 1.1194
	sys/dev/pci/mpii.c: revision 1.13
	sys/dev/ic/mfireg.h: revision 1.9
	share/man/man4/mfii.4: revision 1.1
	share/man/man4/Makefile: revision 1.673 (patch)
	sys/dev/pci/files.pci: revision 1.410
	share/man/man4/mfii.4: revision 1.2
	sys/arch/amd64/conf/ALL: revision 1.108
	sys/arch/i386/conf/XEN3PAE_DOM0: revision 1.8 (patch, in XEN3_DOM0)

Add some definitions from OpenBSD, needed by the upcoming mfii driver.
No functionnal change.

 -

Move registers definitions to a separate file, needed for the upcomning mpii
driver. No functionnal change.

 -

Add mpii(4), a driver for LSI Megaraid Fusion controllers.
Ported from OpenBSD. This driver is MP-safe.

Note that the earlier fusion controllers (Megaraid 2208, codenamed Thunderbold)
are also supported by mfi(4). mpii will take precedence if both drivers
are enabled.

Tested on a
mfii0 at pci6 dev 0 function 0: "PERC H740P Adapter ", firmware 50.3.0-1512, 819
2MB cache
mfii0: interrupting at ioapic2 pin 2
scsibus0 at mfii0: 64 targets, 8 luns per target
scsibus0: waiting 2 seconds for devices to settle...
sd0 at scsibus0 target 0 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd0: fabricating a geometry
sd0: 99 GB, 102399 cyl, 64 head, 32 sec, 512 bytes/sect x 209714688 sectors
sd0: tagged queueing
sd1 at scsibus0 target 1 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd1: fabricating a geometry
sd1: 22254 GB, 22788608 cyl, 64 head, 32 sec, 512 bytes/sect x 46671069696 sectors
sd1: fabricating a geometry

It supports bioctl(8) ioctls, as well as sensors for the BBU and logical
drives.

Sponsored by LIP6.

 -

Add my name in copyright list

 -

add a man page for the new mpii, mostly from OpenBSD.

 -

Sort SEE ALSO. Fix date. Whitespace fixes.

Revision 1.1174.2.7: download - view: text, markup, annotated - select for diffs
Mon Nov 26 01:52:25 2018 UTC (6 years ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.6: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.6: +4 -2 lines
Sync with HEAD, resolve a couple of conflicts

Revision 1.1194: download - view: text, markup, annotated - select for diffs
Sat Nov 24 18:23:29 2018 UTC (6 years ago) by bouyer
Branches: MAIN
CVS tags: pgoyette-compat-1126
Diff to: previous 1.1193: preferred, colored
Changes since revision 1.1193: +3 -2 lines
Add mpii(4), a driver for LSI Megaraid Fusion controllers.
Ported from OpenBSD. This driver is MP-safe.
Note that the earlier fusion controllers (Megaraid 2208, codenamed Thunderbold)
are also supported by mfi(4). mpii will take precedence if both drivers
are enabled.
Tested on a
mfii0 at pci6 dev 0 function 0: "PERC H740P Adapter ", firmware 50.3.0-1512, 819
2MB cache
mfii0: interrupting at ioapic2 pin 2
scsibus0 at mfii0: 64 targets, 8 luns per target
scsibus0: waiting 2 seconds for devices to settle...
sd0 at scsibus0 target 0 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd0: fabricating a geometry
sd0: 99 GB, 102399 cyl, 64 head, 32 sec, 512 bytes/sect x 209714688 sectors
sd0: tagged queueing
sd1 at scsibus0 target 1 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd1: fabricating a geometry
sd1: 22254 GB, 22788608 cyl, 64 head, 32 sec, 512 bytes/sect x 46671069696 sectors
sd1: fabricating a geometry

It supports bioctl(8) ioctls, as well as sensors for the BBU and logical
drives.

Sponsored by LIP6.

Revision 1.1193: download - view: text, markup, annotated - select for diffs
Thu Nov 1 13:11:11 2018 UTC (6 years, 1 month ago) by martin
Branches: MAIN
Diff to: previous 1.1192: preferred, colored
Changes since revision 1.1192: +3 -2 lines
Add bwfm at pci

Revision 1.1156.2.12: download - view: text, markup, annotated - select for diffs
Wed Oct 31 09:30:10 2018 UTC (6 years, 1 month ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156.2.11: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.11: +3 -2 lines
Add bwfm config glue, requested by maya in ticket #1072.

Revision 1.1174.2.6: download - view: text, markup, annotated - select for diffs
Sun Sep 30 01:45:44 2018 UTC (6 years, 2 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.5: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.5: +2 -3 lines
Ssync with HEAD

Revision 1.1156.2.11: download - view: text, markup, annotated - select for diffs
Fri Sep 7 12:27:26 2018 UTC (6 years, 3 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156.2.10: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.10: +3 -191 lines
Pull up following revision(s) (requested by mrg in ticket #1011):

	sys/dev/usb/usbdevices.config: revision 1.32 (patch)
	sys/arch/amd64/conf/GENERIC: revision 1.502 (patch)
	sys/arch/i386/conf/GENERIC: revision 1.1188 (patch)

- add commented entries that exist in amd64 GENERIC: oboe, mos, umb.
  (XXX: mos might be deleteable now?).
- comment uscanner(4) -- usb scanners use ugen(4) interface.
- minor sort.

 -

use dev/usb/usbdevices.config, gaining these missing drivers:
slurm(4), uthum(4), umcs(4), uark(4), upgt(4), and usmsc(4).

 -

use dev/usb/usbdevices.config instead of a local list.
adds slurm(4), umcs(4), uark(4), and usmsc(4).

Revision 1.1174.2.5: download - view: text, markup, annotated - select for diffs
Thu Sep 6 06:55:34 2018 UTC (6 years, 3 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.4: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.4: +5 -204 lines
Sync with HEAD

Resolve a couple of conflicts (result of the uimin/uimax changes)

Revision 1.1192: download - view: text, markup, annotated - select for diffs
Thu Sep 6 05:36:50 2018 UTC (6 years, 3 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-1020, pgoyette-compat-0930
Diff to: previous 1.1191: preferred, colored
Changes since revision 1.1191: +2 -3 lines
Retire the 'midway' driver. Discussed on tech-net@ recently and also three
years ago, part of removing the network ATM code.

Revision 1.1191: download - view: text, markup, annotated - select for diffs
Sat Aug 25 07:48:56 2018 UTC (6 years, 3 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-0906
Diff to: previous 1.1190: preferred, colored
Changes since revision 1.1190: +2 -4 lines
Retire NDIS. It appears that it has never worked, after 13 years it was
still marked as "experimental", and nowadays it may be one more obstacle
to MPification of the network stack.

Discussed on tech-net@.

Revision 1.1190: download - view: text, markup, annotated - select for diffs
Tue Aug 14 06:37:59 2018 UTC (6 years, 3 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1189: preferred, colored
Changes since revision 1.1189: +2 -3 lines
Replace references to etherip by l2tp. Etherip was already not enabled
anyway.

Revision 1.1189: download - view: text, markup, annotated - select for diffs
Tue Aug 14 06:04:24 2018 UTC (6 years, 3 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1188: preferred, colored
Changes since revision 1.1188: +3 -2 lines
Enable L2TP on all x86 configurations, not just native amd64.

Revision 1.1188: download - view: text, markup, annotated - select for diffs
Mon Aug 13 18:48:53 2018 UTC (6 years, 3 months ago) by mrg
Branches: MAIN
Diff to: previous 1.1187: preferred, colored
Changes since revision 1.1187: +3 -193 lines
use dev/usb/usbdevices.config instead of a local list.
adds slurm(4), umcs(4), uark(4), and usmsc(4).

Revision 1.1187: download - view: text, markup, annotated - select for diffs
Sun Aug 12 17:59:21 2018 UTC (6 years, 4 months ago) by sevan
Branches: MAIN
Diff to: previous 1.1186: preferred, colored
Changes since revision 1.1186: +2 -6 lines
Remove commented out BPFJIT & SLJIT options as they are provided as loadable
modules already.

Heads up by <leot> <christos>

Revision 1.1186: download - view: text, markup, annotated - select for diffs
Fri Aug 10 17:54:46 2018 UTC (6 years, 4 months ago) by sevan
Branches: MAIN
Diff to: previous 1.1185: preferred, colored
Changes since revision 1.1185: +6 -2 lines
Add snippet for bpfjit(4) as both i386 and amd64 are listed as supported.
Ideally BPFJIT should be enabled by default for use with NPF but I haven't
raised the question (no access to email at the moment) hence both are disabled.

Revision 1.1185: download - view: text, markup, annotated - select for diffs
Wed Aug 1 16:59:09 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1184: preferred, colored
Changes since revision 1.1184: +3 -11 lines
Unreference IPF/PF from the x86 config files (amd64, i386, xen), and enable
NPF instead when wanted.

Revision 1.1184: download - view: text, markup, annotated - select for diffs
Tue Jul 31 16:44:29 2018 UTC (6 years, 4 months ago) by khorben
Branches: MAIN
Diff to: previous 1.1183: preferred, colored
Changes since revision 1.1183: +3 -2 lines
Add a port of the umb(4) driver from OpenBSD

The umb(4) driver provides support for USB MBIM (Mobile Broadband
Interface Model) devices.

MBIM devices establish connections via cellular networks such as GPRS,
UMTS, and LTE. They appear as a regular point-to-point network interface, transporting raw IP frames.

Required configuration parameters like PIN and APN have to be set with
umbctl(8), a new tool specific to this driver. The IP address is configured
automatically; the default route and DNS server information have to be set
separately.

The driver is not fully functional yet, it is therefore still marked as
experimental and disabled by default. Any help welcome to complete it!

Tested on NetBSD/amd64, with a Sierra Wireless EM7345 LTE modem on a Lenovo
ThinkPad T440s. No functional change expected otherwise.

Revision 1.1174.2.4: download - view: text, markup, annotated - select for diffs
Sat Jul 28 04:37:34 2018 UTC (6 years, 4 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.3: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.3: +2 -5 lines
Sync with HEAD

Revision 1.1183: download - view: text, markup, annotated - select for diffs
Fri Jul 13 09:37:32 2018 UTC (6 years, 5 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-0728
Diff to: previous 1.1182: preferred, colored
Changes since revision 1.1182: +2 -3 lines
Remove the X86PMC code I had written, replaced by tprof. Many defines
become unused in specialreg.h, so remove them. We don't want to add
defines all the time, there are countless PMCs on many generations, and
it's better to just inline the event/unit values.

Revision 1.1182: download - view: text, markup, annotated - select for diffs
Tue Jul 10 19:58:13 2018 UTC (6 years, 5 months ago) by maya
Branches: MAIN
Diff to: previous 1.1181: preferred, colored
Changes since revision 1.1181: +2 -3 lines
Remove unused macro.

Revision 1.1181: download - view: text, markup, annotated - select for diffs
Tue Jul 10 17:01:43 2018 UTC (6 years, 5 months ago) by maya
Branches: MAIN
Diff to: previous 1.1180: preferred, colored
Changes since revision 1.1180: +2 -3 lines
Remove viadrm(4), superseded by viadrmums.

Aside from viadrm using older drm code, it's also dysfunctional right now.
See PR port-i386/53364.

Revision 1.1174.2.3: download - view: text, markup, annotated - select for diffs
Mon Jun 25 07:25:42 2018 UTC (6 years, 5 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.2: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.2: +25 -24 lines
Sync with HEAD

Revision 1.1156.2.10: download - view: text, markup, annotated - select for diffs
Sat Jun 9 15:12:21 2018 UTC (6 years, 6 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-0-RELEASE, netbsd-8-0-RC2
Diff to: previous 1.1156.2.9: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.9: +3 -2 lines
Pullup the following revisions, requested by maxv in ticket #865:

	sys/arch/amd64/amd64/machdep.c		1.303 (patch)
	sys/arch/amd64/conf/GENERIC		1.492 (patch)
	sys/arch/amd64/conf/files.amd64		1.103 (patch)
	sys/arch/i386/i386/machdep.c		1.806 (patch)
	sys/arch/i386/conf/GENERIC		1.1179 (patch)
	sys/arch/i386/conf/files.i386		1.393 (patch)
	sys/arch/x86/include/cpu.h		1.91 (patch)
	sys/arch/x86/include/specialreg.h	upto 1.126 (patch)
	sys/arch/x86/x86/x86_machdep.c		upto 1.115 (patch, adapted)
	sys/arch/x86/x86/spectre.c		upto 1.19 (patch, adapted,
						no IBRS,
						SpectreV2 mitigations not
						enabled	by default)

Backport the hardware SpectreV2 and SpectreV4 mitigations.

Revision 1.1180: download - view: text, markup, annotated - select for diffs
Thu Jun 7 13:36:29 2018 UTC (6 years, 6 months ago) by thorpej
Branches: MAIN
CVS tags: phil-wifi-base, pgoyette-compat-0625
Branch point for: phil-wifi
Diff to: previous 1.1179: preferred, colored
Changes since revision 1.1179: +24 -24 lines
Revert changes that pinned-down i2c parent specs.  The i2c subsystem
has been enhanced to make this unnecessary.

Revision 1.1066.2.7.4.2: download - view: text, markup, annotated - select for diffs
Tue May 22 14:49:02 2018 UTC (6 years, 6 months ago) by martin
Branches: netbsd-6-0
Diff to: previous 1.1066.2.7.4.1: preferred, colored; branchpoint 1.1066.2.7: preferred, colored; next MAIN 1.1066.2.8: preferred, colored
Changes since revision 1.1066.2.7.4.1: +4 -4 lines
Apply patch requested by maxv in ticket #1500:

 * disable compat_svr4 and compat_svr4_32 everywhere
 * disable compat_ibcs2 everywhere but on Vax
 * remove the svr4/svr4_32/ibcs2/freebsd entries from the autoload list

Revision 1.1066.2.7.6.2: download - view: text, markup, annotated - select for diffs
Tue May 22 14:44:30 2018 UTC (6 years, 6 months ago) by martin
Branches: netbsd-6-1
Diff to: previous 1.1066.2.7.6.1: preferred, colored; branchpoint 1.1066.2.7: preferred, colored; next MAIN 1.1066.2.8: preferred, colored
Changes since revision 1.1066.2.7.6.1: +4 -4 lines
Apply patch requested by maxv in ticket #1500:

 * disable compat_svr4 and compat_svr4_32 everywhere
 * disable compat_ibcs2 everywhere but on Vax
 * remove the svr4/svr4_32/ibcs2/freebsd entries from the autoload list

Revision 1.1066.2.9: download - view: text, markup, annotated - select for diffs
Tue May 22 14:38:20 2018 UTC (6 years, 6 months ago) by martin
Branches: netbsd-6
Diff to: previous 1.1066.2.8: preferred, colored; branchpoint 1.1066: preferred, colored; next MAIN 1.1067: preferred, colored
Changes since revision 1.1066.2.8: +4 -4 lines
Apply patch requested by maxv in ticket #1500:

 * disable compat_svr4 and compat_svr4_32 everywhere
 * disable compat_ibcs2 everywhere but on Vax
 * remove the svr4/svr4_32/ibcs2/freebsd entries from the autoload list

Revision 1.1179: download - view: text, markup, annotated - select for diffs
Tue May 22 08:15:26 2018 UTC (6 years, 6 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1178: preferred, colored
Changes since revision 1.1178: +3 -2 lines
Clarify the parameters for the SpectreV2 mitigation.

Add:
	machdep.spectre_v2.swmitigated
Rename:
	machdep.spectre_v2.mitigated -> machdep.spectre_v2.hwmitigated

Change the method string, to combine both the hardware and software
mitigations. swmitigated is set at compile time, hwmitigated can be
set by the user.

Examples:

	spectre_v2.swmitigated = 1
	spectre_v2.hwmitigated = 0
	spectre_v2.method = [GCC retpoline]

	spectre_v2.swmitigated = 0
	spectre_v2.hwmitigated = 0
	spectre_v2.method = (none)

	spectre_v2.swmitigated = 1
	spectre_v2.hwmitigated = 1
	spectre_v2.method = [GCC retpoline] + [Intel IBRS]

Revision 1.1174.2.2: download - view: text, markup, annotated - select for diffs
Mon May 21 04:36:00 2018 UTC (6 years, 6 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.1: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.1: +24 -24 lines
Sync with HEAD

Revision 1.1178: download - view: text, markup, annotated - select for diffs
Tue May 15 01:53:27 2018 UTC (6 years, 6 months ago) by thorpej
Branches: MAIN
CVS tags: pgoyette-compat-0521
Diff to: previous 1.1177: preferred, colored
Changes since revision 1.1177: +24 -24 lines
Fully specifiy the location of indirectly-configured I2C devices. In
particular, the parent spec must not be wild-carded, as doing so doesn't
work well on systems where more than one I2C bus is present.

N.B. The x86 platforms are sort of a mess, here... legacy indirect
config and ACPI direct config sort of smashed together with the
same config file directives.

Revision 1.1156.2.9: download - view: text, markup, annotated - select for diffs
Wed Apr 18 14:45:08 2018 UTC (6 years, 7 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-0-RC1
Diff to: previous 1.1156.2.8: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.8: +3 -3 lines
Requested by skrll in ticket #60:
        sys/arch/amd64/conf/GENERIC
        sys/arch/amd64/conf/XEN3_DOM0
        sys/arch/amd64/conf/XEN3_DOMU
        sys/arch/cobalt/conf/GENERIC
        sys/arch/evbarm/conf/BEAGLEBONE
        sys/arch/evbarm/conf/BEAGLEBOARD
        sys/arch/evbarm/conf/BEAGLEBOARDXM
        sys/arch/evbarm/conf/GENERIC.common
        sys/arch/i386/conf/GENERIC
        sys/arch/i386/conf/XEN3_DOM0
        sys/arch/i386/conf/XEN3_DOMU
        sys/arch/mvmeppc/conf/GENERIC
        sys/arch/shark/conf/GENERIC
        sys/arch/sparc64/conf/GENERIC
        sys/arch/zaurus/conf/GENERIC

Remove option DIAGNOSTIC.

Revision 1.1174.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 16 01:59:54 2018 UTC (6 years, 7 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174: preferred, colored
Changes since revision 1.1174: +4 -2 lines
Sync with HEAD, resolve some conflicts

Revision 1.1156.2.8: download - view: text, markup, annotated - select for diffs
Wed Apr 11 14:23:30 2018 UTC (6 years, 8 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156.2.7: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.7: +4 -2 lines
Pull up following revision(s) (requested by mrg in ticket #731):
	sys/arch/i386/conf/files.i386: revision 1.392
	sys/arch/i386/conf/GENERIC: revision 1.1175
	sys/arch/i386/conf/GENERIC: revision 1.1176
	sys/arch/amd64/conf/files.amd64: revision 1.102
	sys/arch/i386/conf/GENERIC: revision 1.1177
	share/man/man4/options.4: revision 1.485 (patch)
	sys/arch/i386/conf/Makefile.i386: revision 1.190
	sys/arch/amd64/conf/GENERIC: revision 1.487
	sys/arch/amd64/conf/ALL: revision 1.85
	sys/arch/amd64/conf/GENERIC: revision 1.488
	sys/arch/amd64/conf/GENERIC: revision 1.489
	sys/arch/amd64/conf/Makefile.amd64: revision 1.67
	sys/arch/i386/conf/ALL: revision 1.437

add an SPECTRE_V2_GCC_MITIGATION option to x86 kernels, that turns
on the GCC spectre v2 mitigation options.
XXX: pullup-8.
XXX: turn on in all kernels.

actually do what the previous change said:
don't turn on the new 'SPECTRE_V2_GCC_MITIGATION' option yet.

turn on GCC spectre v2 mitigation options.
XXX: amd64 ALL doesn't build for me right now

Revision 1.1177: download - view: text, markup, annotated - select for diffs
Sun Apr 8 00:52:38 2018 UTC (6 years, 8 months ago) by mrg
Branches: MAIN
CVS tags: pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415
Diff to: previous 1.1176: preferred, colored
Changes since revision 1.1176: +3 -3 lines
turn on GCC spectre v2 mitigation options.

XXX: amd64 ALL doesn't build for me right now

Revision 1.1176: download - view: text, markup, annotated - select for diffs
Sat Apr 7 19:39:19 2018 UTC (6 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.1175: preferred, colored
Changes since revision 1.1175: +3 -3 lines
actually do what the previous change said:
don't turn on the new 'SPECTRE_V2_GCC_MITIGATION' option yet.

Revision 1.1175: download - view: text, markup, annotated - select for diffs
Sat Apr 7 19:38:06 2018 UTC (6 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.1174: preferred, colored
Changes since revision 1.1174: +4 -2 lines
add an SPECTRE_V2_GCC_MITIGATION option to x86 kernels, that turns
on the GCC spectre v2 mitigation options.

XXX: pullup-8.
XXX: turn on in all kernels.

Revision 1.1107.2.13: download - view: text, markup, annotated - select for diffs
Sun Feb 25 21:16:07 2018 UTC (6 years, 9 months ago) by snj
Branches: netbsd-7
CVS tags: netbsd-7-2-RELEASE
Diff to: previous 1.1107.2.12: preferred, colored; branchpoint 1.1107: preferred, colored; next MAIN 1.1108: preferred, colored
Changes since revision 1.1107.2.12: +4 -4 lines
Apply patch (requested by maxv in ticket #1499):
- disable compat_svr4 and compat_svr4_32 everywhere
- disable compat_ibcs2 everywhere but on Vax
- remove svr4/svr4_32/ibcs2/freebsd from the module autoload list

Revision 1.1107.2.9.2.2: download - view: text, markup, annotated - select for diffs
Sun Feb 25 21:15:38 2018 UTC (6 years, 9 months ago) by snj
Branches: netbsd-7-1
CVS tags: netbsd-7-1-2-RELEASE
Diff to: previous 1.1107.2.9.2.1: preferred, colored; branchpoint 1.1107.2.9: preferred, colored; next MAIN 1.1107.2.10: preferred, colored
Changes since revision 1.1107.2.9.2.1: +4 -4 lines
Apply patch (requested by maxv in ticket #1499):
- disable compat_svr4 and compat_svr4_32 everywhere
- disable compat_ibcs2 everywhere but on Vax
- remove svr4/svr4_32/ibcs2/freebsd from the module autoload list

Revision 1.1107.2.8.2.2: download - view: text, markup, annotated - select for diffs
Sun Feb 25 21:15:19 2018 UTC (6 years, 9 months ago) by snj
Branches: netbsd-7-0
Diff to: previous 1.1107.2.8.2.1: preferred, colored; branchpoint 1.1107.2.8: preferred, colored; next MAIN 1.1107.2.9: preferred, colored
Changes since revision 1.1107.2.8.2.1: +4 -4 lines
Apply patch (requested by maxv in ticket #1499):
- disable compat_svr4 and compat_svr4_32 everywhere
- disable compat_ibcs2 everywhere but on Vax
- remove svr4/svr4_32/ibcs2/freebsd from the module autoload list

Revision 1.1174: download - view: text, markup, annotated - select for diffs
Sun Dec 10 17:19:48 2017 UTC (7 years ago) by bouyer
Branches: MAIN
CVS tags: pgoyette-compat-base, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315
Branch point for: pgoyette-compat
Diff to: previous 1.1173: preferred, colored
Changes since revision 1.1173: +13 -2 lines
Add dwiic, ihidev and ims

Revision 1.1173: download - view: text, markup, annotated - select for diffs
Sat Dec 9 00:29:33 2017 UTC (7 years ago) by riastradh
Branches: MAIN
Diff to: previous 1.1172: preferred, colored
Changes since revision 1.1172: +3 -2 lines
Attach wsmouse at wsmousedev on x86 so modular mice have a hope.

As noted on tech-kern:

https://mail-index.NetBSD.org/tech-kern/2017/12/08/msg022708.html

Revision 1.1156.2.7: download - view: text, markup, annotated - select for diffs
Mon Dec 4 19:47:05 2017 UTC (7 years ago) by snj
Branches: netbsd-8
Diff to: previous 1.1156.2.6: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.6: +8 -6 lines
Pull up following revision(s) (requested by martin in ticket #413):
	sys/arch/i386/conf/GENERIC: revision 1.1171
PR port-i386/52774: vioscsi missing in i386 kernel

Revision 1.1079.2.5: download - view: text, markup, annotated - select for diffs
Sun Dec 3 11:36:17 2017 UTC (7 years ago) by jdolecek
Branches: tls-maxphys
Diff to: previous 1.1079.2.4: preferred, colored; next MAIN 1.1080: preferred, colored
Changes since revision 1.1079.2.4: +98 -66 lines
update from HEAD

Revision 1.1172: download - view: text, markup, annotated - select for diffs
Thu Nov 30 11:56:45 2017 UTC (7 years ago) by jmcneill
Branches: MAIN
CVS tags: tls-maxphys-base-20171202
Diff to: previous 1.1171: preferred, colored
Changes since revision 1.1171: +3 -2 lines
add qemufwcfg(4)

Revision 1.1171: download - view: text, markup, annotated - select for diffs
Wed Nov 29 16:10:01 2017 UTC (7 years ago) by martin
Branches: MAIN
Diff to: previous 1.1170: preferred, colored
Changes since revision 1.1170: +8 -6 lines
PR port-i386/52774: vioscsi missing in i386 kernel

Revision 1.1170: download - view: text, markup, annotated - select for diffs
Mon Nov 6 02:57:18 2017 UTC (7 years, 1 month ago) by rin
Branches: MAIN
Diff to: previous 1.1169: preferred, colored
Changes since revision 1.1169: +3 -2 lines
Revive commented out DISKLABEL_EI option to kernel configuration files
that contain FFS_EI option.

Revision 1.1169: download - view: text, markup, annotated - select for diffs
Mon Oct 23 08:08:53 2017 UTC (7 years, 1 month ago) by skrll
Branches: MAIN
Diff to: previous 1.1168: preferred, colored
Changes since revision 1.1168: +4 -3 lines
Add bwfm (and sort other 802.11 usb wifi drivers)

Revision 1.1168: download - view: text, markup, annotated - select for diffs
Thu Sep 14 07:58:41 2017 UTC (7 years, 2 months ago) by mrg
Branches: MAIN
Diff to: previous 1.1167: preferred, colored
Changes since revision 1.1167: +3 -19 lines
clean up COMPAT_* options for native netbsd code:
- new series of files that are useful for saying "i want everything
  since netbsd 1.4", etc.
- use the fact COMPAT_* options have future dependancies to remove
  many redundant options.

removes about 3000 lines total across kernel configuration files.
tested about 30 random kernels in the changed list.

Revision 1.1167: download - view: text, markup, annotated - select for diffs
Wed Sep 13 22:24:44 2017 UTC (7 years, 2 months ago) by sevan
Branches: MAIN
Diff to: previous 1.1166: preferred, colored
Changes since revision 1.1166: +2 -5 lines
Remove support for VERIFIED_EXEC_FP_RMD160, VERIFIED_EXEC_FP_SHA1, and VERIFIED_EXEC_FP_MD5 options.
These algorithms are either broken or on their way to being broken.

Discussed on tech-security
http://mail-index.netbsd.org/tech-security/2017/08/21/msg000936.html

ok riastradh

Revision 1.1156.2.6: download - view: text, markup, annotated - select for diffs
Mon Sep 11 05:13:45 2017 UTC (7 years, 3 months ago) by snj
Branches: netbsd-8
CVS tags: matt-nb8-mediatek-base, matt-nb8-mediatek
Diff to: previous 1.1156.2.5: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.5: +3 -3 lines
Pull up following revision(s) (requested by maxv in ticket #256):
	sys/arch/i386/conf/GENERIC: revision 1.1159 via patch
	sys/arch/i386/conf/XEN3_DOMU: revision 1.78 via patch
	sys/arch/i386/conf/XEN3_DOM0: revision 1.114 via patch
	sys/kern/kern_exec.c: 1.443-1.444 via patch
Disable svr4 and ibcs2 by default.
These options are not well-tested, of a limited use case, and the potential
for damage is too high. Vulnerabilities were presented at DEFCON 25 - I see
that at least one of them can be exploited to get ring0 privileges.
--
Remove compat_freebsd from the list of autoloaded modules. Interested users
will now have to type 'modload' to use it, or uncomment the entry in
GENERIC. I should have removed it when I disabled COMPAT_FREEBSD by
default, sorry about that.
--
Remove compat_svr4, compat_svr4_32 and compat_ibcs2 from the list of
autoloaded modules. These options are disabled everywhere (except ibcs2
on Vax, but Vax does not support kernel modules, so doesn't matter),
therefore there is no issue in removing them from the list. Interested
users will now have to do a 'modload' first, or uncomment the entries in
GENERIC.

Revision 1.1156.2.5: download - view: text, markup, annotated - select for diffs
Thu Aug 31 08:41:33 2017 UTC (7 years, 3 months ago) by bouyer
Branches: netbsd-8
Diff to: previous 1.1156.2.4: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.4: +3 -3 lines
apply paych, requested by maxv in ticket #237:
	sys/arch/amiga/conf/DRACO		patch
	sys/arch/amiga/conf/GENERIC		patch
	sys/arch/amiga/conf/GENERIC.in		patch
	sys/arch/i386/conf/ALL			patch
	sys/arch/i386/conf/GENERIC		patch
	sys/arch/i386/conf/XEN3_DOM0		patch
	sys/arch/i386/conf/XEN3_DOMU		patch
	sys/arch/sparc/conf/GENERIC		patch
	sys/arch/sparc/conf/KRUPS		patch
	sys/arch/sparc/conf/MRCOFFEE		patch
	sys/arch/sparc/conf/TADPOLE3GX		patch
	sys/arch/sparc64/conf/GENERIC		patch
	sys/arch/sparc64/conf/NONPLUS64		patch
	sys/kern/kern_exec.c			patch

Disables compat_svr4 and compat_svr4_32 on each architecture,
and removes the associated module autoload entries.

Revision 1.1156.2.4: download - view: text, markup, annotated - select for diffs
Tue Aug 29 09:42:19 2017 UTC (7 years, 3 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156.2.3: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.3: +3 -3 lines
Requested by skrll in ticket #60:
	sys/arch/amd64/conf/GENERIC
	sys/arch/amd64/conf/XEN3_DOM0
	sys/arch/amd64/conf/XEN3_DOMU
	sys/arch/cobalt/conf/GENERIC
	sys/arch/evbarm/conf/BEAGLEBONE
	sys/arch/evbarm/conf/BEAGLEBOARD
	sys/arch/evbarm/conf/BEAGLEBOARDXM
	sys/arch/evbarm/conf/GENERIC.common
	sys/arch/i386/conf/GENERIC
	sys/arch/i386/conf/XEN3_DOM0
	sys/arch/i386/conf/XEN3_DOMU
	sys/arch/mvmeppc/conf/GENERIC
	sys/arch/shark/conf/GENERIC
	sys/arch/sparc64/conf/GENERIC
	sys/arch/zaurus/conf/GENERIC


Re-enable option DIAGNOSTIC for now, will remove it again later.

Revision 1.1118.2.13: download - view: text, markup, annotated - select for diffs
Mon Aug 28 17:51:40 2017 UTC (7 years, 3 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.12: preferred, colored; branchpoint 1.1118: preferred, colored; next MAIN 1.1119: preferred, colored
Changes since revision 1.1118.2.12: +12 -9 lines
Sync with HEAD

Revision 1.1066.2.8: download - view: text, markup, annotated - select for diffs
Sat Aug 26 16:26:46 2017 UTC (7 years, 3 months ago) by snj
Branches: netbsd-6
Diff to: previous 1.1066.2.7: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.7: +3 -3 lines
Apply patch (requested by maxv in ticket #1466):
Disable vm86 by default. The use case is limited, and the potential
for damage is too high.

Revision 1.1066.2.7.6.1: download - view: text, markup, annotated - select for diffs
Sat Aug 26 16:26:29 2017 UTC (7 years, 3 months ago) by snj
Branches: netbsd-6-1
Diff to: previous 1.1066.2.7: preferred, colored
Changes since revision 1.1066.2.7: +3 -3 lines
Apply patch (requested by maxv in ticket #1466):
Disable vm86 by default. The use case is limited, and the potential
for damage is too high.

Revision 1.1066.2.7.4.1: download - view: text, markup, annotated - select for diffs
Sat Aug 26 16:26:06 2017 UTC (7 years, 3 months ago) by snj
Branches: netbsd-6-0
Diff to: previous 1.1066.2.7: preferred, colored
Changes since revision 1.1066.2.7: +3 -3 lines
Apply patch (requested by maxv in ticket #1466):
Disable vm86 by default. The use case is limited, and the potential
for damage is too high.

Revision 1.1156.2.3: download - view: text, markup, annotated - select for diffs
Fri Aug 25 05:53:12 2017 UTC (7 years, 3 months ago) by snj
Branches: netbsd-8
Diff to: previous 1.1156.2.2: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.2: +3 -3 lines
Pull up following revision(s) (requested by maxv in ticket #230):
	sys/arch/i386/conf/GENERIC: revision 1.1158
Disable vm86 by default. The use case is limited, and the potential for
damage is too high.
This code is fragile, and relies on a certain number of assumptions, some
of which are not be totally true. For example, it relies on the fact that
a 16bit process cannot perform a syscall, but verily it can. The slighest
confusion in the trap frame can lead to ring0 exploits. Also, I'm not
convinced that it interacts well with the compatibility layers.

Revision 1.1107.2.12: download - view: text, markup, annotated - select for diffs
Thu Aug 24 06:52:06 2017 UTC (7 years, 3 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.11: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.11: +3 -3 lines
Apply patch (requested by maxv in ticket #1463):
i386 GENERIC: disable VM86 by default.

Revision 1.1107.2.9.2.1: download - view: text, markup, annotated - select for diffs
Thu Aug 24 06:51:17 2017 UTC (7 years, 3 months ago) by snj
Branches: netbsd-7-1
CVS tags: netbsd-7-1-1-RELEASE
Diff to: previous 1.1107.2.9: preferred, colored
Changes since revision 1.1107.2.9: +3 -3 lines
Apply patch (requested by maxv in ticket #1463):
i386 GENERIC: disable VM86 by default.

Revision 1.1107.2.8.2.1: download - view: text, markup, annotated - select for diffs
Thu Aug 24 06:50:16 2017 UTC (7 years, 3 months ago) by snj
Branches: netbsd-7-0
Diff to: previous 1.1107.2.8: preferred, colored
Changes since revision 1.1107.2.8: +3 -3 lines
Apply patch (requested by maxv in ticket #1463):
i386 GENERIC: disable VM86 by default.

Revision 1.1166: download - view: text, markup, annotated - select for diffs
Sun Aug 13 08:48:30 2017 UTC (7 years, 3 months ago) by christos
Branches: MAIN
CVS tags: nick-nhusb-base-20170825
Diff to: previous 1.1165: preferred, colored
Changes since revision 1.1165: +3 -2 lines
Add ALPS pms support

Revision 1.1165: download - view: text, markup, annotated - select for diffs
Sat Aug 12 06:46:13 2017 UTC (7 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1164: preferred, colored
Changes since revision 1.1164: +2 -3 lines
Remove support for vm86 on i386. It is bug-friendly, and there is no point
in having kernel support for this: the instruction set of the CPU is small,
and it can easily be emulated in userland entirely. There are also several
assumptions in the code that are not respected, and the slightest confusion
in the trap frame can lead to ring0 exploits.

vm86 has received zero maintenance. As far as I can tell, it was added
20 years ago in order to make doscmd work. But doscmd has not been
maintained either, and was removed from pkgsrc in 2011. dosbox can be used
instead: it does not require kernel support, and will produce better
results than our flimsy implementation.

Pass 1. (many pieces still in the tree)

Revision 1.1164: download - view: text, markup, annotated - select for diffs
Wed Aug 9 18:45:30 2017 UTC (7 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1163: preferred, colored
Changes since revision 1.1163: +2 -3 lines
Remove compat_ibcs2 from i386. After a discussion on port-vax, it turns
out that compat_ibcs2 does not implement the iBCS2 standard - which is
x86-specific - but rather SVR3. Our real iBCS2 implementation was a
mixture of compat_ibcs2 and compat_svr4, and was only partial. Keeping
support for this in i386 is totally irrelevant today. I also asked on
port-i386 but didn't wait long.

The main issue is that compat_ibcs2 should have been called compat_svr3.
But CVS does not support renaming files, and moving things around is both
painful and tiring, even more so when no one seems to be interested in
doing this work or in the feature at all. For now compat_ibcs2 is available
on Vax and will stay, until someone (not me) cleans it up.

Revision 1.1163: download - view: text, markup, annotated - select for diffs
Fri Aug 4 09:30:19 2017 UTC (7 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1162: preferred, colored
Changes since revision 1.1162: +5 -5 lines
Revert my changes, and re-enable COMPAT_NOMID, COMPAT_09 and COMPAT_43.
Several compat options happen to be dependent on the compat_43_* functions,
the availability of which is (wrongfully) controlled with COMPAT_43. Same
for COMPAT_09.

Revision 1.1156.2.2: download - view: text, markup, annotated - select for diffs
Tue Aug 1 23:18:30 2017 UTC (7 years, 4 months ago) by snj
Branches: netbsd-8
Diff to: previous 1.1156.2.1: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.1: +3 -3 lines
Pull up following revision(s) (requested by maxv in ticket #164):
	distrib/sets/lists/base/md.amd64: revision 1.269
	distrib/sets/lists/debug/md.amd64: revision 1.97
	sys/arch/amd64/conf/GENERIC: revision 1.460
	sys/arch/amd64/conf/files.amd64: revision 1.89
	sys/arch/i386/conf/GENERIC: revision 1.1157
	sys/arch/i386/conf/files.i386: revision 1.379
	sys/arch/i386/i386/i386_trap.S: revision 1.7-1.8
	sys/arch/i386/include/frameasm.h: revision 1.16
	sys/arch/x86/include/sysarch.h: revision 1.12
	sys/arch/x86/x86/pmc.c: revision 1.8-1.10
	sys/arch/x86/x86/sys_machdep.c: revision 1.36
	sys/arch/xen/conf/files.compat: revision 1.26
	sys/secmodel/suser/secmodel_suser.c: revision 1.43
	sys/sys/kauth.h: revision 1.74
	usr.bin/pmc/Makefile: revision 1.5
	usr.bin/pmc/pmc.1: revision 1.12-1.13
	usr.bin/pmc/pmc.c: revision 1.24-1.25
style
--
style
--
Disable interrupts for T_NMI (inline calltrap). Note that there's still a
way to evade the NMI mode here, if a segment register faults in
INTRFASTEXIT; but we don't care. I didn't test this change, but it seems
fine enough.
--
Make the PMC syscalls privileged.
--
Check argc, and add a message.
--
include opt_pmc.h
--
Build the pmc tool on amd64.
--
Properly handle overflows, and take them into account in userland.
--
Update.
--
Enable PMCs by default.
--
Sort sections. Fix macro usage.

Revision 1.1162: download - view: text, markup, annotated - select for diffs
Mon Jul 31 15:43:33 2017 UTC (7 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1161: preferred, colored
Changes since revision 1.1161: +5 -5 lines
Disable all the compat options until COMPAT_10. NetBSD 1.0 was released on
October 26 1994; 23 years of compatibility is enough. Discussed with
christos quickly.

Revision 1.1161: download - view: text, markup, annotated - select for diffs
Sat Jul 29 18:08:58 2017 UTC (7 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1160: preferred, colored
Changes since revision 1.1160: +2 -3 lines
Remove TCP_COMPAT_42 from the config files. Pass 3.

Revision 1.1160: download - view: text, markup, annotated - select for diffs
Sat Jul 29 12:00:56 2017 UTC (7 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1159: preferred, colored
Changes since revision 1.1159: +2 -3 lines
Remove svr4 from the config files.

Revision 1.1159: download - view: text, markup, annotated - select for diffs
Fri Jul 28 14:13:13 2017 UTC (7 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1158: preferred, colored
Changes since revision 1.1158: +4 -4 lines
Disable svr4 and ibcs2 by default.

These options are not well-tested, of a limited use case, and the potential
for damage is too high. Vulnerabilities were presented at DEFCON 25 - I see
that at least one of them can be exploited to get ring0 privileges.

Revision 1.1158: download - view: text, markup, annotated - select for diffs
Fri Jul 28 13:59:07 2017 UTC (7 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1157: preferred, colored
Changes since revision 1.1157: +3 -3 lines
Disable vm86 by default. The use case is limited, and the potential for
damage is too high.

This code is fragile, and relies on a certain number of assumptions, some
of which are not be totally true. For example, it relies on the fact that
a 16bit process cannot perform a syscall, but verily it can. The slighest
confusion in the trap frame can lead to ring0 exploits. Also, I'm not
convinced that it interacts well with the compatibility layers.

Revision 1.1107.2.11: download - view: text, markup, annotated - select for diffs
Tue Jul 25 19:43:03 2017 UTC (7 years, 4 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.10: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.10: +3 -2 lines
Apply patch (requested by nonaka in ticket #1413):
iwm(4): Add a driver for Intel Wireless 726x, 316x, 826x and 416x series.
Ported from OpenBSD.

Revision 1.1157: download - view: text, markup, annotated - select for diffs
Wed Jul 12 17:40:34 2017 UTC (7 years, 5 months ago) by maxv
Branches: MAIN
CVS tags: perseant-stdc-iso10646-base, perseant-stdc-iso10646
Diff to: previous 1.1156: preferred, colored
Changes since revision 1.1156: +3 -3 lines
Enable PMCs by default.

Revision 1.1156.2.1: download - view: text, markup, annotated - select for diffs
Wed Jul 5 13:58:48 2017 UTC (7 years, 5 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156: preferred, colored
Changes since revision 1.1156: +5 -5 lines
Remove options DIAGNOSTIC/DEBUG and PAX debug options.
Requested by snj in #60.

Revision 1.1156: download - view: text, markup, annotated - select for diffs
Sat May 27 22:53:29 2017 UTC (7 years, 6 months ago) by bouyer
Branches: MAIN
CVS tags: netbsd-8-base
Branch point for: netbsd-8
Diff to: previous 1.1155: preferred, colored
Changes since revision 1.1155: +5 -2 lines
Add options CAN and pseudo-device canloop to ALL kernel configs.
Add the same commented out to i386/amd64 GENERIC and OLIMEXLIME2 (A20-based).
Also add commented out awincan0 in OLIMEXLIME2.

Revision 1.1155: download - view: text, markup, annotated - select for diffs
Wed May 24 20:23:04 2017 UTC (7 years, 6 months ago) by christos
Branches: MAIN
Diff to: previous 1.1154: preferred, colored
Changes since revision 1.1154: +3 -3 lines
rename u3ginit driver to umodeswitch

Revision 1.1137.2.5: download - view: text, markup, annotated - select for diffs
Wed Apr 26 02:53:03 2017 UTC (7 years, 7 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.1137.2.4: preferred, colored; branchpoint 1.1137: preferred, colored; next MAIN 1.1138: preferred, colored
Changes since revision 1.1137.2.4: +5 -2 lines
Sync with HEAD

Revision 1.1146.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 21 16:53:28 2017 UTC (7 years, 7 months ago) by bouyer
Branches: bouyer-socketcan
Diff to: previous 1.1146: preferred, colored; next MAIN 1.1147: preferred, colored
Changes since revision 1.1146: +7 -4 lines
Sync with HEAD

Revision 1.1154: download - view: text, markup, annotated - select for diffs
Tue Apr 18 19:09:12 2017 UTC (7 years, 7 months ago) by riastradh
Branches: MAIN
CVS tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-20170426, bouyer-socketcan-base1
Diff to: previous 1.1153: preferred, colored
Changes since revision 1.1153: +3 -3 lines
gson@ informs me the Alea I and II have the same USB product id.

Thus, ualea(4) should work for both of them.  Rename USB product id
ARANEUS ALEA_II to ARANEUS ALEA to reflect this.

No functional change intended, except perhaps via usbdevs.

Revision 1.1153: download - view: text, markup, annotated - select for diffs
Mon Apr 17 08:59:37 2017 UTC (7 years, 7 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1152: preferred, colored
Changes since revision 1.1152: +5 -2 lines
New rndsource driver for Araneus Alea II TRNG USB devices.

Disabled by default in x86/GENERIC and usbdevices.config pending
review and testing without rump ugenhc in the way, but enabled in
x86/ALL for compile-testing.

(Hi gson!  Finally found a round tuit in my pocket, next to a certain
rectangular one.)

Revision 1.1107.2.10: download - view: text, markup, annotated - select for diffs
Wed Apr 5 19:54:17 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.9: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.9: +4 -5 lines
Pull up following revision(s) (requested by skrll in ticket #1395):
	share/man/man4/axe.4: netbsd-7-nhusb
	share/man/man4/axen.4: netbsd-7-nhusb
	share/man/man4/cdce.4: netbsd-7-nhusb
	share/man/man4/uaudio.4: netbsd-7-nhusb
	share/man/man4/ucom.4: netbsd-7-nhusb
	share/man/man4/uep.4: netbsd-7-nhusb
	share/man/man4/urtw.4: netbsd-7-nhusb
	share/man/man4/usb.4: netbsd-7-nhusb
	share/man/man4/uyap.4: netbsd-7-nhusb
	share/man/man4/xhci.4: netbsd-7-nhusb
	share/man/man9/usbdi.9: netbsd-7-nhusb
	sys/arch/amd64/conf/ALL: netbsd-7-nhusb
	sys/arch/amd64/conf/GENERIC: netbsd-7-nhusb
	sys/arch/amiga/dev/slhci_zbus.c: netbsd-7-nhusb
	sys/arch/arm/allwinner/awin_otg.c: netbsd-7-nhusb
	sys/arch/arm/allwinner/awin_usb.c: netbsd-7-nhusb
	sys/arch/arm/amlogic/amlogic_dwctwo.c: netbsd-7-nhusb
	sys/arch/arm/at91/at91ohci.c: netbsd-7-nhusb
	sys/arch/arm/broadcom/bcm2835_dwctwo.c: netbsd-7-nhusb
	sys/arch/arm/broadcom/bcm53xx_usb.c: netbsd-7-nhusb
	sys/arch/arm/ep93xx/epohci.c: netbsd-7-nhusb
	sys/arch/arm/gemini/obio_ehci.c: netbsd-7-nhusb
	sys/arch/arm/imx/files.imx23: netbsd-7-nhusb
	sys/arch/arm/imx/imxusb.c: netbsd-7-nhusb
	sys/arch/arm/imx/imxusbreg.h: netbsd-7-nhusb
	sys/arch/arm/omap/obio_ohci.c: netbsd-7-nhusb
	sys/arch/arm/omap/omap3_ehci.c: netbsd-7-nhusb
	sys/arch/arm/omap/omapl1x_ohci.c: netbsd-7-nhusb
	sys/arch/arm/omap/tiotg.c: netbsd-7-nhusb
	sys/arch/arm/s3c2xx0/ohci_s3c24x0.c: netbsd-7-nhusb
	sys/arch/arm/samsung/exynos_usb.c: netbsd-7-nhusb
	sys/arch/arm/xscale/pxa2x0_ohci.c: netbsd-7-nhusb
	sys/arch/arm/zynq/zynq_usb.c: netbsd-7-nhusb
	sys/arch/hpcarm/dev/nbp_slhci.c: netbsd-7-nhusb
	sys/arch/hpcmips/dev/plumohci.c: netbsd-7-nhusb
	sys/arch/i386/conf/ALL: netbsd-7-nhusb
	sys/arch/i386/conf/GENERIC: netbsd-7-nhusb
	sys/arch/i386/pci/gcscehci.c: netbsd-7-nhusb
	sys/arch/luna68k/conf/GENERIC: netbsd-7-nhusb
	sys/arch/mips/adm5120/dev/ahci.c: netbsd-7-nhusb
	sys/arch/mips/adm5120/dev/ahcivar.h: netbsd-7-nhusb
	sys/arch/mips/alchemy/dev/ohci_aubus.c: netbsd-7-nhusb
	sys/arch/mips/atheros/dev/ehci_arbus.c: netbsd-7-nhusb
	sys/arch/mips/atheros/dev/ohci_arbus.c: netbsd-7-nhusb
	sys/arch/mips/conf/files.adm5120: netbsd-7-nhusb
	sys/arch/mips/ralink/ralink_ehci.c: netbsd-7-nhusb
	sys/arch/mips/ralink/ralink_ohci.c: netbsd-7-nhusb
	sys/arch/mips/rmi/rmixl_ehci.c: netbsd-7-nhusb
	sys/arch/mips/rmi/rmixl_ohci.c: netbsd-7-nhusb
	sys/arch/playstation2/dev/ohci_sbus.c: netbsd-7-nhusb
	sys/arch/powerpc/booke/dev/pq3ehci.c: netbsd-7-nhusb
	sys/arch/powerpc/ibm4xx/dev/dwctwo_plb.c: netbsd-7-nhusb
	sys/arch/x68k/dev/slhci_intio.c: netbsd-7-nhusb
	sys/conf/files: netbsd-7-nhusb
	sys/dev/cardbus/ehci_cardbus.c: netbsd-7-nhusb
	sys/dev/cardbus/ohci_cardbus.c: netbsd-7-nhusb
	sys/dev/cardbus/uhci_cardbus.c: netbsd-7-nhusb
	sys/dev/ic/sl811hs.c: netbsd-7-nhusb
	sys/dev/ic/sl811hsvar.h: netbsd-7-nhusb
	sys/dev/isa/slhci_isa.c: netbsd-7-nhusb
	sys/dev/marvell/ehci_mv.c: netbsd-7-nhusb
	sys/dev/pci/ehci_pci.c: netbsd-7-nhusb
	sys/dev/pci/ohci_pci.c: netbsd-7-nhusb
	sys/dev/pci/uhci_pci.c: netbsd-7-nhusb
	sys/dev/pci/xhci_pci.c: netbsd-7-nhusb
	sys/dev/pcmcia/slhci_pcmcia.c: netbsd-7-nhusb
	sys/dev/usb/Makefile.usbdevs: netbsd-7-nhusb
	sys/dev/usb/TODO: netbsd-7-nhusb
	sys/dev/usb/TODO.usbmp: netbsd-7-nhusb
	sys/dev/usb/aubtfwl.c: netbsd-7-nhusb
	sys/dev/usb/auvitek.c: netbsd-7-nhusb
	sys/dev/usb/auvitek_audio.c: netbsd-7-nhusb
	sys/dev/usb/auvitek_dtv.c: netbsd-7-nhusb
	sys/dev/usb/auvitek_i2c.c: netbsd-7-nhusb
	sys/dev/usb/auvitek_video.c: netbsd-7-nhusb
	sys/dev/usb/auvitekvar.h: netbsd-7-nhusb
	sys/dev/usb/ehci.c: netbsd-7-nhusb
	sys/dev/usb/ehcireg.h: netbsd-7-nhusb
	sys/dev/usb/ehcivar.h: netbsd-7-nhusb
	sys/dev/usb/emdtv.c: netbsd-7-nhusb
	sys/dev/usb/emdtv_dtv.c: netbsd-7-nhusb
	sys/dev/usb/emdtv_ir.c: netbsd-7-nhusb
	sys/dev/usb/emdtvvar.h: netbsd-7-nhusb
	sys/dev/usb/ezload.c: netbsd-7-nhusb
	sys/dev/usb/ezload.h: netbsd-7-nhusb
	sys/dev/usb/files.usb: netbsd-7-nhusb
	sys/dev/usb/hid.c: netbsd-7-nhusb
	sys/dev/usb/hid.h: netbsd-7-nhusb
	sys/dev/usb/if_athn_usb.c: netbsd-7-nhusb
	sys/dev/usb/if_athn_usb.h: netbsd-7-nhusb
	sys/dev/usb/if_atu.c: netbsd-7-nhusb
	sys/dev/usb/if_atureg.h: netbsd-7-nhusb
	sys/dev/usb/if_aue.c: netbsd-7-nhusb
	sys/dev/usb/if_auereg.h: netbsd-7-nhusb
	sys/dev/usb/if_axe.c: netbsd-7-nhusb
	sys/dev/usb/if_axen.c: netbsd-7-nhusb
	sys/dev/usb/if_axenreg.h: netbsd-7-nhusb
	sys/dev/usb/if_axereg.h: netbsd-7-nhusb
	sys/dev/usb/if_cdce.c: netbsd-7-nhusb
	sys/dev/usb/if_cdcereg.h: netbsd-7-nhusb
	sys/dev/usb/if_cue.c: netbsd-7-nhusb
	sys/dev/usb/if_cuereg.h: netbsd-7-nhusb
	sys/dev/usb/if_kue.c: netbsd-7-nhusb
	sys/dev/usb/if_kuereg.h: netbsd-7-nhusb
	sys/dev/usb/if_otus.c: netbsd-7-nhusb
	sys/dev/usb/if_otusvar.h: netbsd-7-nhusb
	sys/dev/usb/if_rum.c: netbsd-7-nhusb
	sys/dev/usb/if_rumreg.h: netbsd-7-nhusb
	sys/dev/usb/if_rumvar.h: netbsd-7-nhusb
	sys/dev/usb/if_run.c: netbsd-7-nhusb
	sys/dev/usb/if_runvar.h: netbsd-7-nhusb
	sys/dev/usb/if_smsc.c: netbsd-7-nhusb
	sys/dev/usb/if_smscreg.h: netbsd-7-nhusb
	sys/dev/usb/if_smscvar.h: netbsd-7-nhusb
	sys/dev/usb/if_udav.c: netbsd-7-nhusb
	sys/dev/usb/if_udavreg.h: netbsd-7-nhusb
	sys/dev/usb/if_upgt.c: netbsd-7-nhusb
	sys/dev/usb/if_upgtvar.h: netbsd-7-nhusb
	sys/dev/usb/if_upl.c: netbsd-7-nhusb
	sys/dev/usb/if_ural.c: netbsd-7-nhusb
	sys/dev/usb/if_uralreg.h: netbsd-7-nhusb
	sys/dev/usb/if_uralvar.h: netbsd-7-nhusb
	sys/dev/usb/if_url.c: netbsd-7-nhusb
	sys/dev/usb/if_urlreg.h: netbsd-7-nhusb
	sys/dev/usb/if_urndis.c: netbsd-7-nhusb
	sys/dev/usb/if_urndisreg.h: netbsd-7-nhusb
	sys/dev/usb/if_urtw.c: netbsd-7-nhusb
	sys/dev/usb/if_urtwn.c: netbsd-7-nhusb
	sys/dev/usb/if_urtwn_data.h: netbsd-7-nhusb
	sys/dev/usb/if_urtwnreg.h: netbsd-7-nhusb
	sys/dev/usb/if_urtwnvar.h: netbsd-7-nhusb
	sys/dev/usb/if_urtwreg.h: netbsd-7-nhusb
	sys/dev/usb/if_zyd.c: netbsd-7-nhusb
	sys/dev/usb/if_zydreg.h: netbsd-7-nhusb
	sys/dev/usb/irmce.c: netbsd-7-nhusb
	sys/dev/usb/moscom.c: netbsd-7-nhusb
	sys/dev/usb/motg.c: netbsd-7-nhusb
	sys/dev/usb/motgvar.h: netbsd-7-nhusb
	sys/dev/usb/ohci.c: netbsd-7-nhusb
	sys/dev/usb/ohcireg.h: netbsd-7-nhusb
	sys/dev/usb/ohcivar.h: netbsd-7-nhusb
	sys/dev/usb/pseye.c: netbsd-7-nhusb
	sys/dev/usb/slurm.c: netbsd-7-nhusb
	sys/dev/usb/stuirda.c: netbsd-7-nhusb
	sys/dev/usb/u3g.c: netbsd-7-nhusb
	sys/dev/usb/uark.c: netbsd-7-nhusb
	sys/dev/usb/uatp.c: netbsd-7-nhusb
	sys/dev/usb/uaudio.c: netbsd-7-nhusb
	sys/dev/usb/uberry.c: netbsd-7-nhusb
	sys/dev/usb/ubsa.c: netbsd-7-nhusb
	sys/dev/usb/ubsa_common.c: netbsd-7-nhusb
	sys/dev/usb/ubsavar.h: netbsd-7-nhusb
	sys/dev/usb/ubt.c: netbsd-7-nhusb
	sys/dev/usb/uchcom.c: netbsd-7-nhusb
	sys/dev/usb/ucom.c: netbsd-7-nhusb
	sys/dev/usb/ucomvar.h: netbsd-7-nhusb
	sys/dev/usb/ucycom.c: netbsd-7-nhusb
	sys/dev/usb/udl.c: netbsd-7-nhusb
	sys/dev/usb/udl.h: netbsd-7-nhusb
	sys/dev/usb/udsbr.c: netbsd-7-nhusb
	sys/dev/usb/udsir.c: netbsd-7-nhusb
	sys/dev/usb/uep.c: netbsd-7-nhusb
	sys/dev/usb/uftdi.c: netbsd-7-nhusb
	sys/dev/usb/uftdireg.h: netbsd-7-nhusb
	sys/dev/usb/ugen.c: netbsd-7-nhusb
	sys/dev/usb/ugensa.c: netbsd-7-nhusb
	sys/dev/usb/uhci.c: netbsd-7-nhusb
	sys/dev/usb/uhcireg.h: netbsd-7-nhusb
	sys/dev/usb/uhcivar.h: netbsd-7-nhusb
	sys/dev/usb/uhid.c: netbsd-7-nhusb
	sys/dev/usb/uhidev.c: netbsd-7-nhusb
	sys/dev/usb/uhidev.h: netbsd-7-nhusb
	sys/dev/usb/uhmodem.c: netbsd-7-nhusb
	sys/dev/usb/uhso.c: netbsd-7-nhusb
	sys/dev/usb/uhub.c: netbsd-7-nhusb
	sys/dev/usb/uipad.c: netbsd-7-nhusb
	sys/dev/usb/uipaq.c: netbsd-7-nhusb
	sys/dev/usb/uirda.c: netbsd-7-nhusb
	sys/dev/usb/uirdavar.h: netbsd-7-nhusb
	sys/dev/usb/ukbd.c: netbsd-7-nhusb
	sys/dev/usb/ukbdmap.c: netbsd-7-nhusb
	sys/dev/usb/ukyopon.c: netbsd-7-nhusb
	sys/dev/usb/ukyopon.h: netbsd-7-nhusb
	sys/dev/usb/ulpt.c: netbsd-7-nhusb
	sys/dev/usb/umass.c: netbsd-7-nhusb
	sys/dev/usb/umass_isdata.c: netbsd-7-nhusb
	sys/dev/usb/umass_isdata.h: netbsd-7-nhusb
	sys/dev/usb/umass_quirks.c: netbsd-7-nhusb
	sys/dev/usb/umass_quirks.h: netbsd-7-nhusb
	sys/dev/usb/umass_scsipi.c: netbsd-7-nhusb
	sys/dev/usb/umass_scsipi.h: netbsd-7-nhusb
	sys/dev/usb/umassvar.h: netbsd-7-nhusb
	sys/dev/usb/umcs.c: netbsd-7-nhusb
	sys/dev/usb/umct.c: netbsd-7-nhusb
	sys/dev/usb/umidi.c: netbsd-7-nhusb
	sys/dev/usb/umidi_quirks.c: netbsd-7-nhusb
	sys/dev/usb/umidi_quirks.h: netbsd-7-nhusb
	sys/dev/usb/umodem.c: netbsd-7-nhusb
	sys/dev/usb/umodem_common.c: netbsd-7-nhusb
	sys/dev/usb/umodemvar.h: netbsd-7-nhusb
	sys/dev/usb/ums.c: netbsd-7-nhusb
	sys/dev/usb/uplcom.c: netbsd-7-nhusb
	sys/dev/usb/urio.c: netbsd-7-nhusb
	sys/dev/usb/urio.h: netbsd-7-nhusb
	sys/dev/usb/usb.c: netbsd-7-nhusb
	sys/dev/usb/usb.h: netbsd-7-nhusb
	sys/dev/usb/usb_mem.c: netbsd-7-nhusb
	sys/dev/usb/usb_mem.h: netbsd-7-nhusb
	sys/dev/usb/usb_quirks.c: netbsd-7-nhusb
	sys/dev/usb/usb_quirks.h: netbsd-7-nhusb
	sys/dev/usb/usb_subr.c: netbsd-7-nhusb
	sys/dev/usb/usbdevices.config: netbsd-7-nhusb
	sys/dev/usb/usbdevs: netbsd-7-nhusb
	sys/dev/usb/usbdevs.h: netbsd-7-nhusb
	sys/dev/usb/usbdevs_data.h: netbsd-7-nhusb
	sys/dev/usb/usbdi.c: netbsd-7-nhusb
	sys/dev/usb/usbdi.h: netbsd-7-nhusb
	sys/dev/usb/usbdi_util.c: netbsd-7-nhusb
	sys/dev/usb/usbdi_util.h: netbsd-7-nhusb
	sys/dev/usb/usbdivar.h: netbsd-7-nhusb
	sys/dev/usb/usbhid.h: netbsd-7-nhusb
	sys/dev/usb/usbhist.h: netbsd-7-nhusb
	sys/dev/usb/usbroothub.c: netbsd-7-nhusb
	sys/dev/usb/usbroothub.h: netbsd-7-nhusb
	sys/dev/usb/usbroothub_subr.c: delete
	sys/dev/usb/usbroothub_subr.h: delete
	sys/dev/usb/uscanner.c: netbsd-7-nhusb
	sys/dev/usb/uslsa.c: netbsd-7-nhusb
	sys/dev/usb/usscanner.c: netbsd-7-nhusb
	sys/dev/usb/ustir.c: netbsd-7-nhusb
	sys/dev/usb/uthum.c: netbsd-7-nhusb
	sys/dev/usb/utoppy.c: netbsd-7-nhusb
	sys/dev/usb/uts.c: netbsd-7-nhusb
	sys/dev/usb/uvideo.c: netbsd-7-nhusb
	sys/dev/usb/uvisor.c: netbsd-7-nhusb
	sys/dev/usb/uvscom.c: netbsd-7-nhusb
	sys/dev/usb/uyap.c: netbsd-7-nhusb
	sys/dev/usb/uyap_firmware.h: netbsd-7-nhusb
	sys/dev/usb/uyurex.c: netbsd-7-nhusb
	sys/dev/usb/x1input_rdesc.h: netbsd-7-nhusb
	sys/dev/usb/xhci.c: netbsd-7-nhusb
	sys/dev/usb/xhcireg.h: netbsd-7-nhusb
	sys/dev/usb/xhcivar.h: netbsd-7-nhusb
	sys/dev/usb/xinput_rdesc.h: netbsd-7-nhusb
	sys/external/bsd/common/conf/files.linux: netbsd-7-nhusb
	sys/external/bsd/common/include/linux/err.h: netbsd-7-nhusb
	sys/external/bsd/common/include/linux/kernel.h: netbsd-7-nhusb
	sys/external/bsd/common/include/linux/workqueue.h: netbsd-7-nhusb
	sys/external/bsd/common/linux/linux_work.c: netbsd-7-nhusb
	sys/external/bsd/drm2/dist/drm/radeon/atombios_encoders.c: netbsd-7-nhusb
	sys/external/bsd/drm2/dist/drm/radeon/radeon_legacy_encoders.c: netbsd-7-nhusb
	sys/external/bsd/drm2/drm/files.drmkms: netbsd-7-nhusb
	sys/external/bsd/drm2/i915drm/files.i915drmkms: netbsd-7-nhusb
	sys/external/bsd/drm2/include/linux/err.h: delete
	sys/external/bsd/drm2/include/linux/workqueue.h: delete
	sys/external/bsd/drm2/linux/files.drmkms_linux: netbsd-7-nhusb
	sys/external/bsd/drm2/linux/linux_work.c: delete
	sys/external/bsd/dwc2/dwc2.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dwc2.h: netbsd-7-nhusb
	sys/external/bsd/dwc2/dwc2var.h: netbsd-7-nhusb
	sys/external/bsd/dwc2/dwctwo2netbsd: netbsd-7-nhusb
	sys/external/bsd/dwc2/conf/files.dwc2: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_core.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_core.h: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_coreintr.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hcd.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hcd.h: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hcdddma.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hcdintr.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hcdqueue.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hw.h: netbsd-7-nhusb
	sys/modules/drmkms_linux/Makefile: netbsd-7-nhusb
	sys/modules/i915drmkms/Makefile: netbsd-7-nhusb
	sys/rump/dev/lib/libugenhc/ugenhc.c: netbsd-7-nhusb
	sys/rump/dev/lib/libusb/Makefile: netbsd-7-nhusb
	sys/rump/dev/lib/libusb/USB.ioconf: netbsd-7-nhusb
	sys/rump/dev/lib/libusb/usb_at_ugenhc.c: delete
	sys/rump/dev/lib/libusb/opt/opt_usb.h: delete
	sys/rump/dev/lib/libusb/opt/opt_usbverbose.h: delete
	sys/sys/mbuf.h: netbsd-7-nhusb
	usr.sbin/usbdevs/usbdevs.8: netbsd-7-nhusb
	usr.sbin/usbdevs/usbdevs.c: netbsd-7-nhusb
Merge netbsd-7-nhusb:
- API / infrastructure changes to support memory management changes.
- Memory management improvements and bug fixes.
- HCDs should now be MP safe
- conversion to KERNHIST based debug
- FS/LS isoc support on ehci(4).
- conversion to kmem(9)
- Some USB 3 support - mostly from Takahiro HAYASHI (t-hash).
- interrupt transfers now get proper DMA operations
- general bug fixes
     - kern/48308
     - uhub status notification improvements
     - umass(4) probe fix (applied to HEAD already)
     - ohci(4) short transfer fix
- Change the SOFTINT level from NET to SERIAL for the USB softint handler.
  This gives the callback a chance of running when another softint handler
  at SOFTINT_NET has blocked holding a lock, e.g. softnet_lock and most of
  the network stack.
     - kern/49065 - ifconfig tun0 ... sequence locks up system / lockup:
       softnet_lock held across usb xfr
     - kern/50491 - unkillable wait in usbd_transfer while using usmsc0
       on raspberry pi 2
     - kern/51395 - USB Ethernet makes xhci hang
- Various improvements to slhci(4)
- Various improvements to dwc2(4)

Revision 1.1137.2.4: download - view: text, markup, annotated - select for diffs
Mon Mar 20 06:57:14 2017 UTC (7 years, 8 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.1137.2.3: preferred, colored; branchpoint 1.1137: preferred, colored
Changes since revision 1.1137.2.3: +18 -18 lines
Sync with HEAD

Revision 1.1152: download - view: text, markup, annotated - select for diffs
Sun Feb 26 12:41:50 2017 UTC (7 years, 9 months ago) by rin
Branches: MAIN
CVS tags: pgoyette-localcount-20170320, jdolecek-ncq-base, jdolecek-ncq
Diff to: previous 1.1151: preferred, colored
Changes since revision 1.1151: +3 -3 lines
Comment out DISKLABEL_RDB as it is too specific for general usage.
(Also add commented out that entry for GENERIC on amd64; I forgot it)

Revision 1.1151: download - view: text, markup, annotated - select for diffs
Sun Feb 26 12:21:15 2017 UTC (7 years, 9 months ago) by maya
Branches: MAIN
Diff to: previous 1.1150: preferred, colored
Changes since revision 1.1150: +2 -3 lines
Remove commented DISKLABEL_EI for strictly little endian architectures

It will never be useful.

Revision 1.1150: download - view: text, markup, annotated - select for diffs
Sun Feb 26 12:03:14 2017 UTC (7 years, 9 months ago) by rin
Branches: MAIN
Diff to: previous 1.1149: preferred, colored
Changes since revision 1.1149: +3 -2 lines
Add DKWEDGE_METHOD_RDB option, which is enabled for x86, commented out for
other platforms by default.

Revision 1.1149: download - view: text, markup, annotated - select for diffs
Sun Feb 19 07:47:00 2017 UTC (7 years, 9 months ago) by rin
Branches: MAIN
Diff to: previous 1.1148: preferred, colored
Changes since revision 1.1148: +3 -2 lines
PR kern/51208
Add DISKLABEL_EI option (and also FFS_EI if missing), commented out except for
ALL on amd64 and i386.

Revision 1.1148: download - view: text, markup, annotated - select for diffs
Sat Feb 18 14:36:32 2017 UTC (7 years, 9 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1147: preferred, colored
Changes since revision 1.1147: +3 -3 lines
There is currently an ugly mix between the PERFCTRS subsystem (MI), and
i386's own PMC interface (MD). Stop using PERFCTRS and use PMC instead.
While here remove some unused flags, which are wrong on the latest CPUs
anyway.

Revision 1.1147: download - view: text, markup, annotated - select for diffs
Fri Feb 17 12:10:40 2017 UTC (7 years, 9 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1146: preferred, colored
Changes since revision 1.1146: +2 -3 lines
Support PMCs on multi-processor systems. Still several things to fix, but
at least it works a little. Will be improved and moved into x86/ soon.

Revision 1.1118.2.12: download - view: text, markup, annotated - select for diffs
Sun Feb 5 13:40:12 2017 UTC (7 years, 10 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.11: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.11: +18 -17 lines
Sync with HEAD

Revision 1.1107.2.8.4.2: download - view: text, markup, annotated - select for diffs
Wed Jan 18 08:46:25 2017 UTC (7 years, 10 months ago) by skrll
Branches: netbsd-7-nhusb
Diff to: previous 1.1107.2.8.4.1: preferred, colored; branchpoint 1.1107.2.8: preferred, colored; next MAIN 1.1107.2.9: preferred, colored
Changes since revision 1.1107.2.8.4.1: +10 -2 lines
Sync with netbsd-5

Revision 1.1146: download - view: text, markup, annotated - select for diffs
Thu Jan 12 05:24:36 2017 UTC (7 years, 11 months ago) by ryo
Branches: MAIN
CVS tags: nick-nhusb-base-20170204, bouyer-socketcan-base
Branch point for: bouyer-socketcan
Diff to: previous 1.1145: preferred, colored
Changes since revision 1.1145: +16 -16 lines
white space police

Revision 1.1137.2.3: download - view: text, markup, annotated - select for diffs
Sat Jan 7 08:56:18 2017 UTC (7 years, 11 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.1137.2.2: preferred, colored; branchpoint 1.1137: preferred, colored
Changes since revision 1.1137.2.2: +5 -3 lines
Sync with HEAD.  (Note that most of these changes are simply $NetBSD$
tag issues.)

Revision 1.1145: download - view: text, markup, annotated - select for diffs
Tue Dec 13 20:42:18 2016 UTC (7 years, 11 months ago) by christos
Branches: MAIN
CVS tags: pgoyette-localcount-20170107
Diff to: previous 1.1144: preferred, colored
Changes since revision 1.1144: +4 -5 lines
wildcard speaker attachments, now that we can handle many of them.

Revision 1.1144: download - view: text, markup, annotated - select for diffs
Sat Dec 10 23:03:24 2016 UTC (8 years ago) by christos
Branches: MAIN
Diff to: previous 1.1143: preferred, colored
Changes since revision 1.1143: +2 -3 lines
remove VAUDIOSPEAKER for now, will be done differently.

Revision 1.1107.2.9: download - view: text, markup, annotated - select for diffs
Fri Dec 9 05:10:45 2016 UTC (8 years ago) by snj
Branches: netbsd-7
CVS tags: netbsd-7-nhusb-base-20170116, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1
Branch point for: netbsd-7-1
Diff to: previous 1.1107.2.8: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.8: +10 -2 lines
Pull up following revision(s) (requested by msaitoh in ticket #1297):
	sys/arch/amd64/conf/ALL: revision 1.37
	sys/arch/amd64/conf/GENERIC: revision 1.436
	sys/arch/amd64/conf/XEN3_DOM0: revision 1.120
	sys/arch/i386/conf/ALL: revision 1.400
	sys/arch/i386/conf/GENERIC: revision 1.1138
	sys/arch/i386/conf/XEN3_DOM0: revision 1.99
Add sdtemp(4)
--
Add ichsmb(4), spdmem(4) and sdtemp(4).

Revision 1.1143: download - view: text, markup, annotated - select for diffs
Fri Dec 9 02:24:17 2016 UTC (8 years ago) by christos
Branches: MAIN
Diff to: previous 1.1142: preferred, colored
Changes since revision 1.1142: +2 -3 lines
PCPPISPEAKER

Revision 1.1142: download - view: text, markup, annotated - select for diffs
Thu Dec 8 11:31:10 2016 UTC (8 years ago) by nat
Branches: MAIN
Diff to: previous 1.1141: preferred, colored
Changes since revision 1.1141: +6 -2 lines
Add a synthesized pc beeper and keyboard bell for platforms with an audio
device.

Revision 1.1118.2.11: download - view: text, markup, annotated - select for diffs
Mon Dec 5 10:54:53 2016 UTC (8 years ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.10: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.10: +3 -2 lines
Sync with HEAD

Revision 1.1141: download - view: text, markup, annotated - select for diffs
Sat Nov 26 13:59:45 2016 UTC (8 years ago) by christos
Branches: MAIN
CVS tags: nick-nhusb-base-20161204
Diff to: previous 1.1140: preferred, colored
Changes since revision 1.1140: +3 -2 lines
mention PAX_SEGVGUARD dependency on FILEASSOC

Revision 1.1137.2.2: download - view: text, markup, annotated - select for diffs
Fri Nov 4 14:49:01 2016 UTC (8 years, 1 month ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.1137.2.1: preferred, colored; branchpoint 1.1137: preferred, colored
Changes since revision 1.1137.2.1: +5 -2 lines
Sync with HEAD

Revision 1.1118.2.10: download - view: text, markup, annotated - select for diffs
Wed Oct 5 20:55:28 2016 UTC (8 years, 2 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.9: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.9: +15 -4 lines
Sync with HEAD

Revision 1.1140: download - view: text, markup, annotated - select for diffs
Sat Sep 17 18:37:46 2016 UTC (8 years, 2 months ago) by jdolecek
Branches: MAIN
CVS tags: pgoyette-localcount-20161104, nick-nhusb-base-20161004
Diff to: previous 1.1139: preferred, colored
Changes since revision 1.1139: +5 -2 lines
add nvme(4)

Revision 1.1107.2.8.4.1: download - view: text, markup, annotated - select for diffs
Tue Sep 6 20:33:06 2016 UTC (8 years, 3 months ago) by skrll
Branches: netbsd-7-nhusb
Diff to: previous 1.1107.2.8: preferred, colored
Changes since revision 1.1107.2.8: +4 -5 lines
First pass at netbsd-7 updated with USB code from HEAD

Revision 1.1139: download - view: text, markup, annotated - select for diffs
Sun Aug 7 10:44:05 2016 UTC (8 years, 4 months ago) by christos
Branches: MAIN
CVS tags: localcount-20160914
Diff to: previous 1.1138: preferred, colored
Changes since revision 1.1138: +4 -4 lines
rename ifmpls to mpls, so we don't have if_ifmpls...

Revision 1.1137.2.1: download - view: text, markup, annotated - select for diffs
Sat Aug 6 00:19:04 2016 UTC (8 years, 4 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.1137: preferred, colored
Changes since revision 1.1137: +10 -2 lines
Sync with HEAD

Revision 1.1138: download - view: text, markup, annotated - select for diffs
Wed Jul 27 07:04:56 2016 UTC (8 years, 4 months ago) by msaitoh
Branches: MAIN
CVS tags: pgoyette-localcount-20160806
Diff to: previous 1.1137: preferred, colored
Changes since revision 1.1137: +10 -2 lines
Add sdtemp(4)

Revision 1.1118.2.9: download - view: text, markup, annotated - select for diffs
Sat Jul 9 20:24:52 2016 UTC (8 years, 5 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.8: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.8: +3 -2 lines
Sync with HEAD

Revision 1.1137: download - view: text, markup, annotated - select for diffs
Tue Jun 21 11:37:25 2016 UTC (8 years, 5 months ago) by nonaka
Branches: MAIN
CVS tags: pgoyette-localcount-base, pgoyette-localcount-20160726, nick-nhusb-base-20160907
Branch point for: pgoyette-localcount
Diff to: previous 1.1136: preferred, colored
Changes since revision 1.1136: +3 -2 lines
add sdhc(4) at acpi to i386 and amd64 GENERIC kernel config.

Revision 1.1118.2.8: download - view: text, markup, annotated - select for diffs
Sun May 29 08:44:17 2016 UTC (8 years, 6 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.7: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.7: +7 -4 lines
Sync with HEAD

Revision 1.1136: download - view: text, markup, annotated - select for diffs
Fri May 20 01:37:47 2016 UTC (8 years, 6 months ago) by christos
Branches: MAIN
CVS tags: nick-nhusb-base-20160529
Diff to: previous 1.1135: preferred, colored
Changes since revision 1.1135: +7 -4 lines
Turn on PaX ASLR/MPROTECT

Revision 1.1135: download - view: text, markup, annotated - select for diffs
Sat Apr 23 10:15:29 2016 UTC (8 years, 7 months ago) by skrll
Branches: MAIN
Diff to: previous 1.1134: preferred, colored
Changes since revision 1.1134: +4 -4 lines
Merge nick-nhusb

- API / infrastructure changes to support memory management changes.
- Memory management improvements and bug fixes.
- HCDs should now be MP safe
- conversion to KERNHIST based debug
- FS/LS isoc support on ehci(4).
- conversion to kmem(9)
- Some USB 3 support - mostly from Takahiro HAYASHI (t-hash).
- interrupt transfers now get proper DMA operations
- general bug fixes
    - kern/48308
    - uhub status notification improvements
    - umass(4) probe fix (applied to HEAD already)
    - ohci(4) short transfer fix

Revision 1.1118.2.7: download - view: text, markup, annotated - select for diffs
Fri Apr 22 15:44:10 2016 UTC (8 years, 7 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.6: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.6: +5 -5 lines
Sync with HEAD

Revision 1.1134: download - view: text, markup, annotated - select for diffs
Wed Apr 13 15:26:27 2016 UTC (8 years, 7 months ago) by riastradh
Branches: MAIN
CVS tags: nick-nhusb-base-20160422
Diff to: previous 1.1133: preferred, colored
Changes since revision 1.1133: +4 -4 lines
Enable nouveau by default again in x86 GENERIC.

Revision 1.1133: download - view: text, markup, annotated - select for diffs
Sat Mar 19 23:21:02 2016 UTC (8 years, 8 months ago) by gdt
Branches: MAIN
Diff to: previous 1.1132: preferred, colored
Changes since revision 1.1132: +3 -3 lines
Disable uscanner in all kernel configs

As discussed on current-users@, SANE uses ugen via libusb and not
uscanner, so users are not well served by having uscanner.  Consensus
is that addressing how to adjust permissions for scanners should not
block restoring basic functionionality.

(Compile-tested only, but there are multiple reports of this being the
right approach.)

Revision 1.1118.2.6: download - view: text, markup, annotated - select for diffs
Sat Mar 19 11:30:00 2016 UTC (8 years, 8 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.5: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.5: +7 -3 lines
Sync with HEAD

Revision 1.1132: download - view: text, markup, annotated - select for diffs
Sat Mar 5 17:08:48 2016 UTC (8 years, 9 months ago) by riastradh
Branches: MAIN
CVS tags: nick-nhusb-base-20160319
Diff to: previous 1.1131: preferred, colored
Changes since revision 1.1131: +4 -4 lines
Revert to disabling nouveau by default in x86 GENERIC.

Haven't had time to debug the issues that seem to affect pretty much
everyone.  Maybe soon!

Revision 1.1131: download - view: text, markup, annotated - select for diffs
Sat Feb 13 19:53:23 2016 UTC (8 years, 9 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1130: preferred, colored
Changes since revision 1.1130: +4 -4 lines
Add nouveau to x86 GENERIC kernels.

Revision 1.1130: download - view: text, markup, annotated - select for diffs
Fri Jan 22 21:56:56 2016 UTC (8 years, 10 months ago) by riz
Branches: MAIN
Diff to: previous 1.1129: preferred, colored
Changes since revision 1.1129: +3 -3 lines
Enable KDTRACE_HOOKS on i386 and amd64 GENERIC.

Revision 1.1129: download - view: text, markup, annotated - select for diffs
Tue Jan 5 11:33:18 2016 UTC (8 years, 11 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.1128: preferred, colored
Changes since revision 1.1128: +6 -2 lines
Add ismt(4).

Revision 1.1118.2.5: download - view: text, markup, annotated - select for diffs
Sun Dec 27 12:09:36 2015 UTC (8 years, 11 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.4: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.4: +2 -3 lines
Sync with HEAD (as of 26th Dec)

Revision 1.1128: download - view: text, markup, annotated - select for diffs
Sat Sep 26 11:16:12 2015 UTC (9 years, 2 months ago) by maxv
Branches: MAIN
CVS tags: nick-nhusb-base-20151226
Diff to: previous 1.1127: preferred, colored
Changes since revision 1.1127: +2 -3 lines
Remove KMEMSTATS. Normally it's ok now.

Revision 1.1118.2.4: download - view: text, markup, annotated - select for diffs
Tue Sep 22 12:05:44 2015 UTC (9 years, 2 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.3: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.3: +4 -2 lines
Sync with HEAD

Revision 1.1127: download - view: text, markup, annotated - select for diffs
Mon Sep 21 12:32:06 2015 UTC (9 years, 2 months ago) by nonaka
Branches: MAIN
CVS tags: nick-nhusb-base-20150921
Diff to: previous 1.1126: preferred, colored
Changes since revision 1.1126: +3 -2 lines
PR/50261: Added newer Toshiba hotkeys support.

Revision 1.1118.2.3: download - view: text, markup, annotated - select for diffs
Mon Sep 21 07:14:16 2015 UTC (9 years, 2 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.2: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.2: +4 -4 lines
Enable xhci(4)

Revision 1.1126: download - view: text, markup, annotated - select for diffs
Thu Aug 27 14:04:07 2015 UTC (9 years, 3 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.1125: preferred, colored
Changes since revision 1.1125: +3 -2 lines
Added rtwn(4) for Realtek RTL8188CE/RTL8192CE PCIe 802.11b/g/n wireless network
devices.  Ported from OpenBSD.

Revision 1.1118.2.2: download - view: text, markup, annotated - select for diffs
Sat Jun 6 14:40:00 2015 UTC (9 years, 6 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.1: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.1: +9 -4 lines
Sync with HEAD

Revision 1.1107.2.8: download - view: text, markup, annotated - select for diffs
Fri Jun 5 16:52:39 2015 UTC (9 years, 6 months ago) by snj
Branches: netbsd-7
CVS tags: netbsd-7-nhusb-base, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE
Branch point for: netbsd-7-nhusb, netbsd-7-0
Diff to: previous 1.1107.2.7: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.7: +3 -3 lines
Pull up following revision(s) (requested by maxv in ticket #814):
	sys/arch/i386/conf/GENERIC: revision 1.1125
	sys/arch/i386/conf/XEN3_DOM0: revision 1.95
	sys/arch/i386/conf/XEN3_DOMU: revision 1.67
Disable COMPAT_FREEBSD. The implementation is poor, not well tested and
almost irrelevant. People who need it (for tw_cli for example) can still
recompile their kernels with this option.
Discussed on tech-kern@

Revision 1.1125: download - view: text, markup, annotated - select for diffs
Sat May 23 18:13:31 2015 UTC (9 years, 6 months ago) by maxv
Branches: MAIN
CVS tags: nick-nhusb-base-20150606
Diff to: previous 1.1124: preferred, colored
Changes since revision 1.1124: +3 -3 lines
Disable COMPAT_FREEBSD. The implementation is poor, not well tested and
almost irrelevant. People who need it (for tw_cli for example) can still
recompile their kernels with this option.

Discussed on tech-kern@

Revision 1.1107.2.7: download - view: text, markup, annotated - select for diffs
Fri May 15 03:44:18 2015 UTC (9 years, 6 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.6: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.6: +3 -2 lines
Pull up following revision(s) (requested by jnemeth in ticket #762):
	share/man/man4/options.4: revision 1.442
	sys/arch/amd64/conf/ALL: revision 1.18
	sys/arch/amd64/conf/GENERIC: revision 1.396
	sys/arch/dreamcast/conf/GENERIC: revision 1.119
	sys/arch/epoc32/conf/GENERIC: revision 1.6
	sys/arch/evbarm/conf/BCM5301X: revision 1.24
	sys/arch/evbarm/conf/BCM56340: revision 1.9
	sys/arch/evbarm/conf/IMX23_OLINUXINO: revision 1.9
	sys/arch/evbarm/conf/std.beagle: revision 1.13
	sys/arch/evbarm/conf/std.kobo: revision 1.2
	sys/arch/evbarm/conf/std.netwalker: revision 1.10
	sys/arch/evbppc/conf/P2020DS: revision 1.25
	sys/arch/evbppc/conf/RB800: revision 1.30
	sys/arch/evbppc/conf/TWRP1025: revision 1.18
	sys/arch/hp300/conf/GENERIC: revision 1.187
	sys/arch/hpcsh/conf/GENERIC: revision 1.104
	sys/arch/i386/conf/GENERIC: revision 1.1111
	sys/arch/i386/conf/MONOLITHIC: revision 1.17
	sys/arch/landisk/conf/GENERIC: revision 1.43
	sys/arch/luna68k/conf/GENERIC: revision 1.117
	sys/arch/macppc/conf/GENERIC: revision 1.316
	sys/arch/macppc/conf/GENERIC_601: revision 1.5
	sys/arch/mmeye/conf/MMEYE_WLF: revision 1.16
	sys/arch/news68k/conf/GENERIC: revision 1.123
	sys/arch/sandpoint/conf/GENERIC: revision 1.85
	sys/arch/shark/conf/GENERIC: revision 1.119
	sys/arch/sparc/conf/GENERIC: revision 1.246
	sys/arch/sparc64/conf/GENERIC: revision 1.174
	sys/arch/sun3/conf/GENERIC3X: revision 1.125
	sys/arch/sun3/conf/GENERIC: revision 1.169
	sys/arch/x68k/conf/GENERIC: revision 1.177
	sys/arch/zaurus/conf/GENERIC: revision 1.62
	sys/conf/files: revision 1.1099
	sys/kern/kern_module.c: revisions 1.98, 1.99
Create an "options MODULAR_DEFAULT_AUTOLOAD" config option and add
it to all kernel configs that contain "options MODULAR".  This
option turns on module autoloading by default (which is the current
default).  This allows people who don't want module autoloading on
by default to disable it by simply removing/commentting this line.
--
fix typo. (s/MODULE_DEFAULT_AUTOLOAD/MODULAR_DEFAULT_AUTOLOAD/)

Revision 1.1124: download - view: text, markup, annotated - select for diffs
Mon May 4 07:08:10 2015 UTC (9 years, 7 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.1123: preferred, colored
Changes since revision 1.1123: +3 -3 lines
One more typo.

Message to self: when making multi-architecture changes, build on more
than one arch.

Revision 1.1123: download - view: text, markup, annotated - select for diffs
Sun May 3 02:52:50 2015 UTC (9 years, 7 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.1122: preferred, colored
Changes since revision 1.1122: +4 -3 lines
Update to include the tco driver (it was previously included as part of
ichlpcib).

Revision 1.1122: download - view: text, markup, annotated - select for diffs
Wed Apr 29 17:43:06 2015 UTC (9 years, 7 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1121: preferred, colored
Changes since revision 1.1121: +6 -2 lines
Add commented viadrmums to i386/GENERIC.

Revision 1.1118.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 6 15:17:57 2015 UTC (9 years, 8 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118: preferred, colored
Changes since revision 1.1118: +8 -6 lines
Sync with HEAD

Revision 1.1107.2.6: download - view: text, markup, annotated - select for diffs
Wed Mar 18 03:57:15 2015 UTC (9 years, 8 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.5: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.5: +20 -11 lines
Apply patch (requested by christos in ticket #542):
- Enable intel and radeon DRM/KMS drivers in GENERIC
- Disable all of the old DRM drivers in GENERIC
- Remove the separate DRMKMS kernel

Revision 1.1121: download - view: text, markup, annotated - select for diffs
Wed Mar 18 02:05:05 2015 UTC (9 years, 8 months ago) by snj
Branches: MAIN
CVS tags: nick-nhusb-base-20150406
Diff to: previous 1.1120: preferred, colored
Changes since revision 1.1120: +3 -3 lines
fix commented out nouveaufb

Revision 1.1107.2.5: download - view: text, markup, annotated - select for diffs
Mon Mar 9 09:06:04 2015 UTC (9 years, 9 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.4: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.4: +6 -5 lines
Pull up following revision(s) (requested by mrg in ticket #578):
	distrib/notes/i386/contents: revision 1.28
	etc/etc.i386/Makefile.inc: revision 1.68
	sys/arch/i386/conf/GENERIC: revision 1.1120
	sys/arch/i386/conf/LEGACY: revision 1.1
remove vga@isa and pcdisplay@isa from i386 GENERIC, and create a new
LEGACY kernel that includes them instead.  now radeon@pci is able to
properly claim wsdisplay0 on i386 systems, and radeondrmkms has a good
chance of working.
this "fixes" PR#49290.

Revision 1.1120: download - view: text, markup, annotated - select for diffs
Sat Mar 7 07:28:37 2015 UTC (9 years, 9 months ago) by mrg
Branches: MAIN
Diff to: previous 1.1119: preferred, colored
Changes since revision 1.1119: +6 -5 lines
remove vga@isa and pcdisplay@isa from i386 GENERIC, and create a new
LEGACY kernel that includes them instead.  now radeon@pci is able to
properly claim wsdisplay0 on i386 systems, and radeondrmkms has a good
chance of working.

this "fixes" PR#49290.

Revision 1.1119: download - view: text, markup, annotated - select for diffs
Fri Feb 13 18:57:47 2015 UTC (9 years, 9 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.1118: preferred, colored
Changes since revision 1.1118: +3 -2 lines
iwm(4) works now, but 2.4GHz only.

> iwm0 at pci2 dev 0 function 0: Intel Dual Band Wireless AC 3160 (rev. 0x83)
> iwm0: interrupting at ioapic0 pin 18
> iwm0: hw rev: 0x160, fw ver 25.228 (API ver 9), address XX:XX:XX:XX:XX:XX
> iwm0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
> iwm0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps

Revision 1.1107.2.4: download - view: text, markup, annotated - select for diffs
Tue Jan 20 20:40:50 2015 UTC (9 years, 10 months ago) by martin
Branches: netbsd-7
Diff to: previous 1.1107.2.3: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.3: +3 -3 lines
Change the following, requested by snj in ticket #438:

sys/arch/i386/conf/GENERIC	patch
sys/arch/amd64/conf/GENERIC 	patch

Remove the i915drm driver since the version we use doesn't support UMS
anymore, so X will fail to start. Without it, at least the vesa driver
will work.

Revision 1.1107.2.3: download - view: text, markup, annotated - select for diffs
Tue Nov 18 19:05:30 2014 UTC (10 years ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.2: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.2: +2 -4 lines
Pull up following revision(s) (requested by manu in ticket #251):
	sys/arch/acorn26/conf/GENERIC: revision 1.81
	sys/arch/acorn32/conf/GENERIC: revision 1.116
	sys/arch/alpha/conf/GENERIC: revision 1.362
	sys/arch/amd64/conf/ALL: revision 1.23
	sys/arch/amd64/conf/GENERIC: revision 1.404
	sys/arch/amd64/conf/XEN3_DOM0: revision 1.112
	sys/arch/amd64/conf/XEN3_DOMU: revision 1.60
	sys/arch/amiga/conf/GENERIC.in: revision 1.129
	sys/arch/amiga/conf/GENERIC: revision 1.311
	sys/arch/amigappc/conf/GENERIC: revision 1.24
	sys/arch/arc/conf/GENERIC: revision 1.184
	sys/arch/bebox/conf/GENERIC: revision 1.145
	sys/arch/cats/conf/GENERIC: revision 1.155
	sys/arch/cesfic/conf/GENERIC: revision 1.65
	sys/arch/cobalt/conf/GENERIC: revision 1.147
	sys/arch/dreamcast/conf/GENERIC: revision 1.121
	sys/arch/emips/conf/GENERIC: revision 1.15
	sys/arch/epoc32/conf/GENERIC: revision 1.8
	sys/arch/ews4800mips/conf/GENERIC: revision 1.51
	sys/arch/hp300/conf/GENERIC: revision 1.190
	sys/arch/hpcmips/conf/GENERIC: revision 1.229
	sys/arch/hpcsh/conf/GENERIC: revision 1.106
	sys/arch/hppa/conf/GENERIC: revision 1.6
	sys/arch/i386/conf/ALL: revision 1.389
	sys/arch/i386/conf/GENERIC: revision 1.1118
	sys/arch/i386/conf/XEN3_DOM0: revision 1.93
	sys/arch/i386/conf/XEN3_DOMU: revision 1.65
	sys/arch/ibmnws/conf/GENERIC: revision 1.46
	sys/arch/iyonix/conf/GENERIC: revision 1.88
	sys/arch/landisk/conf/GENERIC: revision 1.45
	sys/arch/luna68k/conf/GENERIC: revision 1.119
	sys/arch/mac68k/conf/GENERIC: revision 1.220
	sys/arch/macppc/conf/GENERIC: revision 1.320
	sys/arch/macppc/conf/MAMBO: revision 1.24
	sys/arch/macppc/conf/POWERMAC_G5: revision 1.25
	sys/arch/mipsco/conf/GENERIC: revision 1.88
	sys/arch/mmeye/conf/GENERIC: revision 1.120
	sys/arch/mvme68k/conf/GENERIC: revision 1.94
	sys/arch/mvmeppc/conf/GENERIC: revision 1.24
	sys/arch/netwinder/conf/GENERIC: revision 1.126
	sys/arch/news68k/conf/GENERIC: revision 1.125
	sys/arch/newsmips/conf/GENERIC: revision 1.129
	sys/arch/next68k/conf/GENERIC: revision 1.139
	sys/arch/ofppc/conf/GENERIC: revision 1.157
	sys/arch/pmax/conf/GENERIC64: revision 1.21
	sys/arch/pmax/conf/GENERIC: revision 1.185
	sys/arch/prep/conf/GENERIC: revision 1.174
	sys/arch/rs6000/conf/GENERIC: revision 1.33
	sys/arch/sandpoint/conf/GENERIC: revision 1.88
	sys/arch/sbmips/conf/GENERIC: revision 1.101
	sys/arch/sgimips/conf/GENERIC32_IP12: revision 1.28
	sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.104
	sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.106
	sys/arch/shark/conf/GENERIC: revision 1.121
	sys/arch/sparc/conf/GENERIC: revision 1.248
	sys/arch/sparc/conf/TADPOLE3GX: revision 1.65
	sys/arch/sparc64/conf/GENERIC: revision 1.177
	sys/arch/sparc64/conf/NONPLUS64: revision 1.44
	sys/arch/sun2/conf/GENERIC: revision 1.94
	sys/arch/sun3/conf/GENERIC: revision 1.171
	sys/arch/vax/conf/GENERIC: revision 1.193
	sys/arch/vax/conf/VAX780: revision 1.19
	sys/arch/x68k/conf/GENERIC: revision 1.179
	sys/arch/zaurus/conf/GENERIC: revision 1.65
	sys/ufs/files.ufs: revision 1.38
Remove unused extended attributes kernel options

As Masao Uebayashi pointed to me, UFS_EXTATTR_AUTOSTART, LFS_EXTATTR_AUTOSTART
and UFS_EXTATTR_AUTOCREATE are not used anywhere in the code. Remove them
as they have been obsolete for a long time:
UFS_EXTATTR_AUTOSTART was replaced by mount -o extattr
LFS_EXTATTR_AUTOSTART was created to match obsolete UFS_EXTATTR_AUTOSTART
UFS_EXTATTR_AUTOCREATE was replaced by sysctl vfs.ffs.extattr_autocreate

Revision 1.1118: download - view: text, markup, annotated - select for diffs
Sun Nov 16 16:01:41 2014 UTC (10 years ago) by manu
Branches: MAIN
CVS tags: nick-nhusb-base
Branch point for: nick-nhusb
Diff to: previous 1.1117: preferred, colored
Changes since revision 1.1117: +2 -4 lines
Remove unused extended attributes kernel options

As Masao Uebayashi pointed to me, UFS_EXTATTR_AUTOSTART, LFS_EXTATTR_AUTOSTART
and UFS_EXTATTR_AUTOCREATE are not used anywhere in the code. Remove them
as they have been obsolete for a long time:
UFS_EXTATTR_AUTOSTART was replaced by mount -o extattr
LFS_EXTATTR_AUTOSTART was created to match obsolete UFS_EXTATTR_AUTOSTART
UFS_EXTATTR_AUTOCREATE was replaced by sysctl vfs.ffs.extattr_autocreate

Revision 1.1107.2.2: download - view: text, markup, annotated - select for diffs
Fri Nov 14 15:16:17 2014 UTC (10 years ago) by martin
Branches: netbsd-7
Diff to: previous 1.1107.2.1: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.1: +5 -2 lines
Pull up following revision(s) (requested by manu in ticket #232):
	sys/arch/next68k/conf/GENERIC: revision 1.138
	sys/arch/cobalt/conf/GENERIC: revision 1.146
	sys/arch/mvme68k/conf/GENERIC: revision 1.93
	sys/arch/vax/conf/VAX780: revision 1.18
	sys/arch/newsmips/conf/GENERIC: revision 1.128
	sys/arch/luna68k/conf/GENERIC: revision 1.118
	sys/arch/sbmips/conf/GENERIC: revision 1.100
	sys/arch/pmax/conf/GENERIC: revision 1.184
	sys/arch/alpha/conf/GENERIC: revision 1.361
	sys/arch/sparc64/conf/GENERIC: revision 1.176
	sys/arch/sun3/conf/GENERIC: revision 1.170
	sys/arch/shark/conf/GENERIC: revision 1.120
	sys/arch/landisk/conf/GENERIC: revision 1.44
	sys/arch/bebox/conf/GENERIC: revision 1.144
	sys/arch/sparc64/conf/NONPLUS64: revision 1.43
	sys/arch/sandpoint/conf/GENERIC: revision 1.87
	sys/arch/emips/conf/GENERIC: revision 1.14
	sys/arch/amd64/conf/XEN3_DOM0: revision 1.111
	sys/arch/dreamcast/conf/GENERIC: revision 1.120
	sys/arch/cesfic/conf/GENERIC: revision 1.64
	sys/arch/mmeye/conf/GENERIC: revision 1.119
	sys/arch/epoc32/conf/GENERIC: revision 1.7
	sys/arch/x68k/conf/GENERIC: revision 1.178
	sys/arch/iyonix/conf/GENERIC: revision 1.87
	sys/arch/sun2/conf/GENERIC: revision 1.93
	sys/arch/ews4800mips/conf/GENERIC: revision 1.50
	sys/arch/amd64/conf/XEN3_DOMU: revision 1.59
	sys/arch/acorn26/conf/GENERIC: revision 1.80
	sys/arch/acorn32/conf/GENERIC: revision 1.115
	sys/arch/macppc/conf/POWERMAC_G5: revision 1.24
	sys/arch/i386/conf/GENERIC: revision 1.1117
	sys/arch/arc/conf/GENERIC: revision 1.183
	sys/arch/cats/conf/GENERIC: revision 1.154
	sys/arch/amiga/conf/GENERIC.in: revision 1.128
	sys/arch/zaurus/conf/GENERIC: revision 1.64
	sys/arch/netwinder/conf/GENERIC: revision 1.125
	sys/arch/hppa/conf/GENERIC: revision 1.5
	sys/arch/mvmeppc/conf/GENERIC: revision 1.23
	sys/arch/macppc/conf/GENERIC: revision 1.319
	sys/arch/amiga/conf/GENERIC: revision 1.310
	sys/arch/pmax/conf/GENERIC64: revision 1.20
	sys/arch/macppc/conf/MAMBO: revision 1.23
	sys/arch/sgimips/conf/GENERIC32_IP12: revision 1.27
	sys/arch/amigappc/conf/GENERIC: revision 1.23
	sys/arch/amd64/conf/GENERIC: revision 1.403
	sys/arch/ofppc/conf/GENERIC: revision 1.156
	sys/arch/mac68k/conf/GENERIC: revision 1.219
	sys/arch/i386/conf/XEN3_DOMU: revision 1.64
	sys/arch/mipsco/conf/GENERIC: revision 1.87
	sys/arch/hp300/conf/GENERIC: revision 1.189
	sys/arch/vax/conf/GENERIC: revision 1.192
	sys/arch/news68k/conf/GENERIC: revision 1.124
	sys/arch/ibmnws/conf/GENERIC: revision 1.45
	sys/arch/hpcsh/conf/GENERIC: revision 1.105
	sys/arch/sparc/conf/TADPOLE3GX: revision 1.64
	sys/arch/i386/conf/XEN3_DOM0: revision 1.92
	sys/arch/sparc/conf/GENERIC: revision 1.247
	sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.105
	sys/arch/prep/conf/GENERIC: revision 1.173
	sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.103
	sys/arch/rs6000/conf/GENERIC: revision 1.32
	sys/arch/hpcmips/conf/GENERIC: revision 1.228
Support for UFS1 extended attributes in GENERIC and GENERIC-like kernels
This change just brings UFS1 extended attribute *support* in the kernel,
extended attributes are not enabled unless three conditions are met:
1) filesystem is UFS1 (newfs -O1)
2) .attribute/system and .attribute/user directories are created at fs root
3) filesystem is mounted with -o extattr
Some GENERIC kernels are obviously memory constrained, the extended
attributes options were not enabled for them, but just added commented out.
(kernel were considered memory constrained if QUOTA option was disabled)

Revision 1.1117: download - view: text, markup, annotated - select for diffs
Wed Nov 12 10:47:22 2014 UTC (10 years, 1 month ago) by manu
Branches: MAIN
Diff to: previous 1.1116: preferred, colored
Changes since revision 1.1116: +5 -2 lines
Support for UFS1 extended attributes in GENERIC and GENERIC-like kernels

This change just brings UFS1 extended attribute *support* in the kernel,
extended attributes are not enabled unless three conditions are met:
1) filesystem is UFS1 (newfs -O1)
2) .attribute/system and .attribute/user directories are created at fs root
3) filesystem is mounted with -o extattr

Some GENERIC kernels are obviously memory constrained, the extended
attributes options were not enabled for them, but just added commented out.
(kernel were considered memory constrained if QUOTA option was disabled)

Revision 1.1116: download - view: text, markup, annotated - select for diffs
Sun Nov 2 23:14:20 2014 UTC (10 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.1115: preferred, colored
Changes since revision 1.1115: +21 -12 lines
switch to DRMKMS drivers

Revision 1.1115: download - view: text, markup, annotated - select for diffs
Sat Oct 18 16:56:51 2014 UTC (10 years, 1 month ago) by uebayasi
Branches: MAIN
Diff to: previous 1.1114: preferred, colored
Changes since revision 1.1114: +3 -2 lines
Install agp_* drivers where pchb(4) is installed except INSTALL_FLOPPY.

XXX
Config around agp(4) is done in quite wrong direction.
	"pchb <- (agpbus) <- agp <- agp_*"
should be:
	"pchb <- (pcibus) <- agp_* <- (agpbus) <- agp"

Revision 1.1107.2.1: download - view: text, markup, annotated - select for diffs
Fri Oct 10 18:16:37 2014 UTC (10 years, 2 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107: preferred, colored
Changes since revision 1.1107: +3 -3 lines
Apply patch (requested by bouyer/martin in ticket #116):
Disable DIAGNOSTIC and/or DEBUG.

Revision 1.1114: download - view: text, markup, annotated - select for diffs
Fri Sep 19 17:30:03 2014 UTC (10 years, 2 months ago) by christos
Branches: MAIN
Diff to: previous 1.1113: preferred, colored
Changes since revision 1.1113: +3 -2 lines
Add HDAUDIOVERBOSE

Revision 1.1113: download - view: text, markup, annotated - select for diffs
Fri Sep 19 15:24:24 2014 UTC (10 years, 2 months ago) by christos
Branches: MAIN
Diff to: previous 1.1112: preferred, colored
Changes since revision 1.1112: +4 -4 lines
Disable BSDLABEL and MBR DKWEDGE methods again since sysinst does not work
with wedges.

Revision 1.1112: download - view: text, markup, annotated - select for diffs
Thu Sep 18 14:58:21 2014 UTC (10 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.1111: preferred, colored
Changes since revision 1.1111: +3 -2 lines
Add commented out KDTRACE_HOOKS line.

Revision 1.1111: download - view: text, markup, annotated - select for diffs
Sun Aug 24 07:59:22 2014 UTC (10 years, 3 months ago) by jnemeth
Branches: MAIN
Diff to: previous 1.1110: preferred, colored
Changes since revision 1.1110: +3 -2 lines
Create an "options MODULAR_DEFAULT_AUTOLOAD" config option and add
it to all kernel configs that contain "options MODULAR".  This
option turns on module autoloading by default (which is the current
default).  This allows people who don't want module autoloading on
by default to disable it by simply removing/commentting this line.

Revision 1.1110: download - view: text, markup, annotated - select for diffs
Sat Aug 23 20:26:58 2014 UTC (10 years, 3 months ago) by dholland
Branches: MAIN
Diff to: previous 1.1109: preferred, colored
Changes since revision 1.1109: +16 -16 lines
Systematize (and in many cases, fix) the comments on options COMPAT_NN.

There are quite a few configs that are missing some COMPAT_NN options
in ways that don't make sense; this should probably get cleaned up
too, but for the time being I've not added or removed anything.

Revision 1.1079.2.4: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:03:06 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.1079.2.3: preferred, colored
Changes since revision 1.1079.2.3: +12 -12 lines
Rebase to HEAD as of a few days ago.

Revision 1.1109: download - view: text, markup, annotated - select for diffs
Mon Aug 18 06:31:24 2014 UTC (10 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.1108: preferred, colored
Changes since revision 1.1108: +5 -6 lines
- Enable Wedge support for MBR/BSDLABEL where it was commented out.
- Add apple partition support where it was missing
- Add comments where missing

Revision 1.1108: download - view: text, markup, annotated - select for diffs
Sat Aug 16 17:56:32 2014 UTC (10 years, 3 months ago) by apb
Branches: MAIN
Diff to: previous 1.1107: preferred, colored
Changes since revision 1.1107: +3 -2 lines
Add "options COMPAT_70" to all kernel configuration files that
already had "options COMPAT_60".

Revision 1.1101.2.1: download - view: text, markup, annotated - select for diffs
Sun Aug 10 06:53:59 2014 UTC (10 years, 4 months ago) by tls
Branches: tls-earlyentropy
Diff to: previous 1.1101: preferred, colored; next MAIN 1.1102: preferred, colored
Changes since revision 1.1101: +10 -6 lines
Rebase.

Revision 1.1107: download - view: text, markup, annotated - select for diffs
Fri Jul 25 15:01:14 2014 UTC (10 years, 4 months ago) by dholland
Branches: MAIN
CVS tags: tls-maxphys-base, tls-earlyentropy-base, netbsd-7-base
Branch point for: netbsd-7
Diff to: previous 1.1106: preferred, colored
Changes since revision 1.1106: +3 -3 lines
Fix description of DIAGNOSTIC in x86 kernels.

Revision 1.1106: download - view: text, markup, annotated - select for diffs
Mon Jun 16 19:08:17 2014 UTC (10 years, 5 months ago) by dsl
Branches: MAIN
Diff to: previous 1.1105: preferred, colored
Changes since revision 1.1105: +5 -4 lines
Comment out the xhci entries.
The driver really doesn't work well enough to be generally useful.

Revision 1.1105: download - view: text, markup, annotated - select for diffs
Tue Jun 10 01:42:39 2014 UTC (10 years, 6 months ago) by hikaru
Branches: MAIN
Diff to: previous 1.1104: preferred, colored
Changes since revision 1.1104: +3 -2 lines
Add VMware VMXNET3 ethernet driver from OpenBSD, vmx(4).

Revision 1.1104: download - view: text, markup, annotated - select for diffs
Thu May 29 14:48:40 2014 UTC (10 years, 6 months ago) by christos
Branches: MAIN
Diff to: previous 1.1103: preferred, colored
Changes since revision 1.1103: +3 -3 lines
enable IPSEC

Revision 1.1055.2.6: download - view: text, markup, annotated - select for diffs
Thu May 22 11:39:51 2014 UTC (10 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1055.2.5: preferred, colored; branchpoint 1.1055: preferred, colored; next MAIN 1.1056: preferred, colored
Changes since revision 1.1055.2.5: +25 -21 lines
sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.1095.2.2: download - view: text, markup, annotated - select for diffs
Sun May 18 17:45:12 2014 UTC (10 years, 6 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.1095.2.1: preferred, colored; next MAIN 1.1096: preferred, colored
Changes since revision 1.1095.2.1: +10 -11 lines
sync with head

Revision 1.1103: download - view: text, markup, annotated - select for diffs
Mon Apr 21 16:35:38 2014 UTC (10 years, 7 months ago) by chs
Branches: MAIN
CVS tags: yamt-pagecache-base9, rmind-smpnet-nbase, rmind-smpnet-base
Diff to: previous 1.1102: preferred, colored
Changes since revision 1.1102: +3 -2 lines
add malo at pcmcia.

Revision 1.1102: download - view: text, markup, annotated - select for diffs
Tue Apr 8 19:40:57 2014 UTC (10 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.1101: preferred, colored
Changes since revision 1.1101: +3 -2 lines
add ixg

Revision 1.1101: download - view: text, markup, annotated - select for diffs
Mon Mar 24 14:15:38 2014 UTC (10 years, 8 months ago) by szptvlfn
Branches: MAIN
CVS tags: riastradh-xf86-video-intel-2-7-1-pre-2-21-15
Branch point for: tls-earlyentropy
Diff to: previous 1.1100: preferred, colored
Changes since revision 1.1100: +3 -3 lines
fix manual section numbering of sysctl.
  thanks wiz@

Revision 1.1100: download - view: text, markup, annotated - select for diffs
Wed Mar 19 15:26:42 2014 UTC (10 years, 8 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.1099: preferred, colored
Changes since revision 1.1099: +4 -2 lines
Add a driver for Realtek RTS5209/RTS5229 Card Reader.
Ported from OpenBSD.

Revision 1.1099: download - view: text, markup, annotated - select for diffs
Sun Jan 26 19:16:16 2014 UTC (10 years, 10 months ago) by dsl
Branches: MAIN
CVS tags: riastradh-drm2-base3
Diff to: previous 1.1098: preferred, colored
Changes since revision 1.1098: +2 -10 lines
Remove support for 'external' floating point units and the MS-DOS
  compatible method of handling floating point exceptions.
Make kernel support for teh fpu non-optional (486SX should still work).
Only 386 cpus support external fpu, and i386 support was removed years ago.
This means that the npx code no longer uses port 0xf0 or interupt 13.
All the "npx at isa" lines go from the configs, arch/i386/isa/npx.c
  is now mandatory for all i386 kernels.
I've renamed npxinit() to fpuinit() and npxinit_cpu() to fpuinit_cpu()
  to match the very similar amd64 functions.
The fpu of the boot cpu is now initialised by a direct call from
  cpu_configure(), this enables FP emulation for a 486SX.
  (for amd64 the cr0 values are set in locore.S and similar).
This fixes a long-standing bug in linux_setregs() - which did not
  save the fpu regsiters if they were active.
I've test booted a single cpu i386 kernel (using anita).
amd64 builds - none of teh changes should affect it.
The i386 XEN kernels build, but I'm not sure where they set cr0, and
  it might have got lost!

Revision 1.1098: download - view: text, markup, annotated - select for diffs
Sat Oct 26 09:16:20 2013 UTC (11 years, 1 month ago) by nonaka
Branches: MAIN
Diff to: previous 1.1097: preferred, colored
Changes since revision 1.1097: +3 -2 lines
Add driver for ASIX AX88178a and AX88179 Ethernet interface.
Ported from OpenBSD.

Revision 1.1097: download - view: text, markup, annotated - select for diffs
Wed Oct 23 17:26:08 2013 UTC (11 years, 1 month ago) by matt
Branches: MAIN
Diff to: previous 1.1096: preferred, colored
Changes since revision 1.1096: +4 -2 lines
Add xhci device

Revision 1.1095.2.1: download - view: text, markup, annotated - select for diffs
Wed Aug 28 23:59:17 2013 UTC (11 years, 3 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.1095: preferred, colored
Changes since revision 1.1095: +2 -3 lines
sync with head

Revision 1.1096: download - view: text, markup, annotated - select for diffs
Sun Jun 30 21:38:57 2013 UTC (11 years, 5 months ago) by rmind
Branches: MAIN
CVS tags: riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2
Diff to: previous 1.1095: preferred, colored
Changes since revision 1.1095: +2 -3 lines
G/C PFIL_HOOKS from the kernel configs.

Revision 1.1079.2.3: download - view: text, markup, annotated - select for diffs
Sun Jun 23 06:20:06 2013 UTC (11 years, 5 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.1079.2.2: preferred, colored
Changes since revision 1.1079.2.2: +17 -11 lines
resync from head

Revision 1.915.2.14: download - view: text, markup, annotated - select for diffs
Wed Jun 19 07:50:14 2013 UTC (11 years, 5 months ago) by bouyer
Branches: netbsd-5
Diff to: previous 1.915.2.13: preferred, colored; branchpoint 1.915: preferred, colored; next MAIN 1.916: preferred, colored
Changes since revision 1.915.2.13: +3 -2 lines
Pullup the following revisions via patch, requested by msaitoh in ticket #1850:
	sys/dev/pci/if_wm.c			1.201, 1.203-1.204,
						1.207-1.212, 1.215,
						1.217-1.218, 1.220-1.223,
						1.228, 1.232-245
	sys/dev/pci/if_wmreg.h			1.40-1.45, 1.47-1.48
	sys/dev/pci/if_wmvar.h			1.11-1.13
	sys/dev/pci/pcidevs			1.1074, 1.1077, 1.1117
	sys/dev/pci/pcidevs.h			regen
	sys/dev/pci/pcidevs_data.h		regen
	sys/dev/mii/igphyreg.h			1.6
	sys/dev/mii/ihphy.c			1.1-1.2
	sys/dev/mii/ihphyreg.h			1.1
	sys/dev/mii/inbmphyreg.h		1.3
	sys/dev/mii/files.mii			1.47 via patch
	sys/dev/mii/miidevs			1.97 and 1.100
	sys/dev/mii/miidevs.h			regen
	sys/dev/mii/miidevs_data.h		regen
	sys/arch/i386/conf/ALL			1.280
	sys/arch/i386/conf/GENERIC		1.1001
	sys/arch/i386/conf/INSTALL_FLOPPY	1.11
	sys/arch/i386/conf/XEN2_DOM0		patch
	sys/arch/amd64/conf/GENERIC		1.293
	sys/arch/amd64/conf/XEN3_DOM0		1.61
	share/man/man4/wm.4			1.21-1.24

Apply almost all fixes and improvements from netbsd-6 except for
the rev. 1.196's iqdrops' change.

- Add the detach code.
- Add code for WOL, ASF, IPMI and Intel AMT. WOL is disabled by default
- Add Yet another workaround for ICH8.
- 82576 is dual port, so check the FUNCID and increment the MAC address for
  the 2nd port.
- Fix the names of 82577L[MC] LAN controllers (for mobile).
- Fix CTRL_EXT_SWDPIN() and CTRL_EXT_SWDPIO() macros. The bit order of the
  SW definable pin is not 6543 but 3654!!!
- Rewrite the code to read MAC address from eeprom.
- Add 82580 support.
- 82571 quirk. Only 82571 shares port 0 of EEMNGCTL_CFGDONE.
- The document says that the TDH register must be set after
  TCL.EN is set on 82575 and newer devices.
- Fix some register names. No functional change.
- Omit U+00AE "REGISTERED SIGN" in a product name due to its non-ASCII nature.
- Stop wm(4) from needlessly resetting when you add or delete a vlan(4).
- Fix MAC address check on 8257[156] and 80003 case. Some cards have non 0xffff
  pointer but those don't use alternative MAC address in reality. So we check
  whether the broadcast bit is set or not like Intel's e1000 driver.
  Fixes PR kern/44072 reported by Jean-Yves Moulin.
- Add PCH2(and 82579) support. Fixes PR#46487
- Add yet another 82567V support.
- Add ICH10+HANKSVILL support.
- Add support Intel I350 Ethernet.
- Make vlan and all ip/ip6 checksum offload work for the I350.
- Fix compile error with  WM_DEBUG.
- Fix a bug that PHY isn't set to low-power mode on PCH and PCH2.
- Add WM_DEBUG_NVM. If WM_DEBUG_NVM is enabled, dump the FLASH ROM data.
- Skip 64bit BAR correctly.
- Fix RAL_TABSIZE for ICH8, 82576, 82580 and I350.
- Use 82580(and I350) specific PHY read/write functions. Fixes PR#47542.
- Style fix. Fix typo in comment. Fix comments. Add comments.

Revision 1.1095: download - view: text, markup, annotated - select for diffs
Mon Jun 10 07:14:01 2013 UTC (11 years, 6 months ago) by kardel
Branches: MAIN
Branch point for: rmind-smpnet
Diff to: previous 1.1094: preferred, colored
Changes since revision 1.1094: +5 -2 lines
adjust soekrisgpio driver to NetBSD

Revision 1.1094: download - view: text, markup, annotated - select for diffs
Wed Jun 5 23:08:01 2013 UTC (11 years, 6 months ago) by christos
Branches: MAIN
Diff to: previous 1.1093: preferred, colored
Changes since revision 1.1093: +2 -3 lines
remove obsolete networking options

Revision 1.1093: download - view: text, markup, annotated - select for diffs
Tue May 28 12:13:55 2013 UTC (11 years, 6 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.1092: preferred, colored
Changes since revision 1.1092: +6 -2 lines
Add udsir.

Revision 1.1092: download - view: text, markup, annotated - select for diffs
Sat Apr 27 22:21:14 2013 UTC (11 years, 7 months ago) by christos
Branches: MAIN
CVS tags: khorben-n900
Diff to: previous 1.1091: preferred, colored
Changes since revision 1.1091: +3 -3 lines
more bogus number removal

Revision 1.1091: download - view: text, markup, annotated - select for diffs
Sat Apr 27 21:43:29 2013 UTC (11 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.1090: preferred, colored
Changes since revision 1.1090: +4 -4 lines
the bogus number police

Revision 1.1090: download - view: text, markup, annotated - select for diffs
Sat Apr 27 18:19:38 2013 UTC (11 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.1089: preferred, colored
Changes since revision 1.1089: +4 -4 lines
remove confusing numeric locators where they are unused.

Revision 1.1089: download - view: text, markup, annotated - select for diffs
Sat Apr 6 16:59:59 2013 UTC (11 years, 8 months ago) by martin
Branches: MAIN
Diff to: previous 1.1088: preferred, colored
Changes since revision 1.1088: +5 -2 lines
Add athn

Revision 1.1088: download - view: text, markup, annotated - select for diffs
Sat Mar 2 02:42:15 2013 UTC (11 years, 9 months ago) by christos
Branches: MAIN
CVS tags: agc-symver-base, agc-symver
Diff to: previous 1.1087: preferred, colored
Changes since revision 1.1087: +2 -3 lines
Under FAST_IPSEC, IPSEC_ESP is mandatory; GC it.

Revision 1.1087: download - view: text, markup, annotated - select for diffs
Fri Mar 1 18:25:44 2013 UTC (11 years, 9 months ago) by joerg
Branches: MAIN
Diff to: previous 1.1086: preferred, colored
Changes since revision 1.1086: +2 -4 lines
Retire OSI network stack. OK core@

Revision 1.1079.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 25 00:28:43 2013 UTC (11 years, 9 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.1079.2.1: preferred, colored
Changes since revision 1.1079.2.1: +11 -5 lines
resync with head

Revision 1.1055.2.5: download - view: text, markup, annotated - select for diffs
Wed Jan 23 00:05:48 2013 UTC (11 years, 10 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.1055.2.4: preferred, colored; branchpoint 1.1055: preferred, colored
Changes since revision 1.1055.2.4: +7 -4 lines
sync with head

Revision 1.1055.2.4: download - view: text, markup, annotated - select for diffs
Wed Jan 16 05:32:58 2013 UTC (11 years, 10 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1055.2.3: preferred, colored; branchpoint 1.1055: preferred, colored
Changes since revision 1.1055.2.3: +6 -3 lines
sync with (a bit old) head

Revision 1.1086: download - view: text, markup, annotated - select for diffs
Tue Dec 25 10:51:03 2012 UTC (11 years, 11 months ago) by mbalmer
Branches: MAIN
CVS tags: yamt-pagecache-base8
Diff to: previous 1.1085: preferred, colored
Changes since revision 1.1085: +4 -4 lines
Whitespace fixes.

Revision 1.1085: download - view: text, markup, annotated - select for diffs
Mon Dec 17 20:38:00 2012 UTC (11 years, 11 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1084: preferred, colored
Changes since revision 1.1084: +5 -2 lines
Adding ibmcd(4), a device driver for the IBM 4810 BSP cash drawer port as
found e.g. in SurePOS 300 series point of sale terminals.  The driver
provides a gpio(4) device with three pins:  pin 0 to open drawer, pin 1
to read the status and pin 2 to read whether a cash drawer is connected or
not.

Revision 1.1084: download - view: text, markup, annotated - select for diffs
Mon Dec 10 02:03:45 2012 UTC (12 years ago) by dholland
Branches: MAIN
CVS tags: yamt-pagecache-base7
Diff to: previous 1.1083: preferred, colored
Changes since revision 1.1083: +3 -3 lines
whitespace

Revision 1.1083: download - view: text, markup, annotated - select for diffs
Wed Dec 5 16:19:46 2012 UTC (12 years ago) by christos
Branches: MAIN
Diff to: previous 1.1082: preferred, colored
Changes since revision 1.1082: +5 -2 lines
Intel Atom E600 PCI-LPC bridge, adds a watchdog + HPET support. Tested
on a Soekris net6501. (jmcneill)

Revision 1.1079.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 20 03:01:25 2012 UTC (12 years ago) by tls
Branches: tls-maxphys
Diff to: previous 1.1079: preferred, colored
Changes since revision 1.1079: +7 -6 lines
Resync to 2012-11-19 00:00:00 UTC

Revision 1.1055.2.3: download - view: text, markup, annotated - select for diffs
Tue Oct 30 17:19:47 2012 UTC (12 years, 1 month ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1055.2.2: preferred, colored; branchpoint 1.1055: preferred, colored
Changes since revision 1.1055.2.2: +17 -9 lines
sync with head

Revision 1.1082: download - view: text, markup, annotated - select for diffs
Wed Oct 17 14:48:13 2012 UTC (12 years, 1 month ago) by apb
Branches: MAIN
CVS tags: yamt-pagecache-base6
Diff to: previous 1.1081: preferred, colored
Changes since revision 1.1081: +3 -2 lines
Add "options COMPAT_60" to all kernel configuration files
that already had "options COMPAT_50".

Revision 1.1081: download - view: text, markup, annotated - select for diffs
Sun Sep 30 21:36:18 2012 UTC (12 years, 2 months ago) by dsl
Branches: MAIN
Diff to: previous 1.1080: preferred, colored
Changes since revision 1.1080: +2 -3 lines
Remove code from dev/apm/apm.c for setting global variables to parameterise
  the i386 bios apm code (now removed).
Remove the same code from the clone dev/hpc/apm/apmdev.c
Remove some not-used options from dev/apm/files.apm and the commented out
  lines in ALL and GENERIC.
Maybe the APM_V10_ONLY and APM_NO_V12 could also be shot, but they are
  further entwined in the code.

Revision 1.915.2.13: download - view: text, markup, annotated - select for diffs
Fri Sep 28 10:58:15 2012 UTC (12 years, 2 months ago) by sborrill
Branches: netbsd-5
CVS tags: netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2
Diff to: previous 1.915.2.12: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.12: +6 -2 lines
Pull up the following revisions(s) (requested by liamjfoy in ticket #1797):
	lib/libusbhid/usb_hid_usages:	revision 1.5 via patch
	share/man/man4/Makefile:	revision 1.578 via patch
	share/man/man4/uts.4:		revision 1.1
	share/man/man4/wsmouse.4:	revision 1.19 via patch
	sys/arch/amd64/conf/GENERIC:	revision 1.346-1.347 via patch
	sys/arch/i386/conf/GENERIC:	revision 1.1078 via patch
	sys/dev/usb/FILES:		revision 1.12 via patch
	sys/dev/usb/usbdevices.config:	revision 1.12 via patch
	sys/dev/usb/files.usb:		revision 1.119-1.120 via patch
	sys/dev/usb/usbhid.h:		revision 1.14 via patch
	sys/dev/usb/uts.c:		revision 1.1
	distrib/sets/lists/man/mi:	revision 1.1370 via patch

Add uts(4) driver for USB touchscreens.

Revision 1.1080: download - view: text, markup, annotated - select for diffs
Sun Sep 23 01:05:21 2012 UTC (12 years, 2 months ago) by chs
Branches: MAIN
Diff to: previous 1.1079: preferred, colored
Changes since revision 1.1079: +6 -5 lines
add vmt entry to GENERIC.
standardize commented pfsync and npf entries.

Revision 1.1079: download - view: text, markup, annotated - select for diffs
Sat Sep 1 18:17:50 2012 UTC (12 years, 3 months ago) by jakllsch
Branches: MAIN
Branch point for: tls-maxphys
Diff to: previous 1.1078: preferred, colored
Changes since revision 1.1078: +3 -3 lines
Rename RT2500USB driver to ural(4) as it was originally in OpenBSD,
as ural(4) and ral(4) do not actually share any code.

Enable ural(4) in hpcarm WZERO3 kernel too, as it will now build.

Fixes PR#43520.

Revision 1.1066.2.7: download - view: text, markup, annotated - select for diffs
Wed Aug 15 15:33:00 2012 UTC (12 years, 3 months ago) by sborrill
Branches: netbsd-6
CVS tags: netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Branch point for: netbsd-6-1, netbsd-6-0
Diff to: previous 1.1066.2.6: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.6: +3 -3 lines
Pull up the following revisions(s) (requested by martin in ticket #502):
	sys/arch/cobalt/conf/GENERIC:		patch
	sys/arch/i386/conf/GENERIC:		patch
	sys/arch/i386/conf/XEN3_DOM0:		patch
	sys/arch/i386/conf/XEN3_DOMU:		patch
	sys/arch/mvmeppc/conf/GENERIC:		patch
	sys/arch/shark/conf/GENERIC:		patch
	sys/arch/sparc64/conf/GENERIC:		patch
	sys/arch/sparc64/conf/GENERIC.DEBUG:	patch
	sys/arch/zaurus/conf/GENERIC:		patch

Switch off DIAGNOSTIC and/or DEBUG on release kernels.
Enable DIAGNOSTIC in DEBUG kernels to allow for option
being switched off in GENERIC.

Revision 1.1066.2.6: download - view: text, markup, annotated - select for diffs
Sun Aug 12 18:41:35 2012 UTC (12 years, 4 months ago) by martin
Branches: netbsd-6
Diff to: previous 1.1066.2.5: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.5: +6 -2 lines
Pull up following revision(s) (requested by sborrill in ticket #474):
	sys/arch/i386/conf/GENERIC: revision 1.1078
Add uts(4)

Revision 1.1078: download - view: text, markup, annotated - select for diffs
Fri Aug 10 11:32:32 2012 UTC (12 years, 4 months ago) by sborrill
Branches: MAIN
Diff to: previous 1.1077: preferred, colored
Changes since revision 1.1077: +6 -2 lines
Add uts(4)

Revision 1.1077: download - view: text, markup, annotated - select for diffs
Wed Aug 1 04:20:05 2012 UTC (12 years, 4 months ago) by matt
Branches: MAIN
Diff to: previous 1.1076: preferred, colored
Changes since revision 1.1076: +3 -3 lines
Enable FFS_EI (let's be more endian tolerant).

Revision 1.1076: download - view: text, markup, annotated - select for diffs
Mon Jul 30 19:40:52 2012 UTC (12 years, 4 months ago) by degroote
Branches: MAIN
Diff to: previous 1.1075: preferred, colored
Changes since revision 1.1075: +3 -2 lines
Add malo(4) entry in various kernel configuration

Revision 1.1066.2.5: download - view: text, markup, annotated - select for diffs
Fri Jun 15 08:48:46 2012 UTC (12 years, 5 months ago) by sborrill
Branches: netbsd-6
Diff to: previous 1.1066.2.4: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.4: +3 -2 lines
Pull up the following revisions(s) (requested by riz in ticket #343):
	sys/dev/usb/files.usb:		revision 1.122
	sys/dev/usb/if_urtw.c:		revision 1.1
	sys/dev/usb/if_urtwreg.h:	revision 1.1
	share/man/man4/Makefile:	revision 1.586
	share/man/man4/urtw.4:		revision 1.1
	distrib/sets/lists/man/mi:	revision 1.1393
	sys/dev/usb/usbdevs:		revision 1.617
	sys/arch/i386/conf/GENERIC:	revision 1.357
	sys/arch/amd64/conf/GENERIC:	revision 1.1075 via patch

Add urtw(4) driver for Realtek RTL8187/RTL8187B 802.11b/g USB wireless
adapter. From OpenBSD.

Revision 1.1066.2.4: download - view: text, markup, annotated - select for diffs
Thu Jun 14 09:48:46 2012 UTC (12 years, 5 months ago) by sborrill
Branches: netbsd-6
Diff to: previous 1.1066.2.3: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.3: +3 -2 lines
Pull up the following revisions(s) (requested by riz in ticket #326):
	distrib/sets/lists/base/mi:		1.989
	distrib/sets/lists/man/mi:		1.1385
	etc/mtree/NetBSD.dist.base:		1.99
	share/man/man4/Makefile:		1.583
	share/man/man4/urtwn.4:			1.1
	share/man/man4/usb.4:			1.97
	sys/arch/amd64/conf/GENERIC:		1.351
	sys/arch/i386/conf/GENERIC:		1.1068
	sys/dev/usb/files.usb:			1.121
	sys/dev/usb/if_urtwn.c:			1.1-1.4
	sys/dev/usb/if_urtwn_data.h:		1.1
	sys/dev/usb/if_urtwnreg.h:		1.1
	sys/dev/usb/if_urtwnvar.h:		1.1
	sys/dev/usb/usbdevices.config:		1.13
	sys/dev/usb/usbdevs:			1.621 via patch
	sys/dev/usb/usbdevs.h:			regen
	sys/dev/usb/usbdevs_data.h:		regen
	sys/modules/if_urtwn/Makefile:		1.1
	sys/modules/if_urtwn/if_urtwn.ioconf:	1.1

Add support for urtwn(4) wireless. Ported from OpenBSD

Revision 1.1075: download - view: text, markup, annotated - select for diffs
Thu Jun 14 04:23:49 2012 UTC (12 years, 6 months ago) by riz
Branches: MAIN
Diff to: previous 1.1074: preferred, colored
Changes since revision 1.1074: +3 -2 lines
Add urtw(4) to i386/amd64 GENERIC.

Revision 1.1066.2.3: download - view: text, markup, annotated - select for diffs
Tue Jun 12 22:07:07 2012 UTC (12 years, 6 months ago) by riz
Branches: netbsd-6
Diff to: previous 1.1066.2.2: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.2: +2 -3 lines
Remove test changes which accidentally snuck in on the netbsd-6 branch.
Oops.

Revision 1.1066.2.2: download - view: text, markup, annotated - select for diffs
Tue Jun 12 17:47:51 2012 UTC (12 years, 6 months ago) by riz
Branches: netbsd-6
Diff to: previous 1.1066.2.1: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.1: +4 -3 lines
Pull up following revision(s) (requested by abs in ticket #311):
	sys/arch/netwinder/conf/GENERIC: revision 1.112
	sys/arch/i386/conf/GENERIC: revision 1.1074
	sys/arch/atari/conf/MILAN.in: revision 1.26
	sys/arch/zaurus/conf/GENERIC: revision 1.54
	sys/arch/shark/conf/GENERIC: revision 1.101
	sys/arch/hpcmips/conf/MPC303: revision 1.60
	sys/arch/i386/conf/XEN3_DOM0: revision 1.67
	sys/arch/evbarm/conf/MPCSA_GENERIC: revision 1.29
	sys/arch/vax/conf/GENERIC: revision 1.181
	sys/arch/sparc/conf/KRUPS: revision 1.59
	sys/arch/evbarm/conf/BEAGLEBOARD: revision 1.27
	sys/arch/i386/conf/INSTALL_FLOPPY: revision 1.16
	sys/arch/prep/conf/GENERIC: revision 1.163
	sys/arch/hpcmips/conf/GENERIC: revision 1.216
	sys/arch/sparc/conf/TADPOLE3GX: revision 1.56
	sys/arch/shark/conf/INSTALL: revision 1.50
	sys/arch/next68k/conf/GENERIC: revision 1.127
	sys/arch/evbppc/conf/VIRTEX_GSRD2: revision 1.16
	sys/arch/evbppc/conf/VIRTEX_DFC: revision 1.17
	sys/arch/evbppc/conf/EXPLORA451: revision 1.48
	sys/arch/bebox/conf/INSTALL: revision 1.54
	sys/arch/next68k/conf/SLAB: revision 1.46
	sys/arch/i386/conf/GENERIC_TINY: revision 1.132
	sys/arch/bebox/conf/GENERIC: revision 1.131
	sys/arch/amd64/conf/XEN3_DOM0: revision 1.84
	sys/arch/amd64/conf/GENERIC: revision 1.356
	sys/arch/evbarm/conf/MMNET_GENERIC: revision 1.6
	share/man/man4/wscons.4: revision 1.31
	sys/arch/hpcmips/conf/TX3912: revision 1.79
	sys/arch/evbarm/conf/ARMADILLO9: revision 1.35
	sys/arch/hpcsh/conf/GENERIC: revision 1.97
	sys/arch/i386/conf/ALL: revision 1.339
	sys/arch/hpcmips/conf/TX3922: revision 1.93
	sys/arch/cats/conf/INSTALL: revision 1.82
	sys/arch/sparc64/conf/GENERIC: revision 1.151
	sys/arch/i386/conf/INSTALL_TINY: revision 1.135
	sys/arch/evbppc/conf/VIRTEX_GSRD1: revision 1.15
	sys/arch/evbarm/conf/TS7200: revision 1.49
	sys/arch/hpcmips/conf/VR41XX: revision 1.55
	sys/arch/hp700/conf/GENERIC: revision 1.115
	sys/arch/cats/conf/GENERIC: revision 1.140
Mention wsconscfg(8) needs WSDISPLAY_COMPAT_USL
If a port is going to have wscons for virtual terminals then it really make=
s
sense to enable WSDISPLAY_COMPAT_USL so the system can switch between the
virtual terminals...
Adjust the WSDISPLAY_COMPAT_USL comment to mention wsconscfg, to at least
give a hint that its not just for third party compat. No functional change.

Revision 1.1074: download - view: text, markup, annotated - select for diffs
Tue Jun 5 08:44:12 2012 UTC (12 years, 6 months ago) by abs
Branches: MAIN
Diff to: previous 1.1073: preferred, colored
Changes since revision 1.1073: +3 -3 lines
Adjust the WSDISPLAY_COMPAT_USL comment to mention wsconscfg, to at least
give a hint that its not just for third party compat. No functional change.

Revision 1.1058.2.5: download - view: text, markup, annotated - select for diffs
Sat Jun 2 11:09:00 2012 UTC (12 years, 6 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1058.2.4: preferred, colored; branchpoint 1.1058: preferred, colored; next MAIN 1.1059: preferred, colored
Changes since revision 1.1058.2.4: +3 -2 lines
sync to latest -current.

Revision 1.1073: download - view: text, markup, annotated - select for diffs
Wed May 30 14:30:34 2012 UTC (12 years, 6 months ago) by nonaka
Branches: MAIN
CVS tags: jmcneill-usbmp-base10
Diff to: previous 1.1072: preferred, colored
Changes since revision 1.1072: +3 -2 lines
Add a driver for Ralink Technology RT2700U/RT2800U/RT3000U USB IEEE
802.11a/b/g/n wireless network devices, ported from OpenBSD by FUKAUMI Naoki,
arranged by me.

Revision 1.1055.2.2: download - view: text, markup, annotated - select for diffs
Wed May 23 10:07:43 2012 UTC (12 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1055.2.1: preferred, colored; branchpoint 1.1055: preferred, colored
Changes since revision 1.1055.2.1: +4 -3 lines
sync with head.

Revision 1.1058.2.4: download - view: text, markup, annotated - select for diffs
Sun Apr 29 23:04:40 2012 UTC (12 years, 7 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1058.2.3: preferred, colored; branchpoint 1.1058: preferred, colored
Changes since revision 1.1058.2.3: +9 -5 lines
sync to latest -current.

Revision 1.1066.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 23 16:31:35 2012 UTC (12 years, 7 months ago) by riz
Branches: netbsd-6
Diff to: previous 1.1066: preferred, colored
Changes since revision 1.1066: +4 -3 lines
Pull up following revision(s) (requested by bouyer in ticket #193):
	sys/arch/i386/conf/GENERIC: revision 1.1072
	sys/dev/pci/mpii.c: revision 1.1
	sys/arch/i386/conf/XEN3_DOM0: revision 1.66
	sys/dev/pci/files.pci: revision 1.357
	share/man/man4/Makefile: revision 1.584
	distrib/sets/lists/man/mi: revision 1.1387
	share/man/man4/mpii.4: revision 1.1
	sys/arch/amd64/conf/GENERIC: revision 1.354
	sys/arch/amd64/conf/XEN3_DOM0: revision 1.83
	sys/arch/i386/conf/ALL: revision 1.337
Add mpii(4), a driver for LSI Logic Fusion-MPT Message Passing Interface II
SAS controllers. Ported from OpenBSD.

Revision 1.1072: download - view: text, markup, annotated - select for diffs
Thu Apr 19 17:50:51 2012 UTC (12 years, 7 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-pagecache-base5, jmcneill-usbmp-base9
Diff to: previous 1.1071: preferred, colored
Changes since revision 1.1071: +4 -3 lines
Add mpii(4), a driver for LSI Logic Fusion-MPT Message Passing Interface II
SAS controllers. Ported from OpenBSD.

Revision 1.1055.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 17 00:06:27 2012 UTC (12 years, 7 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1055: preferred, colored
Changes since revision 1.1055: +43 -22 lines
sync with head

Revision 1.1071: download - view: text, markup, annotated - select for diffs
Fri Apr 13 13:11:16 2012 UTC (12 years, 8 months ago) by cegger
Branches: MAIN
CVS tags: yamt-pagecache-base4
Diff to: previous 1.1070: preferred, colored
Changes since revision 1.1070: +4 -3 lines
Replace amdtempbus with amdnb_miscbus.
This allows us to have independent drivers on the same device (northbridge f3)
each coming with a certain functionality/feature.
This way we do not need to mess with amdtemp(4) to utilize other features.

Revision 1.1070: download - view: text, markup, annotated - select for diffs
Sun Apr 8 20:49:29 2012 UTC (12 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.1069: preferred, colored
Changes since revision 1.1069: +3 -2 lines
PR/46310: Ryo ONODERA: Add support for cardbus bwi(4)

Revision 1.1069: download - view: text, markup, annotated - select for diffs
Sat Apr 7 05:40:41 2012 UTC (12 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.1068: preferred, colored
Changes since revision 1.1068: +4 -3 lines
add apple autodiscovery

Revision 1.1058.2.3: download - view: text, markup, annotated - select for diffs
Thu Apr 5 21:33:15 2012 UTC (12 years, 8 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1058.2.2: preferred, colored; branchpoint 1.1058: preferred, colored
Changes since revision 1.1058.2.2: +1 -0 lines
sync to latest -current.

Revision 1.1068: download - view: text, markup, annotated - select for diffs
Sun Mar 25 00:11:16 2012 UTC (12 years, 8 months ago) by nonaka
Branches: MAIN
CVS tags: jmcneill-usbmp-base8
Diff to: previous 1.1067: preferred, colored
Changes since revision 1.1067: +3 -2 lines
Added urtwn(4), a driver for Realtek RTL8188CU/RTL8192CU USB IEEE 802.11b/g/n wireless network devices.

Revision 1.1058.2.2: download - view: text, markup, annotated - select for diffs
Sun Mar 11 01:52:22 2012 UTC (12 years, 9 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1058.2.1: preferred, colored; branchpoint 1.1058: preferred, colored
Changes since revision 1.1058.2.1: +2 -3 lines
sync to latest -current

Revision 1.1067: download - view: text, markup, annotated - select for diffs
Sat Mar 10 21:51:53 2012 UTC (12 years, 9 months ago) by joerg
Branches: MAIN
CVS tags: jmcneill-usbmp-base7
Diff to: previous 1.1066: preferred, colored
Changes since revision 1.1066: +2 -3 lines
P1003_1B_SEMAPHORE is no longer optional.

Revision 1.1058.2.1: download - view: text, markup, annotated - select for diffs
Sat Feb 18 07:32:19 2012 UTC (12 years, 9 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1058: preferred, colored
Changes since revision 1.1058: +26 -10 lines
merge to -current.

Revision 1.915.2.12: download - view: text, markup, annotated - select for diffs
Wed Jan 25 21:18:14 2012 UTC (12 years, 10 months ago) by riz
Branches: netbsd-5
Diff to: previous 1.915.2.11: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.11: +8 -2 lines
Pull up following revision(s) (requested by hannken in ticket #1715):
- Be robust against an invalid timer period value.
sys/dev/ic/hpetreg.h			Rev. 1.4
sys/dev/ic/hpet.c			Rev. 1.8

- Fix wrong definition of LAPIC_LEVEL_ASSERT / _MASK
sys/arch/x86/include/i82489reg.h	Rev. 1.11

- Add virtio driver - speed up disk and network access in virtual environments
sys/arch/i386/conf/GENERIC		Rev. 1.1055
sys/arch/i386/conf/ALL			Rev. 1.325
sys/arch/amd64/conf/GENERIC		Rev. 1.338
sys/dev/pci/files.pci			Rev. 1.350
sys/dev/pci/if_vioif.c			Rev. 0-1.2
sys/dev/pci/ld_virtio.c			Rev. 0-1.4
sys/dev/pci/viomb.c			Rev. 0-1.1
sys/dev/pci/virtio.c			Rev. 0-1.3
sys/dev/pci/virtioreg.h			Rev. 0-1.1
sys/dev/pci/virtiovar.h			Rev. 0-1.1
distrib/sets/lists/man/mi		Rev. 1.1352 and 1.1358
share/man/man4/Makefile			Rev. 1.573 and 1.575
share/man/man4/ld.4			Rev. 1.19
share/man/man4/virtio.4			Rev. 0-1.4
share/man/man4/vioif.4			Rev. 0-1.2
share/man/man4/viomb.4			Rev. 0-1.2

Allow NetBSD to run unmodified under Linux/kvm.

Revision 1.1066: download - view: text, markup, annotated - select for diffs
Sun Jan 22 06:44:29 2012 UTC (12 years, 10 months ago) by christos
Branches: MAIN
CVS tags: netbsd-6-base, jmcneill-usbmp-base6, jmcneill-usbmp-base5, jmcneill-usbmp-base4, jmcneill-usbmp-base3, jmcneill-usbmp-base2
Branch point for: netbsd-6
Diff to: previous 1.1065: preferred, colored
Changes since revision 1.1065: +9 -2 lines
add a tpm driver from bsssd.sourceforge.net

Revision 1.1065: download - view: text, markup, annotated - select for diffs
Mon Jan 16 14:43:09 2012 UTC (12 years, 10 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1064: preferred, colored
Changes since revision 1.1064: +3 -2 lines
add cir@emdtv

Revision 1.1064: download - view: text, markup, annotated - select for diffs
Sun Jan 15 15:05:06 2012 UTC (12 years, 10 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1063: preferred, colored
Changes since revision 1.1063: +11 -8 lines
add & enable digital tv capture support

Revision 1.1063: download - view: text, markup, annotated - select for diffs
Sat Jan 14 12:14:28 2012 UTC (12 years, 10 months ago) by tron
Branches: MAIN
Diff to: previous 1.1062: preferred, colored
Changes since revision 1.1062: +3 -3 lines
Use "options<SPC><TAB>CPU_UCODE" to keep the indentation if the option
is commented out.

Revision 1.1062: download - view: text, markup, annotated - select for diffs
Fri Jan 13 16:05:14 2012 UTC (12 years, 11 months ago) by cegger
Branches: MAIN
Diff to: previous 1.1061: preferred, colored
Changes since revision 1.1061: +4 -2 lines
Support CPU microcode loading via cpuctl(8).
Implemented and enabled via CPU_UCODE kernel config option
for x86 and Xen Dom0.
Tested on different AMD machines with different
CPU families.

ok wiz@ for the manpages
ok releng@
ok core@ via releng@

Revision 1.1061: download - view: text, markup, annotated - select for diffs
Sat Dec 31 00:11:21 2011 UTC (12 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.1060: preferred, colored
Changes since revision 1.1060: +5 -2 lines
add uipad

Revision 1.1060: download - view: text, markup, annotated - select for diffs
Sun Dec 18 05:49:28 2011 UTC (12 years, 11 months ago) by dholland
Branches: MAIN
Diff to: previous 1.1059: preferred, colored
Changes since revision 1.1059: +3 -3 lines
WABPL is no longer considered experimental (has not been for some time)
so update its comment in config files.

Revision 1.1059: download - view: text, markup, annotated - select for diffs
Sun Dec 18 02:31:51 2011 UTC (12 years, 11 months ago) by dholland
Branches: MAIN
Diff to: previous 1.1058: preferred, colored
Changes since revision 1.1058: +3 -3 lines
adjust English usage in comment

Revision 1.1058: download - view: text, markup, annotated - select for diffs
Tue Nov 22 21:25:19 2011 UTC (13 years ago) by tls
Branches: MAIN
CVS tags: jmcneill-usbmp-pre-base2, jmcneill-usbmp-base
Branch point for: jmcneill-usbmp
Diff to: previous 1.1057: preferred, colored
Changes since revision 1.1057: +2 -3 lines

The rnd pseudo-device is not really optional, because it is in the same
source file as the entropy-pool code itself.  Move it to std.  This
will be cleaned up more when I split the sources up as they should be.

This fixes build breaks on several ports.  Thanks to Havard Eidnes for
pointing them out.

Revision 1.1057: download - view: text, markup, annotated - select for diffs
Sun Nov 13 12:47:54 2011 UTC (13 years, 1 month ago) by mbalmer
Branches: MAIN
CVS tags: jmcneill-audiomp3-base, jmcneill-audiomp3
Diff to: previous 1.1056: preferred, colored
Changes since revision 1.1056: +5 -2 lines
Add gpiopwm(4).

Revision 1.1056: download - view: text, markup, annotated - select for diffs
Sun Nov 13 09:41:46 2011 UTC (13 years, 1 month ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1055: preferred, colored
Changes since revision 1.1055: +10 -10 lines
Enable nsclpcsio and gpio devices.

Revision 1.1055: download - view: text, markup, annotated - select for diffs
Sun Oct 30 12:12:21 2011 UTC (13 years, 1 month ago) by hannken
Branches: MAIN
CVS tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base
Branch point for: yamt-pagecache
Diff to: previous 1.1054: preferred, colored
Changes since revision 1.1054: +8 -2 lines
Import of the virtio driver written by MINOURA Makoto <minoura@netbsd.org>
with minor changes to make it compile an run on -current.  This driver
speeds up disk and network access in virtual environments like KVM.

Enabled on i386 and amd64.  Tested with a CentOS 5.7 x86_64 host.

See http://ozlabs.org/~rusty/virtio-spec/virtio.pdf for the specification.

Revision 1.1054: download - view: text, markup, annotated - select for diffs
Sun Oct 2 12:19:17 2011 UTC (13 years, 2 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1053: preferred, colored
Changes since revision 1.1053: +4 -3 lines
Document gpioiic flag in a comment.

Revision 1.1053: download - view: text, markup, annotated - select for diffs
Sun Sep 4 12:31:30 2011 UTC (13 years, 3 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1052: preferred, colored
Changes since revision 1.1052: +8 -8 lines
Disable gpio(4) which can now be built and used as modules.

Revision 1.1052: download - view: text, markup, annotated - select for diffs
Tue Aug 30 13:03:17 2011 UTC (13 years, 3 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1051: preferred, colored
Changes since revision 1.1051: +4 -7 lines
Attach gpio* at gpiobus? instead of at individual drivers.

Revision 1.1051: download - view: text, markup, annotated - select for diffs
Tue Aug 30 12:13:25 2011 UTC (13 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1050: preferred, colored
Changes since revision 1.1050: +4 -4 lines
revert previous

Revision 1.1050: download - view: text, markup, annotated - select for diffs
Tue Aug 30 08:01:13 2011 UTC (13 years, 3 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1049: preferred, colored
Changes since revision 1.1049: +4 -4 lines
Comment out the legacy bktr(4) from the GENERICs.

Revision 1.925.2.7: download - view: text, markup, annotated - select for diffs
Sat Aug 27 15:37:23 2011 UTC (13 years, 3 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.6: preferred, colored; next MAIN 1.926: preferred, colored
Changes since revision 1.925.2.6: +105 -94 lines
Sync with HEAD. Most notably: uvm/pmap work done by rmind@, and MP Xen
work of cherry@.

No regression observed on suspend/restore.

Revision 1.1049: download - view: text, markup, annotated - select for diffs
Sat Aug 27 09:28:55 2011 UTC (13 years, 3 months ago) by mbalmer
Branches: MAIN
CVS tags: jym-xensuspend-nbase, jym-xensuspend-base
Diff to: previous 1.1048: preferred, colored
Changes since revision 1.1048: +11 -7 lines
Enable some gpio devices.

Revision 1.1048: download - view: text, markup, annotated - select for diffs
Thu Aug 18 20:55:20 2011 UTC (13 years, 3 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1047: preferred, colored
Changes since revision 1.1047: +3 -3 lines
Attach amdtemp(4) at pchb(4) instead of in place of pchb(4).

Should fix PR#45268.

Revision 1.1047: download - view: text, markup, annotated - select for diffs
Thu Aug 11 07:38:56 2011 UTC (13 years, 4 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1046: preferred, colored
Changes since revision 1.1046: +4 -2 lines
Add entries for pwdog(4).

Revision 1.1046: download - view: text, markup, annotated - select for diffs
Tue Aug 9 02:52:29 2011 UTC (13 years, 4 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1045: preferred, colored
Changes since revision 1.1045: +2 -5 lines
remove commented out entries for emdtv, auvitek, and dtv

Revision 1.1045: download - view: text, markup, annotated - select for diffs
Mon Aug 8 18:58:18 2011 UTC (13 years, 4 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1044: preferred, colored
Changes since revision 1.1044: +6 -6 lines
remove dtv (available as a module)

Revision 1.1044: download - view: text, markup, annotated - select for diffs
Mon Aug 8 17:02:31 2011 UTC (13 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1043: preferred, colored
Changes since revision 1.1043: +3 -2 lines
We have PUFFS, we need putter.

Revision 1.1043: download - view: text, markup, annotated - select for diffs
Mon Aug 8 16:27:07 2011 UTC (13 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1042: preferred, colored
Changes since revision 1.1042: +35 -44 lines
Finish reverting modularization of i386 GENERIC.

Revision 1.1042: download - view: text, markup, annotated - select for diffs
Sun Aug 7 10:04:41 2011 UTC (13 years, 4 months ago) by tron
Branches: MAIN
Diff to: previous 1.1041: preferred, colored
Changes since revision 1.1041: +4 -2 lines
Add commented out entries for V7FS and V7FS Endian Independent support.

Revision 1.1041: download - view: text, markup, annotated - select for diffs
Sat Jul 23 21:12:58 2011 UTC (13 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1040: preferred, colored
Changes since revision 1.1040: +3 -2 lines
Enable or note aubtfwl(4) wherever ubt(4) is enabled or noted.

Revision 1.1040: download - view: text, markup, annotated - select for diffs
Wed Jul 20 20:29:54 2011 UTC (13 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1039: preferred, colored
Changes since revision 1.1039: +7 -3 lines
Add cxdtv(4) and urndis(4).  Also, two slight cosmetic changes.

Revision 1.1039: download - view: text, markup, annotated - select for diffs
Tue Jul 19 21:02:25 2011 UTC (13 years, 4 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1038: preferred, colored
Changes since revision 1.1038: +6 -2 lines
add irmce

Revision 1.1038: download - view: text, markup, annotated - select for diffs
Wed Jul 13 07:52:48 2011 UTC (13 years, 5 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1037: preferred, colored
Changes since revision 1.1037: +3 -2 lines
A driver for HP 3D DriverGuard; a LIS3LV02DL-based accelerometer. Tested on
HP NC4400. Like aps(4), this is commented out in the GENERIC kernels.

Revision 1.1037: download - view: text, markup, annotated - select for diffs
Mon Jul 11 18:31:10 2011 UTC (13 years, 5 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1036: preferred, colored
Changes since revision 1.1036: +3 -2 lines
add emdtv at uhub

Revision 1.1036: download - view: text, markup, annotated - select for diffs
Sat Jul 9 15:02:43 2011 UTC (13 years, 5 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1035: preferred, colored
Changes since revision 1.1035: +4 -3 lines
add dtv at dtvbus

Revision 1.1035: download - view: text, markup, annotated - select for diffs
Sun Jul 3 10:40:16 2011 UTC (13 years, 5 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.1034: preferred, colored
Changes since revision 1.1034: +4 -3 lines
Add back DIAGNOSTIC option to x86 GENERIC kernels, as discussed on tech-kern.
This will have to be commented out on release branches.

Revision 1.1032.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 23 14:19:13 2011 UTC (13 years, 5 months ago) by cherry
Branches: cherry-xenmp
Diff to: previous 1.1032: preferred, colored; next MAIN 1.1033: preferred, colored
Changes since revision 1.1032: +6 -5 lines
Catchup with rmind-uvmplock merge.

Revision 1.1034: download - view: text, markup, annotated - select for diffs
Tue Jun 21 05:01:17 2011 UTC (13 years, 5 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1033: preferred, colored
Changes since revision 1.1033: +4 -4 lines
By default, enable wmihp(4) instead of hpqlb(4), as it has a better chance
of working with a greater number of HP laptops. Ok cegger@.

Revision 1.1033: download - view: text, markup, annotated - select for diffs
Tue Jun 14 13:59:23 2011 UTC (13 years, 6 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1032: preferred, colored
Changes since revision 1.1032: +4 -3 lines
Try to attach hpet(4) also via a specific HPET table. Fixes PR kern/43702.

Revision 1.1006.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 6 09:05:47 2011 UTC (13 years, 6 months ago) by jruoho
Branches: jruoho-x86intr
Diff to: previous 1.1006: preferred, colored; next MAIN 1.1007: preferred, colored
Changes since revision 1.1006: +79 -82 lines
Sync with HEAD.

Revision 1.974.2.5: download - view: text, markup, annotated - select for diffs
Tue May 31 03:04:03 2011 UTC (13 years, 6 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.974.2.4: preferred, colored; branchpoint 1.974: preferred, colored; next MAIN 1.975: preferred, colored
Changes since revision 1.974.2.4: +44 -48 lines
sync with head

Revision 1.1032: download - view: text, markup, annotated - select for diffs
Sat May 28 13:01:49 2011 UTC (13 years, 6 months ago) by ryo
Branches: MAIN
CVS tags: rmind-uvmplock-nbase, rmind-uvmplock-base, cherry-xenmp-base
Branch point for: cherry-xenmp
Diff to: previous 1.1031: preferred, colored
Changes since revision 1.1031: +46 -46 lines
many whitespace cleanup.
confirmed "cvs diff -b" are identical.

Revision 1.925.2.6: download - view: text, markup, annotated - select for diffs
Mon May 2 22:49:55 2011 UTC (13 years, 7 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.5: preferred, colored
Changes since revision 1.925.2.5: +7 -7 lines
Sync with head.

Revision 1.1031: download - view: text, markup, annotated - select for diffs
Tue Apr 26 16:57:40 2011 UTC (13 years, 7 months ago) by joerg
Branches: MAIN
Diff to: previous 1.1030: preferred, colored
Changes since revision 1.1030: +2 -3 lines
Remove PECOFF/Win32 emulation.

Revision 1.1030: download - view: text, markup, annotated - select for diffs
Tue Apr 26 15:51:22 2011 UTC (13 years, 7 months ago) by joerg
Branches: MAIN
Diff to: previous 1.1029: preferred, colored
Changes since revision 1.1029: +2 -5 lines
Remove Darwin, MACH and Mach-O support.

Revision 1.974.2.4: download - view: text, markup, annotated - select for diffs
Thu Apr 21 01:41:05 2011 UTC (13 years, 7 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.974.2.3: preferred, colored; branchpoint 1.974: preferred, colored
Changes since revision 1.974.2.3: +7 -2 lines
sync with head

Revision 1.1029: download - view: text, markup, annotated - select for diffs
Mon Apr 4 17:09:39 2011 UTC (13 years, 8 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.1028: preferred, colored
Changes since revision 1.1028: +5 -2 lines
Add a driver for RDC's vortex86/PMX-1000 SoC PCI/ISA bridge, with support
for the integrated watchdog timer.

Revision 1.1028: download - view: text, markup, annotated - select for diffs
Mon Apr 4 14:33:51 2011 UTC (13 years, 8 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.1027: preferred, colored
Changes since revision 1.1027: +3 -2 lines
Add rdcide(4), a driver for the IDE controller found in RDC's
vortex86/PMX-1000 system-on-chip.

Revision 1.1027: download - view: text, markup, annotated - select for diffs
Fri Apr 1 12:11:16 2011 UTC (13 years, 8 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1026: preferred, colored
Changes since revision 1.1026: +3 -3 lines
Enable acpicpu(4) by default.

Revision 1.925.2.5: download - view: text, markup, annotated - select for diffs
Tue Mar 29 20:42:58 2011 UTC (13 years, 8 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.4: preferred, colored
Changes since revision 1.925.2.4: +147 -109 lines
More sync fixes. And add the mbr_gpt files.

Revision 1.925.2.4: download - view: text, markup, annotated - select for diffs
Mon Mar 28 23:04:38 2011 UTC (13 years, 8 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.3: preferred, colored
Changes since revision 1.925.2.3: +71 -54 lines
Sync with HEAD. TODO before merge:
- shortcut for suspend code in sysmon, when powerd(8) is not running.
Borrow ``xs_watch'' thread context?
- bug hunting in xbd + xennet resume. Rings are currently thrashed upon
resume, so current implementation force flush them on suspend. It's not
really needed.

Revision 1.1026: download - view: text, markup, annotated - select for diffs
Sun Mar 6 17:08:25 2011 UTC (13 years, 9 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.1025: preferred, colored
Changes since revision 1.1025: +4 -3 lines
merge the bouyer-quota2 branch. This adds a new on-disk format
to store disk quota usage and limits, integrated with ffs
metadata. Usage is checked by fsck_ffs (no more quotacheck)
and is covered by the WAPBL journal. Enabled with kernel
option QUOTA2 (added where QUOTA was enabled in kernel config files),
turned on with tunefs(8) on a per-filesystem
basis. mount_mfs(8) can also turn quotas on.

See http://mail-index.netbsd.org/tech-kern/2011/02/19/msg010025.html
for details.

Revision 1.974.2.3: download - view: text, markup, annotated - select for diffs
Sat Mar 5 20:50:37 2011 UTC (13 years, 9 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.974.2.2: preferred, colored; branchpoint 1.974: preferred, colored
Changes since revision 1.974.2.2: +69 -50 lines
sync with head

Revision 1.1007.2.4: download - view: text, markup, annotated - select for diffs
Sat Mar 5 15:09:43 2011 UTC (13 years, 9 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.1007.2.3: preferred, colored; next MAIN 1.1008: preferred, colored
Changes since revision 1.1007.2.3: +12 -24 lines
Sync with HEAD

Revision 1.1025: download - view: text, markup, annotated - select for diffs
Fri Mar 4 04:48:40 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
CVS tags: bouyer-quota2-nbase
Diff to: previous 1.1024: preferred, colored
Changes since revision 1.1024: +3 -5 lines
Move INTEL_ONDEMAND_CLOCKMOD -- or odcm(4) -- to the cpufeaturebus.

Revision 1.1024: download - view: text, markup, annotated - select for diffs
Sun Feb 27 17:10:34 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1023: preferred, colored
Changes since revision 1.1023: +3 -3 lines
Move acpicpu(4) from "acpinodebus" to "cpufeaturebus".

Revision 1.1023: download - view: text, markup, annotated - select for diffs
Thu Feb 24 13:58:39 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1022: preferred, colored
Changes since revision 1.1022: +3 -5 lines
Move VIA_C7TEMP to the cpufeaturebus.

Revision 1.1022: download - view: text, markup, annotated - select for diffs
Thu Feb 24 10:56:01 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1021: preferred, colored
Changes since revision 1.1021: +3 -8 lines
Move PowerNow! to the cpufeaturebus.

Revision 1.1021: download - view: text, markup, annotated - select for diffs
Wed Feb 23 11:43:22 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1020: preferred, colored
Changes since revision 1.1020: +6 -11 lines
Move ENHANCED_SPEEDSTEP, or henceforth est(4), to the cpufeaturebus.

Revision 1.1020: download - view: text, markup, annotated - select for diffs
Wed Feb 23 00:45:56 2011 UTC (13 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1019: preferred, colored
Changes since revision 1.1019: +3 -2 lines
add alc@pci

Revision 1.1019: download - view: text, markup, annotated - select for diffs
Sun Feb 20 13:42:45 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1018: preferred, colored
Changes since revision 1.1018: +5 -5 lines
Modularize coretemp(4). Ok jmcneill@.

Revision 1.1018: download - view: text, markup, annotated - select for diffs
Sat Feb 19 13:52:27 2011 UTC (13 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1017: preferred, colored
Changes since revision 1.1017: +3 -3 lines
modularize VIA PadLock support
 - retire options VIA_PADLOCK, replace with 'padlock0 at cpu0'
 - driver supports attach & detach
 - support building as a module

Revision 1.1017: download - view: text, markup, annotated - select for diffs
Sat Feb 19 00:13:55 2011 UTC (13 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1016: preferred, colored
Changes since revision 1.1016: +3 -2 lines
add VCONS_DRAW_INTR

Revision 1.1007.2.3: download - view: text, markup, annotated - select for diffs
Thu Feb 17 11:59:44 2011 UTC (13 years, 9 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.1007.2.2: preferred, colored
Changes since revision 1.1007.2.2: +19 -14 lines
Sync with HEAD

Revision 1.1016: download - view: text, markup, annotated - select for diffs
Wed Feb 16 07:30:27 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
CVS tags: uebayasi-xip-base7, bouyer-quota2-base
Diff to: previous 1.1015: preferred, colored
Changes since revision 1.1015: +3 -2 lines
Add a skeleton driver for Asus EeePC acpiwmi(4) mappings.

Revision 1.1015: download - view: text, markup, annotated - select for diffs
Tue Feb 15 12:06:22 2011 UTC (13 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1014: preferred, colored
Changes since revision 1.1014: +3 -3 lines
retire azalia from GENERIC

Revision 1.1014: download - view: text, markup, annotated - select for diffs
Mon Feb 14 08:50:39 2011 UTC (13 years, 9 months ago) by hannken
Branches: MAIN
Diff to: previous 1.1013: preferred, colored
Changes since revision 1.1013: +5 -2 lines
Initial implementation of ibmhawk(4) driver for sensors behind the IBM Hawk
on-board Integrated Systems Management Processor found on some eServers.

Tested on an IBM eServer x335.

Revision 1.1013: download - view: text, markup, annotated - select for diffs
Sun Feb 13 04:37:21 2011 UTC (13 years, 10 months ago) by jym
Branches: MAIN
Diff to: previous 1.1012: preferred, colored
Changes since revision 1.1012: +4 -4 lines
Compile FFS and NFS statically (e.g. not modular) for GENERIC. These
file-systems can be critical for mountroot; as kernel cannot have access
to module(7)s without having / mounted first... yes, you see the point.

See http://mail-index.netbsd.org/port-i386/2011/02/11/msg002323.html

XXX Hopefully, /stand does not reside in a separate partition :o

Revision 1.1012: download - view: text, markup, annotated - select for diffs
Sun Feb 13 04:22:41 2011 UTC (13 years, 10 months ago) by jym
Branches: MAIN
Diff to: previous 1.1011: preferred, colored
Changes since revision 1.1011: +3 -2 lines
Add missing PUFFS (commented out).

Revision 1.1011: download - view: text, markup, annotated - select for diffs
Fri Feb 11 01:59:57 2011 UTC (13 years, 10 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1010: preferred, colored
Changes since revision 1.1010: +11 -11 lines
attach drm hw drivers to 'drm' not 'vga'

Revision 1.1007.2.2: download - view: text, markup, annotated - select for diffs
Tue Feb 8 19:29:35 2011 UTC (13 years, 10 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.1007.2.1: preferred, colored
Changes since revision 1.1007.2.1: +4 -3 lines
Add QUOTA2 where QUOTA is enabled (and QUOTA2 commented out where QUOTA
is commented out)

Revision 1.1007.2.1: download - view: text, markup, annotated - select for diffs
Tue Feb 8 16:19:25 2011 UTC (13 years, 10 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.1007: preferred, colored
Changes since revision 1.1007: +5 -3 lines
Sync with HEAD

Revision 1.1010: download - view: text, markup, annotated - select for diffs
Mon Feb 7 04:05:49 2011 UTC (13 years, 10 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1009: preferred, colored
Changes since revision 1.1009: +2 -3 lines
options SPLASHSCREEN_PROGRESS is no more

Revision 1.1009: download - view: text, markup, annotated - select for diffs
Wed Jan 26 18:48:12 2011 UTC (13 years, 10 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.1008: preferred, colored
Changes since revision 1.1008: +4 -2 lines
Add a driver for the RDC Semiconductor RDC R6040 10/100 Ethernet controller,
as found in the vortex86 SoCs (http://www.vortex86dx.com).
Ported from freebsd.
Not added to amd64's GENERIC because this CPU is 32bit only.

thanks to DM&P Electronics, Inc for providing documentation and sample
devices for this work.

Revision 1.1008: download - view: text, markup, annotated - select for diffs
Wed Jan 26 00:25:55 2011 UTC (13 years, 10 months ago) by pooka
Branches: MAIN
Diff to: previous 1.1007: preferred, colored
Changes since revision 1.1007: +3 -2 lines
Add bwi from PR kern/40279.  There is no know case of testing the
driver on amd64/i386, but if it doesn't work at least we're more
likely to get a PR instead of people wondering about lacking driver
support.

Revision 1.1007: download - view: text, markup, annotated - select for diffs
Mon Jan 17 15:56:03 2011 UTC (13 years, 10 months ago) by jmcneill
Branches: MAIN
Branch point for: bouyer-quota2
Diff to: previous 1.1006: preferred, colored
Changes since revision 1.1006: +3 -2 lines
add acpiwdrt

Revision 1.1006: download - view: text, markup, annotated - select for diffs
Sun Jan 9 15:12:33 2011 UTC (13 years, 11 months ago) by jruoho
Branches: MAIN
CVS tags: jruoho-x86intr-base
Branch point for: jruoho-x86intr
Diff to: previous 1.1005: preferred, colored
Changes since revision 1.1005: +3 -2 lines
Add a dummy-driver for ACPI fans.

Revision 1.1005: download - view: text, markup, annotated - select for diffs
Wed Jan 5 20:08:12 2011 UTC (13 years, 11 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1004: preferred, colored
Changes since revision 1.1004: +5 -7 lines
Add a driver for ACPI power meters.

Revision 1.1004: download - view: text, markup, annotated - select for diffs
Mon Jan 3 06:07:43 2011 UTC (13 years, 11 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.1003: preferred, colored
Changes since revision 1.1003: +10 -10 lines
Xref module(7) in comments.

Revision 1.1003: download - view: text, markup, annotated - select for diffs
Mon Dec 27 20:45:00 2010 UTC (13 years, 11 months ago) by jmcneill
Branches: MAIN
CVS tags: matt-mips64-premerge-20101231
Diff to: previous 1.1002: preferred, colored
Changes since revision 1.1002: +3 -2 lines
add auvitek at uhub

Revision 1.1002: download - view: text, markup, annotated - select for diffs
Mon Dec 27 15:56:50 2010 UTC (13 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1001: preferred, colored
Changes since revision 1.1001: +3 -2 lines
add 'uaudio* at usbifif?' so uaudio can attach to something other than
a hub

Revision 1.1001: download - view: text, markup, annotated - select for diffs
Sat Nov 27 20:18:46 2010 UTC (14 years ago) by christos
Branches: MAIN
Diff to: previous 1.1000: preferred, colored
Changes since revision 1.1000: +3 -2 lines
add ihphy

Revision 1.1000: download - view: text, markup, annotated - select for diffs
Tue Nov 23 11:14:00 2010 UTC (14 years ago) by hannken
Branches: MAIN
Diff to: previous 1.999: preferred, colored
Changes since revision 1.999: +3 -3 lines
Remove unused count from pseudo-device md.

Revision 1.915.2.11: download - view: text, markup, annotated - select for diffs
Sun Nov 21 03:05:05 2010 UTC (14 years ago) by riz
Branches: netbsd-5
CVS tags: matt-nb5-pq3-base, matt-nb5-pq3
Diff to: previous 1.915.2.10: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.10: +6 -2 lines
Pull up following revision(s) (requested by plunky in ticket #1407):
	sys/dev/bluetooth/btdev.h: revision 1.9
	sys/arch/iyonix/conf/GENERIC: revision 1.60
	sys/arch/sparc64/conf/GENERIC: revision 1.129
	sys/dev/usb/hid.c: revision 1.30
	sys/dev/usb/hid.h: revision 1.13
	sys/arch/i386/conf/GENERIC: revision 1.983
	usr.sbin/btdevctl/print.c: revision 1.10
	sys/arch/evbarm/conf/MPCSA_GENERIC: revision 1.16
	sys/arch/alpha/conf/GENERIC: revision 1.337
	sys/dev/bluetooth/files.bluetooth: revision 1.14
	sys/arch/evbarm/conf/GUMSTIX: revision 1.49
	sys/dev/usb/usbdevs: revision 1.550
	sys/arch/evbppc/conf/OPENBLOCKS266_OPT: revision 1.14
	sys/arch/hpcsh/conf/GENERIC: revision 1.91
	sys/dev/bluetooth/btmagic.c: revision 1.1
	distrib/sets/lists/man/mi: revision 1.1210
	sys/arch/amd64/conf/GENERIC: revision 1.279
	sys/arch/i386/conf/ALL: revision 1.258
	sys/arch/amd64/conf/XEN3_DOM0: revision 1.54
	sys/arch/hpcarm/conf/JORNADA720: revision 1.78
	sys/dev/usb/hid.c: revision 1.29
	share/man/man4/btmagic.4: revision 1.1
hid_get_data() does not work if the size of data is less than
a byte and crosses a byte boundary, and it always returns a
sign-extended value.
fix this by using the algorithm from libusbhid to read bytes,
and provide a hid_get_udata() function to return unsigned data
values.
while here, const args
update DPRINTF to reflect actual function name
add Apple Magic Mouse product-id
regen for Magic Mouse id
allow for vendor-id and product-id properties, passing them
through to child devices
add Magic Mouse driver and manpage btmagic(4)
additionally query the "PnP Information" service record to discover
any USB Forum vendor-id and product-id values and store them in the
property list if found.
add btmagic(4) where other Bluetooth drivers are listed

Revision 1.999: download - view: text, markup, annotated - select for diffs
Sat Nov 13 09:48:55 2010 UTC (14 years, 1 month ago) by jnemeth
Branches: MAIN
CVS tags: uebayasi-xip-base6
Diff to: previous 1.998: preferred, colored
Changes since revision 1.998: +4 -2 lines
Add new et(4)/etphy(4) devices.

Revision 1.963.2.5: download - view: text, markup, annotated - select for diffs
Tue Nov 9 06:03:37 2010 UTC (14 years, 1 month ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.963.2.4: preferred, colored; branchpoint 1.963: preferred, colored; next MAIN 1.964: preferred, colored
Changes since revision 1.963.2.4: +3 -2 lines
Sync with HEAD.

Revision 1.998: download - view: text, markup, annotated - select for diffs
Sat Nov 6 15:06:29 2010 UTC (14 years, 1 month ago) by jakllsch
Branches: MAIN
CVS tags: uebayasi-xip-base5
Diff to: previous 1.997: preferred, colored
Changes since revision 1.997: +3 -2 lines
Enable schide(4), Intel SCH IDE controller driver from PR#42310.

Revision 1.963.2.4: download - view: text, markup, annotated - select for diffs
Sat Nov 6 08:08:18 2010 UTC (14 years, 1 month ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.963.2.3: preferred, colored; branchpoint 1.963: preferred, colored
Changes since revision 1.963.2.3: +6 -2 lines
Sync with HEAD.

Revision 1.997: download - view: text, markup, annotated - select for diffs
Fri Nov 5 10:28:21 2010 UTC (14 years, 1 month ago) by gsutre
Branches: MAIN
CVS tags: uebayasi-xip-base4
Diff to: previous 1.996: preferred, colored
Changes since revision 1.996: +4 -2 lines
Merge ACPI Fujitsu Driver.  Provides support for hotkeys and other
built-in components through vendor-specific ACPI devices.

ok jruoho@

Revision 1.996: download - view: text, markup, annotated - select for diffs
Wed Nov 3 20:10:00 2010 UTC (14 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.995: preferred, colored
Changes since revision 1.995: +3 -2 lines
add otus

Revision 1.995: download - view: text, markup, annotated - select for diffs
Sun Oct 24 08:54:14 2010 UTC (14 years, 1 month ago) by jruoho
Branches: MAIN
Diff to: previous 1.994: preferred, colored
Changes since revision 1.994: +3 -2 lines
Add acpiwmi(4) mappings for MSI laptops.

XXX: It may be necessary to fix PR # 43659 before this works on all models.

Revision 1.963.2.3: download - view: text, markup, annotated - select for diffs
Fri Oct 22 07:21:19 2010 UTC (14 years, 1 month ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.963.2.2: preferred, colored; branchpoint 1.963: preferred, colored
Changes since revision 1.963.2.2: +7 -0 lines
Sync with HEAD (-D20101022).

Revision 1.994: download - view: text, markup, annotated - select for diffs
Tue Oct 12 19:10:50 2010 UTC (14 years, 2 months ago) by gsutre
Branches: MAIN
CVS tags: uebayasi-xip-base3
Diff to: previous 1.993: preferred, colored
Changes since revision 1.993: +4 -2 lines
Merge ACPI display driver.  Provides generic support for brightness
control and output switching, through ACPI video extensions.

TODO: use wsconsctl(8) instead of sysctl(8) for brightness control.

ok jruoho@
also discussed with cegger@ and jmcneill@

Revision 1.890.2.7: download - view: text, markup, annotated - select for diffs
Sat Oct 9 03:31:46 2010 UTC (14 years, 2 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.6: preferred, colored; branchpoint 1.890: preferred, colored; next MAIN 1.891: preferred, colored
Changes since revision 1.890.2.6: +7 -2 lines
sync with head

Revision 1.993: download - view: text, markup, annotated - select for diffs
Sun Aug 22 18:56:21 2010 UTC (14 years, 3 months ago) by rmind
Branches: MAIN
CVS tags: yamt-nfs-mp-base11
Diff to: previous 1.992: preferred, colored
Changes since revision 1.992: +5 -2 lines
Import NPF - a packet filter.  Some features:

- Designed to be fully MP-safe and highly efficient.

- Tables/IP sets (hash or red-black tree) for high performance lookups.

- Stateful filtering and Network Address Port Translation (NAPT).
  Framework for application level gateways (ALGs).

- Packet inspection engine called n-code processor - inspired by BPF -
  supporting generic RISC-like and specific CISC-like instructions for
  common patterns (e.g. IPv4 address matching).  See npf_ncode(9) manual.

- Convenient userland utility npfctl(8) with npf.conf(8).

NOTE: This is not yet a fully capable alternative to PF or IPFilter.
Further work (support for binat/rdr, return-rst/return-icmp, common ALGs,
state saving/restoring, logging, etc) is in progress.

Thanks a lot to Matt Thomas for various useful comments and code review.
Aye by: board@

Revision 1.992: download - view: text, markup, annotated - select for diffs
Sat Aug 21 11:55:21 2010 UTC (14 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.991: preferred, colored
Changes since revision 1.991: +3 -2 lines
enable viadrm

Revision 1.991: download - view: text, markup, annotated - select for diffs
Sat Aug 21 03:06:37 2010 UTC (14 years, 3 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.990: preferred, colored
Changes since revision 1.990: +3 -2 lines
Add upgt(4), Intersil PrismGT USB 802.11b/g adapter.

Revision 1.963.2.2: download - view: text, markup, annotated - select for diffs
Tue Aug 17 06:44:34 2010 UTC (14 years, 3 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.963.2.1: preferred, colored; branchpoint 1.963: preferred, colored
Changes since revision 1.963.2.1: +31 -3 lines
Sync with HEAD.

Revision 1.890.2.6: download - view: text, markup, annotated - select for diffs
Wed Aug 11 22:52:10 2010 UTC (14 years, 4 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.5: preferred, colored; branchpoint 1.890: preferred, colored
Changes since revision 1.890.2.5: +42 -16 lines
sync with head.

Revision 1.990: download - view: text, markup, annotated - select for diffs
Sun Aug 8 20:04:24 2010 UTC (14 years, 4 months ago) by chs
Branches: MAIN
CVS tags: yamt-nfs-mp-base10, uebayasi-xip-base2
Diff to: previous 1.989: preferred, colored
Changes since revision 1.989: +6 -2 lines
add more (commented-out) spdmem instances for HP xw-series workstations.

Revision 1.989: download - view: text, markup, annotated - select for diffs
Sat Jul 24 00:45:54 2010 UTC (14 years, 4 months ago) by jym
Branches: MAIN
Diff to: previous 1.988: preferred, colored
Changes since revision 1.988: +3 -2 lines
Welcome PAE inside i386 current.

This patch is inspired by work previously done by Jeremy Morse, ported by me
to -current, merged with the work previously done for port-xen, together with
additionals fixes and improvements.

PAE option is disabled by default in GENERIC (but will be enabled in ALL in
the next few days).

In quick, PAE switches the CPU to a mode where physical addresses become
36 bits (64 GiB). Virtual address space remains at 32 bits (4 GiB). To cope
with the increased size of the physical address, they are manipulated as
64 bits variables by kernel and MMU.

When supported by the CPU, it also allows the use of the NX/XD bit that
provides no-execution right enforcement on a per physical page basis.

Notes:

- reworked locore.S

- introduce cpu_load_pmap(), used to switch pmap for the curcpu. Due to the
different handling of pmap mappings with PAE vs !PAE, Xen vs native, details
are hidden within this function. This helps calling it from assembly,
as some features, like BIOS calls, switch to pmap_kernel before mapping
trampoline code in low memory.

- some changes in bioscall and kvm86_call, to reflect the above.

- the L3 is "pinned" per-CPU, and is only manipulated by a
reduced set of functions within pmap. To track the L3, I added two
elements to struct cpu_info, namely ci_l3_pdirpa (PA of the L3), and
ci_l3_pdir (the L3 VA). Rest of the code considers that it runs "just
like" a normal i386, except that the L2 is 4 pages long (PTP_LEVELS is
still 2).

- similar to the ci_pae_l3_pdir{,pa} variables, amd64's xen_current_user_pgd
becomes an element of cpu_info (slowly paving the way for MP world).

- bootinfo_source struct declaration is modified, to cope with paddr_t size
change with PAE (it is not correct to assume that bs_addr is a paddr_t when
compiled with PAE - it should remain 32 bits). bs_addrs is now a
void * array (in bootloader's code under i386/stand/, the bs_addrs
is a physaddr_t, which is an unsigned long).

- fixes in multiboot code (same reason as bootinfo): paddr_t size
change. I used Elf32_* types, use RELOC() where necessary, and move the
memcpy() functions out of the if/else if (I do not expect sym and str tables
to overlap with ELF).

- 64 bits atomic functions for pmap

- all pmap_pdirpa access are now done through the pmap_pdirpa macro. It
hides the L3/L2 stuff from PAE, as well as the pm_pdirpa change in
struct pmap (it now becomes a PDP_SIZE array, with or without PAE).

- manipulation of recursive mappings ( PDIR_SLOT_{,A}PTEs ) is done via
loops on PDP_SIZE.

See also http://mail-index.netbsd.org/port-i386/2010/07/17/msg002062.html

No objection raised on port-i386@ and port-xen@R for about a week.

XXX kvm(3) will be fixed in another patch to properly handle both PAE and !PAE
kernel dumps (VA => PA macros are slightly different, and need proper 64 bits
PA support in kvm_i386).

XXX Mixing PAE and !PAE modules may lead to unwanted/unexpected results. This
cannot be solved easily, and needs lots of thinking before being declared
safe (paddr_t/bus_addr_t size handling, PD/PT macros abstractions).

Revision 1.988: download - view: text, markup, annotated - select for diffs
Fri Jul 23 00:43:20 2010 UTC (14 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.987: preferred, colored
Changes since revision 1.987: +4 -3 lines
Almost entirely rework Intel Firmware Hub random number generator support.

This introduces fwhrng(4) which attaches via ichlpcib(4), replacing
the rnd(4) support in pchb(4).

Revision 1.987: download - view: text, markup, annotated - select for diffs
Sun Jul 18 09:29:12 2010 UTC (14 years, 4 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.986: preferred, colored
Changes since revision 1.986: +3 -2 lines
Merge a driver for ACPI CPUs with basic support for processor power states,
also known as C-states. The code is modular and provides an easy way to add
the remaining functionality later (namely throttling and P-states).

Remarks:

  1.	Commented out in the GENERICs; more testing exposure is needed.

  2.	The C3-state is disabled for the time being because it turns off
	timers, among them the local APIC timer. This may not be universally
	true on all x86 processors; define ACPICPU_ENABLE_C3 to test.

  3.	The algorithm used to choose a power state may need tuning. When
	evaluating the appropriate state, the implementation uses the
	previous sleep time as an indicator. Additional hints would include
	for example the system load.

	Also bus master activity is evaluated when choosing a state. The
	usb(4) stack is notorious for such activity even when unused.
	Typically it must be disabled in order to reach the C3-state,
	but it may also prevent the use of C2.

  4.	While no extensive empirical measurements have been carried out, the
	power savings are somewhere between 1-2 W with C1 and C2, depending
	on the processor, firmware, and load. With C3 even up to 4 W can be
	saved.  The less something ticks, the more power is saved.

ok jmcneill@, joerg@, and discussed with various people.

Revision 1.974.2.2: download - view: text, markup, annotated - select for diffs
Sat Jul 3 01:19:20 2010 UTC (14 years, 5 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.974.2.1: preferred, colored; branchpoint 1.974: preferred, colored
Changes since revision 1.974.2.1: +14 -2 lines
sync with head

Revision 1.986: download - view: text, markup, annotated - select for diffs
Sat Jun 26 15:17:56 2010 UTC (14 years, 5 months ago) by kefren
Branches: MAIN
Diff to: previous 1.985: preferred, colored
Changes since revision 1.985: +4 -3 lines
Fix build for MPLS import: add options MPLS, changed pseudo-device mpls
to pseudo-device ifmpls

Revision 1.985: download - view: text, markup, annotated - select for diffs
Sat Jun 26 14:36:48 2010 UTC (14 years, 5 months ago) by kefren
Branches: MAIN
Diff to: previous 1.984: preferred, colored
Changes since revision 1.984: +3 -2 lines
add pseudo-device mpls - commented in GENERIC for now

Revision 1.984: download - view: text, markup, annotated - select for diffs
Tue Jun 1 02:40:13 2010 UTC (14 years, 6 months ago) by mrg
Branches: MAIN
Diff to: previous 1.983: preferred, colored
Changes since revision 1.983: +12 -2 lines
enable the drm drivers; they've been tested for ages and have been
enabled on amd64 for some months now.  as requested in PR#42936.

Revision 1.974.2.1: download - view: text, markup, annotated - select for diffs
Sun May 30 05:16:53 2010 UTC (14 years, 6 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.974: preferred, colored
Changes since revision 1.974: +22 -15 lines
sync with head

Revision 1.983: download - view: text, markup, annotated - select for diffs
Sat May 22 19:02:08 2010 UTC (14 years, 6 months ago) by plunky
Branches: MAIN
Diff to: previous 1.982: preferred, colored
Changes since revision 1.982: +6 -2 lines
add btmagic(4) where other Bluetooth drivers are listed

Revision 1.982: download - view: text, markup, annotated - select for diffs
Sat May 8 22:16:28 2010 UTC (14 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.981: preferred, colored
Changes since revision 1.981: +3 -2 lines
enable IPFILTER_COMPAT in all kernels that have ipfilter already.
canonicalise several of the ipf option segments in various files
(this mostly means adding commented out IPFILTER_DEFAULT_BLOCK,
or adding commented or uncommented IPFILTER_LOG or IPFILTER_LOOKUP
option statements.)

i built about 20 of these kernels to check, but not all of them.

Revision 1.981: download - view: text, markup, annotated - select for diffs
Sun May 2 17:24:35 2010 UTC (14 years, 7 months ago) by chs
Branches: MAIN
Diff to: previous 1.980: preferred, colored
Changes since revision 1.980: +7 -3 lines
add alipm and its iic bus.

Revision 1.963.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 30 14:39:28 2010 UTC (14 years, 7 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.963: preferred, colored
Changes since revision 1.963: +33 -17 lines
Sync with HEAD.

Revision 1.915.2.3.4.1: download - view: text, markup, annotated - select for diffs
Wed Apr 21 00:33:50 2010 UTC (14 years, 7 months ago) by matt
Branches: matt-nb5-mips64
CVS tags: matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-k15
Diff to: previous 1.915.2.3: preferred, colored; next MAIN 1.915.2.4: preferred, colored
Changes since revision 1.915.2.3: +23 -2 lines
sync to netbsd-5

Revision 1.980: download - view: text, markup, annotated - select for diffs
Fri Apr 16 13:48:32 2010 UTC (14 years, 7 months ago) by pooka
Branches: MAIN
CVS tags: uebayasi-xip-base1
Diff to: previous 1.979: preferred, colored
Changes since revision 1.979: +3 -3 lines
Remove unused count (invariably "4") from pseudo-device fss.

Revision 1.979: download - view: text, markup, annotated - select for diffs
Sat Apr 10 17:55:25 2010 UTC (14 years, 8 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.978: preferred, colored
Changes since revision 1.978: +4 -8 lines
Move vald(4) to sys/dev/acpi. This is MI and should work also on amd64.

ok jmcneill@

XXX:    This is broken: it calls methods with absolute pathnames (almost
        guaranteed not to be portable across models), it accesses methods
        that are in the domain of other drivers, it walks the namespace on
        its own, it contains plenty of magic constants, it does not
        integrate with existing KPIs, etc. Summa summarum: this should be
        rewritten as a more generic toshiba_acpi(4).

Revision 1.978: download - view: text, markup, annotated - select for diffs
Fri Apr 9 14:02:05 2010 UTC (14 years, 8 months ago) by ahoka
Branches: MAIN
Diff to: previous 1.977: preferred, colored
Changes since revision 1.977: +2 -5 lines
Remove pad from GENERIC, add to MONOLITH, we have it as a module now.

Revision 1.977: download - view: text, markup, annotated - select for diffs
Thu Apr 8 17:32:30 2010 UTC (14 years, 8 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.976: preferred, colored
Changes since revision 1.976: +3 -2 lines
Add WMI mappings for HP laptops. Requested by cegger@.
Thanks to apb@ and cegger@ for initial testing.

XXX: This conflicts with hpqlb(4). Someone with the suitable hardware needs
     to complete the list of hotkeys before -- and if -- this can replace
     hpqlb(4). For now, the driver was left uncommented in the GENERICs.

Revision 1.976: download - view: text, markup, annotated - select for diffs
Thu Apr 8 09:45:17 2010 UTC (14 years, 8 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.975: preferred, colored
Changes since revision 1.975: +3 -2 lines
Add wmidell(4).

Revision 1.975: download - view: text, markup, annotated - select for diffs
Sat Mar 27 03:04:51 2010 UTC (14 years, 8 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.974: preferred, colored
Changes since revision 1.974: +7 -4 lines
Added sdhc at cardbus support.

Revision 1.890.2.5: download - view: text, markup, annotated - select for diffs
Thu Mar 11 15:02:27 2010 UTC (14 years, 9 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.4: preferred, colored; branchpoint 1.890: preferred, colored
Changes since revision 1.890.2.4: +144 -121 lines
sync with head

Revision 1.974: download - view: text, markup, annotated - select for diffs
Mon Mar 8 22:51:52 2010 UTC (14 years, 9 months ago) by hubertf
Branches: MAIN
CVS tags: yamt-nfs-mp-base9
Branch point for: rmind-uvmplock
Diff to: previous 1.973: preferred, colored
Changes since revision 1.973: +3 -2 lines
Add etherip(4), commented out

Revision 1.973: download - view: text, markup, annotated - select for diffs
Sat Mar 6 21:12:04 2010 UTC (14 years, 9 months ago) by plunky
Branches: MAIN
Diff to: previous 1.972: preferred, colored
Changes since revision 1.972: +5 -2 lines
add uhso(4)

Revision 1.972: download - view: text, markup, annotated - select for diffs
Sat Mar 6 04:28:53 2010 UTC (14 years, 9 months ago) by cnst
Branches: MAIN
Diff to: previous 1.971: preferred, colored
Changes since revision 1.971: +2 -3 lines
remove aiboost(4) from GENERICs, since it cannot win in autoconf(9) over aibs(4);  ok pgoyette

Revision 1.971: download - view: text, markup, annotated - select for diffs
Mon Feb 22 17:27:04 2010 UTC (14 years, 9 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.970: preferred, colored
Changes since revision 1.970: +6 -2 lines
Forgot to add smscmon here...

Revision 1.970: download - view: text, markup, annotated - select for diffs
Mon Feb 22 05:57:10 2010 UTC (14 years, 9 months ago) by ahoka
Branches: MAIN
Diff to: previous 1.969: preferred, colored
Changes since revision 1.969: +3 -3 lines
Mention splash need genfb or radeonfb

Revision 1.969: download - view: text, markup, annotated - select for diffs
Sun Feb 21 05:16:29 2010 UTC (14 years, 9 months ago) by cnst
Branches: MAIN
Diff to: previous 1.968: preferred, colored
Changes since revision 1.968: +7 -2 lines
New wbsio(4) driver for Winbond Super I/O attachment of lm(4) on any port.

    http://mail-index.netbsd.org/tech-kern/2010/02/17/msg007338.html

Reviewed by <pgoyette>, <tech-kern>.

Revision 1.968: download - view: text, markup, annotated - select for diffs
Fri Feb 12 15:51:16 2010 UTC (14 years, 10 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.967: preferred, colored
Changes since revision 1.967: +3 -2 lines
Add PPPOE_SERVER
 - disabled (commented out) in GENERIC,
 - enabled in ALL

Revision 1.967: download - view: text, markup, annotated - select for diffs
Wed Feb 10 19:54:36 2010 UTC (14 years, 10 months ago) by tonio
Branches: MAIN
Diff to: previous 1.966: preferred, colored
Changes since revision 1.966: +3 -3 lines
Fix typo in TEMPer comment, spotted by Patrick Welche

Revision 1.966: download - view: text, markup, annotated - select for diffs
Tue Feb 9 22:38:32 2010 UTC (14 years, 10 months ago) by tonio
Branches: MAIN
Diff to: previous 1.965: preferred, colored
Changes since revision 1.965: +5 -2 lines
Add TEMPer and TERMPerHUM driver

Revision 1.965: download - view: text, markup, annotated - select for diffs
Tue Feb 9 03:19:50 2010 UTC (14 years, 10 months ago) by cnst
Branches: MAIN
Diff to: previous 1.964: preferred, colored
Changes since revision 1.964: +3 -2 lines
New aibs(4) driver for ASUSTeK AI Booster (ACPI ATK0110) hardware monitor
with limit support.

        http://thread.gmane.org/gmane.os.netbsd.devel.kernel/35654

Reviewed by <pgoyette>, <jruoho> and <tech-kern>.

Revision 1.964: download - view: text, markup, annotated - select for diffs
Mon Feb 8 21:45:31 2010 UTC (14 years, 10 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.963: preferred, colored
Changes since revision 1.963: +4 -3 lines
Add flags to all instances of lm(4), add a reference to man page

Revision 1.963: download - view: text, markup, annotated - select for diffs
Sat Feb 6 20:12:32 2010 UTC (14 years, 10 months ago) by pgoyette
Branches: MAIN
CVS tags: uebayasi-xip-base
Branch point for: uebayasi-xip
Diff to: previous 1.962: preferred, colored
Changes since revision 1.962: +3 -2 lines
Add acpismbus enries - commented out!

Revision 1.962: download - view: text, markup, annotated - select for diffs
Sun Jan 31 12:14:45 2010 UTC (14 years, 10 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.961: preferred, colored
Changes since revision 1.961: +2 -3 lines
Remove ACPICA_PEDANTIC. Appears to be no longer in use.

Revision 1.961: download - view: text, markup, annotated - select for diffs
Thu Jan 21 12:02:25 2010 UTC (14 years, 10 months ago) by pooka
Branches: MAIN
Diff to: previous 1.960: preferred, colored
Changes since revision 1.960: +3 -3 lines
remove accidentally committed bit.  pointed out by Patrick Welche

Revision 1.960: download - view: text, markup, annotated - select for diffs
Tue Jan 19 22:06:20 2010 UTC (14 years, 10 months ago) by pooka
Branches: MAIN
Diff to: previous 1.959: preferred, colored
Changes since revision 1.959: +3 -3 lines
Redefine bpf linkage through an always present op vector, i.e.
#if NBPFILTER is no longer required in the client.  This change
doesn't yet add support for loading bpf as a module, since drivers
can register before bpf is attached.  However, callers of bpf can
now be modularized.

Dynamically loadable bpf could probably be done fairly easily with
coordination from the stub driver and the real driver by registering
attachments in the stub before the real driver is loaded and doing
a handoff.  ... and I'm not going to ponder the depths of unload
here.

Tested with i386/MONOLITHIC, modified MONOLITHIC without bpf and rump.

Revision 1.959: download - view: text, markup, annotated - select for diffs
Thu Jan 7 18:49:30 2010 UTC (14 years, 11 months ago) by tnn
Branches: MAIN
Diff to: previous 1.958: preferred, colored
Changes since revision 1.958: +2 -6 lines
uhmodem(4) is superseded by u3g(4) and u3ginit(4).
Prepare for uhmodem(4) removal by not building it anymore.
This may fix PR kern/41174.

Revision 1.958: download - view: text, markup, annotated - select for diffs
Thu Jan 7 00:18:47 2010 UTC (14 years, 11 months ago) by martin
Branches: MAIN
Diff to: previous 1.957: preferred, colored
Changes since revision 1.957: +3 -2 lines
Add the u3ginit driver to all configs which have the u3g driver

Revision 1.957: download - view: text, markup, annotated - select for diffs
Sun Jan 3 03:53:34 2010 UTC (14 years, 11 months ago) by dholland
Branches: MAIN
Diff to: previous 1.956: preferred, colored
Changes since revision 1.956: +75 -75 lines
Whitespace. Portions from Igor Sobrado in PR kern/22595.
Deploy <space><tab> where needed so columns don't teleport when
commenting or uncommenting things.

Revision 1.956: download - view: text, markup, annotated - select for diffs
Sun Jan 3 03:50:38 2010 UTC (14 years, 11 months ago) by dholland
Branches: MAIN
Diff to: previous 1.955: preferred, colored
Changes since revision 1.955: +15 -15 lines
Assorted spelling/capitalization fixes from Igor Sobrado in PR kern/22595.
Merged by yours truly as the set of configs has changed quite a bit since
the PR was filed in 2003, and I may have missed some stuff. These changes
should probably be merged into other arches' configs; I'm not going to do
that now though.

Revision 1.955: download - view: text, markup, annotated - select for diffs
Wed Dec 23 01:04:46 2009 UTC (14 years, 11 months ago) by pooka
Branches: MAIN
Diff to: previous 1.954: preferred, colored
Changes since revision 1.954: +2 -4 lines
unifdef -D UGEN_BULK_RA_WB

Default behaviour unchanged, the feature must still be explicitly
enabled for a ugen fd.

Revision 1.954: download - view: text, markup, annotated - select for diffs
Sat Dec 5 20:11:15 2009 UTC (15 years ago) by pooka
Branches: MAIN
CVS tags: matt-premerge-20091211
Diff to: previous 1.953: preferred, colored
Changes since revision 1.953: +2 -3 lines
Remove the portalfs kernel file system driver.  Replace mount_portal(8)
with a version based on puffs.  User functionality remains the same.

Revision 1.953: download - view: text, markup, annotated - select for diffs
Mon Nov 30 16:19:55 2009 UTC (15 years ago) by tsutsui
Branches: MAIN
Diff to: previous 1.952: preferred, colored
Changes since revision 1.952: +6 -2 lines
Add udl(4) and wsdisplay(4) as its child.

Revision 1.952: download - view: text, markup, annotated - select for diffs
Sat Nov 21 12:15:55 2009 UTC (15 years ago) by tsutsui
Branches: MAIN
Diff to: previous 1.951: preferred, colored
Changes since revision 1.951: +14 -14 lines
- more options<space><tab>
- capitalize Ethenet

Revision 1.951: download - view: text, markup, annotated - select for diffs
Sat Nov 21 12:09:15 2009 UTC (15 years ago) by tsutsui
Branches: MAIN
Diff to: previous 1.950: preferred, colored
Changes since revision 1.950: +15 -15 lines
- use options<space><tab>
- remove an extra whitespace

Revision 1.925.2.3: download - view: text, markup, annotated - select for diffs
Sun Nov 1 13:58:19 2009 UTC (15 years, 1 month ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.2: preferred, colored
Changes since revision 1.925.2.2: +28 -6 lines
Sync with HEAD.

Revision 1.915.2.10: download - view: text, markup, annotated - select for diffs
Wed Oct 28 09:03:42 2009 UTC (15 years, 1 month ago) by bouyer
Branches: netbsd-5
CVS tags: netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1
Diff to: previous 1.915.2.9: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.9: +6 -2 lines
Pull up the following revisions, requested by sborrill in ticket #1114:
	share/man/man4/sdhc.4           1.1-1.2
	sys/dev/pci/sdhc_pci.c          1.1-1.3
	distrib/sets/lists/man/mi       patch
	share/man/man4/Makefile         patch
	sys/arch/amd64/conf/GENERIC     patch
	sys/arch/i386/conf/ALL          patch
	sys/arch/i386/conf/GENERIC      patch
	sys/dev/pci/files.pci           patch
	sys/dev/pci/pcidevs             patch
	sys/dev/pci/pcidevs.h           regen
	sys/dev/pci/pcidevs_data.h      regen

Add sdhc(4), a driver for SD controllers following the SD Host
Controller Standard Simplified Specification.

Revision 1.915.2.9: download - view: text, markup, annotated - select for diffs
Thu Oct 8 09:47:09 2009 UTC (15 years, 2 months ago) by sborrill
Branches: netbsd-5
Diff to: previous 1.915.2.8: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.8: +7 -2 lines
Pull up the following revisions(s) (requested by jmcneill in ticket #1045):
	distrib/sets/lists/man/mi:	revision 1.1160
	share/man/man4/Makefile:	revision 1.499
	share/man/man4/wb.4:		revision 1.1-1.2
	share/man/man4/ld.4:		revision 1.17
	sys/arch/i386/conf/ALL:		revision 1.215-1.216 + patch
	sys/arch/i386/conf/GENERIC:	revision 1.946-1.947 + patch
	sys/arch/amd64/conf/GENERIC:	revision 1.254-1.256 + patch
	sys/conf/files:			revision 1.958
	sys/dev/acpi/files.acpi:	revision 1.59
	sys/dev/acpi/wb_acpi.c:		revision 1.1
	sys/dev/ic/w83l518d.c:		revision 1.1
	sys/dev/ic/w83l518d_sdmmc.c:	revision 1.1
	sys/dev/ic/w83l518d_sdmmc.h:	revision 1.1
	sys/dev/ic/w83l518dreg.h:	revision 1.1
	sys/dev/ic/w83l518dvar.h.c:	revision 1.1

wb(4): Add a driver for Winbond W83L518D SD/MMC readers.

Revision 1.915.2.8: download - view: text, markup, annotated - select for diffs
Mon Oct 5 11:37:13 2009 UTC (15 years, 2 months ago) by sborrill
Branches: netbsd-5
Diff to: previous 1.915.2.7: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.7: +5 -2 lines
Pull up the following revisions(s) (requested by jmcneill in ticket #1061):
	sys/arch/x86/conf/files.x86:	revision 1.53
	sys/arch/x86/include/cpuvar.h:	revision 1.31
	sys/arch/x86/x86/identcpu.c:	revision 1.17
	sys/arch/x86/x86/viac7temp.c:	revision 1.1
	sys/arch/i386/conf/ALL:	revision 1.218
	sys/arch/i386/conf/GENERIC:	revision 1.949
Add support for VIA C7 temperature sensors (options VIA_C7TEMP) and enable
in i386 GENERIC kernel.

Revision 1.950: download - view: text, markup, annotated - select for diffs
Sat Oct 3 13:37:27 2009 UTC (15 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.949: preferred, colored
Changes since revision 1.949: +5 -5 lines
Enable viapcib

Revision 1.949: download - view: text, markup, annotated - select for diffs
Fri Oct 2 18:50:49 2009 UTC (15 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.948: preferred, colored
Changes since revision 1.948: +5 -2 lines
Add and enable options VIA_C7TEMP

Revision 1.948: download - view: text, markup, annotated - select for diffs
Fri Oct 2 16:47:52 2009 UTC (15 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.947: preferred, colored
Changes since revision 1.947: +3 -2 lines
PR# kern/42139: ACPI WMI: new driver

Import acpiwmi(4) from Jukka Ruohonen. From the PR:

Attached is a driver that implements ACPI WMI API:

http://www.microsoft.com/whdc/system/pnppwr/wmi/wmi-acpi.mspx

The WMI is used to provide a generic interface for OEMs to use certain
platform/laptop-specific additions to the standard ACPI in a somewhat
portable way. These can be hotkeys for additional buttons, different event
handlers (wireless kill switch, lid switch, etc.), and so on. At least HP
and Acer use it by default nowadays.

The benefit of this interface would be portability. For an example, instead
of hpqlb(4) that works only with certain HP models, we could have a generic
HP WMI-driver that should work in theory across all HP laptops. On many new
laptops WMI may also be the only way to access laptop/manufacturer-specific
features.

Revision 1.947: download - view: text, markup, annotated - select for diffs
Wed Sep 30 22:19:00 2009 UTC (15 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.946: preferred, colored
Changes since revision 1.946: +3 -2 lines
Need sdmmc* at wb?

Revision 1.946: download - view: text, markup, annotated - select for diffs
Wed Sep 30 20:47:10 2009 UTC (15 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.945: preferred, colored
Changes since revision 1.945: +3 -2 lines
add and enable wb(4)

Revision 1.915.2.7: download - view: text, markup, annotated - select for diffs
Sat Sep 26 19:52:09 2009 UTC (15 years, 2 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.915.2.6: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.6: +6 -2 lines
Pull up following revision(s) (requested by jmcneill in ticket #946):
	distrib/sets/lists/man/mi: revision 1.1155
	doc/CHANGES: revision 1.1285
	etc/MAKEDEV.tmpl: revision 1.128
	share/man/man4/Makefile: revision 1.498 via patch
	share/man/man4/hdaudio.4: revision 1.1-1.3
	share/man/man8/MAKEDEV.8: revision 1.36
	sys/arch/amd64/conf/GENERIC: revision 1.250-1.251
	sys/arch/amd64/conf/XEN3_DOM0: revision 1.44-1.45
	sys/arch/i386/conf/ALL: revision 1.206-1.207
	sys/arch/i386/conf/GENERIC: revision 1.942-1.943
	sys/arch/i386/conf/XEN3_DOM0: patch
	sys/conf/majors: revision 1.47 via patch
	sys/dev/pci/hdaudio/files.hdaudio: revision 1.1-1.2
	sys/dev/pci/hdaudio/hdaudio.c: revision 1.1-1.4
	sys/dev/pci/hdaudio/hdaudio_afg.c: revisions 1.1-1.14
	sys/dev/pci/hdaudio/hdaudio_mixer.h: revisions 1.1-1.3
	sys/dev/pci/hdaudio/hdaudio_pci.c: revisions 1.1-1.2
	sys/dev/pci/hdaudio/hdaudioio.h: revisions 1.1-1.2
	sys/dev/pci/hdaudio/hdaudioreg.h: revisions 1.1-1.3
	sys/dev/pci/hdaudio/hdaudiovar.h: revisions 1.1-1.4
	sys/dev/pci/files.pci: revisions 1.319 and 1.322 via patch
hdaudio(4) is a standards-compliant driver for High Definition Audio.
It will replace azalia(4) after testing.
To use, comment out azalia in your kernel configuration and uncomment the
hdaudio and hdafg lines so it reads:
hdaudio*        at pci? dev ? function ?
hdafg*          at hdaudiobus?
You should also:
cd /dev
sh MAKEDEV audio

Revision 1.945: download - view: text, markup, annotated - select for diffs
Sun Sep 20 01:14:31 2009 UTC (15 years, 2 months ago) by christos
Branches: MAIN
Diff to: previous 1.944: preferred, colored
Changes since revision 1.944: +3 -2 lines
add toshide

Revision 1.890.2.4: download - view: text, markup, annotated - select for diffs
Wed Sep 16 13:37:39 2009 UTC (15 years, 2 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.3: preferred, colored; branchpoint 1.890: preferred, colored
Changes since revision 1.890.2.3: +6 -2 lines
sync with head

Revision 1.915.2.6: download - view: text, markup, annotated - select for diffs
Sun Sep 13 22:11:14 2009 UTC (15 years, 3 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.915.2.5: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.5: +3 -2 lines
Pull up following revision(s) (requested by jmcneill in ticket #943):
	sys/arch/i386/conf/ALL: revision 1.186
	sys/arch/i386/conf/GENERIC: revision 1.921
add options PMS_ELANTECH_TOUCHPAD

Revision 1.944: download - view: text, markup, annotated - select for diffs
Mon Sep 7 22:59:09 2009 UTC (15 years, 3 months ago) by jmcneill
Branches: MAIN
CVS tags: yamt-nfs-mp-base8
Diff to: previous 1.943: preferred, colored
Changes since revision 1.943: +4 -4 lines
Switch on hdaudio(4)

Revision 1.943: download - view: text, markup, annotated - select for diffs
Mon Sep 7 10:40:54 2009 UTC (15 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.942: preferred, colored
Changes since revision 1.942: +4 -4 lines
Refer to hdaudio as 'High Definition Audio', not
'Intel High Definition Audio' as many vendors implement the HD audio spec.

Revision 1.942: download - view: text, markup, annotated - select for diffs
Sun Sep 6 17:25:56 2009 UTC (15 years, 3 months ago) by sborrill
Branches: MAIN
Diff to: previous 1.941: preferred, colored
Changes since revision 1.941: +6 -2 lines
hdaudio(4) is a standards-compliant driver for Intel High Definition Audio.
It will replace azalia(4) after testing.

To use, comment out azalia in your kernel configuration and uncomment the
hdaudio and hdafg lines so it reads:

# Intel High Definition Audio
hdaudio*	at pci? dev ? function ?
hdafg*		at hdaudiobus?

You should also:
cd /dev
sh MAKEDEV audio

Revision 1.890.2.3: download - view: text, markup, annotated - select for diffs
Wed Aug 19 18:46:18 2009 UTC (15 years, 3 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.2: preferred, colored; branchpoint 1.890: preferred, colored
Changes since revision 1.890.2.2: +18 -4 lines
sync with head.

Revision 1.941: download - view: text, markup, annotated - select for diffs
Sat Aug 15 08:44:35 2009 UTC (15 years, 3 months ago) by mbalmer
Branches: MAIN
CVS tags: yamt-nfs-mp-base7
Diff to: previous 1.940: preferred, colored
Changes since revision 1.940: +9 -2 lines
Add commented entries for keylock support.

Revision 1.940: download - view: text, markup, annotated - select for diffs
Wed Jul 29 11:58:31 2009 UTC (15 years, 4 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.939: preferred, colored
Changes since revision 1.939: +4 -3 lines
Fix (commented out) gpioow usage.

Revision 1.939: download - view: text, markup, annotated - select for diffs
Wed Jul 29 11:55:40 2009 UTC (15 years, 4 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.938: preferred, colored
Changes since revision 1.938: +4 -2 lines
Add commented out entries for gpiosim and gpio at gpiosim.

Revision 1.938: download - view: text, markup, annotated - select for diffs
Mon Jul 27 12:34:13 2009 UTC (15 years, 4 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.937: preferred, colored
Changes since revision 1.937: +3 -2 lines
Support Marvell Hercules-I/II SATA Controllers.

Revision 1.925.2.2: download - view: text, markup, annotated - select for diffs
Thu Jul 23 23:31:35 2009 UTC (15 years, 4 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.1: preferred, colored
Changes since revision 1.925.2.1: +6 -3 lines
Sync with HEAD.

Revision 1.937: download - view: text, markup, annotated - select for diffs
Sun Jul 19 06:28:08 2009 UTC (15 years, 4 months ago) by kiyohara
Branches: MAIN
CVS tags: jymxensuspend-base
Diff to: previous 1.936: preferred, colored
Changes since revision 1.936: +3 -2 lines
Support siisata@cardbus.
  It tested on amd64 and i386 only.

Revision 1.936: download - view: text, markup, annotated - select for diffs
Sun Jul 19 02:50:44 2009 UTC (15 years, 4 months ago) by rmind
Branches: MAIN
Diff to: previous 1.935: preferred, colored
Changes since revision 1.935: +4 -3 lines
Make POSIX message queues a kernel module.

Revision 1.935: download - view: text, markup, annotated - select for diffs
Sat Jul 18 16:31:42 2009 UTC (15 years, 4 months ago) by reinoud
Branches: MAIN
Diff to: previous 1.934: preferred, colored
Changes since revision 1.934: +3 -2 lines
Import read-only part of the NiLFS (v2) implementation for NetBSD. It has been
tested with a DEBUG+DIAGNOSTIC+LOCKDEBUG kernel. To summerise NiLFS, i'll
repeat my posting to tech-kern here:

NiLFS stands for New implementation of Logging File System; LFS done
right they claim :) It is at version 2 now and is being developed by NTT, the
Japanese telecom company and recently put into the linux source tree. See
http://www.nilfs.org. The on-disc format is not completely frozen and i expect
at least one minor revision to come in time.

The benefits of NiLFS are build-in fine-grained checkpointing, persistent
snapshots, multiple mounts and very large file and media support. Every
checkpoint can be transformed into a snapshot and v.v. It is said to perform
very well on flash media since it is not overwriting pieces apart from a
incidental update of the superblock, but that might change. It is accompanied
by a cleaner to clean up the segments and recover lost space.

My work is not a port of the linux code; its a new implementation. Porting the
code would be more work since its very linux oriented and never written to be
ported outside linux. The goal is to be fully interchangable. The code is non
intrusive to other parts of the kernel. It is also very light-weight.

The current state of the code is read-only access to both clean and dirty
NiLFS partitions. On mounting a dirty partition it rolls forward the log to
the last checkpoint. Full read-write support is however planned!

Just as the linux code, mount_nilfs allows for the `head' to be mounted
read/write and allows multiple read-only snapshots/checkpoint mounts next to
it.

By allowing the RW mount at a different snapshot for read-write it should be
possible eventually to revert back to a previous state; i.e. try to upgrade a
system and being able to revert to the exact state prior to the upgrade.

Compared to other FS's its pretty light-weight, suitable for embedded use and
on flash media. The read-only code is currently 17kb object code on
NetBSD/i386. I doubt the read-write code will surpass the 50 or 60. Compared
this to FFS being 156kb, UDF being 84 kb and NFS being 130kb. Run-time memory
usage is most likely not very different from other uses though maybe a bit
higher than FFS.

Revision 1.925.2.1: download - view: text, markup, annotated - select for diffs
Wed May 13 17:17:48 2009 UTC (15 years, 7 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925: preferred, colored
Changes since revision 1.925: +35 -29 lines
Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.

Revision 1.890.2.2: download - view: text, markup, annotated - select for diffs
Mon May 4 08:11:15 2009 UTC (15 years, 7 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.1: preferred, colored; branchpoint 1.890: preferred, colored
Changes since revision 1.890.2.1: +105 -70 lines
sync with head.

Revision 1.915.2.5: download - view: text, markup, annotated - select for diffs
Sun May 3 23:45:46 2009 UTC (15 years, 7 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.915.2.4: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.4: +5 -2 lines
Pull up following revision(s) (requested by cegger in ticket #735):
	sys/dev/pci/if_age.c: revisions 1.1-1.28
	sys/dev/pci/if_agereg.h: revisions 1.1-1.2
	sys/dev/pci/if_ale.c: revisions 1.1-1.3
	sys/dev/pci/if_alereg.h: revisions 1.1-1.2
	sys/dev/pci/files.pci: revisions 1.310-1.313
	sys/dev/mii/atphy.c: revisions 1.1-1.5
	sys/dev/mii/files.mii: revision 1.42
	share/man/man4/age.4: revisions 1.1-1.3
	share/man/man4/ale.4: revisions 1.1-1.2
	share/man/man4/atphy.4: revisions 1.1-1.2
	share/man/man4/Makefile: revisions 1.486, 1.489
	distrib/sets/lists/man/mi: revisions 1.1118, 1.1132
	sys/arch/i386/conf/GENERIC: revisions 1.928, 1.933
	sys/arch/i386/conf/XEN2_DOM0: revisions 1.57, 1.60
	sys/arch/amd64/conf/GENERIC: revisions 1.239, 1.241
	sys/arch/amd64/conf/XEN3_DOM0: revisions 1.38, 1.42
Add the age(4) and ale(4) drivers for Attansic L1 and Atheros
AR8121/AR8113/AR8114 devices respectively.

Revision 1.915.2.4: download - view: text, markup, annotated - select for diffs
Fri May 1 01:20:42 2009 UTC (15 years, 7 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.915.2.3: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.3: +3 -2 lines
Pull up following revision(s) (requested by jmcneill in ticket #260):
	sys/arch/i386/conf/ALL: revision 1.187
	sys/arch/i386/conf/GENERIC: revision 1.922
PR# port-i386/40284: add AMD Geode CS5536 audio driver; add gcscaudio(4)
to i386 GENERIC and ALL kernels

Revision 1.914.2.3: download - view: text, markup, annotated - select for diffs
Tue Apr 28 07:34:07 2009 UTC (15 years, 7 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.914.2.2: preferred, colored; branchpoint 1.914: preferred, colored; next MAIN 1.915: preferred, colored
Changes since revision 1.914.2.2: +33 -19 lines
Sync with HEAD.

Revision 1.934: download - view: text, markup, annotated - select for diffs
Tue Apr 21 03:00:29 2009 UTC (15 years, 7 months ago) by nonaka
Branches: MAIN
CVS tags: yamt-nfs-mp-base6, yamt-nfs-mp-base5, yamt-nfs-mp-base4, yamt-nfs-mp-base3, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base
Diff to: previous 1.933: preferred, colored
Changes since revision 1.933: +15 -2 lines
Added SD/MMC support from OpenBSD.
tested on i386, amd64 at current-users ML by pgoyette@.
tested on zaurus by myself.

Revision 1.933: download - view: text, markup, annotated - select for diffs
Mon Apr 20 20:49:21 2009 UTC (15 years, 7 months ago) by cegger
Branches: MAIN
Diff to: previous 1.932: preferred, colored
Changes since revision 1.932: +3 -2 lines
add ale(4)

Revision 1.932: download - view: text, markup, annotated - select for diffs
Fri Apr 10 23:00:53 2009 UTC (15 years, 8 months ago) by perry
Branches: MAIN
Diff to: previous 1.931: preferred, colored
Changes since revision 1.931: +3 -2 lines
add commented out LOCKDEBUG

Revision 1.931: download - view: text, markup, annotated - select for diffs
Sun Mar 29 15:45:08 2009 UTC (15 years, 8 months ago) by ad
Branches: MAIN
Diff to: previous 1.930: preferred, colored
Changes since revision 1.930: +3 -3 lines
Unfuck compat some more

Revision 1.930: download - view: text, markup, annotated - select for diffs
Fri Mar 27 21:04:35 2009 UTC (15 years, 8 months ago) by ad
Branches: MAIN
Diff to: previous 1.929: preferred, colored
Changes since revision 1.929: +2 -5 lines
Remove -mtune, we'll let the compiler pick a good default (the current
default sucks).

Revision 1.799.2.18: download - view: text, markup, annotated - select for diffs
Tue Mar 24 21:25:02 2009 UTC (15 years, 8 months ago) by bouyer
Branches: netbsd-4
Diff to: previous 1.799.2.17: preferred, colored; branchpoint 1.799: preferred, colored; next MAIN 1.800: preferred, colored
Changes since revision 1.799.2.17: +3 -2 lines
Pullup the following revisions (requested by msaitoh in ticket #1284):
	distrib/sets/lists/base/mi		1.706-707,1.797
	distrib/sets/lists/man/mi		1.1006
	etc/mtree/NetBSD.dist			1.340
	share/man/man4/Makefile			1.432
	sys/arch/amd64/conf/GENERIC		1.149 via patch
	sys/arch/i386/conf/ALL			1.103
	sys/arch/i386/conf/GENERIC		1.832
	sys/arch/i386/conf/GENERIC_LAPTOP	1.237
	sys/arch/macppc/conf/GENERIC		1.257
	sys/arch/sparc64/conf/GENERIC		1.86
	sys/dev/usb/usbdevs			1.468,1.479-480 via patch
	sys/dev/usb/usbdevs.h			regen
	sys/dev/usb/usbdevs_data.h		regen
	sys/dev/microcode/Makefile		1.7
	sys/dev/usb/files.usb			patch
	share/man/man4/zyd.4			1.1 via patch
	sys/dev/microcode/zyd/Makefile		1.1-1.2
	sys/dev/microcode/zyd/build.c		1.1
	sys/dev/microcode/zyd/microcode.h	1.1
	sys/dev/microcode/zyd/zd1211-license	1.1
	sys/dev/microcode/zyd/zyd-zd1211	1.1
	sys/dev/microcode/zyd/zyd-zd1211b	1.1
	sys/dev/usb/if_zyd.c			patch
	sys/dev/usb/if_zydreg.h			1.1-1.2

Add ZyDAS ZD1211/ZD1211B USB IEEE 802.11b/g wireless network device support

Revision 1.929: download - view: text, markup, annotated - select for diffs
Tue Mar 17 20:04:39 2009 UTC (15 years, 8 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.928: preferred, colored
Changes since revision 1.928: +15 -15 lines
Reactivate native compatibility in GENERIC.

Revision 1.928: download - view: text, markup, annotated - select for diffs
Fri Mar 6 09:58:14 2009 UTC (15 years, 9 months ago) by cegger
Branches: MAIN
Diff to: previous 1.927: preferred, colored
Changes since revision 1.927: +4 -2 lines
add age(4) and atphy(4)

Revision 1.914.2.2: download - view: text, markup, annotated - select for diffs
Tue Mar 3 18:28:59 2009 UTC (15 years, 9 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.914.2.1: preferred, colored; branchpoint 1.914: preferred, colored
Changes since revision 1.914.2.1: +8 -15 lines
Sync with HEAD.

Revision 1.915.2.3: download - view: text, markup, annotated - select for diffs
Thu Feb 19 20:23:46 2009 UTC (15 years, 9 months ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20091211, matt-nb4-mips64-k7-u2a-k9b
Branch point for: matt-nb5-mips64
Diff to: previous 1.915.2.2: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.2: +6 -2 lines
Apply patch (requested by pooka in ticket #453):
Add puffs and putter to amd64, i386, macppc, and sparc64 GENERIC kernels.

Revision 1.927: download - view: text, markup, annotated - select for diffs
Mon Feb 16 23:40:14 2009 UTC (15 years, 9 months ago) by jmcneill
Branches: MAIN
CVS tags: nick-hppapmap-base2
Diff to: previous 1.926: preferred, colored
Changes since revision 1.926: +3 -3 lines
Fix typo in genfb line

Revision 1.926: download - view: text, markup, annotated - select for diffs
Mon Feb 16 22:43:47 2009 UTC (15 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.925: preferred, colored
Changes since revision 1.925: +4 -12 lines
Add and enable genfb(4), and remove vesafb(4) section.

Revision 1.925: download - view: text, markup, annotated - select for diffs
Sat Feb 7 09:58:10 2009 UTC (15 years, 10 months ago) by mrg
Branches: MAIN
Branch point for: jym-xensuspend
Diff to: previous 1.924: preferred, colored
Changes since revision 1.924: +3 -3 lines
move COMPAT_50 into MONOLITHIC, as pointed out by enami@.

Revision 1.915.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 2 22:12:34 2009 UTC (15 years, 10 months ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-0-RC2
Diff to: previous 1.915.2.1: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.1: +5 -5 lines
Pull up following revision(s) (requested by ad in ticket #402):
	sys/arch/amd64/conf/GENERIC: revision 1.237
	sys/arch/i386/conf/GENERIC: revision 1.924
Enable BUFQ_PRIOCSCAN by default.

Revision 1.924: download - view: text, markup, annotated - select for diffs
Thu Jan 29 21:48:13 2009 UTC (15 years, 10 months ago) by ad
Branches: MAIN
Diff to: previous 1.923: preferred, colored
Changes since revision 1.923: +5 -5 lines
Enable BUFQ_PRIOCSCAN by default.

Revision 1.923: download - view: text, markup, annotated - select for diffs
Sat Jan 24 05:06:06 2009 UTC (15 years, 10 months ago) by mrg
Branches: MAIN
Diff to: previous 1.922: preferred, colored
Changes since revision 1.922: +3 -2 lines
add COMPAT_50 to all the configs with COMPAT_40.

Revision 1.914.2.1: download - view: text, markup, annotated - select for diffs
Mon Jan 19 13:16:15 2009 UTC (15 years, 10 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.914: preferred, colored
Changes since revision 1.914: +63 -59 lines
Sync with HEAD.

Revision 1.881.6.6: download - view: text, markup, annotated - select for diffs
Sat Jan 17 13:28:02 2009 UTC (15 years, 10 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881.6.5: preferred, colored; branchpoint 1.881: preferred, colored; next MAIN 1.882: preferred, colored
Changes since revision 1.881.6.5: +71 -60 lines
Sync with HEAD.

Revision 1.922: download - view: text, markup, annotated - select for diffs
Sun Dec 28 15:18:21 2008 UTC (15 years, 11 months ago) by jmcneill
Branches: MAIN
CVS tags: mjf-devfs2-base
Diff to: previous 1.921: preferred, colored
Changes since revision 1.921: +3 -2 lines
PR# port-i386/40284: add AMD Geode CS5536 audio driver; add gcscaudio(4)
to i386 GENERIC and ALL kernels

Revision 1.921: download - view: text, markup, annotated - select for diffs
Sun Dec 14 00:44:29 2008 UTC (16 years ago) by jmcneill
Branches: MAIN
Diff to: previous 1.920: preferred, colored
Changes since revision 1.920: +3 -2 lines
add options PMS_ELANTECH_TOUCHPAD

Revision 1.901.2.2: download - view: text, markup, annotated - select for diffs
Sat Dec 13 01:13:13 2008 UTC (16 years ago) by haad
Branches: haad-dm
Diff to: previous 1.901.2.1: preferred, colored; branchpoint 1.901: preferred, colored; next MAIN 1.902: preferred, colored
Changes since revision 1.901.2.1: +61 -59 lines
Update haad-dm branch to haad-dm-base2.

Revision 1.920: download - view: text, markup, annotated - select for diffs
Tue Nov 25 02:47:19 2008 UTC (16 years ago) by cube
Branches: MAIN
CVS tags: haad-nbase2, haad-dm-base2, haad-dm-base, ad-audiomp2-base, ad-audiomp2
Diff to: previous 1.919: preferred, colored
Changes since revision 1.919: +4 -4 lines
Don't compile PPP compressors in by default, they'll be auto-loaded.  This
saves an incredible 10k of text and data.

Revision 1.919: download - view: text, markup, annotated - select for diffs
Mon Nov 24 11:41:11 2008 UTC (16 years ago) by ad
Branches: MAIN
Diff to: previous 1.918: preferred, colored
Changes since revision 1.918: +2 -3 lines
Remove softdep, pass 1. We are focused on improving journalling.

Proposed on tech-kern@.

Revision 1.918: download - view: text, markup, annotated - select for diffs
Fri Nov 21 15:55:59 2008 UTC (16 years ago) by ad
Branches: MAIN
Diff to: previous 1.917: preferred, colored
Changes since revision 1.917: +57 -53 lines
Remove the following from i386 GENERIC since they are also provided by
modules. Shrinks the kernel by 1278kB. XXX Need to further investigate
situation with vcoda and nsmb.

- all file systems
- all exec formats
- all compat code
- POSIX AIO
- the NFS server
- accept filters

Revision 1.915.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 18 01:56:58 2008 UTC (16 years ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-0-RC1
Diff to: previous 1.915: preferred, colored
Changes since revision 1.915: +3 -2 lines
Apply patch (requested by bouyer in ticket #65):
Add i386-specific COMPAT_30_PTHREAD option (enabled where COMPAT_30
is enabled), which restore binary compatibility with netbsd-3 libpthread.

Revision 1.917: download - view: text, markup, annotated - select for diffs
Wed Nov 12 14:36:31 2008 UTC (16 years, 1 month ago) by ad
Branches: MAIN
Diff to: previous 1.916: preferred, colored
Changes since revision 1.916: +3 -3 lines
Comment out P1003_1B_SEMAPHORE. The ksem module will now be autoloaded from
the file system if POSIX semaphores are used.

Revision 1.916: download - view: text, markup, annotated - select for diffs
Wed Nov 12 12:36:01 2008 UTC (16 years, 1 month ago) by ad
Branches: MAIN
Diff to: previous 1.915: preferred, colored
Changes since revision 1.915: +2 -3 lines
Remove LKMs and switch to the module framework, pass 1.

Proposed on tech-kern@.

Revision 1.915: download - view: text, markup, annotated - select for diffs
Wed Oct 29 11:56:53 2008 UTC (16 years, 1 month ago) by joerg
Branches: MAIN
CVS tags: netbsd-5-base
Branch point for: netbsd-5
Diff to: previous 1.914: preferred, colored
Changes since revision 1.914: +4 -4 lines
Reenable ichlpcib by default. This allows all modern ICH systems to use
the watchdog support out-of-the-box.

It is not clear, if the workaround for ancient revisions with broken
SpeedStep work, so if this breaks a report with PCI dump of the
southbridge is required to blacklist them.

Revision 1.901.2.1: download - view: text, markup, annotated - select for diffs
Sun Oct 19 22:15:48 2008 UTC (16 years, 1 month ago) by haad
Branches: haad-dm
Diff to: previous 1.901: preferred, colored
Changes since revision 1.901: +28 -13 lines
Sync with HEAD.

Revision 1.914: download - view: text, markup, annotated - select for diffs
Sun Oct 19 11:34:31 2008 UTC (16 years, 1 month ago) by joerg
Branches: MAIN
CVS tags: matt-mips64-base2, haad-dm-base1
Branch point for: nick-hppapmap
Diff to: previous 1.913: preferred, colored
Changes since revision 1.913: +6 -2 lines
Add u3g entries in kernels that have ugensa as well.

Revision 1.913: download - view: text, markup, annotated - select for diffs
Sat Oct 11 21:54:11 2008 UTC (16 years, 2 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.912: preferred, colored
Changes since revision 1.912: +3 -2 lines
jme(4), a driver for JMicron Technologies JME250 Gigabit Ethernet and
JME260 Fast Ethernet PCI Express controllers.
Written with a lot of cut-n-paste from the FreeBSD jme(4) driver.
No support for jumbo ethernet frames yet (but should come soon).
Thanks to JMicron Technologies for providing me sample boards and
documentation for this work.

Revision 1.894.2.4: download - view: text, markup, annotated - select for diffs
Fri Oct 10 22:29:04 2008 UTC (16 years, 2 months ago) by skrll
Branches: wrstuden-revivesa
Diff to: previous 1.894.2.3: preferred, colored; next MAIN 1.895: preferred, colored
Changes since revision 1.894.2.3: +7 -10 lines
Sync with HEAD.

Revision 1.912: download - view: text, markup, annotated - select for diffs
Tue Oct 7 12:43:32 2008 UTC (16 years, 2 months ago) by pgoyette
Branches: MAIN
CVS tags: wrstuden-revivesa-base-4
Diff to: previous 1.911: preferred, colored
Changes since revision 1.911: +6 -5 lines
Move all platforms to new dbCool driver in preparation for removal of
chip-specific drivers

Revision 1.911: download - view: text, markup, annotated - select for diffs
Tue Oct 7 09:30:04 2008 UTC (16 years, 2 months ago) by rmind
Branches: MAIN
Diff to: previous 1.910: preferred, colored
Changes since revision 1.910: +3 -2 lines
Add a note that SysV IPC parameters could be changed dynamically.

Revision 1.881.6.5: download - view: text, markup, annotated - select for diffs
Sun Oct 5 20:11:26 2008 UTC (16 years, 2 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881.6.4: preferred, colored; branchpoint 1.881: preferred, colored
Changes since revision 1.881.6.4: +0 -5 lines
Sync with HEAD.

Revision 1.910: download - view: text, markup, annotated - select for diffs
Tue Sep 30 16:45:33 2008 UTC (16 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.909: preferred, colored
Changes since revision 1.909: +2 -7 lines
Remove esl(4)

Revision 1.881.6.4: download - view: text, markup, annotated - select for diffs
Sun Sep 28 10:39:58 2008 UTC (16 years, 2 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881.6.3: preferred, colored; branchpoint 1.881: preferred, colored
Changes since revision 1.881.6.3: +16 -3 lines
Sync with HEAD.

Revision 1.894.2.3: download - view: text, markup, annotated - select for diffs
Wed Sep 24 16:38:49 2008 UTC (16 years, 2 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.894.2.2: preferred, colored
Changes since revision 1.894.2.2: +4 -2 lines
Merge in changes between wrstuden-revivesa-base-2 and
wrstuden-revivesa-base-3.

Revision 1.894.2.2: download - view: text, markup, annotated - select for diffs
Thu Sep 18 04:33:27 2008 UTC (16 years, 2 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.894.2.1: preferred, colored
Changes since revision 1.894.2.1: +16 -5 lines
Sync with wrstuden-revivesa-base-2.

Revision 1.909: download - view: text, markup, annotated - select for diffs
Tue Sep 9 03:26:42 2008 UTC (16 years, 3 months ago) by ober
Branches: MAIN
CVS tags: wrstuden-revivesa-base-3
Diff to: previous 1.908: preferred, colored
Changes since revision 1.908: +3 -2 lines
Adding iwn(4) to GENERIC

Revision 1.908: download - view: text, markup, annotated - select for diffs
Tue Sep 9 01:19:37 2008 UTC (16 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.907: preferred, colored
Changes since revision 1.907: +3 -2 lines
Add uvideo(4)

Revision 1.907: download - view: text, markup, annotated - select for diffs
Sun Sep 7 12:01:25 2008 UTC (16 years, 3 months ago) by tron
Branches: MAIN
CVS tags: wrstuden-revivesa-base-2
Diff to: previous 1.906: preferred, colored
Changes since revision 1.906: +2 -4 lines
Remove references to non-existant kernel option NO_TSC_TIME.
This fixes PR port-i386/39460 by Juan RP.

Revision 1.906: download - view: text, markup, annotated - select for diffs
Sat Sep 6 20:08:01 2008 UTC (16 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.905: preferred, colored
Changes since revision 1.905: +8 -2 lines
Enable video(4) and pseye(4)

Revision 1.905: download - view: text, markup, annotated - select for diffs
Thu Aug 21 18:06:18 2008 UTC (16 years, 3 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.904: preferred, colored
Changes since revision 1.904: +3 -3 lines
Enable ipmi(4) by default in GENERIC and related kernels.

Revision 1.904: download - view: text, markup, annotated - select for diffs
Mon Aug 4 03:55:47 2008 UTC (16 years, 4 months ago) by tls
Branches: MAIN
Diff to: previous 1.903: preferred, colored
Changes since revision 1.903: +7 -2 lines
Add accept filters, ported from FreeBSD by Coyote Point Systems.  Add inetd
support for specifying an accept filter for a service (mostly as a usage
example, but it can be handy for other things).  Manual pages to follow
in a day or so.

OK core@.

Revision 1.903: download - view: text, markup, annotated - select for diffs
Thu Jul 31 14:15:00 2008 UTC (16 years, 4 months ago) by joerg
Branches: MAIN
Diff to: previous 1.902: preferred, colored
Changes since revision 1.902: +3 -2 lines
Include VGA_POST by default in GENERIC and ALL on x86 now that the code
is conditional.

Revision 1.902: download - view: text, markup, annotated - select for diffs
Thu Jul 31 07:41:01 2008 UTC (16 years, 4 months ago) by simonb
Branches: MAIN
Diff to: previous 1.901: preferred, colored
Changes since revision 1.901: +3 -2 lines
Add "options WAPBL" to standard GENERIC/INSTALL type configs.

Revision 1.881.6.3: download - view: text, markup, annotated - select for diffs
Sun Jun 29 09:32:57 2008 UTC (16 years, 5 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881.6.2: preferred, colored; branchpoint 1.881: preferred, colored
Changes since revision 1.881.6.2: +3 -0 lines
Sync with HEAD.

Revision 1.894.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 23 04:30:26 2008 UTC (16 years, 5 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.894: preferred, colored
Changes since revision 1.894: +12 -5 lines
Sync w/ -current. 34 merge conflicts to follow.

Revision 1.900.2.2: download - view: text, markup, annotated - select for diffs
Wed Jun 18 16:32:41 2008 UTC (16 years, 5 months ago) by simonb
Branches: simonb-wapbl
Diff to: previous 1.900.2.1: preferred, colored; branchpoint 1.900: preferred, colored; next MAIN 1.901: preferred, colored
Changes since revision 1.900.2.1: +5 -2 lines
Sync with head.

Revision 1.889.2.3: download - view: text, markup, annotated - select for diffs
Tue Jun 17 09:14:01 2008 UTC (16 years, 5 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.889.2.2: preferred, colored; branchpoint 1.889: preferred, colored; next MAIN 1.890: preferred, colored
Changes since revision 1.889.2.2: +5 -2 lines
sync with head.

Revision 1.901: download - view: text, markup, annotated - select for diffs
Wed Jun 11 20:37:38 2008 UTC (16 years, 6 months ago) by perry
Branches: MAIN
CVS tags: yamt-pf42-base4, wrstuden-revivesa-base-1, wrstuden-revivesa-base, simonb-wapbl-nbase, simonb-wapbl-base
Branch point for: haad-dm
Diff to: previous 1.900: preferred, colored
Changes since revision 1.900: +5 -2 lines
Add cmos(4). This should probably be added to amd64 as well.

Revision 1.900.2.1: download - view: text, markup, annotated - select for diffs
Tue Jun 10 14:51:21 2008 UTC (16 years, 6 months ago) by simonb
Branches: simonb-wapbl
Diff to: previous 1.900: preferred, colored
Changes since revision 1.900: +3 -2 lines
Initial commit of Wasabi System's WAPBL (Write Ahead Physical Block
Logging) journaling code.  Originally written by Darrin B. Jewell
while at Wasabi and updated to -current by Antti Kantee, Andy Doran,
Greg Oster and Simon Burge.

Still a number of issues - look in doc/BRANCHES for "simonb-wapbl"
for more info.

Revision 1.889.2.2: download - view: text, markup, annotated - select for diffs
Wed Jun 4 02:04:46 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.889.2.1: preferred, colored; branchpoint 1.889: preferred, colored
Changes since revision 1.889.2.1: +9 -3 lines
sync with head

Revision 1.799.2.7.2.4: download - view: text, markup, annotated - select for diffs
Tue Jun 3 20:47:14 2008 UTC (16 years, 6 months ago) by skrll
Branches: wrstuden-fixsa
Diff to: previous 1.799.2.7.2.3: preferred, colored; next MAIN 1.799.2.8: preferred, colored
Changes since revision 1.799.2.7.2.3: +4 -2 lines
Sync with netbsd-4.

Revision 1.881.6.2: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:22:13 2008 UTC (16 years, 6 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881.6.1: preferred, colored; branchpoint 1.881: preferred, colored
Changes since revision 1.881.6.1: +24 -18 lines
Sync with HEAD.

Revision 1.900: download - view: text, markup, annotated - select for diffs
Fri May 30 19:51:00 2008 UTC (16 years, 6 months ago) by dyoung
Branches: MAIN
CVS tags: yamt-pf42-base3
Branch point for: simonb-wapbl
Diff to: previous 1.899: preferred, colored
Changes since revision 1.899: +3 -2 lines
Add pci* at elansc? bus ?.  Should fix Jasper's PR, port-i386/38800.

Revision 1.899: download - view: text, markup, annotated - select for diffs
Mon May 26 00:25:32 2008 UTC (16 years, 6 months ago) by christos
Branches: MAIN
Diff to: previous 1.898: preferred, colored
Changes since revision 1.898: +5 -2 lines
Add uberry.

Revision 1.898: download - view: text, markup, annotated - select for diffs
Sun May 25 19:05:17 2008 UTC (16 years, 6 months ago) by agc
Branches: MAIN
Diff to: previous 1.897: preferred, colored
Changes since revision 1.897: +3 -3 lines
Re-enable INCLUDE_CONFIG_FILE in the GENERIC kernel config files for
i386, amd64 and usermode - it is necessary for retrieving information
on kernel configuration for running kernels - cf config -x.

Revision 1.897: download - view: text, markup, annotated - select for diffs
Fri May 23 21:17:40 2008 UTC (16 years, 6 months ago) by jnemeth
Branches: MAIN
Diff to: previous 1.896: preferred, colored
Changes since revision 1.896: +3 -2 lines
add siisata(4) -- SiI SteelVine SATA2

Revision 1.896: download - view: text, markup, annotated - select for diffs
Sun May 18 22:05:59 2008 UTC (16 years, 6 months ago) by cegger
Branches: MAIN
CVS tags: hpcarm-cleanup-nbase
Diff to: previous 1.895: preferred, colored
Changes since revision 1.895: +3 -2 lines
acpidalb(4): Driver for PNP0C32 Hotkeys aka "Direct Application Launch Buttons".
"awesome" jmcneill

Revision 1.889.2.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:32:09 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.889: preferred, colored
Changes since revision 1.889: +17 -20 lines
sync with head.

Revision 1.890.2.1: download - view: text, markup, annotated - select for diffs
Fri May 16 02:22:32 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890: preferred, colored
Changes since revision 1.890: +14 -20 lines
sync with head.

Revision 1.895: download - view: text, markup, annotated - select for diffs
Tue May 13 13:43:47 2008 UTC (16 years, 7 months ago) by ad
Branches: MAIN
CVS tags: yamt-pf42-base2, yamt-nfs-mp-base2
Diff to: previous 1.894: preferred, colored
Changes since revision 1.894: +2 -4 lines
PR kern/35296 option PIC_DELAY not use

Revision 1.894: download - view: text, markup, annotated - select for diffs
Mon May 5 14:43:18 2008 UTC (16 years, 7 months ago) by ad
Branches: MAIN
Branch point for: wrstuden-revivesa
Diff to: previous 1.893: preferred, colored
Changes since revision 1.893: +9 -9 lines
The kernel is too large. Reduce size by commenting out eye candy options:

{ACPI,EISA,MII,PCI,USB,MCA}VERBOSE

Also remove INCLUDE_CONFIG_FILE, because it doesn't make sense in GENERIC.

Revision 1.893: download - view: text, markup, annotated - select for diffs
Fri May 2 15:26:38 2008 UTC (16 years, 7 months ago) by ad
Branches: MAIN
Diff to: previous 1.892: preferred, colored
Changes since revision 1.892: +6 -2 lines
- Give x86 BIOS boot the ability to load new style modules and pass them
  into the kernel. Based on a patch by jmcneill@, with many fixes and
  improvements by me.

- Put MEMORY_DISK_DYNAMIC and MODULAR into the GENERIC kernels, so that
  you can load miniroot.kmod from the boot blocks and boot into the
  installer!

Revision 1.892: download - view: text, markup, annotated - select for diffs
Thu May 1 20:18:18 2008 UTC (16 years, 7 months ago) by cegger
Branches: MAIN
Diff to: previous 1.891: preferred, colored
Changes since revision 1.891: +3 -2 lines
hpqlb(4): driver for HP Quick Launch buttons - found on HP Pavilion Notebooks

Revision 1.891: download - view: text, markup, annotated - select for diffs
Wed Apr 30 15:29:11 2008 UTC (16 years, 7 months ago) by ad
Branches: MAIN
Diff to: previous 1.890: preferred, colored
Changes since revision 1.890: +2 -11 lines
For PR kern/38537:

- Make MULTIPROCESSOR mandatory on i386.

Installation changes:

- Update installation section of release notes to match reality.
- Rename INSTALL to INSTALL_FLOPPY, retire INSTALL_LARGE.
- Build INSTALL kernel from GENERIC, like on amd64.
- Update boot menu to allow disabling ACPI and/or SMP.
- Remove GENERIC.NOACPI from the installed kernel list.
- TODO: install default boot.cfg in etc.tgz.
- TODO: possibly enable PCI fixup stuff at runtime if ACPI is disabled.

Build changes:

- No longer build ALL, it's for verification, is slow to build and the
  build process is already crippled by the number of kernels built.
- No longer build GENERIC.NOACPI.

Revision 1.890: download - view: text, markup, annotated - select for diffs
Tue Apr 22 22:37:14 2008 UTC (16 years, 7 months ago) by cegger
Branches: MAIN
CVS tags: yamt-nfs-mp-base
Branch point for: yamt-nfs-mp
Diff to: previous 1.889: preferred, colored
Changes since revision 1.889: +5 -2 lines
amdtemp(4): Driver for AMD CPU Temperature Sensors. Adopted from OpenBSD's kate(4).
Changes beyond OpenBSD's driver:
- Improved support for AMD K8
- Added support for AMD Barcelona, AMD Phenom and AMD Griffin
Tested on various single and multi-socket machines.
Review and OK xtreame

Revision 1.799.2.17: download - view: text, markup, annotated - select for diffs
Sat Apr 19 15:57:56 2008 UTC (16 years, 7 months ago) by bouyer
Branches: netbsd-4
CVS tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base
Diff to: previous 1.799.2.16: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.16: +3 -2 lines
Pull up following revision(s) (requested by sborrill in ticket #1128):
	sys/dev/pci/if_lii.c: revisions 1.1, 1.3 via patch
	sys/arch/i386/conf/ALL: revision 1.161 via patch
	share/man/man4/lii.4: revision 1.1 via patch
	sys/dev/pci/files.pci: revision 1.303 via patch
	sys/dev/DEVNAMES: revision 1.238 via patch
	sys/arch/i386/conf/GENERIC: revision 1.885 via patch
	distrib/sets/lists/man/mi: revisions 1.1062, 1.1063 via patch
	sys/arch/i386/conf/XEN2_DOM0: revision 1.43 via patch
	share/man/man4/Makefile: revision 1.460 via patch
	sys/arch/i386/conf/INSTALL: revision 1.323 via patch
	sys/dev/pci/if_liireg.h: revision 1.1 via patch
Add a driver for the Atheros/Attansic L2 Fast-Ethernet chip found on a
series of hardware that includes Asus's famous EeePC.

Revision 1.889: download - view: text, markup, annotated - select for diffs
Fri Apr 11 11:55:18 2008 UTC (16 years, 8 months ago) by tsutsui
Branches: MAIN
CVS tags: yamt-pf42-baseX, yamt-pf42-base
Branch point for: yamt-pf42
Diff to: previous 1.888: preferred, colored
Changes since revision 1.888: +3 -3 lines
Please don't leave a debug option in GENERIC.

Revision 1.888: download - view: text, markup, annotated - select for diffs
Wed Apr 9 17:35:17 2008 UTC (16 years, 8 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.887: preferred, colored
Changes since revision 1.887: +4 -4 lines
Attach elansc at mainbus instead of at pci.

Revision 1.887: download - view: text, markup, annotated - select for diffs
Thu Apr 3 22:51:09 2008 UTC (16 years, 8 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.886: preferred, colored
Changes since revision 1.886: +5 -2 lines
Add finsio(4) entry (commented out).

Revision 1.881.6.1: download - view: text, markup, annotated - select for diffs
Thu Apr 3 12:42:17 2008 UTC (16 years, 8 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881: preferred, colored
Changes since revision 1.881: +5 -3 lines
Sync with HEAD.

Revision 1.886: download - view: text, markup, annotated - select for diffs
Mon Mar 31 15:19:28 2008 UTC (16 years, 8 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.885: preferred, colored
Changes since revision 1.885: +3 -2 lines
Enable asus(4)

Revision 1.885: download - view: text, markup, annotated - select for diffs
Sat Mar 29 00:21:01 2008 UTC (16 years, 8 months ago) by cube
Branches: MAIN
Diff to: previous 1.884: preferred, colored
Changes since revision 1.884: +3 -2 lines
Add and enable lii(4).

Revision 1.881.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 24 07:14:58 2008 UTC (16 years, 8 months ago) by keiichi
Branches: keiichi-mipv6
Diff to: previous 1.881: preferred, colored; next MAIN 1.882: preferred, colored
Changes since revision 1.881: +3 -3 lines
sync with head.

Revision 1.844.2.3: download - view: text, markup, annotated - select for diffs
Sun Mar 23 02:04:05 2008 UTC (16 years, 8 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.844.2.2: preferred, colored; next MAIN 1.845: preferred, colored
Changes since revision 1.844.2.2: +13 -6 lines
sync with HEAD

Revision 1.884: download - view: text, markup, annotated - select for diffs
Tue Mar 18 20:48:42 2008 UTC (16 years, 8 months ago) by cube
Branches: MAIN
CVS tags: yamt-lazymbuf-base15, yamt-lazymbuf-base14, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, ad-socklock-base1
Diff to: previous 1.883: preferred, colored
Changes since revision 1.883: +289 -316 lines
Back out previous, which obviously wasn't meant to get committed.

Revision 1.883: download - view: text, markup, annotated - select for diffs
Tue Mar 18 20:46:35 2008 UTC (16 years, 8 months ago) by cube
Branches: MAIN
Diff to: previous 1.882: preferred, colored
Changes since revision 1.882: +316 -289 lines
Split device_t and softc for ATA devices, as well as wd(4).  Other
cosmetic changes where appropriate.

Revision 1.683.2.10: download - view: text, markup, annotated - select for diffs
Mon Mar 17 09:14:20 2008 UTC (16 years, 8 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.9: preferred, colored; next MAIN 1.684: preferred, colored
Changes since revision 1.683.2.9: +3 -3 lines
sync with head.

Revision 1.882: download - view: text, markup, annotated - select for diffs
Fri Feb 29 14:42:32 2008 UTC (16 years, 9 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.881: preferred, colored
Changes since revision 1.881: +3 -3 lines
Remove GENERIC.local from the repository

Make all the kernels that currently include their corresponding GENERIC.local
file use the cinclude directive instead of include.  This way config(1) will
not complain if the file cannot be found.

After doing this, remove the GENERIC.local files from the repository so that
the user will not see modified files during updates, and local changes to
them cannot end up in the repository by mistake.

Discussed in tech-kern@ earlier this month.  No strong objections.

Revision 1.859.2.4: download - view: text, markup, annotated - select for diffs
Mon Feb 18 21:04:37 2008 UTC (16 years, 9 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.859.2.3: preferred, colored; branchpoint 1.859: preferred, colored; next MAIN 1.860: preferred, colored
Changes since revision 1.859.2.3: +36 -12 lines
Sync with HEAD.

Revision 1.683.2.9: download - view: text, markup, annotated - select for diffs
Mon Feb 4 09:22:00 2008 UTC (16 years, 10 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.8: preferred, colored
Changes since revision 1.683.2.8: +7 -3 lines
sync with head.

Revision 1.881: download - view: text, markup, annotated - select for diffs
Wed Jan 30 19:58:19 2008 UTC (16 years, 10 months ago) by ad
Branches: MAIN
CVS tags: nick-net80211-sync-base, nick-net80211-sync, mjf-devfs-base, hpcarm-cleanup-base
Branch point for: mjf-devfs2, keiichi-mipv6
Diff to: previous 1.880: preferred, colored
Changes since revision 1.880: +3 -3 lines
Crank maxusers to 64.

Revision 1.867.2.5: download - view: text, markup, annotated - select for diffs
Wed Jan 23 19:27:15 2008 UTC (16 years, 10 months ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.867.2.4: preferred, colored; branchpoint 1.867: preferred, colored; next MAIN 1.868: preferred, colored
Changes since revision 1.867.2.4: +4 -0 lines
Sync with HEAD.

Revision 1.880: download - view: text, markup, annotated - select for diffs
Mon Jan 21 22:12:00 2008 UTC (16 years, 10 months ago) by ichiro
Branches: MAIN
CVS tags: bouyer-xeni386-nbase
Diff to: previous 1.879: preferred, colored
Changes since revision 1.879: +6 -2 lines
enable 'uhmodem'

Revision 1.683.2.8: download - view: text, markup, annotated - select for diffs
Mon Jan 21 09:36:49 2008 UTC (16 years, 10 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.7: preferred, colored
Changes since revision 1.683.2.7: +40 -12 lines
sync with head

Revision 1.867.2.4: download - view: text, markup, annotated - select for diffs
Sat Jan 19 12:14:15 2008 UTC (16 years, 10 months ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.867.2.3: preferred, colored; branchpoint 1.867: preferred, colored
Changes since revision 1.867.2.3: +0 -1 lines
Sync with HEAD

Revision 1.879: download - view: text, markup, annotated - select for diffs
Wed Jan 16 09:37:05 2008 UTC (16 years, 10 months ago) by ad
Branches: MAIN
CVS tags: bouyer-xeni386-base
Diff to: previous 1.878: preferred, colored
Changes since revision 1.878: +2 -3 lines
Remove options MATH_EMULATE.

Revision 1.799.2.16: download - view: text, markup, annotated - select for diffs
Fri Jan 11 17:03:17 2008 UTC (16 years, 11 months ago) by xtraeme
Branches: netbsd-4
Diff to: previous 1.799.2.15: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.15: +1 -0 lines
Pull up following revision(s) (requested by christos in ticket #1037):
	sys/dev/pci/arcmsr.c: patch
	sys/dev/pci/arcmsrvar.h: patch
	sys/dev/pci/pcidevs: patch
	sys/dev/pci/files.pci: patch
	sys/arch/i386/conf/GENERIC: patch
	sys/arch/i386/conf/XEN2_DOM0: patch
	sys/arch/i386/conf/INSTALL_LARGE: patch
	sys/arch/amd64/conf/GENERIC: patch
	sys/arch/amd64/conf/INSTALL: patch
	share/man/man4/Makefile: patch
	share/man/man4/arcmsr.4: patch
	distrib/sets/lists/man/mi: patch

Add the Areca Technology Corporation SATA RAID controller driver, ported
from OpenBSD.

Revision 1.867.2.3: download - view: text, markup, annotated - select for diffs
Thu Jan 10 23:43:18 2008 UTC (16 years, 11 months ago) by bouyer
Branches: bouyer-xeni386
CVS tags: bouyer-xeni386-merge1
Diff to: previous 1.867.2.2: preferred, colored; branchpoint 1.867: preferred, colored
Changes since revision 1.867.2.2: +5 -1 lines
Sync with HEAD

Revision 1.878: download - view: text, markup, annotated - select for diffs
Wed Jan 9 14:28:54 2008 UTC (16 years, 11 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.877: preferred, colored
Changes since revision 1.877: +7 -3 lines
Add gcscpcib(4).

Revision 1.844.2.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:46:27 2008 UTC (16 years, 11 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.844.2.1: preferred, colored
Changes since revision 1.844.2.1: +44 -28 lines
sync with HEAD

Revision 1.867.2.2: download - view: text, markup, annotated - select for diffs
Tue Jan 8 22:09:52 2008 UTC (16 years, 11 months ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.867.2.1: preferred, colored; branchpoint 1.867: preferred, colored
Changes since revision 1.867.2.1: +5 -5 lines
Sync with HEAD

Revision 1.877: download - view: text, markup, annotated - select for diffs
Mon Jan 7 08:39:03 2008 UTC (16 years, 11 months ago) by martti
Branches: MAIN
CVS tags: matt-armv6-base
Diff to: previous 1.876: preferred, colored
Changes since revision 1.876: +6 -6 lines
Fixed indentation, it should be

option<space><tab>
makeoption<space><tab>

Revision 1.799.2.7.2.3: download - view: text, markup, annotated - select for diffs
Sun Jan 6 05:00:56 2008 UTC (16 years, 11 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.799.2.7.2.2: preferred, colored
Changes since revision 1.799.2.7.2.2: +4 -4 lines
Catch up to netbsd-4.0 release.

Revision 1.876: download - view: text, markup, annotated - select for diffs
Thu Jan 3 07:21:21 2008 UTC (16 years, 11 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.875: preferred, colored
Changes since revision 1.875: +3 -3 lines
Remove white-space.

Revision 1.867.2.1: download - view: text, markup, annotated - select for diffs
Wed Jan 2 21:48:09 2008 UTC (16 years, 11 months ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.867: preferred, colored
Changes since revision 1.867: +26 -5 lines
Sync with HEAD

Revision 1.875: download - view: text, markup, annotated - select for diffs
Mon Dec 31 15:31:56 2007 UTC (16 years, 11 months ago) by ad
Branches: MAIN
Diff to: previous 1.874: preferred, colored
Changes since revision 1.874: +2 -3 lines
Remove systrace. Ok core@.

Revision 1.874: download - view: text, markup, annotated - select for diffs
Sun Dec 30 13:15:22 2007 UTC (16 years, 11 months ago) by joerg
Branches: MAIN
Diff to: previous 1.873: preferred, colored
Changes since revision 1.873: +9 -2 lines
Enable wedge autodiscovery and wedge support for GPT. Both MBR and BSD
disklabel support is *not* enabled, but documented.

Revision 1.873: download - view: text, markup, annotated - select for diffs
Sat Dec 29 06:09:04 2007 UTC (16 years, 11 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.872: preferred, colored
Changes since revision 1.872: +3 -3 lines
Update itesio(4) comments.

Revision 1.859.2.3: download - view: text, markup, annotated - select for diffs
Thu Dec 27 00:43:00 2007 UTC (16 years, 11 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.859.2.2: preferred, colored; branchpoint 1.859: preferred, colored
Changes since revision 1.859.2.2: +11 -3 lines
Sync with HEAD.

Revision 1.872: download - view: text, markup, annotated - select for diffs
Wed Dec 26 23:00:51 2007 UTC (16 years, 11 months ago) by elad
Branches: MAIN
Diff to: previous 1.871: preferred, colored
Changes since revision 1.871: +4 -3 lines
Compile in by default (disabled) PaX ASLR for amd64 and i386.

Revision 1.864.2.2: download - view: text, markup, annotated - select for diffs
Wed Dec 26 21:38:44 2007 UTC (16 years, 11 months ago) by ad
Branches: vmlocking2
Diff to: previous 1.864.2.1: preferred, colored; branchpoint 1.864: preferred, colored; next MAIN 1.865: preferred, colored
Changes since revision 1.864.2.1: +21 -3 lines
Sync with head.

Revision 1.871: download - view: text, markup, annotated - select for diffs
Wed Dec 26 16:28:15 2007 UTC (16 years, 11 months ago) by joerg
Branches: MAIN
CVS tags: vmlocking2-base3
Diff to: previous 1.870: preferred, colored
Changes since revision 1.870: +9 -2 lines
Add PHYSMEM_MAX_ADDR and PHYSMEM_MAX_SIZE options. This limit physical
memory based on overall size (useful for debugging to keep core dumps
small) or maximum address (when using devices with bus dma limits).
Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory
map and can therefore deal with fragmented memory.

Revision 1.870: download - view: text, markup, annotated - select for diffs
Tue Dec 25 01:03:32 2007 UTC (16 years, 11 months ago) by ad
Branches: MAIN
Diff to: previous 1.869: preferred, colored
Changes since revision 1.869: +5 -2 lines
Make SMP the default on i386. For the time being the noacpi kernel does
not have it enabled.

Revision 1.869: download - view: text, markup, annotated - select for diffs
Fri Dec 21 15:20:13 2007 UTC (16 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.868: preferred, colored
Changes since revision 1.868: +3 -2 lines
Add thinkpad at acpi

Revision 1.868: download - view: text, markup, annotated - select for diffs
Mon Dec 17 04:36:16 2007 UTC (16 years, 11 months ago) by riz
Branches: MAIN
Diff to: previous 1.867: preferred, colored
Changes since revision 1.867: +5 -2 lines
Add drvctl(4)

Revision 1.866.2.1: download - view: text, markup, annotated - select for diffs
Tue Dec 11 15:20:28 2007 UTC (17 years ago) by yamt
Branches: yamt-kmem
Diff to: previous 1.866: preferred, colored; next MAIN 1.867: preferred, colored
Changes since revision 1.866: +7 -3 lines
sync with head.

Revision 1.867: download - view: text, markup, annotated - select for diffs
Sun Dec 9 20:27:46 2007 UTC (17 years ago) by jmcneill
Branches: MAIN
CVS tags: yamt-kmem-base3, yamt-kmem-base2, cube-autoconf-base, cube-autoconf
Branch point for: bouyer-xeni386
Diff to: previous 1.866: preferred, colored
Changes since revision 1.866: +7 -3 lines
Merge jmcneill-pm branch.

Revision 1.839.4.14: download - view: text, markup, annotated - select for diffs
Sun Dec 9 19:35:19 2007 UTC (17 years ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.839.4.13: preferred, colored; branchpoint 1.839: preferred, colored; next MAIN 1.840: preferred, colored
Changes since revision 1.839.4.13: +3 -2 lines
Sync with HEAD.

Revision 1.859.2.2: download - view: text, markup, annotated - select for diffs
Sat Dec 8 18:17:06 2007 UTC (17 years ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.859.2.1: preferred, colored; branchpoint 1.859: preferred, colored
Changes since revision 1.859.2.1: +7 -4 lines
Sync with HEAD.

Revision 1.864.2.1: download - view: text, markup, annotated - select for diffs
Sat Dec 8 17:56:22 2007 UTC (17 years ago) by ad
Branches: vmlocking2
Diff to: previous 1.864: preferred, colored
Changes since revision 1.864: +3 -2 lines
Sync with head.

Revision 1.683.2.7: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:24:54 2007 UTC (17 years ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.6: preferred, colored
Changes since revision 1.683.2.6: +8 -5 lines
sync with head

Revision 1.866: download - view: text, markup, annotated - select for diffs
Wed Dec 5 00:19:41 2007 UTC (17 years ago) by xtraeme
Branches: MAIN
CVS tags: yamt-kmem-base, vmlocking2-base2, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, jmcneill-pm-base
Branch point for: yamt-kmem
Diff to: previous 1.865: preferred, colored
Changes since revision 1.865: +3 -3 lines
arc(4) -> arcmsr(4)

Revision 1.865: download - view: text, markup, annotated - select for diffs
Tue Dec 4 18:53:57 2007 UTC (17 years ago) by xtraeme
Branches: MAIN
Diff to: previous 1.864: preferred, colored
Changes since revision 1.864: +3 -2 lines
Enable arc(4).

Revision 1.816.2.9: download - view: text, markup, annotated - select for diffs
Mon Dec 3 19:03:22 2007 UTC (17 years ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.8: preferred, colored; next MAIN 1.817: preferred, colored
Changes since revision 1.816.2.8: +2 -8 lines
Sync with HEAD.

Revision 1.816.2.8: download - view: text, markup, annotated - select for diffs
Mon Dec 3 18:36:23 2007 UTC (17 years ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.7: preferred, colored
Changes since revision 1.816.2.7: +25 -28 lines
Sync with HEAD.

Revision 1.839.4.13: download - view: text, markup, annotated - select for diffs
Mon Dec 3 16:14:01 2007 UTC (17 years ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.12: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.12: +4 -2 lines
Sync with HEAD.

Revision 1.864: download - view: text, markup, annotated - select for diffs
Sun Dec 2 05:19:13 2007 UTC (17 years ago) by kiyohara
Branches: MAIN
CVS tags: vmlocking2-base1, vmlocking-nbase
Branch point for: vmlocking2
Diff to: previous 1.863: preferred, colored
Changes since revision 1.863: +4 -2 lines
Add bcsp(4).

Revision 1.839.4.12: download - view: text, markup, annotated - select for diffs
Tue Nov 27 19:35:38 2007 UTC (17 years ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.11: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.11: +4 -4 lines
Sync with HEAD. amd64 Xen support needs testing.

Revision 1.799.2.15: download - view: text, markup, annotated - select for diffs
Mon Nov 26 21:35:47 2007 UTC (17 years ago) by xtraeme
Branches: netbsd-4
CVS tags: wrstuden-fixsa-base-1, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-1-RELEASE, netbsd-4-0
Diff to: previous 1.799.2.14: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.14: +4 -4 lines
Pull up following revision(s) (requested by jnemeth in ticket #998):
	sys/arch/amd64/conf/GENERIC: revision 1.176 (patch)
	sys/arch/i386/conf/GENERIC: revision 1.863
comment out com*/lpt* at acpi? as they cause these ports to move from
their traditional location and imminent changes in -current will cause
them to move back

Revision 1.852.2.3: download - view: text, markup, annotated - select for diffs
Thu Nov 22 15:18:21 2007 UTC (17 years ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.852.2.2: preferred, colored; branchpoint 1.852: preferred, colored; next MAIN 1.853: preferred, colored
Changes since revision 1.852.2.2: +2 -2 lines
Sync with HEAD

Revision 1.863: download - view: text, markup, annotated - select for diffs
Thu Nov 22 14:33:53 2007 UTC (17 years ago) by jnemeth
Branches: MAIN
CVS tags: bouyer-xenamd64-base
Diff to: previous 1.862: preferred, colored
Changes since revision 1.862: +4 -4 lines
comment out com*/lpt* at acpi? as they cause these ports to move from
their traditional location and imminent changes in -current will cause
them to move back

Revision 1.839.4.11: download - view: text, markup, annotated - select for diffs
Wed Nov 21 21:53:09 2007 UTC (17 years ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.10: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.10: +3 -18 lines
Sync with HEAD.

Revision 1.859.2.1: download - view: text, markup, annotated - select for diffs
Mon Nov 19 00:46:18 2007 UTC (17 years ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.859: preferred, colored
Changes since revision 1.859: +6 -18 lines
Sync with HEAD.

Revision 1.852.2.2: download - view: text, markup, annotated - select for diffs
Sun Nov 18 19:34:15 2007 UTC (17 years ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.852.2.1: preferred, colored; branchpoint 1.852: preferred, colored
Changes since revision 1.852.2.1: +1 -16 lines
Sync with HEAD

Revision 1.862: download - view: text, markup, annotated - select for diffs
Thu Nov 15 12:58:29 2007 UTC (17 years ago) by xtraeme
Branches: MAIN
CVS tags: bouyer-xenamd64-base2
Diff to: previous 1.861: preferred, colored
Changes since revision 1.861: +3 -3 lines
Update for it(4) -> itesio(4) rename.

Revision 1.683.2.6: download - view: text, markup, annotated - select for diffs
Thu Nov 15 11:42:47 2007 UTC (17 years ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.5: preferred, colored
Changes since revision 1.683.2.5: +9 -23 lines
sync with head.

Revision 1.839.4.10: download - view: text, markup, annotated - select for diffs
Wed Nov 14 19:04:08 2007 UTC (17 years, 1 month ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.9: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.9: +5 -2 lines
Sync with HEAD.

Revision 1.861: download - view: text, markup, annotated - select for diffs
Wed Nov 14 17:54:57 2007 UTC (17 years, 1 month ago) by ad
Branches: MAIN
Diff to: previous 1.860: preferred, colored
Changes since revision 1.860: +2 -17 lines
- Remove I486_CPU, I586_CPU, I686_CPU options. They buy us nothing and
  clutter the code significantly.
- Remove pccons.

Revision 1.852.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 13 15:58:29 2007 UTC (17 years, 1 month ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.852: preferred, colored
Changes since revision 1.852: +14 -10 lines
Sync with HEAD

Revision 1.860: download - view: text, markup, annotated - select for diffs
Sun Nov 11 17:56:10 2007 UTC (17 years, 1 month ago) by jmcneill
Branches: MAIN
Diff to: previous 1.859: preferred, colored
Changes since revision 1.859: +5 -2 lines
Enable pad(4)

Revision 1.844.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:17:10 2007 UTC (17 years, 1 month ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.844: preferred, colored
Changes since revision 1.844: +34 -19 lines
sync with HEAD

Revision 1.839.4.9: download - view: text, markup, annotated - select for diffs
Sun Nov 4 21:02:57 2007 UTC (17 years, 1 month ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.839.4.8: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.8: +2 -7 lines
Sync with HEAD.

Revision 1.859: download - view: text, markup, annotated - select for diffs
Sun Nov 4 14:34:22 2007 UTC (17 years, 1 month ago) by xtraeme
Branches: MAIN
CVS tags: jmcneill-base
Branch point for: mjf-devfs
Diff to: previous 1.858: preferred, colored
Changes since revision 1.858: +2 -7 lines
Remove System V semaphores and share memory options to set the limits:
SEMMNI, SEMMNS, SEMUME and SHMMAXPGS.

They can be tweaked via sysctl now. Ports that were setting values on
them weren't touched, I only removed the ones that were commented out.

Revision 1.858: download - view: text, markup, annotated - select for diffs
Thu Nov 1 13:54:29 2007 UTC (17 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.857: preferred, colored
Changes since revision 1.857: +3 -3 lines
Revert previous, thanks wikipedia :-)

Revision 1.857: download - view: text, markup, annotated - select for diffs
Thu Nov 1 13:48:52 2007 UTC (17 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.856: preferred, colored
Changes since revision 1.856: +3 -3 lines
Fix typo "iff" -> "if" reported by leot via freenode@irc.

Revision 1.839.4.8: download - view: text, markup, annotated - select for diffs
Wed Oct 31 23:13:59 2007 UTC (17 years, 1 month ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.7: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.7: +3 -3 lines
Sync with HEAD.

Revision 1.856: download - view: text, markup, annotated - select for diffs
Tue Oct 30 00:03:50 2007 UTC (17 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.855: preferred, colored
Changes since revision 1.855: +3 -3 lines
options<space><tab>FOO

Revision 1.839.4.7: download - view: text, markup, annotated - select for diffs
Mon Oct 29 02:57:20 2007 UTC (17 years, 1 month ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.6: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.6: +6 -3 lines
Sync with HEAD.

Revision 1.855: download - view: text, markup, annotated - select for diffs
Mon Oct 29 00:47:17 2007 UTC (17 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.854: preferred, colored
Changes since revision 1.854: +6 -3 lines
Enable "options INTEL_CORETEMP".

Revision 1.839.4.6: download - view: text, markup, annotated - select for diffs
Sun Oct 28 20:10:37 2007 UTC (17 years, 1 month ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.5: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.5: +7 -4 lines
Sync with HEAD.

Revision 1.683.2.5: download - view: text, markup, annotated - select for diffs
Sat Oct 27 11:26:22 2007 UTC (17 years, 1 month ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.4: preferred, colored
Changes since revision 1.683.2.4: +30 -13 lines
sync with head.

Revision 1.854: download - view: text, markup, annotated - select for diffs
Fri Oct 26 22:20:43 2007 UTC (17 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.853: preferred, colored
Changes since revision 1.853: +7 -4 lines
- Add amdpcib(4) commented out.
- Comment out piixpcib(4) until the multiple PRs are fixed, this driver
  has been broken for long time in some machines.

Revision 1.853: download - view: text, markup, annotated - select for diffs
Wed Oct 17 19:54:42 2007 UTC (17 years, 1 month ago) by garbled
Branches: MAIN
CVS tags: yamt-x86pmap-base4
Diff to: previous 1.852: preferred, colored
Changes since revision 1.852: +2 -2 lines
Merge the ppcoea-renovation branch to HEAD.

This branch was a major cleanup and rototill of many of the various OEA
cpu based PPC ports that focused on sharing as much code as possible
between the various ports to eliminate near-identical copies of files in
every tree.  Additionally there is a new PIC system that unifies the
interface to interrupt code for all different OEA ppc arches.  The work
for this branch was done by a variety of people, too long to list here.

TODO:
bebox still needs work to complete the transition to -renovation.
ofppc still needs a bunch of work, which I will be looking at.
ev64260 still needs to be renovated
amigappc was not attempted.

NOTES:
pmppc was removed as an arch, and moved to a evbppc target.

Revision 1.661.2.21: download - view: text, markup, annotated - select for diffs
Mon Oct 15 05:09:55 2007 UTC (17 years, 2 months ago) by riz
Branches: netbsd-3
Diff to: previous 1.661.2.20: preferred, colored; branchpoint 1.661: preferred, colored; next MAIN 1.662: preferred, colored
Changes since revision 1.661.2.20: +3 -2 lines
Pull up following revisions via patch (requested by bouyer in ticket #1838):
	distrib/sets/lists/man/mi: revision 1.997
	sbin/bioctl/strtonum.c: revision 1.1
	sys/dev/Makefile: revision 1.25
	sys/arch/amd64/conf/GENERIC: revision 1.139
	sbin/bioctl/strtonum.h: revision 1.1
	sys/dev/bio.c: revision 1.1
	sbin/bioctl/bioctl.c: revision 1.1
	share/man/man4/bio.4: revision 1.1
	sbin/bioctl/bioctl.8: revision 1.1
	sys/sys/envsys.h: revision 1.11
	sbin/bioctl/bioctl.8: revision 1.3
	sbin/bioctl/bioctl.8: revision 1.4
	sys/arch/i386/conf/XEN2_DOM0: revision 1.25
	distrib/sets/lists/base/mi: revision 1.704
	sys/conf/majors: revision 1.34
	share/man/man4/Makefile: revision 1.426
	etc/MAKEDEV.tmpl: revision 1.86
	sys/arch/i386/conf/GENERIC: revision 1.825
	distrib/sets/lists/comp/mi: revision 1.1022
	sys/conf/files: revision 1.839
	usr.sbin/envstat/envstat.c: revision 1.24
	sbin/Makefile: revision 1.105
	sys/dev/ic/mfi.c: revision 1.4
	sys/dev/biovar.h: revision 1.1
	sys/dev/ic/mfivar.h: revision 1.4
	sbin/bioctl/Makefile: revision 1.1
Fix typo.
Add bio(4) and associated bioctl(8) from OpenBSD, a driver control block
device controllers, and more specifically raid controllers.
Add a new sensor type, ENVSYS_DRIVE, to report drive status. From OpenBSD.
Add bio and sysmon support to mfi(4). This allow userland to query
status for drives and logical volumes attached to a mfi(4) controller. While
there fix some debug printfs in mfi so they compile.
Add bio(4) to amd64 and i386 GENERIC.
Add bio(4) and associated bioctl(8) from OpenBSD, a driver control block
device controllers, and more specifically raid controllers.
Add a new sensor type, ENVSYS_DRIVE, to report drive status. From OpenBSD.
Add bio and sysmon support to mfi(4). This allow userland to query
status for drives and logical volumes attached to a mfi(4) controller. While
there fix some debug printfs in mfi so they compile.
Add bio(4) to amd64 and i386 GENERIC.
Fix Dd argument (use full month names).
Use more markup.
Comment out references to safte(4) and softraid(4), which don't exist in
NetBSD.
Remove trailing whitespace.
Use macros instead of characters for HTML output (replace ">", "<"
with \*[Gt], \*[Lt]).
Sort sections.
Create /dev/bio

Revision 1.816.2.7: download - view: text, markup, annotated - select for diffs
Tue Oct 9 13:37:48 2007 UTC (17 years, 2 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.6: preferred, colored
Changes since revision 1.816.2.6: +31 -14 lines
Sync with head.

Revision 1.851.2.1: download - view: text, markup, annotated - select for diffs
Sat Oct 6 15:34:49 2007 UTC (17 years, 2 months ago) by yamt
Branches: yamt-x86pmap
Diff to: previous 1.851: preferred, colored; next MAIN 1.852: preferred, colored
Changes since revision 1.851: +3 -3 lines
sync with head.

Revision 1.824.2.3: download - view: text, markup, annotated - select for diffs
Wed Oct 3 19:23:35 2007 UTC (17 years, 2 months ago) by garbled
Branches: ppcoea-renovation
Diff to: previous 1.824.2.2: preferred, colored; next MAIN 1.825: preferred, colored
Changes since revision 1.824.2.2: +55 -18 lines
Sync with HEAD

Revision 1.839.4.5: download - view: text, markup, annotated - select for diffs
Tue Oct 2 21:44:08 2007 UTC (17 years, 2 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.4: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.4: +7 -3 lines
Rewrite the ACPI Embedded Controller handler to use pure event driven
operation. On suspend a special flag is set to force explicit polling
as AcpiLeaveSleep accesses the interrupt before GPE handling is
restored. The driver uses a kernel thread to handle GPE queries and
mutex/condvar for synchronisation.

Split the ACPI EC into two drivers, one that is attached directly by
acpi.c for the ECDT driven attachment and the normal acpiec for late
attachment. Share almost all code between this two drivers. If acpiecdt
is attached, acpiec is returning. This was discussed with cube@ and is
the best solution so far.

Revision 1.839.4.4: download - view: text, markup, annotated - select for diffs
Tue Oct 2 18:27:06 2007 UTC (17 years, 2 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.3: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.3: +24 -10 lines
Sync with HEAD.

Revision 1.799.2.7.2.2: download - view: text, markup, annotated - select for diffs
Sun Sep 30 03:39:01 2007 UTC (17 years, 2 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.799.2.7.2.1: preferred, colored
Changes since revision 1.799.2.7.2.1: +5 -2 lines
Catch up on netbsd-4 as of a few days ago.

Revision 1.799.2.14: download - view: text, markup, annotated - select for diffs
Thu Sep 27 22:04:27 2007 UTC (17 years, 2 months ago) by xtraeme
Branches: netbsd-4
CVS tags: netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, matt-nb4-arm-base, matt-nb4-arm
Diff to: previous 1.799.2.13: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.13: +5 -2 lines
Pull up following revision(s) (requested by mlelstv in ticket #895):
	sys/dev/usb/uslsa.c: revision 1.1
	sys/dev/usb/uslsa.c: revision 1.2
	sys/dev/usb/uslsa.c: revision 1.3
	sys/dev/usb/usbdevs: revision 1.466 (via patch)
	share/man/man4/uslsa.4: revision 1.1
	share/man/man4/Makefile: revision 1.429
	sys/arch/i386/conf/GENERIC: revision 1.828
	distrib/sets/lists/man/mi: revision 1.1002
	sys/dev/usb/files.usb: revision 1.77
	sys/arch/i386/conf/ALL: revision 1.99

From PR kern/33496 - add uslsa(4), a CP210x USB-RS232 ucom driver.

Revision 1.852: download - view: text, markup, annotated - select for diffs
Tue Sep 25 17:14:11 2007 UTC (17 years, 2 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-x86pmap-base3, yamt-x86pmap-base2, vmlocking-base, ppcoea-renovation-base
Branch point for: bouyer-xenamd64
Diff to: previous 1.851: preferred, colored
Changes since revision 1.851: +3 -3 lines
Remove two \t at the end of DDB_VERBOSE_HELP, caught by Patrick Welche.

Revision 1.851: download - view: text, markup, annotated - select for diffs
Sat Sep 22 18:51:13 2007 UTC (17 years, 2 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-x86pmap-base
Branch point for: yamt-x86pmap
Diff to: previous 1.850: preferred, colored
Changes since revision 1.850: +3 -3 lines
options<tab><space>OPTION for previous.

Revision 1.850: download - view: text, markup, annotated - select for diffs
Sat Sep 22 18:40:22 2007 UTC (17 years, 2 months ago) by martin
Branches: MAIN
Diff to: previous 1.849: preferred, colored
Changes since revision 1.849: +3 -2 lines
Add a new option DDB_VERBOSE_HELP that adds online help to ddb.
From Adam Hamsik.
Minor modifications by me, all bugs are probably mine.

Revision 1.849: download - view: text, markup, annotated - select for diffs
Tue Sep 11 21:46:53 2007 UTC (17 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.848: preferred, colored
Changes since revision 1.848: +5 -2 lines
New aps(4) driver for IBM Thinkpad Active Protection System.
Exports some sensors through the envsys(4) framework available
in some Thinkpad laptops.

Ported by Pierre Pronchery from OpenBSD, via PR port-i386/36852.

Tweaks, LKM and misc improvements by me. Added into i386/GENERIC
commented out.

Revision 1.838.4.3: download - view: text, markup, annotated - select for diffs
Mon Sep 10 10:54:20 2007 UTC (17 years, 3 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.838.4.2: preferred, colored; branchpoint 1.838: preferred, colored; next MAIN 1.839: preferred, colored
Changes since revision 1.838.4.2: +21 -11 lines
Sync with HEAD.

Revision 1.848: download - view: text, markup, annotated - select for diffs
Thu Sep 6 18:09:00 2007 UTC (17 years, 3 months ago) by joerg
Branches: MAIN
CVS tags: nick-csl-alignment-base5
Diff to: previous 1.847: preferred, colored
Changes since revision 1.847: +11 -4 lines
Add some options and drivers only found in GENERIC_LAPTOP:
- add PMS_SYNAPTICS_TOUCHPAD
- add njata at cardbus
- add re at cardbus
- add stuirda at uhub
- add ugensa at uhub

Revision 1.847: download - view: text, markup, annotated - select for diffs
Thu Sep 6 10:24:18 2007 UTC (17 years, 3 months ago) by martti
Branches: MAIN
Diff to: previous 1.846: preferred, colored
Changes since revision 1.846: +8 -8 lines
Fixed indentation (it should be <keyword><space><tab><name><tab><comment>).

Revision 1.846: download - view: text, markup, annotated - select for diffs
Thu Sep 6 00:31:08 2007 UTC (17 years, 3 months ago) by joerg
Branches: MAIN
Diff to: previous 1.845: preferred, colored
Changes since revision 1.845: +3 -3 lines
Enable CGD in GENERIC for amd64 and i386.

Revision 1.839.4.3: download - view: text, markup, annotated - select for diffs
Thu Sep 6 00:06:16 2007 UTC (17 years, 3 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.2: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.2: +3 -3 lines
Enable cgd by default on amd64 and i386.

Revision 1.845: download - view: text, markup, annotated - select for diffs
Mon Sep 3 17:57:36 2007 UTC (17 years, 3 months ago) by tshiozak
Branches: MAIN
Diff to: previous 1.844: preferred, colored
Changes since revision 1.844: +5 -2 lines
add support for WinChipHead CH341/340 USB-Serial bridge.

Revision 1.839.4.2: download - view: text, markup, annotated - select for diffs
Mon Sep 3 16:47:21 2007 UTC (17 years, 3 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.839.4.1: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.1: +15 -5 lines
Sync with HEAD.

Revision 1.683.2.4: download - view: text, markup, annotated - select for diffs
Mon Sep 3 14:26:29 2007 UTC (17 years, 3 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.3: preferred, colored
Changes since revision 1.683.2.3: +105 -52 lines
sync with head.

Revision 1.838.4.2: download - view: text, markup, annotated - select for diffs
Mon Sep 3 10:19:01 2007 UTC (17 years, 3 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.838.4.1: preferred, colored; branchpoint 1.838: preferred, colored
Changes since revision 1.838.4.1: +15 -5 lines
Sync with HEAD.

Revision 1.799.2.7.2.1: download - view: text, markup, annotated - select for diffs
Mon Sep 3 07:03:31 2007 UTC (17 years, 3 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.799.2.7: preferred, colored
Changes since revision 1.799.2.7: +9 -3 lines
Sync w/ NetBSD-4-RC_1

Revision 1.799.2.13: download - view: text, markup, annotated - select for diffs
Fri Aug 31 20:09:27 2007 UTC (17 years, 3 months ago) by pavel
Branches: netbsd-4
CVS tags: netbsd-4-0-RC1
Diff to: previous 1.799.2.12: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.12: +4 -2 lines
Pull up following revision(s) (requested by bouyer in ticket #678):
	distrib/sets/lists/man/mi: revision 1.1001
	doc/CHANGES: revision 1.853 via patch
	share/man/man4/Makefile: revision 1.428
	share/man/man4/jmide.4: revision 1.1
	sys/arch/amd64/conf/GENERIC: revision 1.143
	sys/arch/amd64/conf/INSTALL: revision 1.69
	sys/arch/i386/conf/GENERIC: revision 1.827
	sys/arch/i386/conf/INSTALL_LARGE: revision 1.2 via patch
	sys/arch/i386/conf/XEN2_DOM0: revision 1.26
	sys/conf/files: revision 1.844 via patch
	sys/dev/ic/ahcisata_core.c: revision 1.1 via patch
	sys/dev/ic/ahcisata_core.c: revision 1.3
	sys/dev/ic/ahcisatareg.h: revision 1.1
	sys/dev/ic/ahcisatavar.h: revision 1.1
	sys/dev/pci/ahcisata.c: delete
	sys/dev/pci/ahcisatareg.h: delete
	sys/dev/pci/ahcisata_pci.c: revision 1.1
	sys/dev/pci/files.pci: revision 1.287-1.288
	sys/dev/pci/jmide.c: revision 1.1-1.2
	sys/dev/pci/jmide_reg.h: revision 1.1
	sys/dev/pci/pcidevs: revision 1.878
Add JMicron Technology vendor ID, and their current PCIe SATA/PATA
controllers.

Split the ahcisata driver in pci front-end and bus-independant back-end.
add jmide(4), a driver for the JMicron Technology JMB36x PCIe to SATA II/PATA
controllers. These controllers can be found on add-on PCIe cards, or
on some motherboards to provide the PATA connectivity (e.g. some intel
ICH8-based motherboards).
Thanks to JMicron Technology for providing me documentation and
different sample boards for this work.

Move mapping of AHCI register so that jmide knows if it fails, and avoids
calling ahci_intr() (which would cause a panic).
Try to use the pciide function for SATA drives if attaching ahci fails (this
doesn't seems to work though, it may be BIOS dependant).
Thanks to Gary Duzan for testing multiple pacthes.

We're not ready to handle ATAPI yet so just claim there's no drive to the
upper layer. This should work around a NULL pointer dereference when
an ATAPI device is detected on a AHCI device.

Revision 1.799.2.12: download - view: text, markup, annotated - select for diffs
Wed Aug 29 18:34:16 2007 UTC (17 years, 3 months ago) by liamjfoy
Branches: netbsd-4
Diff to: previous 1.799.2.11: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.11: +3 -2 lines
Pull up following (requested by xtraeme ticket #846):

Import i386/gcscide(4). A driver for the IDE Controller of the
AMD CS5535 Companion device found in the decTOP.

gcscide0 at pci0 dev 15 function 2
gcscide0: National Semiconductor/AMD CS5535 IDE Controller (rev. 0x00)

Supports Ultra DMA mode 4, Pio Mode 4 and MDMA mode 2.

"Go for it" jmcneill@.

Revision 1.661.2.14.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 28 13:54:04 2007 UTC (17 years, 3 months ago) by ghen
Branches: netbsd-3-1
Diff to: previous 1.661.2.14: preferred, colored; next MAIN 1.661.2.15: preferred, colored
Changes since revision 1.661.2.14: +3 -3 lines
Pull up following revision(s) (requested by adrianp in ticket #1826):
	sys/arch/hp300/conf/GENERIC: revision 1.141 via patch
	sys/arch/amd64/conf/GENERIC: revision 1.154 via patch
	sys/arch/cats/conf/GENERIC: revision 1.116 via patch
	sys/arch/arc/conf/GENERIC: revision 1.148 via patch
	sys/arch/acorn32/conf/GENERIC: revision 1.80 via patch
	sys/arch/sparc/conf/GENERIC: revision 1.200 via patch
	sys/arch/sparc64/conf/GENERIC: revision 1.88 via patch
	sys/arch/atari/conf/GENERIC.in: revision 1.68 via patch
	sys/arch/amiga/conf/GENERIC: revision 1.248 via patch
	sys/arch/i386/conf/GENERIC.MPACPI: patch
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.239 via patch
	sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.66 via patch
	sys/arch/i386/conf/GENERIC: revision 1.840 via patch
	sys/arch/amiga/conf/GENERIC.in: revision 1.61 via patch
	sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.68 via patch
	sys/arch/mac68k/conf/GENERIC: revision 1.182 via patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@

Revision 1.661.2.8.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 28 13:52:51 2007 UTC (17 years, 3 months ago) by ghen
Branches: netbsd-3-0
Diff to: previous 1.661.2.8: preferred, colored; next MAIN 1.661.2.9: preferred, colored
Changes since revision 1.661.2.8: +3 -3 lines
Pull up following revision(s) (requested by adrianp in ticket #1826):
	sys/arch/hp300/conf/GENERIC: revision 1.141 via patch
	sys/arch/amd64/conf/GENERIC: revision 1.154 via patch
	sys/arch/cats/conf/GENERIC: revision 1.116 via patch
	sys/arch/arc/conf/GENERIC: revision 1.148 via patch
	sys/arch/acorn32/conf/GENERIC: revision 1.80 via patch
	sys/arch/sparc/conf/GENERIC: revision 1.200 via patch
	sys/arch/sparc64/conf/GENERIC: revision 1.88 via patch
	sys/arch/atari/conf/GENERIC.in: revision 1.68 via patch
	sys/arch/amiga/conf/GENERIC: revision 1.248 via patch
	sys/arch/i386/conf/GENERIC.MPACPI: patch
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.239 via patch
	sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.66 via patch
	sys/arch/i386/conf/GENERIC: revision 1.840 via patch
	sys/arch/amiga/conf/GENERIC.in: revision 1.61 via patch
	sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.68 via patch
	sys/arch/mac68k/conf/GENERIC: revision 1.182 via patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@

Revision 1.661.2.20: download - view: text, markup, annotated - select for diffs
Tue Aug 28 13:49:44 2007 UTC (17 years, 3 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.661.2.19: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.19: +3 -3 lines
Pull up following revision(s) (requested by adrianp in ticket #1826):
	sys/arch/hp300/conf/GENERIC: revision 1.141 via patch
	sys/arch/amd64/conf/GENERIC: revision 1.154 via patch
	sys/arch/cats/conf/GENERIC: revision 1.116 via patch
	sys/arch/arc/conf/GENERIC: revision 1.148 via patch
	sys/arch/acorn32/conf/GENERIC: revision 1.80 via patch
	sys/arch/sparc/conf/GENERIC: revision 1.200 via patch
	sys/arch/sparc64/conf/GENERIC: revision 1.88 via patch
	sys/arch/atari/conf/GENERIC.in: revision 1.68 via patch
	sys/arch/amiga/conf/GENERIC: revision 1.248 via patch
	sys/arch/i386/conf/GENERIC.MPACPI: patch
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.239 via patch
	sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.66 via patch
	sys/arch/i386/conf/GENERIC: revision 1.840 via patch
	sys/arch/amiga/conf/GENERIC.in: revision 1.61 via patch
	sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.68 via patch
	sys/arch/mac68k/conf/GENERIC: revision 1.182 via patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net&#64;
Ok'ed by core&#64;

Revision 1.844: download - view: text, markup, annotated - select for diffs
Sun Aug 26 17:05:23 2007 UTC (17 years, 3 months ago) by xtraeme
Branches: MAIN
Branch point for: matt-armv6
Diff to: previous 1.843: preferred, colored
Changes since revision 1.843: +4 -4 lines
Modify ichlpcib description, it has timecounter support too.

Revision 1.799.2.11: download - view: text, markup, annotated - select for diffs
Sat Aug 25 09:00:07 2007 UTC (17 years, 3 months ago) by liamjfoy
Branches: netbsd-4
Diff to: previous 1.799.2.10: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.10: +3 -3 lines
Pull up following revision(s) (requested by adrianp in ticket #820):
	sys/arch/hp300/conf/GENERIC: revision 1.141
	sys/arch/alpha/conf/GENERIC: revision 1.315
	sys/arch/amd64/conf/GENERIC: revision 1.154
	sys/arch/cats/conf/GENERIC: revision 1.116
	sys/arch/arc/conf/GENERIC: revision 1.148
	sys/arch/acorn32/conf/GENERIC: revision 1.80
	sys/arch/sparc/conf/GENERIC: revision 1.200
	sys/arch/sparc64/conf/GENERIC: revision 1.88
	sys/arch/atari/conf/GENERIC.in: revision 1.68
	sys/arch/amiga/conf/GENERIC: revision 1.248
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.239
	sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.66
	sys/arch/i386/conf/GENERIC: revision 1.840
	sys/arch/amiga/conf/GENERIC.in: revision 1.61
	sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.68
	sys/arch/mac68k/conf/GENERIC: revision 1.182
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@

Revision 1.843: download - view: text, markup, annotated - select for diffs
Tue Aug 21 02:48:15 2007 UTC (17 years, 3 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.842: preferred, colored
Changes since revision 1.842: +6 -3 lines
Add slhci at pcmcia.
 And reorder.

Revision 1.816.2.6: download - view: text, markup, annotated - select for diffs
Mon Aug 20 18:38:07 2007 UTC (17 years, 3 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.5: preferred, colored
Changes since revision 1.816.2.5: +14 -3 lines
Sync with HEAD.

Revision 1.842: download - view: text, markup, annotated - select for diffs
Mon Aug 20 00:54:42 2007 UTC (17 years, 3 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.841: preferred, colored
Changes since revision 1.841: +4 -2 lines
Add btbc(4).

Revision 1.841: download - view: text, markup, annotated - select for diffs
Sat Aug 18 11:35:55 2007 UTC (17 years, 3 months ago) by tnn
Branches: MAIN
Diff to: previous 1.840: preferred, colored
Changes since revision 1.840: +7 -2 lines
Enable spdmem(4) in ALL configuration. Add commented out entries to GENERIC

Revision 1.838.4.1: download - view: text, markup, annotated - select for diffs
Wed Aug 15 13:47:21 2007 UTC (17 years, 4 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.838: preferred, colored
Changes since revision 1.838: +7 -3 lines
Sync with HEAD.

Revision 1.595.2.12: download - view: text, markup, annotated - select for diffs
Sat Aug 11 14:49:07 2007 UTC (17 years, 4 months ago) by bouyer
Branches: netbsd-2-0
Diff to: previous 1.595.2.11: preferred, colored; branchpoint 1.595: preferred, colored; next MAIN 1.596: preferred, colored
Changes since revision 1.595.2.11: +3 -3 lines
Pull up following revision(s) (requested by adrianp in ticket #11356):
	sys/arch/acorn32/conf/GENERIC                   1.80 via patch
	sys/arch/amd64/conf/GENERIC                     1.154 via patch
	sys/arch/amiga/conf/GENERIC.in                  1.61 via patch
	sys/arch/arc/conf/GENERIC                       1.148 via patch
	sys/arch/atari/conf/GENERIC.in                  1.68 via patch
	sys/arch/cats/conf/GENERIC                      1.116 via patch
	sys/arch/hp300/conf/GENERIC                     1.141 via patch
	sys/arch/hp700/conf/GENERIC                     patch
	sys/arch/i386/conf/GENERIC                      1.840 via patch
	sys/arch/i386/conf/GENERIC_LAPTOP               1.239 via patch
	sys/arch/i386/conf/GENERIC.MPACPI               patch
	sys/arch/mac68k/conf/GENERIC                    1.182 via patch
	sys/arch/sgimips/conf/GENERIC32_IP2x            1.68 via patch
	sys/arch/sgimips/conf/GENERIC32_IP3x            1.66 via patch
	sys/arch/sparc/conf/GENERIC                     1.200 via patch
	sys/arch/sparc64/conf/GENERIC32                 patch
	sys/arch/xen/conf/GENERIC                       patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@

Revision 1.595.2.11.2.3: download - view: text, markup, annotated - select for diffs
Sat Aug 11 14:46:21 2007 UTC (17 years, 4 months ago) by bouyer
Branches: netbsd-2
Diff to: previous 1.595.2.11.2.2: preferred, colored; branchpoint 1.595.2.11: preferred, colored; next MAIN 1.595.2.12: preferred, colored
Changes since revision 1.595.2.11.2.2: +3 -3 lines
Pull up following revision(s) (requested by adrianp in ticket #11356):
	sys/arch/acorn32/conf/GENERIC                   1.80 via patch
	sys/arch/amd64/conf/GENERIC                     1.154 via patch
	sys/arch/amiga/conf/GENERIC.in                  1.61 via patch
	sys/arch/arc/conf/GENERIC                       1.148 via patch
	sys/arch/atari/conf/GENERIC.in                  1.68 via patch
	sys/arch/cats/conf/GENERIC                      1.116 via patch
	sys/arch/hp300/conf/GENERIC                     1.141 via patch
	sys/arch/hp700/conf/GENERIC                     patch
	sys/arch/i386/conf/GENERIC                      1.840 via patch
	sys/arch/i386/conf/GENERIC_LAPTOP               1.239 via patch
	sys/arch/i386/conf/GENERIC.MPACPI               patch
	sys/arch/mac68k/conf/GENERIC                    1.182 via patch
	sys/arch/sgimips/conf/GENERIC32_IP2x            1.68 via patch
	sys/arch/sgimips/conf/GENERIC32_IP3x            1.66 via patch
	sys/arch/sparc/conf/GENERIC                     1.200 via patch
	sys/arch/sparc64/conf/GENERIC32                 patch
	sys/arch/xen/conf/GENERIC                       patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@

Revision 1.595.2.11.2.2.2.1: download - view: text, markup, annotated - select for diffs
Sat Aug 11 14:40:08 2007 UTC (17 years, 4 months ago) by bouyer
Branches: netbsd-2-1
Diff to: previous 1.595.2.11.2.2: preferred, colored; next MAIN 1.595.2.11.2.3: preferred, colored
Changes since revision 1.595.2.11.2.2: +3 -3 lines
Pull up following revision(s) (requested by adrianp in ticket #11356):
	sys/arch/acorn32/conf/GENERIC                   1.80 via patch
	sys/arch/amd64/conf/GENERIC                     1.154 via patch
	sys/arch/amiga/conf/GENERIC.in                  1.61 via patch
	sys/arch/arc/conf/GENERIC                       1.148 via patch
	sys/arch/atari/conf/GENERIC.in                  1.68 via patch
	sys/arch/cats/conf/GENERIC                      1.116 via patch
	sys/arch/hp300/conf/GENERIC                     1.141 via patch
	sys/arch/hp700/conf/GENERIC                     patch
	sys/arch/i386/conf/GENERIC                      1.840 via patch
	sys/arch/i386/conf/GENERIC_LAPTOP               1.239 via patch
	sys/arch/i386/conf/GENERIC.MPACPI               patch
	sys/arch/mac68k/conf/GENERIC                    1.182 via patch
	sys/arch/sgimips/conf/GENERIC32_IP2x            1.68 via patch
	sys/arch/sgimips/conf/GENERIC32_IP3x            1.66 via patch
	sys/arch/sparc/conf/GENERIC                     1.200 via patch
	sys/arch/sparc64/conf/GENERIC32                 patch
	sys/arch/xen/conf/GENERIC                       patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@

Revision 1.839.4.1: download - view: text, markup, annotated - select for diffs
Thu Aug 9 02:36:54 2007 UTC (17 years, 4 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.839: preferred, colored
Changes since revision 1.839: +3 -3 lines
Sync with HEAD.

Revision 1.838.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 7 18:05:18 2007 UTC (17 years, 4 months ago) by matt
Branches: matt-mips64
Diff to: previous 1.838: preferred, colored; next MAIN 1.839: preferred, colored
Changes since revision 1.838: +7 -3 lines
Sync with HEAD.

Revision 1.840: download - view: text, markup, annotated - select for diffs
Mon Aug 6 21:26:55 2007 UTC (17 years, 4 months ago) by adrianp
Branches: MAIN
CVS tags: matt-mips64-base
Diff to: previous 1.839: preferred, colored
Changes since revision 1.839: +3 -3 lines
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@

Revision 1.839: download - view: text, markup, annotated - select for diffs
Sat Jul 28 11:06:23 2007 UTC (17 years, 4 months ago) by kiyohara
Branches: MAIN
CVS tags: hpcarm-cleanup
Branch point for: jmcneill-pm
Diff to: previous 1.838: preferred, colored
Changes since revision 1.838: +6 -2 lines
Add ichsmb(4).

Revision 1.816.2.5: download - view: text, markup, annotated - select for diffs
Sun Jul 15 13:16:07 2007 UTC (17 years, 5 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.4: preferred, colored
Changes since revision 1.816.2.4: +16 -6 lines
Sync with head.

Revision 1.838: download - view: text, markup, annotated - select for diffs
Sat Jul 14 16:16:17 2007 UTC (17 years, 5 months ago) by kiyohara
Branches: MAIN
CVS tags: nick-csl-alignment-base
Branch point for: nick-csl-alignment, matt-mips64
Diff to: previous 1.837: preferred, colored
Changes since revision 1.837: +6 -6 lines
Alphabetical reorder.

Revision 1.816.4.1: download - view: text, markup, annotated - select for diffs
Wed Jul 11 19:59:45 2007 UTC (17 years, 5 months ago) by mjf
Branches: mjf-ufs-trans
Diff to: previous 1.816: preferred, colored; next MAIN 1.817: preferred, colored
Changes since revision 1.816: +56 -21 lines
Sync with head.

Revision 1.837: download - view: text, markup, annotated - select for diffs
Wed Jul 11 08:01:50 2007 UTC (17 years, 5 months ago) by kiyohara
Branches: MAIN
CVS tags: mjf-ufs-trans-base
Diff to: previous 1.836: preferred, colored
Changes since revision 1.836: +8 -2 lines
Add nfsmb(4).

Revision 1.836: download - view: text, markup, annotated - select for diffs
Sun Jul 8 03:01:19 2007 UTC (17 years, 5 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.835: preferred, colored
Changes since revision 1.835: +4 -2 lines
Enable gcscehci(4)

Revision 1.835: download - view: text, markup, annotated - select for diffs
Wed Jun 27 23:12:03 2007 UTC (17 years, 5 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.834: preferred, colored
Changes since revision 1.834: +3 -2 lines
Add gcscide(4).

Revision 1.824.2.2: download - view: text, markup, annotated - select for diffs
Tue Jun 26 18:12:31 2007 UTC (17 years, 5 months ago) by garbled
Branches: ppcoea-renovation
Diff to: previous 1.824.2.1: preferred, colored
Changes since revision 1.824.2.1: +9 -3 lines
Sync with HEAD.

Revision 1.799.2.10: download - view: text, markup, annotated - select for diffs
Thu Jun 21 13:54:11 2007 UTC (17 years, 5 months ago) by liamjfoy
Branches: netbsd-4
Diff to: previous 1.799.2.9: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.9: +3 -2 lines
Pull up following revision(s) (requested by dyoung in ticket #738):
	sys/arch/i386/conf/GENERIC: revision 1.800
Add rtw at pci to the GENERIC kernel.

Revision 1.799.2.9: download - view: text, markup, annotated - select for diffs
Tue Jun 19 09:26:30 2007 UTC (17 years, 5 months ago) by liamjfoy
Branches: netbsd-4
Diff to: previous 1.799.2.8: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.8: +3 -2 lines
Pull up following revision(s) (requested by riz in ticket #734):
	sys/arch/i386/pci/glxsb.c: revision 1.1
	sys/arch/i386/conf/GENERIC: revision 1.833
	share/man/man4/man4.i386/glxsb.4: revision 1.1
	sys/arch/i386/conf/ALL: revision 1.104
	share/man/man4/man4.i386/Makefile: revision 1.66
	sys/arch/i386/conf/files.i386: revision 1.309
	distrib/sets/lists/man/mi: revision 1.1007
Import driver for the AMD Geode LX AES Security Block, from OpenBSD. The
glxsb(4) driver provides random numbers and AES acceleration.
Add man page for AMD Geode LX AES Security Block driver.
Enable glxsb(4)

Revision 1.834: download - view: text, markup, annotated - select for diffs
Sat Jun 16 12:35:55 2007 UTC (17 years, 5 months ago) by ad
Branches: MAIN
Diff to: previous 1.833: preferred, colored
Changes since revision 1.833: +2 -3 lines
-options I2OVERBOSE.

Revision 1.833: download - view: text, markup, annotated - select for diffs
Fri Jun 15 23:05:29 2007 UTC (17 years, 6 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.832: preferred, colored
Changes since revision 1.832: +3 -2 lines
Enable glxsb(4)

Revision 1.816.2.4: download - view: text, markup, annotated - select for diffs
Sat Jun 9 23:55:06 2007 UTC (17 years, 6 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.3: preferred, colored
Changes since revision 1.816.2.3: +7 -2 lines
Sync with head.

Revision 1.832: download - view: text, markup, annotated - select for diffs
Sat Jun 9 11:34:02 2007 UTC (17 years, 6 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.831: preferred, colored
Changes since revision 1.831: +3 -2 lines
Add zyd(4).

Revision 1.799.2.8: download - view: text, markup, annotated - select for diffs
Tue Jun 5 20:49:58 2007 UTC (17 years, 6 months ago) by bouyer
Branches: netbsd-4
Diff to: previous 1.799.2.7: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.7: +1 -0 lines
Pull up following revision(s) (requested by martin in ticket #699):
	sys/arch/hpcmips/conf/GENERIC: revision 1.196
	sys/arch/hp700/conf/GENERIC: revision 1.74
	sys/arch/i386/conf/GENERIC: revision 1.831
	sys/arch/next68k/conf/GENERIC: revision 1.108
	sys/arch/alpha/conf/GENERIC: revision 1.313
	sys/arch/arc/conf/GENERIC: revision 1.146
	sys/arch/cats/conf/GENERIC: revision 1.115
	sys/arch/ews4800mips/conf/GENERIC: revision 1.18
	sys/arch/landisk/conf/GENERIC: revision 1.8 via patch
	sys/arch/sparc64/conf/GENERIC: revision 1.85
	sys/arch/pmax/conf/GENERIC: revision 1.152
	sys/arch/iyonix/conf/GENERIC: revision 1.38 via patch
	sys/arch/amiga/conf/GENERIC: revision 1.245
	sys/arch/vax/conf/GENERIC: revision 1.157
	sys/arch/prep/conf/GENERIC: revision 1.135
	sys/arch/pc532/conf/GENERIC: revision 1.70
	sys/arch/sbmips/conf/GENERIC: revision 1.61
	sys/arch/mipsco/conf/GENERIC: revision 1.65
	sys/arch/cobalt/conf/GENERIC: revision 1.108
	sys/arch/ofppc/conf/GENERIC: revision 1.98
	sys/arch/amd64/conf/GENERIC: revision 1.148
	sys/arch/acorn26/conf/GENERIC: revision 1.50
	sys/arch/dreamcast/conf/GENERIC: revision 1.78
	sys/arch/mac68k/conf/GENERIC: revision 1.181
	sys/arch/hp300/conf/GENERIC: revision 1.139
	sys/arch/mmeye/conf/GENERIC: revision 1.88
	sys/arch/news68k/conf/GENERIC: revision 1.88
	sys/arch/mvme68k/conf/GENERIC: revision 1.71
	sys/arch/acorn32/conf/GENERIC: revision 1.79
	sys/arch/sparc/conf/GENERIC: revision 1.199
	sys/arch/luna68k/conf/GENERIC: revision 1.78
	sys/arch/bebox/conf/GENERIC: revision 1.105
	sys/arch/macppc/conf/GENERIC: revision 1.256 via patch
	sys/arch/x68k/conf/GENERIC: revision 1.134
	sys/arch/sun3/conf/GENERIC: revision 1.138
	sys/arch/newsmips/conf/GENERIC: revision 1.98
Add pseudo-device agr to all GENERIC kernels where it might make sense
(commented out in some).

Revision 1.831: download - view: text, markup, annotated - select for diffs
Mon Jun 4 08:55:21 2007 UTC (17 years, 6 months ago) by martin
Branches: MAIN
Diff to: previous 1.830: preferred, colored
Changes since revision 1.830: +3 -2 lines
Add pseudo-device agr to all GENERIC kernels where it might make sense
(commented out in some).

Revision 1.830: download - view: text, markup, annotated - select for diffs
Fri Jun 1 14:26:36 2007 UTC (17 years, 6 months ago) by blymn
Branches: MAIN
Diff to: previous 1.829: preferred, colored
Changes since revision 1.829: +5 -2 lines
Add smsc device

Revision 1.829: download - view: text, markup, annotated - select for diffs
Tue May 29 21:37:07 2007 UTC (17 years, 6 months ago) by christos
Branches: MAIN
Diff to: previous 1.828: preferred, colored
Changes since revision 1.828: +3 -2 lines
Add COMPAT_40 for struct ifreq changes.

Revision 1.816.2.3: download - view: text, markup, annotated - select for diffs
Sun May 27 12:27:27 2007 UTC (17 years, 6 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.2: preferred, colored
Changes since revision 1.816.2.2: +13 -2 lines
Sync with head.

Revision 1.824.2.1: download - view: text, markup, annotated - select for diffs
Tue May 22 17:26:56 2007 UTC (17 years, 6 months ago) by matt
Branches: ppcoea-renovation
Diff to: previous 1.824: preferred, colored
Changes since revision 1.824: +9 -2 lines
Update to HEAD.

Revision 1.828: download - view: text, markup, annotated - select for diffs
Sun May 20 05:13:17 2007 UTC (17 years, 6 months ago) by dogcow
Branches: MAIN
Diff to: previous 1.827: preferred, colored
Changes since revision 1.827: +5 -2 lines
add uslsa USB-RS232 adapter

Revision 1.808.2.9: download - view: text, markup, annotated - select for diffs
Thu May 17 13:40:56 2007 UTC (17 years, 6 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.8: preferred, colored; next MAIN 1.809: preferred, colored
Changes since revision 1.808.2.8: +5 -2 lines
sync with head.

Revision 1.827: download - view: text, markup, annotated - select for diffs
Tue May 15 17:53:44 2007 UTC (17 years, 7 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-idlelwp-base8
Diff to: previous 1.826: preferred, colored
Changes since revision 1.826: +4 -2 lines
add jmide(4), a driver for the JMicron Technology JMB36x PCIe to SATA II/PATA
controllers. These controllers can be found on add-on PCIe cards, or
on some motherboards to provide the PATA connectivity (e.g. some intel
ICH8-based motherboards).

Thanks to JMicron Technology for providing me documentation and
different sample boards for this work.

Revision 1.799.2.7: download - view: text, markup, annotated - select for diffs
Sun May 13 06:52:51 2007 UTC (17 years, 7 months ago) by pavel
Branches: netbsd-4
Branch point for: wrstuden-fixsa
Diff to: previous 1.799.2.6: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.6: +1 -0 lines
Pull up patch (requested by xtraeme in ticket #633):
	sys/arch/amd64/conf/GENERIC:			patch
	sys/arch/i386/conf/ALL:				patch
	sys/arch/i386/conf/GENERIC:			patch
	sys/conf/files:					patch
	sys/dev/acpi/files.acpi:			patch
	sys/dev/acpi/ug_acpi.c:				patch
	sys/dev/ic/ug.c:				patch
	sys/dev/ic/ugreg.h:				patch
	sys/dev/ic/ugvar.h:				patch
	sys/dev/isa/files.isa:				patch
	sys/dev/isa/ug_isa.c:				patch
	share/man/man4/ug.4:				patch
	doc/CHANGES:					patch
	sys/dev/isa/ug.c:				delete
	sys/dev/isa/ugvar.h:				delete

Add an acpi attachement for the ug hardware monitor driver.

Revision 1.826: download - view: text, markup, annotated - select for diffs
Tue May 8 16:55:54 2007 UTC (17 years, 7 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.825: preferred, colored
Changes since revision 1.825: +3 -2 lines
Add "ug* at acpi?" following the current scheme in the files.

Revision 1.799.2.6: download - view: text, markup, annotated - select for diffs
Tue May 8 10:45:07 2007 UTC (17 years, 7 months ago) by pavel
Branches: netbsd-4
Diff to: previous 1.799.2.5: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.5: +3 -2 lines
Pull up following revision(s) (requested by bouyer in ticket #603):
	distrib/sets/lists/base/mi: revision 1.704
	distrib/sets/lists/comp/mi: revision 1.1022
	distrib/sets/lists/man/mi: revision 1.997
	doc/CHANGES: revision 1.839
	sbin/Makefile: patch
	sbin/bioctl/Makefile: revision 1.1
	sbin/bioctl/bioctl.8: revision 1.1
	sbin/bioctl/bioctl.c: revision 1.1
	sbin/bioctl/strtonum.c: revision 1.1
	sbin/bioctl/strtonum.h: revision 1.1
	share/man/man4/Makefile: revision 1.426
	share/man/man4/bio.4: revision 1.1
	sys/arch/amd64/conf/GENERIC: revision 1.139
	sys/arch/i386/conf/GENERIC: revision 1.825
	sys/arch/i386/conf/XEN2_DOM0: revision 1.25
	sys/conf/files: revision 1.839
	sys/conf/majors: patch
	sys/dev/Makefile: revision 1.25
	sys/dev/bio.c: patch
	sys/dev/biovar.h: patch
	sys/dev/ic/mfi.c: revision 1.4-1.5
	sys/dev/ic/mfivar.h: revision 1.4
	sys/sys/envsys.h: revision 1.11
	usr.sbin/envstat/envstat.c: revision 1.24
Add bio(4) and associated bioctl(8) from OpenBSD, a driver control block
device controllers, and more specifically raid controllers.
Add a new sensor type, ENVSYS_DRIVE, to report drive status. From OpenBSD.
Add bio and sysmon support to mfi(4). This allow userland to query
status for drives and logical volumes attached to a mfi(4) controller. While
there fix some debug printfs in mfi so they compile.
Add bio(4) to amd64 and i386 GENERIC.

note bio(4), envsys(4) DRIVE, and mfi(4) support for both.

tred->sensor is a u_int.

Revision 1.808.2.8: download - view: text, markup, annotated - select for diffs
Mon May 7 10:54:55 2007 UTC (17 years, 7 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.7: preferred, colored
Changes since revision 1.808.2.7: +7 -2 lines
sync with head.

Revision 1.825: download - view: text, markup, annotated - select for diffs
Tue May 1 17:18:54 2007 UTC (17 years, 7 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.824: preferred, colored
Changes since revision 1.824: +3 -2 lines
Add bio(4) and associated bioctl(8) from OpenBSD, a driver control block
device controllers, and more specifically raid controllers.
Add a new sensor type, ENVSYS_DRIVE, to report drive status. From OpenBSD.
Add bio and sysmon support to mfi(4). This allow userland to query
status for drives and logical volumes attached to a mfi(4) controller. While
there fix some debug printfs in mfi so they compile.
Add bio(4) to amd64 and i386 GENERIC.

Revision 1.824: download - view: text, markup, annotated - select for diffs
Thu Apr 26 17:11:36 2007 UTC (17 years, 7 months ago) by dyoung
Branches: MAIN
Branch point for: ppcoea-renovation
Diff to: previous 1.823: preferred, colored
Changes since revision 1.823: +3 -2 lines
Add ATADEBUG for ease of debugging.

Revision 1.823: download - view: text, markup, annotated - select for diffs
Thu Apr 19 14:34:35 2007 UTC (17 years, 7 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.822: preferred, colored
Changes since revision 1.822: +5 -2 lines
ALL: add ug(4).
GENERIC/GENERIC_LAPTOP: add ug(4) commented out.

Revision 1.808.2.7: download - view: text, markup, annotated - select for diffs
Sun Apr 15 16:02:46 2007 UTC (17 years, 8 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.6: preferred, colored
Changes since revision 1.808.2.6: +6 -6 lines
sync with head.

Revision 1.816.2.2: download - view: text, markup, annotated - select for diffs
Tue Apr 10 13:23:01 2007 UTC (17 years, 8 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.1: preferred, colored
Changes since revision 1.816.2.1: +28 -20 lines
Sync with head.

Revision 1.822: download - view: text, markup, annotated - select for diffs
Thu Apr 5 19:17:41 2007 UTC (17 years, 8 months ago) by reed
Branches: MAIN
CVS tags: thorpej-atomic-base, thorpej-atomic
Diff to: previous 1.821: preferred, colored
Changes since revision 1.821: +6 -6 lines
Add some tabs. Move one entry.
No real changes, just making it easier to diff with GENERIC_LAPTOP.

Revision 1.661.2.19: download - view: text, markup, annotated - select for diffs
Sat Mar 31 15:25:33 2007 UTC (17 years, 8 months ago) by bouyer
Branches: netbsd-3
Diff to: previous 1.661.2.18: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.18: +3 -2 lines
pullup the following revisions (requested by msaitoh in ticket 1681):
	sys/dev/pci/if_wm.c			1.104-1.105, 1.116-1.121,
						1.127,1.133-1.134 via patch
	sys/dev/pci/if_wmreg.h			1.17-1.20
	sys/dev/pci/pcidevs			patch
	sys/dev/mii/igphy.c			1.11
	sys/dev/mii/makphy.c			1.20, 1.23
	sys/dev/mii/ikphy.c			patch
	sys/dev/mii/ikphyreg.h			patch
	sys/dev/mii/miidevs			1.68
	sys/dev/mii/files.mii			1.39
	sys/arch/i386/conf/GENERIC		1.788-1.789 via patch
	sys/arch/i386/conf/GENERIC.MPACPI	patch
	sys/arch/i386/conf/GENERIC_LAPTOP	1.209 via patch
	sys/arch/i386/conf/INSTALL		1.291 via patch
	sys/arch/i386/conf/INSTALL_LAPTOP	1.104 via patch
	sys/arch/i386/conf/XEN2_DOM0		1.13 via patch
	share/man/man4/wm.4			1.14-1.16
Add support for many cards (include PCI-express based chips).
Many bug fixes about auto negotiations (PR#30078, PR#30490,
PR#30906, PR#33429 and PR#35386).
Fix media link issues with fiber-based card (PR#35797).

Revision 1.819.2.1: download - view: text, markup, annotated - select for diffs
Thu Mar 29 19:27:26 2007 UTC (17 years, 8 months ago) by reinoud
Branches: reinoud-bufcleanup
Diff to: previous 1.819: preferred, colored; next MAIN 1.820: preferred, colored
Changes since revision 1.819: +22 -18 lines
Pullup to -current

Revision 1.808.2.6: download - view: text, markup, annotated - select for diffs
Sat Mar 24 14:54:43 2007 UTC (17 years, 8 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.5: preferred, colored
Changes since revision 1.808.2.5: +29 -20 lines
sync with head.

Revision 1.799.2.5: download - view: text, markup, annotated - select for diffs
Thu Mar 22 20:00:09 2007 UTC (17 years, 8 months ago) by jdc
Branches: netbsd-4
Diff to: previous 1.799.2.4: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.4: +3 -3 lines
Pull up revision 1.816 (requested by bouyer in ticket #501).

Comment out 'fdc* at acpi?' (it's likely that systems not supporting
fdc0 at isa? don't have a fdc at all). Because of the 'fdc0 at isa?', on
systems supporting ACPI the floppy controller would attach as fdc1. as fd(4)
looks for its type in nvram using the floppy controller index, it's looking for
the wrong controller and the default density isn't set (so /dev/fd0a doens't
work).
Problem analyzed by John Nemeth, thanks !

Revision 1.821: download - view: text, markup, annotated - select for diffs
Thu Mar 22 12:40:06 2007 UTC (17 years, 8 months ago) by gdt
Branches: MAIN
Diff to: previous 1.820: preferred, colored
Changes since revision 1.820: +19 -18 lines
Add apm emulation via acpi.

Enable cardbus attachment for lots of devices.  The drivers were
already compiled in via pci attachment, and GENERIC supports cardbus,
so there's no reason not to attach.

With this, GENERIC.MP works well on a Thinkpad T60.

(proposed on port-i386, no objections received)

Revision 1.820: download - view: text, markup, annotated - select for diffs
Tue Mar 20 21:29:28 2007 UTC (17 years, 8 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.819: preferred, colored
Changes since revision 1.819: +5 -2 lines
ALL: Enable INTEL_ONDEMAND_CLOCKMOD.
GENERIC: Add INTEL_ONDEMAND_CLOCKMOD disabled by default.

Revision 1.819: download - view: text, markup, annotated - select for diffs
Wed Mar 14 12:27:22 2007 UTC (17 years, 9 months ago) by drochner
Branches: MAIN
Branch point for: reinoud-bufcleanup
Diff to: previous 1.818: preferred, colored
Changes since revision 1.818: +4 -4 lines
It doesn't make sense to specify "configuration" and "interface"
locators for uhub because a hub can't have sub-devices.
This might be sanity-checked eventually.
Same for ubt now after the change to device attachment.

Revision 1.818: download - view: text, markup, annotated - select for diffs
Tue Mar 13 23:49:38 2007 UTC (17 years, 9 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.817: preferred, colored
Changes since revision 1.817: +6 -2 lines
ALL: add unichromefb.
GENERIC: add unichromefb (disabled by default).
GENERIC_LAPTOP: add unichromefb and vesafb (disabled by default).

Revision 1.816.2.1: download - view: text, markup, annotated - select for diffs
Tue Mar 13 16:49:58 2007 UTC (17 years, 9 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816: preferred, colored
Changes since revision 1.816: +3 -2 lines
Sync with head.

Revision 1.817: download - view: text, markup, annotated - select for diffs
Tue Mar 13 04:09:28 2007 UTC (17 years, 9 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.816: preferred, colored
Changes since revision 1.816: +3 -2 lines
Add aiboost* at acpi, enabled by default on i386/GENERIC and disable
in the other ones (to follow current scheme).

Revision 1.808.2.5: download - view: text, markup, annotated - select for diffs
Mon Mar 12 05:48:19 2007 UTC (17 years, 9 months ago) by rmind
Branches: yamt-idlelwp
Diff to: previous 1.808.2.4: preferred, colored
Changes since revision 1.808.2.4: +30 -26 lines
Sync with HEAD.

Revision 1.799.2.4: download - view: text, markup, annotated - select for diffs
Sat Mar 10 19:23:41 2007 UTC (17 years, 9 months ago) by riz
Branches: netbsd-4
Diff to: previous 1.799.2.3: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.3: +25 -25 lines
Pull up following revision(s) (requested by bouyer in ticket #494):
	sys/arch/i386/conf/GENERIC.MP: revision 1.9
	distrib/pc532/cdroms/installcd/Makefile: revision 1.1
	distrib/macppc/Makefile: revision 1.15
	distrib/ofppc/Makefile: revision 1.2
	distrib/ibmnws/Makefile: revision 1.2
	distrib/acorn32/Makefile: revision 1.18
	distrib/x68k/cdroms/installcd/Makefile: revision 1.1
	distrib/sparc/Makefile: revision 1.7
	distrib/sparc64/cdroms/Makefile: revision 1.1
	distrib/hp300/cdroms/Makefile: revision 1.1
	distrib/hpcsh/Makefile: revision 1.6
	distrib/ofppc/cdroms/installcd/Makefile: revision 1.1
	distrib/playstation2/Makefile: revision 1.13
	distrib/news68k/cdroms/installcd/Makefile: revision 1.1
	distrib/amiga/cdroms/installcd/Makefile: revision 1.1
	distrib/hp700/cdroms/installcd/Makefile: revision 1.1
	distrib/playstation2/cdroms/Makefile: revision 1.1
	distrib/amiga/cdroms/Makefile: revision 1.1
	etc/etc.mac68k/Makefile.inc: revision 1.18
	distrib/shark/cdroms/installcd/Makefile: revision 1.1
	distrib/hpcmips/Makefile: revision 1.28
	distrib/hpcmips/cdroms/Makefile: revision 1.1
	distrib/amd64/floppies/Makefile: revision 1.3
	sys/arch/amd64/conf/INSTALL_ACPI: file removal
	distrib/i386/cdroms/Makefile: revision 1.4
	distrib/acorn26/cdroms/installcd/Makefile: revision 1.1
	distrib/hpcsh/cdroms/Makefile: revision 1.1
	distrib/prep/cdroms/Makefile: revision 1.1
	distrib/pc532/Makefile: revision 1.4
	distrib/acorn32/cdroms/installcd/Makefile: revision 1.1
	distrib/sun2/Makefile: revision 1.8
	distrib/vax/Makefile: revision 1.17
	distrib/sparc64/cdroms/installcd/Makefile: revision 1.1
	distrib/pmax/cdroms/Makefile: revision 1.1
	distrib/mipsco/cdroms/installcd/Makefile: revision 1.1
	distrib/sun3/cdroms/installcd/Makefile: revision 1.1
	distrib/vax/cdroms/installcd/Makefile: revision 1.1
	distrib/hpcarm/cdroms/installcd/Makefile: revision 1.1
	distrib/mvme68k/Makefile: revision 1.4
	distrib/mvmeppc/cdroms/Makefile: revision 1.1
	distrib/newsmips/Makefile: revision 1.4
	sys/arch/i386/conf/GENERIC.MPACPI: file removal
	distrib/hpcarm/cdroms/Makefile: revision 1.1
	distrib/evbppc/cdroms/Makefile: revision 1.1
	sys/arch/i386/conf/INSTALL_LARGE: revision 1.1
	distrib/i386/cdroms/installcd/Makefile: revision 1.2
	distrib/i386/cdroms/installcd/Makefile: revision 1.3
	doc/CHANGES: revision 1.804
	distrib/hpcsh/cdroms/installcd/Makefile: revision 1.1
	distrib/i386/cdroms/bootcd/Makefile: revision 1.2
	distrib/mvmeppc/cdroms/installcd/Makefile: revision 1.1
	distrib/i386/cdroms/bootcd/Makefile: revision 1.3
	distrib/evbarm/Makefile: revision 1.8
	distrib/mvmeppc/Makefile: revision 1.3
	distrib/i386/cdroms/bootcd-com/Makefile: revision 1.2
	distrib/i386/cdroms/bootcd-com/Makefile: revision 1.3
	distrib/macppc/cdroms/installcd/Makefile: revision 1.1
	distrib/acorn26/cdroms/Makefile: revision 1.1
	distrib/alpha/cdroms/Makefile: revision 1.1
	distrib/hp300/cdroms/installcd/Makefile: revision 1.1
	distrib/amd64/floppies/bootfloppy/Makefile: revision 1.4
	distrib/pmppc/cdroms/installcd/Makefile: revision 1.1
	distrib/hp700/Makefile: revision 1.2
	distrib/pmppc/Makefile: revision 1.2
	distrib/arc/cdroms/Makefile: revision 1.1
	sys/arch/amd64/conf/INSTALL: revision 1.66
	distrib/sun3/cdroms/Makefile: revision 1.1
	distrib/mipsco/Makefile: revision 1.4
	distrib/sun3/Makefile: revision 1.9
	distrib/vax/cdroms/Makefile: revision 1.1
	distrib/pmppc/cdroms/Makefile: revision 1.1
	distrib/amd64/cdroms/Makefile.cdrom: revision 1.1
	distrib/atari/cdroms/installcd/Makefile: revision 1.1
	distrib/evbppc/cdroms/installcd/Makefile: revision 1.1
	distrib/newsmips/cdroms/installcd/Makefile: revision 1.1
	distrib/pmax/Makefile: revision 1.4
	Makefile: revision 1.247
	distrib/cats/cdroms/installcd/Makefile: revision 1.1
	sys/arch/amd64/conf/GENERIC: revision 1.130
	sys/arch/amd64/conf/GENERIC: revision 1.131
	distrib/sgimips/cdroms/installcd/Makefile: revision 1.1
	distrib/hp700/cdroms/Makefile: revision 1.1
	distrib/cats/cdroms/Makefile: revision 1.1
	distrib/evbmips/Makefile: revision 1.3
	distrib/evbmips/Makefile: revision 1.4
	sys/arch/amd64/conf/GENERIC_ACPI: file removal
	distrib/ews4800mips/Makefile: revision 1.2
	distrib/amd64/cdroms/bootcd-com/Makefile: revision 1.2
	distrib/i386/Makefile: revision 1.5
	distrib/amd64/cdroms/installcd/Makefile: revision 1.2
	distrib/mvme68k/cdroms/installcd/Makefile: revision 1.1
	distrib/alpha/cdroms/installcd/Makefile: revision 1.1
	etc/etc.amd64/Makefile.inc: revision 1.7
	distrib/i386/instkernel/Makefile: revision 1.6
	distrib/x68k/cdroms/Makefile: revision 1.1
	distrib/i386/cdroms/Makefile.cdrom: revision 1.1
	distrib/sandpoint/Makefile: revision 1.4
	distrib/i386/cdroms/Makefile.cdrom: revision 1.2
	distrib/amiga/Makefile: revision 1.3
	distrib/amd64/cdroms/bootcd/Makefile: revision 1.2
	distrib/news68k/Makefile: revision 1.4
	distrib/amd64/floppies/bootfloppy-com/Makefile: revision 1.5
	distrib/news68k/cdroms/Makefile: revision 1.1
	distrib/sparc/cdroms/Makefile: revision 1.1
	distrib/shark/cdroms/Makefile: revision 1.1
	etc/Makefile: revision 1.341
	distrib/amd64/instkernel/Makefile: revision 1.2
	distrib/sparc64/Makefile: revision 1.7
	distrib/dreamcast/cdroms/Makefile: revision 1.1
	distrib/shark/Makefile: revision 1.3
	distrib/ews4800mips/cdroms/Makefile: revision 1.1
	distrib/sun2/cdroms/installcd/Makefile: revision 1.1
	distrib/shark/Makefile: revision 1.4
	distrib/macppc/cdroms/Makefile: revision 1.1
	distrib/mvme68k/cdroms/Makefile: revision 1.1
	distrib/sun2/cdroms/Makefile: revision 1.1
	distrib/hpcarm/Makefile: revision 1.3
	distrib/arc/cdroms/installcd/Makefile: revision 1.1
	distrib/hpcmips/cdroms/installcd/Makefile: revision 1.1
	distrib/mipsco/cdroms/Makefile: revision 1.1
	distrib/Makefile.inc: revision 1.9
	distrib/playstation2/cdroms/installcd/Makefile: revision 1.1
	distrib/ibmnws/cdroms/installcd/Makefile: revision 1.1
	distrib/newsmips/cdroms/Makefile: revision 1.1
	distrib/arc/Makefile: revision 1.3
	distrib/sparc/cdroms/installcd/Makefile: revision 1.1
	distrib/evbmips/cdroms/installcd/Makefile: revision 1.1
	distrib/ews4800mips/cdroms/installcd/Makefile: revision 1.1
	distrib/prep/Makefile: revision 1.3
	distrib/ibmnws/cdroms/Makefile: revision 1.1
	distrib/sandpoint/cdroms/Makefile: revision 1.1
	distrib/atari/Makefile: revision 1.6
	distrib/sgimips/cdroms/Makefile: revision 1.1
	distrib/amd64/Makefile: revision 1.4
	distrib/atari/cdroms/Makefile: revision 1.1
	distrib/x68k/Makefile: revision 1.5
	distrib/x68k/Makefile: revision 1.6
	distrib/sandpoint/cdroms/installcd/Makefile: revision 1.1
	distrib/evbarm/cdroms/Makefile: revision 1.1
	distrib/acorn32/cdroms/Makefile: revision 1.1
	distrib/cats/Makefile: revision 1.3
	distrib/evbmips/cdroms/Makefile: revision 1.1
	distrib/pc532/cdroms/Makefile: revision 1.1
	distrib/Makefile: revision 1.14
	distrib/evbarm/cdroms/installcd/Makefile: revision 1.1
	distrib/ofppc/cdroms/Makefile: revision 1.1
	distrib/amd64/cdroms/Makefile: revision 1.3
	distrib/common/Makefile.bootcd: revision 1.8
	distrib/i386/cdroms/bootcd-laptop/Makefile: file removal
	sys/arch/i386/conf/GENERIC: revision 1.813
	distrib/hp300/Makefile: revision 1.17
	sys/arch/i386/conf/GENERIC: revision 1.814
	distrib/evbppc/Makefile: revision 1.2
	distrib/pmax/cdroms/installcd/Makefile: revision 1.1
	etc/etc.i386/Makefile.inc: revision 1.49
	distrib/sgimips/Makefile: revision 1.2
	distrib/prep/cdroms/installcd/Makefile: revision 1.1
	distrib/acorn26/Makefile: revision 1.4
	distrib/dreamcast/cdroms/installcd/Makefile: revision 1.1
	distrib/alpha/Makefile: revision 1.22
	distrib/dreamcast/Makefile: revision 1.2

Missed part of ticket #494 - distrib/i386/cdroms/Makefile.cdrom and
sys/arch/i386/conf/GENERIC:

Improve the use of makefs to build boot CDs, and make it truely MI:
- allow to specify the "instkernel" directory, and allow to put multiple
  kernels on the image
- allow to specify the directory where the image will be created
- only use bootxx_cd9660 if it exists
- search for second-stage boot as usr/mdec/boot.${MACHINE} in addition to
  usr/mdec/boot
- make 'installboot -e' optional
- use target 'release' or 'iso_image' depending on ${CDRELEASE}
- call some MD targets, which will eventually complete the file list or
  make the image bootable
For the benefit of modern hardware, enable ACPI by default in INSTALL and
GENERIC kernels. If ACPI is an issue on your hardware, 'boot -c' and
'disable acpi' should be a workaround. ACPI-enabled kernels works fine
on pre-acpi hardware.
for amd64:
- add ACPI to INSTALL and GENERIC, remove the *_ACPI config files.
- get rid of the bootfloppy-big.fs boot image, and got to a 3-floppy boot
  image
for i386:
- introduce INSTALL_LARGE which has ACPI and some devices with big firmware
- move some devices from INSTALL to INSTALL_LARGE
- Boot floppies still use INSTALL, and bootfloppy-big.fs is still there
  (for thoses who want to build el-torito floppy emulation boot CD) and use
  INSTALL.
For both, drop the 'iso-image' code in etc/ to make the iso bootable, we'll
use something else to build bootable CDs.
Add an iso_image target (iso-image as a target name doesn't play well with
bsd.subdirs.mk) in distrib/makefile, which builds an iso image for $MACHINE
with binary sets, stored in ${RELEASEDIR}/iso. The image is bootable for:
alpha, amd64, cats, i386, pmax, sgimips, sparc, sparc64, sun3, vax.
mac68k/macppc no there yet because of missing feature in makefs.
call iso_image in distrib/ for iso-image in the top Makefile.
Use the new common/Makefile.bootcd to make i386 and amd64 bootable ISO
images. amd64 gets a single kernel; i386 images gets 3 kernels:
- netbsd, copy from netbsd-INSTALL_LARGE.gz, loaded by default
- nbsd-l, copy from netbsd-INSTALL_LAPTOP.gz
- nbsd-i, copy from netbsd-INSTALL.gz for those who want the traditionnal
  non-ACPI kernel
- drop the bootcd-laptop image
both gets an installcd image, which is the same as bootcd but with the
binary sets in addition to kernels.
Make iso-image do nothing for all but mac68k, which still
relies on mkisofs to create bootable ISO image. macppc should also be there,
but it seems the code to make an iso bootable never got added in etc.macppc/
Fix typo in subdir name.
Revert local changes that went in accidentally with the "add ACPI" commit.
Note ACPI by default in i386/amd64, and the iso-image changes.
Fix SUBDIR in previous
Remove duplicate ACPIVERBOSE and ACPI_SCANPCI; pointed out by Nicolas Joly.
Correct typo: the directory is named cdroms, not cdrom.
Use nblaptop and nbnoacpi for the alternative kernel names; as suggected by
Alan Barrett. While there factor out the kernels in Makefile.cdrom.

Revision 1.816: download - view: text, markup, annotated - select for diffs
Sat Mar 10 10:54:53 2007 UTC (17 years, 9 months ago) by bouyer
Branches: MAIN
Branch point for: vmlocking, mjf-ufs-trans
Diff to: previous 1.815: preferred, colored
Changes since revision 1.815: +3 -3 lines
Comment out 'fdc* at acpi?' (it's likely that systems not supporting
fdc0 at isa? don't have a fdc at all). Because of the 'fdc0 at isa?', on
systems supporting ACPI the floppy controller would attach as fdc1. as fd(4)
looks for its type in nvram using the floppy controller index, it's looking for
the wrong controller and the default density isn't set (so /dev/fd0a doens't
work).
Problem analyzed by John Nemeth, thanks !

Revision 1.815: download - view: text, markup, annotated - select for diffs
Thu Mar 8 15:16:04 2007 UTC (17 years, 9 months ago) by njoly
Branches: MAIN
Diff to: previous 1.814: preferred, colored
Changes since revision 1.814: +3 -2 lines
Add hpet support to i386/amd64 kernels.
- `hpet* at acpi?' to kernels that already support ACPI.
- `hpet* at amdpcib?' (commented out) to amd64 GENERIC.

Revision 1.814: download - view: text, markup, annotated - select for diffs
Wed Mar 7 22:23:14 2007 UTC (17 years, 9 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.813: preferred, colored
Changes since revision 1.813: +4 -6 lines
Remove duplicate ACPIVERBOSE and ACPI_SCANPCI; pointed out by Nicolas Joly.

Revision 1.813: download - view: text, markup, annotated - select for diffs
Tue Mar 6 21:47:46 2007 UTC (17 years, 9 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.812: preferred, colored
Changes since revision 1.812: +27 -25 lines
For the benefit of modern hardware, enable ACPI by default in INSTALL and
GENERIC kernels. If ACPI is an issue on your hardware, 'boot -c' and
'disable acpi' should be a workaround. ACPI-enabled kernels works fine
on pre-acpi hardware.
for amd64:
- add ACPI to INSTALL and GENERIC, remove the *_ACPI config files.
- get rid of the bootfloppy-big.fs boot image, and got to a 3-floppy boot
  image
for i386:
- introduce INSTALL_LARGE which has ACPI and some devices with big firmware
- move some devices from INSTALL to INSTALL_LARGE
- Boot floppies still use INSTALL, and bootfloppy-big.fs is still there
  (for thoses who want to build el-torito floppy emulation boot CD) and use
  INSTALL.
For both, drop the 'iso-image' code in etc/ to make the iso bootable, we'll
use something else to build bootable CDs.

Revision 1.812: download - view: text, markup, annotated - select for diffs
Tue Mar 6 11:28:46 2007 UTC (17 years, 9 months ago) by dillo
Branches: MAIN
Diff to: previous 1.811: preferred, colored
Changes since revision 1.811: +3 -3 lines
Complete rename of hfsp to hfs, requested by thorpej.

Revision 1.811: download - view: text, markup, annotated - select for diffs
Mon Mar 5 23:30:18 2007 UTC (17 years, 9 months ago) by dillo
Branches: MAIN
Diff to: previous 1.810: preferred, colored
Changes since revision 1.810: +3 -2 lines
Add file-system HFSP (commented out) to GENERIC kernels of ports
on which Mac OS runs.

Revision 1.661.2.18: download - view: text, markup, annotated - select for diffs
Sat Mar 3 23:30:21 2007 UTC (17 years, 9 months ago) by bouyer
Branches: netbsd-3
Diff to: previous 1.661.2.17: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.17: +4 -2 lines
Pull up following revision(s) (requested by tsutsui in ticket #1673):
	distrib/sets/lists/man/mi		1.844, 1.871
	share/man/man4/Makefile			1.372, 1.379 via patch
	share/man/man4/re.4			1.8, 1.9, 1.11, 1.12
	share/man/man4/rgephy.4			1.1
	share/man/man4/rlphy.4			1.1, 1.2
	sys/arch/amd64/conf/GENERIC		1.79, 1.89
	sys/arch/amd64/conf/INSTALL		1.45, 1.49
	sys/arch/i386/conf/GENERIC		1.717, 1.747
	sys/arch/i386/conf/GENERIC_LAPTOP	1.164
	sys/arch/i386/conf/INSTALL		1.277, 1.283
	sys/arch/i386/conf/INSTALL_LAPTOP	1.96, 1.98
	sys/arch/i386/conf/XEN2_DOM0		1.22 via patch
	sys/arch/macppc/conf/GENERIC		1.220, 1.246
	sys/arch/macppc/conf/INSTALL		1.96, 1.100
	sys/dev/cardbus/if_re_cardbus.c		1.10
	sys/dev/cardbus/if_rtk_cardbus.c 	1.29-1.31
	sys/dev/ic/rtl8169.c			1.14, 1.20, 1.24, 1.25, 1.28-1.61, 1.63, 1.64-1.81 via patch
	sys/dev/ic/rtl81x9.c			1.52, 1.54-1.63, 1.65, 1.67-1.70
	sys/dev/ic/rtl81x9reg.h			1.15-1.26
	sys/dev/ic/rtl81x9var.h			1.19, 1.21-1.37
	sys/dev/mii/files.mii			1.38
	sys/dev/mii/miidevs			1.62, 1.64
	sys/dev/mii/rgephy.c			1.10, 1.13-1.16
	sys/dev/mii/rlphy.c			1.1, 1.6, 1.7, 1.11 via patch
	sys/dev/pci/if_re_pci.c			1.13, 1.15-1.17, 1.19-1.23
	sys/dev/pci/if_rtk_pci.c		1.25, 1.28, 1.29, 1.31
	sys/dev/pci/pcidevs			1.851, 1.852

on re(4):
- improve stability (I believe ;-)
- add a workaround for hardware ip4csum-tx bug
- support newer chips (8169SB/SC, PCIe based 8168 etc.)
- fix 8139C+ support
- enable hardware VLAN
- misc bus_dma(9) fix (which makes re(4) work on mips ports)

on rtk(4):
- fix kern/31348
- fix possible panic on dreamcast

Revision 1.810: download - view: text, markup, annotated - select for diffs
Thu Mar 1 14:57:38 2007 UTC (17 years, 9 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.809: preferred, colored
Changes since revision 1.809: +4 -2 lines
Add btuart(4).

Revision 1.808.2.4: download - view: text, markup, annotated - select for diffs
Tue Feb 27 16:51:32 2007 UTC (17 years, 9 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.3: preferred, colored
Changes since revision 1.808.2.3: +5 -2 lines
- sync with head.
- move sched_changepri back to kern_synch.c as it doesn't know PPQ anymore.

Revision 1.683.2.3: download - view: text, markup, annotated - select for diffs
Mon Feb 26 09:06:50 2007 UTC (17 years, 9 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.2: preferred, colored
Changes since revision 1.683.2.2: +14 -6 lines
sync with head.

Revision 1.808.2.3: download - view: text, markup, annotated - select for diffs
Wed Feb 21 11:57:28 2007 UTC (17 years, 9 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.2: preferred, colored
Changes since revision 1.808.2.2: +2 -5 lines
define SCHED_4BSD in conf/std for now.

Revision 1.808.2.2: download - view: text, markup, annotated - select for diffs
Tue Feb 20 21:48:43 2007 UTC (17 years, 9 months ago) by rmind
Branches: yamt-idlelwp
Diff to: previous 1.808.2.1: preferred, colored
Changes since revision 1.808.2.1: +1426 -0 lines
General Common Scheduler Framework (CSF) patch import. Huge thanks for
Daniel Sieger <dsieger at TechFak.Uni-Bielefeld de> for this work.

Short abstract: Split the dispatcher from the scheduler in order to
make the scheduler more modular. Introduce initial API for other
schedulers' implementations.

Discussed in tech-kern@
OK: yamt@, ad@

Note: further work will go soon.

Revision 1.809: download - view: text, markup, annotated - select for diffs
Sun Feb 18 18:05:52 2007 UTC (17 years, 9 months ago) by dsl
Branches: MAIN
CVS tags: ad-audiomp-base, ad-audiomp
Diff to: previous 1.808: preferred, colored
Changes since revision 1.808: +5 -2 lines
Add commented out entries for SYSCALL_STATS and SYSCALL_TIMES

Revision 1.808.2.1
Sat Feb 17 00:28:23 2007 UTC (17 years, 9 months ago) by rmind
Branches: yamt-idlelwp
FILE REMOVED
Changes since revision 1.808: +0 -1423 lines
file GENERIC was added on branch yamt-idlelwp on 2007-02-20 21:48:43 +0000

Revision 1.808: download - view: text, markup, annotated - select for diffs
Sat Feb 17 00:28:23 2007 UTC (17 years, 9 months ago) by daniel
Branches: MAIN
Branch point for: yamt-idlelwp
Diff to: previous 1.807: preferred, colored
Changes since revision 1.807: +5 -2 lines
Add an opencrypto provider for the AES xcrypt instructions found on VIA
C5P and later cores (also known as 'ACE', which is part of the VIA PadLock
security engine). Ported from OpenBSD.

Reviewed on tech-crypto and port-i386, no objections to commiting this.

Revision 1.807: download - view: text, markup, annotated - select for diffs
Fri Feb 9 21:55:04 2007 UTC (17 years, 10 months ago) by ad
Branches: MAIN
CVS tags: post-newlock2-merge
Diff to: previous 1.806: preferred, colored
Changes since revision 1.806: +3 -2 lines
Merge newlock2 to head.

Revision 1.779.2.4: download - view: text, markup, annotated - select for diffs
Tue Feb 6 16:55:40 2007 UTC (17 years, 10 months ago) by ad
Branches: newlock2
Diff to: previous 1.779.2.3: preferred, colored; branchpoint 1.779: preferred, colored; next MAIN 1.780: preferred, colored
Changes since revision 1.779.2.3: +9 -3 lines
Fix merge errors.

Revision 1.779.2.3: download - view: text, markup, annotated - select for diffs
Tue Feb 6 15:04:17 2007 UTC (17 years, 10 months ago) by ad
Branches: newlock2
Diff to: previous 1.779.2.2: preferred, colored; branchpoint 1.779: preferred, colored
Changes since revision 1.779.2.2: +3 -2 lines
Add pseudo-device lockstat.

Revision 1.779.2.2: download - view: text, markup, annotated - select for diffs
Thu Feb 1 08:48:00 2007 UTC (17 years, 10 months ago) by ad
Branches: newlock2
Diff to: previous 1.779.2.1: preferred, colored; branchpoint 1.779: preferred, colored
Changes since revision 1.779.2.1: +5 -6 lines
Sync with head.

Revision 1.799.2.3: download - view: text, markup, annotated - select for diffs
Sun Jan 28 20:05:41 2007 UTC (17 years, 10 months ago) by tron
Branches: netbsd-4
Diff to: previous 1.799.2.2: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.2: +1 -1 lines
Pull up following revision(s) (requested by tls in ticket #386):
	doc/CHANGES: revision 1.783 via patch
	sys/arch/i386/conf/INSTALL_TINY: revision 1.109
	sys/arch/i386/conf/INSTALL_XEN2_DOMU: revision 1.11
	sys/arch/i386/conf/INSTALL_SMALL: revision 1.132
	sys/arch/i386/conf/GENERIC: revision 1.806
	sys/arch/amd64/conf/GENERIC: revision 1.125
	sys/arch/i386/conf/INSTALL: revision 1.303
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.220
	sys/arch/i386/conf/GENERIC_TINY: revision 1.103
	sys/arch/i386/conf/INSTALL_LAPTOP: revision 1.114
Remove option COMPAT_386BSD_MBRPART from default kernels.  NetBSD has
not used partition ID 0x165 for many, many years, and the presence of
this option in INSTALL kernels can cause overwriting of existing FreeBSD
installations when sysinst writes back the disklabel.  Those with very,
very old NetBSD installations may find that they must update their fdisk
partition tables to use partition ID 0x169 for their NetBSD partitions.
This seems like the best of a number of lousy choices for dealing with
this problem.  Sysinst should perhaps grow code that asks whether an
existing 0x165 partition should be converted.
~

Revision 1.806: download - view: text, markup, annotated - select for diffs
Wed Jan 24 19:46:26 2007 UTC (17 years, 10 months ago) by tls
Branches: MAIN
CVS tags: newlock2-nbase, newlock2-base
Diff to: previous 1.805: preferred, colored
Changes since revision 1.805: +3 -3 lines
Remove option COMPAT_386BSD_MBRPART from default kernels.  NetBSD has
not used partition ID 0x165 for many, many years, and the presence of
this option in INSTALL kernels can cause overwriting of existing FreeBSD
installations when sysinst writes back the disklabel.  Those with very,
very old NetBSD installations may find that they must update their fdisk
partition tables to use partition ID 0x169 for their NetBSD partitions.

This seems like the best of a number of lousy choices for dealing with
this problem.  Sysinst should perhaps grow code that asks whether an
existing 0x165 partition should be converted.

~

Revision 1.805: download - view: text, markup, annotated - select for diffs
Sat Jan 20 18:48:17 2007 UTC (17 years, 10 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.804: preferred, colored
Changes since revision 1.804: +4 -5 lines
viaenv(4) does not need anymore viapm.

Revision 1.804: download - view: text, markup, annotated - select for diffs
Thu Jan 11 05:36:29 2007 UTC (17 years, 11 months ago) by mouse
Branches: MAIN
Diff to: previous 1.803: preferred, colored
Changes since revision 1.803: +4 -2 lines
Hook srt into the rest of the kernel build machinery, so it works to
just uncomment the pseudo-device line (which arguably should go into
other ports' GENERICs too, and at some point may).

OKed by perry.

Revision 1.661.2.17: download - view: text, markup, annotated - select for diffs
Mon Jan 8 16:36:20 2007 UTC (17 years, 11 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.661.2.16: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.16: +3 -0 lines
Pull up following revision(s) (requested by bouyer in ticket #1621):
	sys/arch/i386/conf/GENERIC: revision 1.787 via patch
	share/man/man4/Makefile: revision 1.407 via patch
	distrib/sets/lists/man/mi: revision 1.936 via patch
	share/man/man4/ipmi.4: revision 1.1 via patch
	sys/arch/i386/i386/bios32.c: revision 1.11 via patch
	sys/dev/DEVNAMES: revision 1.221 via patch
	sys/arch/x86/x86/ipmi.c: revision 1.1 via patch
	sys/arch/i386/i386/mainbus.c: revision 1.65 via patch
	sys/arch/x86/include/smbiosvar.h: revision 1.1 via patch
	sys/arch/x86/include/ipmivar.h: revision 1.1 via patch
	sys/arch/x86/conf/files.x86: revision 1.20 via patch
	sys/arch/i386/conf/files.i386: revision 1.293 via patch
Add ipmi(4) driver, from OpenBSD. This requires SMBios support, so add
SMBios detection and mapping to bios32.c, also from OpenBSD (for now this
is only compiled in if ipmi(4) is configured). The sensors and watchdog are
accessible though envsys(4).
Works on i386; some work is needed on amd64 to access the BIOS. It would
eventually work on Xen if the SMBios is accessible (to be tested).
Add manpage for new ipmi driver.
Claim ipmi.

Revision 1.683.2.2: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:46:04 2006 UTC (17 years, 11 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.1: preferred, colored
Changes since revision 1.683.2.1: +64 -35 lines
sync with head.

Revision 1.661.2.16: download - view: text, markup, annotated - select for diffs
Sat Dec 23 16:43:18 2006 UTC (17 years, 11 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.661.2.15: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.15: +1 -0 lines
Pull up following revision(s) (requested by bouyer in ticket #1609):
	sys/arch/i386/conf/INSTALL: revision 1.298
	sys/arch/i386/conf/GENERIC: revision 1.802
	sys/dev/pci/files.pci: revision 1.274
	sys/arch/amd64/conf/GENERIC: revision 1.122
	sys/dev/pci/mfi_pci.c: revision 1.1 via patch
	distrib/sets/lists/man/mi: revision 1.958
	sys/arch/amd64/conf/INSTALL: revision 1.61
	sys/dev/ic/mfireg.h: revision 1.1
	share/man/man4/Makefile: revision 1.416 via patch
	sys/dev/ic/mfi.c: revision 1.1
	sys/arch/i386/conf/XEN2_DOM0: revision 1.19
	sys/dev/ic/mfivar.h: revision 1.1
	sys/conf/files: revision 1.821
	share/man/man4/mfi.4: revision 1.1
	share/man/man4/mfi.4: revision 1.2
	sys/dev/pci/pcidevs via patch
Add mfi(4), a driver for LSI Logic & Dell MegaRAID SAS RAID controller.
Ported from OpenBSD, tested on i386 and amd64.
Punctuation issues.

Revision 1.661.2.15: download - view: text, markup, annotated - select for diffs
Sat Dec 23 14:43:45 2006 UTC (17 years, 11 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.661.2.14: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.14: +3 -2 lines
Pull up following revision(s) (requested by bouyer in ticket #1608):
	sys/arch/i386/conf/INSTALL: revision 1.299 via patch
	sys/arch/i386/conf/XEN2_DOM0: revision 1.20 via patch
	sys/arch/i386/conf/GENERIC: revision 1.803 via patch
	sys/dev/pci/files.pci: revision 1.275 via patch
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.218 via patch
	sys/arch/amd64/conf/GENERIC: revision 1.123 via patch
	sys/dev/pci/if_bnx.c: revision 1.1 via patch
	share/man/man4/bnx.4: revision 1.1-1.2 via patch
	distrib/sets/lists/man/mi: revision 1.959 via patch
	sys/arch/amd64/conf/INSTALL: revision 1.62 via patch
	sys/dev/microcode/bnx/bnxfw.h: revision 1.1-1.2 via patch
	sys/dev/pci/if_bnxreg.h: revision 1.1 via patch
	share/man/man4/Makefile: revision 1.417 via patch
	sys/arch/i386/conf/INSTALL_LAPTOP: revision 1.112 via patch
Add bnx(4), a driver for Broadcom NetXtreme II 10/100/1000 Ethernet device.
Ported from OpenBSD by cube@, with some bus_dma fixes by me.
Tested on i386 and amd64.
Add a NetBSD RCS tag.
Nx -> Ox; remove trailing whitespace.

Revision 1.799.2.2: download - view: text, markup, annotated - select for diffs
Thu Dec 21 13:44:00 2006 UTC (17 years, 11 months ago) by tron
Branches: netbsd-4
Diff to: previous 1.799.2.1: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.1: +1 -0 lines
Pull up following revision(s) (requested by bouyer in ticket #287):
	sys/arch/i386/conf/INSTALL: revision 1.299
	sys/arch/i386/conf/XEN2_DOM0: revision 1.20
	sys/arch/i386/conf/GENERIC: revision 1.803
	sys/dev/pci/files.pci: revision 1.275
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.218
	sys/arch/amd64/conf/GENERIC: revision 1.123
	sys/dev/pci/if_bnx.c: revision 1.1
	share/man/man4/bnx.4: revision 1.1
	distrib/sets/lists/man/mi: revision 1.959
	sys/arch/amd64/conf/INSTALL: revision 1.62
	sys/dev/microcode/bnx/bnxfw.h: revision 1.1
	sys/arch/i386/conf/ALL: revision 1.76
	sys/dev/pci/if_bnxreg.h: revision 1.1
	share/man/man4/Makefile: revision 1.417
	sys/arch/i386/conf/INSTALL_LAPTOP: revision 1.112
Add bnx(4), a driver for Broadcom NetXtreme II 10/100/1000 Ethernet device.
Ported from OpenBSD by cube@, with some bus_dma fixes by me.
Tested on i386 and amd64.

Revision 1.799.2.1: download - view: text, markup, annotated - select for diffs
Thu Dec 21 12:46:20 2006 UTC (17 years, 11 months ago) by tron
Branches: netbsd-4
Diff to: previous 1.799: preferred, colored
Changes since revision 1.799: +3 -2 lines
Pull up following revision(s) (requested by bouyer in ticket #286):
	sys/arch/i386/conf/INSTALL: revision 1.298
	sys/arch/i386/conf/GENERIC: revision 1.802
	sys/dev/pci/files.pci: revision 1.274
	sys/arch/amd64/conf/GENERIC: revision 1.122
	sys/dev/pci/mfi_pci.c: revision 1.1
	distrib/sets/lists/man/mi: revision 1.958
	sys/arch/amd64/conf/INSTALL: revision 1.61
	sys/arch/i386/conf/ALL: revision 1.75
	sys/dev/ic/mfireg.h: revision 1.1
	share/man/man4/Makefile: revision 1.416
	sys/dev/ic/mfi.c: revision 1.1
	sys/arch/i386/conf/XEN2_DOM0: revision 1.19
	sys/dev/ic/mfivar.h: revision 1.1
	sys/conf/files: revision 1.821
	share/man/man4/mfi.4: revision 1.1
Add mfi(4), a driver for LSI Logic & Dell MegaRAID SAS RAID controller.
Ported from OpenBSD, tested on i386 and amd64.

Revision 1.781.2.3: download - view: text, markup, annotated - select for diffs
Mon Dec 18 11:42:04 2006 UTC (17 years, 11 months ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.781.2.2: preferred, colored; branchpoint 1.781: preferred, colored; next MAIN 1.782: preferred, colored
Changes since revision 1.781.2.2: +4 -3 lines
sync with head.

Revision 1.803: download - view: text, markup, annotated - select for diffs
Sun Dec 17 23:02:06 2006 UTC (17 years, 11 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-splraiseipl-base5, yamt-splraiseipl-base4
Diff to: previous 1.802: preferred, colored
Changes since revision 1.802: +3 -2 lines
Add bnx(4), a driver for Broadcom NetXtreme II 10/100/1000 Ethernet device.
Ported from OpenBSD by cube@, with some bus_dma fixes by me.
Tested on i386 and amd64.

Revision 1.802: download - view: text, markup, annotated - select for diffs
Sun Dec 17 22:57:15 2006 UTC (17 years, 11 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.801: preferred, colored
Changes since revision 1.801: +3 -2 lines
Add mfi(4), a driver for LSI Logic & Dell MegaRAID SAS RAID controller.
Ported from OpenBSD, tested on i386 and amd64.

Revision 1.801: download - view: text, markup, annotated - select for diffs
Mon Dec 11 15:24:28 2006 UTC (18 years ago) by yamt
Branches: MAIN
Diff to: previous 1.800: preferred, colored
Changes since revision 1.800: +2 -3 lines
- remove a static configuration, FILEASSOC_NHOOKS.  do it dynamically instead.
- make fileassoc_t a pointer and remove FILEASSOC_INVAL.
- clean up kern_fileassoc.c.  unify duplicated code.
- unexport fileassoc_init using RUN_ONCE(9).
- plug memory leaks in fileassoc_file_delete and fileassoc_table_delete.
- always call callbacks, regardless of the value of the associated data.

ok'ed by elad.

Revision 1.781.2.2: download - view: text, markup, annotated - select for diffs
Sun Dec 10 07:16:02 2006 UTC (18 years ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.781.2.1: preferred, colored; branchpoint 1.781: preferred, colored
Changes since revision 1.781.2.1: +22 -18 lines
sync with head.

Revision 1.800: download - view: text, markup, annotated - select for diffs
Mon Dec 4 01:32:37 2006 UTC (18 years ago) by dyoung
Branches: MAIN
CVS tags: yamt-splraiseipl-base3
Diff to: previous 1.799: preferred, colored
Changes since revision 1.799: +3 -2 lines
Add rtw at pci to the GENERIC kernel.

Revision 1.799: download - view: text, markup, annotated - select for diffs
Thu Nov 30 21:01:16 2006 UTC (18 years ago) by bouyer
Branches: MAIN
CVS tags: netbsd-4-base
Branch point for: netbsd-4
Diff to: previous 1.798: preferred, colored
Changes since revision 1.798: +3 -2 lines
Add ahcisata(4), a driver for AHCI 1.0 and 1.1 controllers. Tested on the sata
ports of a Intel 63xxESB chipset. Does not support NCQ yet.

Revision 1.798: download - view: text, markup, annotated - select for diffs
Tue Nov 28 16:15:36 2006 UTC (18 years ago) by christos
Branches: MAIN
Diff to: previous 1.797: preferred, colored
Changes since revision 1.797: +3 -3 lines
s/COPTS/CPUFLAGS/
s/-O2 //

Revision 1.779.2.1: download - view: text, markup, annotated - select for diffs
Sat Nov 18 21:29:18 2006 UTC (18 years ago) by ad
Branches: newlock2
Diff to: previous 1.779: preferred, colored
Changes since revision 1.779: +36 -23 lines
Sync with head.

Revision 1.797: download - view: text, markup, annotated - select for diffs
Fri Nov 17 22:18:22 2006 UTC (18 years ago) by tsutsui
Branches: MAIN
Diff to: previous 1.796: preferred, colored
Changes since revision 1.796: +3 -3 lines
COPTS should have -O2 otherwise we'll get no generic optimization.

XXX: I prefer CPUFLAGS, but there isn't any conclusion yet.

Revision 1.796: download - view: text, markup, annotated - select for diffs
Sat Nov 11 19:00:16 2006 UTC (18 years, 1 month ago) by jmmv
Branches: MAIN
Diff to: previous 1.795: preferred, colored
Changes since revision 1.795: +3 -3 lines
Enable TMPFS by default.  OK'ed by core@.

I'm leaving those platforms with few users and those whose machines are
not very powerful untouched per uwe@'s suggestion.  The port masters or
the real users of those ports are better suited to make the decision of
enabling it.

Revision 1.795: download - view: text, markup, annotated - select for diffs
Sat Nov 11 18:47:10 2006 UTC (18 years, 1 month ago) by jmmv
Branches: MAIN
Diff to: previous 1.794: preferred, colored
Changes since revision 1.794: +3 -3 lines
Remove tmpfs's experimental status.  OK'ed by core@.

Revision 1.794: download - view: text, markup, annotated - select for diffs
Wed Nov 1 19:33:41 2006 UTC (18 years, 1 month ago) by tls
Branches: MAIN
Diff to: previous 1.793: preferred, colored
Changes since revision 1.793: +7 -4 lines
Change GENERIC, GENERIC.MP, GENERIC.MPACPI, GENERIC_LAPTOP, INSTALL,
INSTALL.MP, INSTALL_LAPTOP, and DISKLESS kernels so that they are
smaller and faster by removing support for actual i386 CPUs (which
lack write protection in supervisor mode, which requires a costly
workaround) and math coprocessor emulation.  Coprocessor emulation
is retained in the LAPTOP kernels, but not in the others.  Where
it is known that a configuration cannot be run with particular CPUs
(i486 in *MP kernels) remove that support as well.  Compile all
kernels with appropriate architecture and tuning flags (reduces
size, makes things faster).  Those requiring support for machines
with i386 CPU or lacking coprocessor can use the *SMALL or *TINY
kernels.

Revision 1.793: download - view: text, markup, annotated - select for diffs
Tue Oct 31 22:21:16 2006 UTC (18 years, 1 month ago) by joerg
Branches: MAIN
Diff to: previous 1.792: preferred, colored
Changes since revision 1.792: +3 -2 lines
Add rum(4) for newer USB Ralink devices. Obtained from OpenBSD.
Special thanks to Sepherosa Ziehau for helping debugging USB issues.
Hook up rum(4) for i386 config files.

Revision 1.792: download - view: text, markup, annotated - select for diffs
Fri Oct 27 17:37:44 2006 UTC (18 years, 1 month ago) by perry
Branches: MAIN
Diff to: previous 1.791: preferred, colored
Changes since revision 1.791: +6 -6 lines
fix a bit of trailing whitespace, and do the space tab dance for a
couple of options so that they work well when commented out

Revision 1.791: download - view: text, markup, annotated - select for diffs
Thu Oct 26 11:48:38 2006 UTC (18 years, 1 month ago) by elad
Branches: MAIN
Diff to: previous 1.790: preferred, colored
Changes since revision 1.790: +10 -10 lines
Compile in Veriexec by default on some popular archs (amd64, i386, sparc64)
so it's more accessible and less of a hassle to put to use. Also enable
fileassoc(9) by default as a result, which for itself may open the door for
a lot of cool stuff. (stay tuned. :)

I recommend port masters of other archs to consider doing the same.
Personally I don't know which ports are considered more of a legacy than
in-production, so I'm leaving it for someone else for now...

No objections on tech-kern.

Revision 1.790: download - view: text, markup, annotated - select for diffs
Wed Oct 25 13:56:15 2006 UTC (18 years, 1 month ago) by jmmv
Branches: MAIN
Diff to: previous 1.789: preferred, colored
Changes since revision 1.789: +2 -3 lines
Remove the usage of Multiboot's "a.out kludge" to tell the boot loader to
reserve some more space for the BSS section than the binary says.  This
trick was used to leave room after the kernel's image to copy the symbol
table following the format required by ksyms_init.  (It was also used to
workaround a bug in the physical address fields of the binary, but this has
been long fixed.)  Yes, the MULTIBOOT_SYMTAB_SPACE option goes away; yay!

Instead, copy the required data after the kernel in a way that avoids having
to reserve space and use the new ksyms_init_explicit function to avoid the
need to construct a minimal ELF image.

Fixes ksyms when using an "unpatched" GRUB (one that does not contain the
fix to honour the "a.out kludge" for ELF images, even when present) -- i.e.
ddb and lkms.  As a side effect, the new code is much clearer to read and
digest.

Closes PR port-i386/32865.

Revision 1.789: download - view: text, markup, annotated - select for diffs
Sun Oct 22 16:26:27 2006 UTC (18 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.788: preferred, colored
Changes since revision 1.788: +2 -3 lines
Don't add ikphy twice; pointed out by Patrick Welche

Revision 1.781.2.1: download - view: text, markup, annotated - select for diffs
Sun Oct 22 06:04:43 2006 UTC (18 years, 1 month ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.781: preferred, colored
Changes since revision 1.781: +12 -4 lines
sync with head

Revision 1.788: download - view: text, markup, annotated - select for diffs
Sat Oct 21 14:10:33 2006 UTC (18 years, 1 month ago) by bouyer
Branches: MAIN
CVS tags: yamt-splraiseipl-base2
Diff to: previous 1.787: preferred, colored
Changes since revision 1.787: +4 -2 lines
Add support for the Intel 80003 Gigabit Ethernet controller (found e.g. in
newer server chipsets) to wm(4), from the FreeBSD em(4) driver.
While there, add a few other Intel Ethernet controller that should work as
is.
Properly update the RX error and TX collision counters.
Add ikphy(4), a driver for the Intel i82563 Kumeran 10/100/1000 Ethernet PHYs

Revision 1.787: download - view: text, markup, annotated - select for diffs
Sun Oct 1 18:37:54 2006 UTC (18 years, 2 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.786: preferred, colored
Changes since revision 1.786: +5 -2 lines
Add ipmi(4) driver, from OpenBSD. This requires SMBios support, so add
SMBios detection and mapping to bios32.c, also from OpenBSD (for now this
is only compiled in if ipmi(4) is configured). The sensors and watchdog are
accessible though envsys(4).
Works on i386; some work is needed on amd64 to access the BIOS. It would
eventually work on Xen if the SMBios is accessible (to be tested).

Revision 1.786: download - view: text, markup, annotated - select for diffs
Sun Oct 1 09:53:08 2006 UTC (18 years, 2 months ago) by itohy
Branches: MAIN
Diff to: previous 1.785: preferred, colored
Changes since revision 1.785: +3 -3 lines
Use ATA timing, instead of busmaster wait, for adding waits.
Use default wait value 0x01.

Revision 1.785: download - view: text, markup, annotated - select for diffs
Wed Sep 27 23:58:50 2006 UTC (18 years, 2 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.784: preferred, colored
Changes since revision 1.784: +3 -2 lines
Add (commented out) option WSKBD_USONLY

Revision 1.784: download - view: text, markup, annotated - select for diffs
Tue Sep 26 14:30:26 2006 UTC (18 years, 2 months ago) by elad
Branches: MAIN
Diff to: previous 1.783: preferred, colored
Changes since revision 1.783: +3 -3 lines
Oops! forgot "options" in previous commit. Pointed out by freza@, thanks!

Revision 1.783: download - view: text, markup, annotated - select for diffs
Tue Sep 26 14:08:19 2006 UTC (18 years, 2 months ago) by elad
Branches: MAIN
Diff to: previous 1.782: preferred, colored
Changes since revision 1.782: +4 -2 lines
Make PaX mprotect(2) restrictions more accessible.

On amd64, sparc64, i386, and alpha, they will be compiled in and disabled
by default. That means that to use them you either enable the "global"
knob with sysctl, or use paxctl(1) to enable it on a per-program basis.

On sparc and macppc just include a commentd out line in the GENERIC kernel.

Revision 1.772.2.4: download - view: text, markup, annotated - select for diffs
Sat Sep 23 23:46:02 2006 UTC (18 years, 2 months ago) by snj
Branches: abandoned-netbsd-4
Diff to: previous 1.772.2.3: preferred, colored; branchpoint 1.772: preferred, colored; next MAIN 1.773: preferred, colored
Changes since revision 1.772.2.3: +1 -1 lines
Pull up following revision(s) (requested by jmmv in ticket #180):
	sys/arch/i386/conf/XEN2_DOM0: revision 1.8
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.207
	sys/arch/i386/conf/GENERIC: revision 1.782
Fix definition of some options to be 'options<space><tab>' for consistency.

Revision 1.782: download - view: text, markup, annotated - select for diffs
Tue Sep 19 13:58:55 2006 UTC (18 years, 2 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.781: preferred, colored
Changes since revision 1.781: +3 -3 lines
Fix definition of some options to be 'options<space><tab>' for consistency.

Revision 1.772.2.3: download - view: text, markup, annotated - select for diffs
Fri Sep 15 11:58:46 2006 UTC (18 years, 3 months ago) by tron
Branches: abandoned-netbsd-4
Diff to: previous 1.772.2.2: preferred, colored; branchpoint 1.772: preferred, colored
Changes since revision 1.772.2.2: +4 -2 lines
Pull up following revision(s) (requested by riz in ticket #153):
	sys/arch/amd64/conf/INSTALL: revision 1.56
	sys/arch/amd64/conf/GENERIC: revision 1.107
	sys/arch/i386/conf/XEN2_DOM0: revision 1.7
	sys/arch/i386/conf/INSTALL: revision 1.289
	sys/arch/i386/conf/GENERIC: revision 1.780
Add msk and mskc.

Revision 1.772.2.2: download - view: text, markup, annotated - select for diffs
Thu Sep 14 21:16:33 2006 UTC (18 years, 3 months ago) by riz
Branches: abandoned-netbsd-4
Diff to: previous 1.772.2.1: preferred, colored; branchpoint 1.772: preferred, colored
Changes since revision 1.772.2.1: +7 -6 lines
Pull up following revision(s) (requested by plunky in ticket #161):
	sys/dev/bluetooth/btdev.h: revision 1.4
	distrib/sets/lists/comp/mi: revision 1.922
	usr.sbin/postinstall/postinstall: revision 1.25
	sys/netbt/hci_unit.c: revision 1.3
	sys/netbt/hci_ioctl.c: revision 1.4
	usr.sbin/sdpd/profile.c: revision 1.2
	usr.sbin/btdevctl/btdevctl.c: revision 1.2
	share/man/man4/Makefile: revision 1.405
	distrib/sets/lists/man/mi: revision 1.930
	distrib/sets/lists/etc/mi: revision 1.176
	usr.sbin/sdpd/profile.c: revision 1.3
	usr.sbin/btdevctl/btdevctl.c: revision 1.3
	etc/MAKEDEV.tmpl: revision 1.62
	distrib/sets/lists/base/mi: revision 1.650
	usr.sbin/btdevctl/btdevctl.h: revision 1.2
	usr.bin/sdpquery/sdpquery.1: revision 1.4
	sys/netbt/rfcomm_session.c: revision 1.2
	usr.sbin/btdevctl/btdevctl.8: revision 1.3
	usr.bin/sdpquery/search.c: revision 1.2
	usr.sbin/sdpd/Makefile: revision 1.2
	sys/dev/bluetooth/Makefile: revision 1.3
	usr.sbin/btdevctl/cfg.c: file removal
	sys/netbt/files.netbt: revision 1.4
	usr.sbin/btdevctl/sdp.c: revision 1.1
	sys/dev/bluetooth/bthidev.c: revision 1.3
	etc/bluetooth/Makefile: revision 1.3
	sys/dev/pcmcia/files.pcmcia: revision 1.51
	sys/dev/bluetooth/bthidev.c: revision 1.4
	sys/dev/bluetooth/bthidev.h: revision 1.3
	usr.sbin/btdevctl/dev.c: file removal
	sys/dev/bluetooth/files.bluetooth: revision 1.10
	sys/arch/i386/conf/GENERIC: revision 1.777
	share/man/man4/ubt.4: revision 1.6
	share/man/man4/bthub.4: revision 1.3
	sys/netbt/hci.h: revision 1.5
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.202
	lib/libsdp/sdp.h: revision 1.2
	usr.sbin/btdevctl/print.c: revision 1.1
	share/man/man4/bthidev.4: revision 1.5
	share/man/man4/btdev.4: file removal
	usr.sbin/btdevctl/print.c: revision 1.2
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.205
	usr.sbin/btdevctl/Makefile: revision 1.2
	sys/dev/usb/files.usb: revision 1.70
	sys/netbt/l2cap_signal.c: revision 1.2
	sys/netbt/hci_link.c: revision 1.4
	sys/dev/bluetooth/bthub.c: revision 1.3
	share/man/man4/btsco.4: revision 1.5
	sys/netbt/hci_link.c: revision 1.5
	share/man/man4/btdev.4: revision 1.4
	sys/dev/bluetooth/btkbd.c: revision 1.3
	sys/dev/bluetooth/btdev.c: file removal
	sys/netbt/hci_event.c: revision 1.2
	sys/dev/bluetooth/btsco.h: revision 1.2
	etc/mtree/special: revision 1.101
	sys/dev/bluetooth/btsco.c: revision 1.3
	sys/conf/majors: revision 1.27
	usr.sbin/sdpd/hf.c: revision 1.1
	sys/dev/bluetooth/btsco.c: revision 1.4
	share/man/man5/rc.conf.5: revision 1.107
	sys/dev/bluetooth/btdev.c: revision 1.2
	etc/rc.d/btdevctl: revision 1.2
	usr.sbin/btdevctl/db.c: revision 1.1
	etc/rc.d/btdevctl: revision 1.3
	etc/bluetooth/btdevctl.conf: revision 1.1
	usr.sbin/btdevctl/hid.c: file removal
	sys/arch/i386/conf/GENERIC: revision 1.781
	sys/dev/bluetooth/btdev.h: revision 1.3
Make btdev default count explicit
Fix typo in variable name
update to bluetooth device attachment:
remove pseudo-device btdev(4) and inherent limitations
add bthub(4) which autoconfigures at bluetooth controllers as they
are enabled. bluetooth devices now attach here.
btdevctl(8) and its cache is updated to handle new semantics
etc/rc.d/btdevctl is updated to configure devices from a list
in /etc/bluetooth/btdevctl.conf
also include service name in dictionary being sent to kernel.
(this is not used just yet, but it might be in the future and it will
be easier if we dont have to provide code to handle its absence)
clarify the CAVEAT section somewhat
Add service discovery support for the Handsfree profile
Replace static 'FreeBSD' string with operating system name gleaned
from uname(3)
Halt the callout on detach
btsco.c:
 - sco_getopt(..., SO_SCO_MTU, ...) expects the address of a uint16_t,
   not an int. So change sc_mtu's type to uint16_t.
 - Try a little harder to ensure btsco_round_blocksize() does not
   return zero. Prevents a subsequent panic in audio_init_ringbuffer().
	from scw@
Endian issues:
hci_event.c:
 - Convert memo->response.clock_offset to host-endian.
hci_ioctl.c:
 - printf format tweak (size_t)
hci_link.c:
 - Convert memo->response.clock_offset from host-endian.
 - Tweak a DIAGNOSTIC message.
l2cap_signal.c:
 - In l2cap_recv_config_req(), rp->scid is little-endian so make sure
   we convert from host-endian.
	from scw@
hci_link.c:
 - In hci_link_free(), do not unlink items from a LIST queue within
   a LIST_FOREACH() iterator.
rfcomm_session.c:
 - In rfcomm_session_recv_mcc_nsc(), do not unlink items from a LIST
   queue within a LIST_FOREACH() iterator.
	from scw@
guard against a possible situation where the list of l2cap channels is changed
when the bluetooth code is not expecting it to be. During a disconnect, we can
detach the channel that is being disconnected, but its not really safe to detach
any others.
Print explicit 64-bit types using the format macros from int_fmtio.h.
Unbreaks the build for our LP64 ports, where "long long" typically is
not 64 bits.

Revision 1.731.2.8: download - view: text, markup, annotated - select for diffs
Thu Sep 14 12:31:10 2006 UTC (18 years, 3 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.7: preferred, colored; branchpoint 1.731: preferred, colored; next MAIN 1.732: preferred, colored
Changes since revision 1.731.2.7: +12 -6 lines
sync with head.

Revision 1.781: download - view: text, markup, annotated - select for diffs
Sun Sep 10 15:45:56 2006 UTC (18 years, 3 months ago) by plunky
Branches: MAIN
CVS tags: yamt-splraiseipl-base, yamt-pdpolicy-base9
Branch point for: yamt-splraiseipl
Diff to: previous 1.780: preferred, colored
Changes since revision 1.780: +7 -6 lines
update to bluetooth device attachment:

remove pseudo-device btdev(4) and inherent limitations

add bthub(4) which autoconfigures at bluetooth controllers as they
are enabled. bluetooth devices now attach here.

btdevctl(8) and its cache is updated to handle new semantics

etc/rc.d/btdevctl is updated to configure devices from a list
in /etc/bluetooth/btdevctl.conf

Revision 1.780: download - view: text, markup, annotated - select for diffs
Sun Sep 10 02:28:33 2006 UTC (18 years, 3 months ago) by riz
Branches: MAIN
Diff to: previous 1.779: preferred, colored
Changes since revision 1.779: +4 -2 lines
Add msk and mskc.

Revision 1.721.2.1: download - view: text, markup, annotated - select for diffs
Sat Sep 9 02:39:53 2006 UTC (18 years, 3 months ago) by rpaulo
Branches: rpaulo-netinet-merge-pcb
Diff to: previous 1.721: preferred, colored; next MAIN 1.722: preferred, colored
Changes since revision 1.721: +127 -42 lines
sync with head

Revision 1.779: download - view: text, markup, annotated - select for diffs
Thu Sep 7 14:23:44 2006 UTC (18 years, 3 months ago) by itohy
Branches: MAIN
CVS tags: rpaulo-netinet-merge-pcb-base
Branch point for: newlock2
Diff to: previous 1.778: preferred, colored
Changes since revision 1.778: +5 -2 lines
Add njata* at cardbus?

Revision 1.731.2.7: download - view: text, markup, annotated - select for diffs
Sun Sep 3 15:22:58 2006 UTC (18 years, 3 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.6: preferred, colored; branchpoint 1.731: preferred, colored
Changes since revision 1.731.2.6: +10 -10 lines
sync with head.

Revision 1.778: download - view: text, markup, annotated - select for diffs
Sat Aug 26 20:26:45 2006 UTC (18 years, 3 months ago) by christos
Branches: MAIN
CVS tags: yamt-pdpolicy-base8
Diff to: previous 1.777: preferred, colored
Changes since revision 1.777: +3 -5 lines
PR/34283: Gene ENonymous: Add IPFILTER_LOOKUP to the default kernel options
Also remove CCITT,NS,NIP

Revision 1.777: download - view: text, markup, annotated - select for diffs
Sun Aug 20 07:06:57 2006 UTC (18 years, 3 months ago) by plunky
Branches: MAIN
Diff to: previous 1.776: preferred, colored
Changes since revision 1.776: +3 -3 lines
Make btdev default count explicit

Revision 1.772.2.1: download - view: text, markup, annotated - select for diffs
Mon Aug 14 13:41:26 2006 UTC (18 years, 4 months ago) by tron
Branches: abandoned-netbsd-4
Diff to: previous 1.772: preferred, colored
Changes since revision 1.772: +3 -3 lines
Pull up following revision(s) (requested by elad in ticket #17):
	sys/arch/sparc/conf/KRUPS: revision 1.38
	sys/arch/i386/conf/XEN2_DOMU: revision 1.2
	sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.197
	sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.53
	sys/arch/evbsh5/conf/SIMULATOR: revision 1.12
	sys/arch/sparc/conf/MRCOFFEE: revision 1.17
	sys/arch/next68k/conf/GENERIC: revision 1.104
	sys/arch/i386/conf/VIRTUALPC: revision 1.44
	sys/arch/ews4800mips/conf/GENERIC: revision 1.11
	sys/arch/evbsh5/conf/CAYMAN: revision 1.23
	sys/arch/arc/conf/GENERIC: revision 1.141
	sys/arch/amd64/conf/GENERIC: revision 1.103
	sys/arch/sun3/conf/GENERIC3X: revision 1.90
	sys/arch/evbarm/conf/HDL_G: revision 1.3
	sys/arch/sun2/conf/GENERIC: revision 1.57
	sys/arch/news68k/conf/GENERIC_TINY: revision 1.51
	sys/arch/evbppc/conf/EXPLORA451: revision 1.27
	sys/arch/amiga/conf/GENERIC.in: revision 1.54
	sys/arch/mac68k/conf/GENERIC: revision 1.174
	sys/arch/acorn26/conf/GENERIC: revision 1.45
	sys/arch/shark/conf/GENERIC: revision 1.64
	sys/arch/cesfic/conf/GENERIC: revision 1.44
	sys/arch/mvme68k/conf/GENERIC: revision 1.68
	sys/arch/i386/conf/XEN2_DOM0: revision 1.4
	sys/arch/atari/conf/GENERIC.in: revision 1.63
	sys/arch/amiga/conf/GENERIC: revision 1.240
	sys/arch/i386/conf/LAMB: revision 1.65
	sys/arch/i386/conf/GENERIC: revision 1.773
	sys/arch/acorn32/conf/EB7500ATX: revision 1.26
	sys/arch/x68k/conf/GENERIC: revision 1.128
	sys/arch/vax/conf/GENERIC: revision 1.153
	sys/arch/atari/conf/ATARITT: revision 1.81
	sys/arch/mipsco/conf/GENERIC: revision 1.60
	sys/arch/cobalt/conf/GENERIC: revision 1.101
	sys/arch/evbarm/conf/ARMADILLO9: revision 1.13
	sys/arch/ofppc/conf/GENERIC: revision 1.93
	sys/arch/atari/conf/MILAN-PCIIDE: revision 1.51
	sys/arch/arc/conf/RPC44: revision 1.26
	sys/arch/sparc64/conf/GENERIC: revision 1.59
	sys/arch/i386/conf/XEN3_DOMU: revision 1.2
	sys/arch/hp700/conf/GENERIC: revision 1.68
	sys/arch/atari/conf/MILAN-ISAIDE: revision 1.47
	sys/arch/macppc/conf/GENERIC: revision 1.231
	sys/arch/dreamcast/conf/GENERIC: revision 1.72
	sys/arch/news68k/conf/GENERIC: revision 1.80
	sys/arch/hp300/conf/GENERIC: revision 1.133
	sys/arch/mmeye/conf/GENERIC: revision 1.82
	sys/arch/macppc/conf/MAMBO: revision 1.2
	sys/arch/cats/conf/GENERIC: revision 1.107
	sys/arch/atari/conf/FALCON: revision 1.79
	sys/arch/acorn32/conf/GENERIC: revision 1.71
	sys/arch/sparc/conf/GENERIC: revision 1.190
	sys/arch/news68k/conf/LIBERO: revision 1.40
	sys/arch/amiga/conf/DRACO: revision 1.114
	sys/arch/cobalt/conf/INSTALL: revision 1.23
	sys/arch/luna68k/conf/GENERIC: revision 1.73
	sys/arch/bebox/conf/GENERIC: revision 1.100
	sys/arch/pmax/conf/GENERIC: revision 1.147
	sys/arch/amiga/conf/WSCONS: revision 1.52
	sys/arch/macppc/conf/POWERMAC_G5: revision 1.2
	sys/arch/alpha/conf/ALPHA: revision 1.218
	sys/arch/sun3/conf/GENERIC: revision 1.133
	sys/arch/prep/conf/GENERIC: revision 1.124
	sys/arch/alpha/conf/GENERIC: revision 1.291
	sys/arch/atari/conf/HADES: revision 1.71
	sys/arch/newsmips/conf/GENERIC: revision 1.93
	sys/arch/netwinder/conf/GENERIC: revision 1.82
	sys/arch/hpcmips/conf/GENERIC: revision 1.190
	sys/arch/amiga/conf/AMIGA: revision 1.98
	sys/arch/sbmips/conf/GENERIC: revision 1.54
	sys/arch/pc532/conf/GENERIC: revision 1.64
	sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.53
Disable SYSTRACE by default on all kernels (discussed with core)

Revision 1.776: download - view: text, markup, annotated - select for diffs
Mon Aug 14 09:34:43 2006 UTC (18 years, 4 months ago) by itohy
Branches: MAIN
Diff to: previous 1.775: preferred, colored
Changes since revision 1.775: +5 -4 lines
ACPI frontend for Yamaha OPL3-SA[23].
Derived from PR kern/33991 by jasper at pointless dot net.

Revision 1.775: download - view: text, markup, annotated - select for diffs
Mon Aug 14 06:22:34 2006 UTC (18 years, 4 months ago) by skrll
Branches: MAIN
Diff to: previous 1.774: preferred, colored
Changes since revision 1.774: +3 -3 lines
s/adpater/adapter/

Prompted by PR/34195

Revision 1.774: download - view: text, markup, annotated - select for diffs
Sun Aug 13 02:27:32 2006 UTC (18 years, 4 months ago) by simonb
Branches: MAIN
Diff to: previous 1.773: preferred, colored
Changes since revision 1.773: +3 -2 lines
Add wpi@pci.

Revision 1.773: download - view: text, markup, annotated - select for diffs
Sat Aug 12 15:29:53 2006 UTC (18 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.772: preferred, colored
Changes since revision 1.772: +3 -3 lines
Disable SYSTRACE by default on all kernels (discussed with core)

Revision 1.731.2.6: download - view: text, markup, annotated - select for diffs
Fri Aug 11 15:41:53 2006 UTC (18 years, 4 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.5: preferred, colored; branchpoint 1.731: preferred, colored
Changes since revision 1.731.2.5: +28 -18 lines
sync with head

Revision 1.772: download - view: text, markup, annotated - select for diffs
Mon Aug 7 21:33:49 2006 UTC (18 years, 4 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-pdpolicy-base7, abandoned-netbsd-4-base
Branch point for: abandoned-netbsd-4
Diff to: previous 1.771: preferred, colored
Changes since revision 1.771: +6 -3 lines
Enable POWERNOW_K8, now that it's working.

Revision 1.771: download - view: text, markup, annotated - select for diffs
Thu Aug 3 00:19:21 2006 UTC (18 years, 4 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.770: preferred, colored
Changes since revision 1.770: +3 -2 lines
Add commented-out "joy* at eap?" & point people at eap.4 before enabling.
Per discussion with drochner@

Revision 1.770: download - view: text, markup, annotated - select for diffs
Wed Aug 2 16:24:29 2006 UTC (18 years, 4 months ago) by reed
Branches: MAIN
Diff to: previous 1.769: preferred, colored
Changes since revision 1.769: +6 -6 lines
Fix comment, removed some periods at end of a couple comments (not all),
and alphabetize "ral" before "re".

This will make it easier to diff with GENERIC_LAPTOP.

No real changes.

Revision 1.769: download - view: text, markup, annotated - select for diffs
Mon Jul 31 23:29:54 2006 UTC (18 years, 4 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.768: preferred, colored
Changes since revision 1.768: +3 -2 lines
spc(4) can also attach to pcmcia(4), as was already in hpcmips/GENERIC
for quite some time. Add it to all systems that have pcmcia SCSI.

Pointed out by Björn Johannesson <rherdware@yahoo.com> in private mail,
OK'd by matt@

Revision 1.768: download - view: text, markup, annotated - select for diffs
Mon Jul 31 22:23:09 2006 UTC (18 years, 4 months ago) by wiz
Branches: MAIN
Diff to: previous 1.767: preferred, colored
Changes since revision 1.767: +4 -4 lines
Sort twa before twe.

Revision 1.661.2.14: download - view: text, markup, annotated - select for diffs
Mon Jul 31 12:35:22 2006 UTC (18 years, 4 months ago) by tron
Branches: netbsd-3
CVS tags: netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE
Branch point for: netbsd-3-1
Diff to: previous 1.661.2.13: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.13: +4 -2 lines
Apply patch (requested by bouyer in ticket #1441):
Pullup the twa(4) driver for the 3ware Apache RAID controllers.
Matching revisions in current:
share/man/man4/twa.4	1.1
sys/dev/pci/ld_twa.c	1.2
sys/dev/pci/twa.c	1.9
sys/dev/pci/twaio.h	1.3
sys/dev/pci/twareg.h	1.5
sys/dev/pci/twavar.h	1.5

Revision 1.767: download - view: text, markup, annotated - select for diffs
Sun Jul 30 17:53:50 2006 UTC (18 years, 4 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.766: preferred, colored
Changes since revision 1.766: +4 -2 lines
Add twa(4) and ld at twa where it makes sense.

Revision 1.766: download - view: text, markup, annotated - select for diffs
Wed Jul 26 15:34:39 2006 UTC (18 years, 4 months ago) by elad
Branches: MAIN
Diff to: previous 1.765: preferred, colored
Changes since revision 1.765: +3 -6 lines
deprecate "options VERIFIED_EXEC"
veriexec pseudo-device doesn't need a count anymore too

XXX: port masters should propagate this to their ports

Revision 1.765: download - view: text, markup, annotated - select for diffs
Wed Jul 26 10:43:02 2006 UTC (18 years, 4 months ago) by tron
Branches: MAIN
Diff to: previous 1.764: preferred, colored
Changes since revision 1.764: +3 -3 lines
Bluetooth fixes by Iain Hibbert:
Remove bthset(4) device and add btsco(4) in its place. This is an
improved version which is not just for headsets, as it can receive
incoming connections (eg for Hands Free Profile). Update bthset(1)
control utlitiy to relate to new device.

Revision 1.764: download - view: text, markup, annotated - select for diffs
Wed Jul 26 10:31:00 2006 UTC (18 years, 4 months ago) by tron
Branches: MAIN
Diff to: previous 1.763: preferred, colored
Changes since revision 1.763: +6 -6 lines
Bluetooth fixes by Iain Hibbert:
Change the way in which bluetooth devices attach to system. The
new way is for devices to attach directly to a btdevN device via
its own control file /dev/btdevN.
- bthub(4) is replaced by btdev(4).
- /dev/bthubctl is replaced by /dev/btdevN.
- configuration now uses proplib(3) property lists.
- btcontrol(8) updated to use new API, and now uses private
- XML config file /var/db/btdev.xml.

Revision 1.763: download - view: text, markup, annotated - select for diffs
Mon Jul 24 14:24:48 2006 UTC (18 years, 4 months ago) by gdt
Branches: MAIN
Diff to: previous 1.762: preferred, colored
Changes since revision 1.762: +4 -2 lines
Add UGEN_BULK_RA_WB, which allows users of ugen(4) to request read
ahead and write behind, improving performance for the Universal
Software Radio Peripheral (USRP) used with GNU Radio.

Enable UGEN_BULK_RA_WB in GENERIC and GENERIC_LAPTOP; behavior is
unchanged unless the new ioctl is called.

This code was written by Joanne Mikkelson under funding from DARPA's
ACERT program.

ok'd by christos@, tested by Berndt Josef Wulf

Revision 1.762: download - view: text, markup, annotated - select for diffs
Sat Jul 15 07:55:20 2006 UTC (18 years, 5 months ago) by elad
Branches: MAIN
Diff to: previous 1.761: preferred, colored
Changes since revision 1.761: +5 -2 lines
add (commented out) fileassoc(9) kernel options on some popular archs.

Revision 1.755.2.1: download - view: text, markup, annotated - select for diffs
Thu Jul 13 17:48:52 2006 UTC (18 years, 5 months ago) by gdamore
Branches: gdamore-uart
Diff to: previous 1.755: preferred, colored; next MAIN 1.756: preferred, colored
Changes since revision 1.755: +35 -8 lines
Merge from HEAD.

Revision 1.761: download - view: text, markup, annotated - select for diffs
Wed Jul 12 18:45:51 2006 UTC (18 years, 5 months ago) by perry
Branches: MAIN
Diff to: previous 1.760: preferred, colored
Changes since revision 1.760: +4 -2 lines
Note that people should not be using UFS_DIRHASH.

Revision 1.760: download - view: text, markup, annotated - select for diffs
Tue Jul 4 00:30:22 2006 UTC (18 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.759: preferred, colored
Changes since revision 1.759: +3 -5 lines
Apply fvdl's acpi pci interrupt configuration code.
- MPACPI is no more.
- MPACPI_SCANPCI -> ACPI_SCANPCI

Revision 1.759: download - view: text, markup, annotated - select for diffs
Wed Jun 28 15:19:28 2006 UTC (18 years, 5 months ago) by liamjfoy
Branches: MAIN
Diff to: previous 1.758: preferred, colored
Changes since revision 1.758: +3 -2 lines
Add CARP to GENERIC kernel configs. CARP is not enabled by default.

ok: christos

Revision 1.731.2.5: download - view: text, markup, annotated - select for diffs
Mon Jun 26 12:44:38 2006 UTC (18 years, 5 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.4: preferred, colored; branchpoint 1.731: preferred, colored
Changes since revision 1.731.2.4: +35 -8 lines
sync with head.

Revision 1.752.2.2: download - view: text, markup, annotated - select for diffs
Thu Jun 22 03:39:47 2006 UTC (18 years, 5 months ago) by chap
Branches: chap-midi
Diff to: previous 1.752.2.1: preferred, colored; branchpoint 1.752: preferred, colored; next MAIN 1.753: preferred, colored
Changes since revision 1.752.2.1: +28 -2 lines
Complete a sync sys/ with head.

Revision 1.683.2.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 14:52:09 2006 UTC (18 years, 5 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683: preferred, colored
Changes since revision 1.683: +169 -70 lines
sync with head.

Revision 1.758: download - view: text, markup, annotated - select for diffs
Mon Jun 19 15:44:44 2006 UTC (18 years, 5 months ago) by gdamore
Branches: MAIN
CVS tags: yamt-pdpolicy-base6, chap-midi-nbase, chap-midi-base
Diff to: previous 1.757: preferred, colored
Changes since revision 1.757: +28 -2 lines
Initial import of bluetooth stack on behalf of Iain Hibbert.  (plunky@,
NetBSD Foundation Membership still pending.)  This stack was written by
Iain under sponsorship from Itronix Inc.

The stack includes support for rfcomm networking (networking via your
bluetooth enabled cell phone), hid devices (keyboards/mice), and headsets.

Drivers for both PCMCIA and USB bluetooth controllers are included.

Revision 1.752.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 19 03:44:03 2006 UTC (18 years, 5 months ago) by chap
Branches: chap-midi
Diff to: previous 1.752: preferred, colored
Changes since revision 1.752: +9 -8 lines
Sync with head.

Revision 1.757: download - view: text, markup, annotated - select for diffs
Fri Jun 16 22:13:35 2006 UTC (18 years, 5 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.756: preferred, colored
Changes since revision 1.756: +4 -4 lines
Enable the piixpcib(4) device driver by default. This enabled speedstep as
well as sufficient powerhooks to resume from ACPI S3 suspend.

Revision 1.756: download - view: text, markup, annotated - select for diffs
Fri Jun 16 06:41:13 2006 UTC (18 years, 6 months ago) by simonb
Branches: MAIN
Diff to: previous 1.755: preferred, colored
Changes since revision 1.755: +3 -3 lines
Move ksyms to the "miscellaneous pseudo-devices" - it's not a wscons
thing.

Revision 1.755: download - view: text, markup, annotated - select for diffs
Tue Jun 13 17:17:15 2006 UTC (18 years, 6 months ago) by perry
Branches: MAIN
CVS tags: gdamore-uart-base
Branch point for: gdamore-uart
Diff to: previous 1.754: preferred, colored
Changes since revision 1.754: +4 -4 lines
edit a couple of new items so that they fit on a line and do the tab
to space dance so that they can be cleanly commented out.

Revision 1.754: download - view: text, markup, annotated - select for diffs
Wed Jun 7 22:37:57 2006 UTC (18 years, 6 months ago) by kardel
Branches: MAIN
Diff to: previous 1.753: preferred, colored
Changes since revision 1.753: +5 -4 lines
convert to timecounters (from branch simonb-timecounters)

Revision 1.723.2.4: download - view: text, markup, annotated - select for diffs
Wed Jun 7 15:49:38 2006 UTC (18 years, 6 months ago) by kardel
Branches: simonb-timecounters
Diff to: previous 1.723.2.3: preferred, colored; next MAIN 1.724: preferred, colored
Changes since revision 1.723.2.3: +3 -3 lines
Sync with head.

Revision 1.753: download - view: text, markup, annotated - select for diffs
Sun Jun 4 15:48:08 2006 UTC (18 years, 6 months ago) by perry
Branches: MAIN
CVS tags: simonb-timecounters-base
Diff to: previous 1.752: preferred, colored
Changes since revision 1.752: +3 -3 lines
convert a tab to a space so commenting out of piixpm is cleaner

Revision 1.723.2.3: download - view: text, markup, annotated - select for diffs