The NetBSD Project

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

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

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.503.4.5: download - view: text, markup, annotated - select for diffs
Wed Oct 9 13:25:11 2024 UTC (3 months, 2 weeks ago) by martin
Branches: netbsd-10
CVS tags: netbsd-10-1-RELEASE
Diff to: previous 1.503.4.4: preferred, colored; branchpoint 1.503: preferred, colored; next MAIN 1.504: preferred, colored
Changes since revision 1.503.4.4: +3 -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.503.4.4: download - view: text, markup, annotated - select for diffs
Wed Oct 9 13:00:13 2024 UTC (3 months, 2 weeks ago) by martin
Branches: netbsd-10
Diff to: previous 1.503.4.3: preferred, colored; branchpoint 1.503: preferred, colored
Changes since revision 1.503.4.3: +4 -2 lines
Pull up following revision(s) (requested by riastradh in ticket #936):

	sys/dev/acpi/apei_einjvar.h: revision 1.1
	sys/dev/acpi/apei_cper.h: revision 1.2
	distrib/sets/lists/debug/module.md.i386: revision 1.9
	sys/dev/acpi/apei_hest.c: revision 1.1
	sys/modules/apei/Makefile: revision 1.1
	sys/dev/acpi/apei_hest.c: revision 1.2
	distrib/sets/lists/modules/md.amd64: revision 1.101
	sys/dev/acpi/apei_hest.c: revision 1.3
	distrib/sets/lists/modules/md.amd64: revision 1.102
	sys/modules/apei/apei.ioconf: revision 1.1
	sys/dev/acpi/apei_bert.c: revision 1.1
	distrib/sets/lists/man/mi: revision 1.1785
	sys/dev/acpi/apei_bertvar.h: revision 1.1
	sys/dev/acpi/apei.c: revision 1.1
	sys/dev/acpi/apei.c: revision 1.2
	sys/dev/acpi/apei.c: revision 1.3
	sys/modules/Makefile: revision 1.283
	sys/modules/Makefile: revision 1.284
	sys/dev/acpi/apei_reg.c: revision 1.1
	sys/dev/acpi/apei_hestvar.h: revision 1.1
	distrib/sets/lists/debug/module.md.i386: revision 1.10
	sys/dev/acpi/apei_reg.c: revision 1.2
	sys/dev/acpi/apei_reg.c: revision 1.3
	sys/dev/acpi/apei_reg.h: revision 1.1
	sys/dev/acpi/apei_reg.h: revision 1.2
	sys/dev/acpi/apei_reg.h: revision 1.3
	sys/dev/acpi/acpi_hed.c: revision 1.1
	sys/dev/acpi/apei_einj.c: revision 1.1
	sys/dev/acpi/apeivar.h: revision 1.1
	sys/dev/acpi/apei_einj.c: revision 1.2
	sys/dev/acpi/apei_einj.c: revision 1.3
	sys/dev/acpi/apei_einj.c: revision 1.4
	sys/dev/acpi/apei_einj.c: revision 1.5
	share/man/man4/Makefile: revision 1.734
	sys/dev/acpi/apei_einj.c: revision 1.6
	sys/dev/acpi/apei_einj.c: revision 1.7
	sys/dev/acpi/files.acpi: revision 1.131
	sys/dev/acpi/files.acpi: revision 1.132
	sys/dev/acpi/apei_interp.c: revision 1.1
	sys/dev/acpi/apei_interp.c: revision 1.2
	share/man/man4/acpihed.4: revision 1.1
	sys/dev/acpi/apei_mapreg.c: revision 1.1
	sys/dev/acpi/apei_interp.c: revision 1.3
	share/man/man4/acpihed.4: revision 1.2
	distrib/sets/lists/modules/md.i386: revision 1.98
	sys/dev/acpi/apei_mapreg.c: revision 1.2
	sys/dev/acpi/apei_interp.h: revision 1.1
	sys/dev/acpi/apei_interp.c: revision 1.4
	distrib/sets/lists/modules/md.i386: revision 1.99
	sys/modules/acpihed/Makefile: revision 1.1
	sys/dev/acpi/apei_mapreg.c: revision 1.3
	sys/dev/acpi/apei_interp.h: revision 1.2
	sys/arch/amd64/conf/ALL: revision 1.185
	sys/dev/acpi/apei_mapreg.h: revision 1.1
	sys/dev/acpi/apei_mapreg.c: revision 1.4
	sys/arch/amd64/conf/ALL: revision 1.186
	sys/dev/acpi/apei_erstvar.h: revision 1.1
	sys/dev/acpi/apei_erst.c: revision 1.1
	sys/dev/acpi/apei_erst.c: revision 1.2
	sys/dev/acpi/apei_erst.c: revision 1.3
	sys/arch/i386/conf/ALL: revision 1.516
	share/man/man4/apei.4: revision 1.1
	sys/arch/i386/conf/ALL: revision 1.517
	share/man/man4/apei.4: revision 1.2
	distrib/sets/lists/debug/module.md.amd64: revision 1.15
	sys/modules/acpihed/acpihed.ioconf: revision 1.1
	sys/dev/acpi/apei_hed.h: revision 1.1
	distrib/sets/lists/debug/module.md.amd64: revision 1.16
	sys/dev/acpi/apei_cper.h: revision 1.1

	(all via patch)

apei(4): New driver for ACPI Platform Error Interfaces.

For now it is wired up only in x86 ALL kernels, and built as a module
for x86 and Arm.  Once it gets a little more testing on machines with
APEI, I would like to flip it on by default.
PR kern/58046

apei(4): Pacify -Wsign-compare.
Assert that the parsing made forward progress too while here.
PR kern/58046

apei(4): Tweak some comments about the APEI interpreter language.
No functional change intended.
PR kern/58046

apei(4): Fix parsing checks for TRIGGER_ERROR action table.
The TableSize is size of the header plus the body, not just the body.
PR kern/58046
apei(4): Note some TODOs for EINJ and HEST.
No functional change intended, comments only.
PR kern/58046

acpihed(4): New driver for PNP0C33 to notify apei(4).
PNP0C33 denotes the ACPI Hardware Error Device, which exists only to
be a vector for event notifications.
PR kern/58046

acpihed(4): fix name in Dt, use Ql
apei(4): Plug memory leak on teardown of instruction interpreter.
PR kern/58046
apei(4): Fix indexing of multi-unit register access.
PR kern/58046

apei(4): Fix register chunk counting.
Now it will actually read and write the registers!
Have been updating and reloading the wrong module to test this, oops.
PR kern/58046

apei(4): Allow pre-mapping I/O registers too.
PR kern/58046

apei(4): Pre-map registers when compiling interpreter.
This way we don't have to worry about mapping them in nasty contexts
where access to uvm_km_alloc may not be allowed.  Paves the way to
use ERST for saving dmesg on crash.
Exception: ACPI_ERST_MOVE_DATA still needs to do AcpiOsMapMemory.
We'll need to reserve a couple pages to avoid that.
PR kern/58046

apei(4): Simplify EINJ/ERST register access now that it's pre-mapped.
PR kern/58046
apei(4): Make sure to initialize *fatalp in apei_gesb_report.
PR kern/58046

apei: fix typos in comments

apei: fix typos in comments and snprintb bitfmt

apei(4): Fix uninitialized stack access in error branch.
PR kern/58046

apei(4), acpihed(4): Wire up man pages to build.
PR kern/58046: Missing APEI (ACPI Platform Error Interface) support

Revision 1.521: download - view: text, markup, annotated - select for diffs
Mon Aug 26 13:38:28 2024 UTC (5 months ago) by riastradh
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.520: preferred, colored
Changes since revision 1.520: +3 -2 lines
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

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

Revision 1.503.4.3: download - view: text, markup, annotated - select for diffs
Thu Jun 20 11:00:06 2024 UTC (7 months, 1 week ago) by martin
Branches: netbsd-10
Diff to: previous 1.503.4.2: preferred, colored; branchpoint 1.503: preferred, colored
Changes since revision 1.503.4.2: +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.519: download - view: text, markup, annotated - select for diffs
Tue Apr 30 19:35:28 2024 UTC (8 months, 3 weeks ago) by andvar
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs
Diff to: previous 1.518: preferred, colored
Changes since revision 1.518: +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.518: download - view: text, markup, annotated - select for diffs
Tue Apr 2 22:30:03 2024 UTC (9 months, 3 weeks ago) by charlotte
Branches: MAIN
Diff to: previous 1.517: preferred, colored
Changes since revision 1.517: +3 -2 lines
dk(4): Add support for discovering Atari TOS partitions as wedges

Any partitioning scheme which conforms to the Atari AHDI 3.00 spec should be
recognized by the new DKWEDGE_METHOD_TOS.

Revision 1.517: download - view: text, markup, annotated - select for diffs
Thu Mar 21 02:36:01 2024 UTC (10 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.516: preferred, colored
Changes since revision 1.516: +3 -2 lines
acpihed(4): New driver for PNP0C33 to notify apei(4).

PNP0C33 denotes the ACPI Hardware Error Device, which exists only to
be a vector for event notifications.

PR kern/58046

Revision 1.516: download - view: text, markup, annotated - select for diffs
Wed Mar 20 17:11:42 2024 UTC (10 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.515: preferred, colored
Changes since revision 1.515: +3 -2 lines
apei(4): New driver for ACPI Platform Error Interfaces.

For now it is wired up only in x86 ALL kernels, and built as a module
for x86 and Arm.  Once it gets a little more testing on machines with
APEI, I would like to flip it on by default.

PR kern/58046

Revision 1.515: download - view: text, markup, annotated - select for diffs
Mon Jan 29 18:27:13 2024 UTC (11 months, 4 weeks ago) by christos
Branches: MAIN
Diff to: previous 1.514: preferred, colored
Changes since revision 1.514: +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.514: download - view: text, markup, annotated - select for diffs
Wed Dec 13 10:53:15 2023 UTC (13 months, 2 weeks ago) by andvar
Branches: MAIN
Diff to: previous 1.513: preferred, colored
Changes since revision 1.513: +2 -3 lines
Removing obsolete TTY_DEBUG option from ALL kernels.

Revision 1.513: download - view: text, markup, annotated - select for diffs
Tue Dec 5 16:32:38 2023 UTC (13 months, 3 weeks ago) by thorpej
Branches: MAIN
Diff to: previous 1.512: preferred, colored
Changes since revision 1.512: +9 -2 lines
Add btvmei + btvmeii and vme to ALL.

Revision 1.512: download - view: text, markup, annotated - select for diffs
Sat Sep 2 07:15:30 2023 UTC (16 months, 3 weeks ago) by andvar
Branches: MAIN
CVS tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation
Diff to: previous 1.511: preferred, colored
Changes since revision 1.511: +2 -3 lines
newsmips/sn(4): rename SONIC_DEBUG to SNDEBUG for consistency.

nix this option from i386/amd64 ALL configs, it isn't used anywhere anymore.

Revision 1.503.4.2: download - view: text, markup, annotated - select for diffs
Tue Aug 1 16:07:19 2023 UTC (17 months, 3 weeks 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.503.4.1: preferred, colored; branchpoint 1.503: preferred, colored
Changes since revision 1.503.4.1: +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.503.4.1: download - view: text, markup, annotated - select for diffs
Sun Jul 30 12:01:54 2023 UTC (17 months, 4 weeks ago) by martin
Branches: netbsd-10
Diff to: previous 1.503: preferred, colored
Changes since revision 1.503: +3 -2 lines
Pull up following revision(s) (requested by riastradh in ticket #259):

	sys/dev/acpi/acpi_ec.c: revision 1.102
	sys/dev/acpi/acpi_ec.c: revision 1.103
	sys/dev/acpi/acpi_ec.c: revision 1.104
	sys/dev/acpi/acpi_ec.c: revision 1.105
	sys/dev/acpi/acpi_ec.c: revision 1.106
	sys/dev/acpi/acpi_ec.c: revision 1.107
	sys/dev/acpi/acpi_ec.c: revision 1.108
	sys/dev/acpi/acpi_ec.c: revision 1.90
	sys/dev/acpi/acpi_ec.c: revision 1.91
	sys/dev/acpi/acpi_ec.c: revision 1.92
	sys/dev/acpi/acpi_ec.c: revision 1.93
	sys/dev/acpi/acpi_ec.c: revision 1.94
	sys/dev/acpi/files.acpi: revision 1.128
	sys/dev/acpi/acpi_ec.c: revision 1.95
	sys/dev/acpi/acpi_ec.c: revision 1.96
	sys/dev/acpi/acpi_ec.c: revision 1.97
	sys/arch/amd64/conf/ALL: revision 1.179
	sys/dev/acpi/acpi_ec.c: revision 1.98
	sys/dev/acpi/acpi_ec.c: revision 1.99
	sys/dev/acpi/acpi_ec.c: revision 1.87
	sys/dev/acpi/acpi_ec.c: revision 1.88
	sys/dev/acpi/acpi_ec.c: revision 1.89
	sys/arch/i386/conf/ALL: revision 1.511
	sys/dev/acpi/acpi_ec.c: revision 1.100
	sys/dev/acpi/acpi_ec.c: revision 1.101

acpiec(4): Record device_t self.

Not used yet, to be used soon for device_printf and to allow making
some of the internal functions a little more type-safe later.
acpiec(4): New ACPIEC_DEBUG option.

Value is bit mask of debug messages to enable.

Enable in x86/ALL kernels.

No functional change intended when the option is off.

acpiec(4): Clarify lock order and sprinkle lock assertions.
No functional change intended.

acpiec(4): Sprinkle comments.
Note where this code is abusing cv_wait and needs a loop to handle
spurious wakeups.
No functional change intended.

acpiec(4): Assert state is free when we start a transaction.
No functional change intended.

acpiec(4): Set sc_got_sci only when a transaction is over.

Before, when the acpiec thread noticed an SCI had been requested and
entered acpiec_gpe_state_machine to send the query command, it would
see the SCI is still requested -- because it had yet to acknowledge
it by setting the query command! -- and think the EC was asking for a
_second_ SCI.

So once the first SCI transaction was over, it would start a second
one, even though the EC hadn't asked for another -- and this would
wedge on some ECs.

Now, acpiec_gpe_state_machine waits to see what state we transition
to before taking the SCI bit to mean we need to notify the acpiec
thread to handle another query.

That way, when the acpiec thread enters acpiec_gpe_state_machine with
EC_STATE_QUERY, it can send the query command first, with the side
effect of clearing the SCI bit in subsequent reads of the status
register, and it won't think another SCI has been requested until it
returns to EC_STATE_FREE and sees the SCI bit set again in the status
register.

Possibly relevant PRs:
PR kern/53135
PR kern/52763
PR kern/57162

acpiec(4): Fix cv_wait loop around sc->sc_got_sci.

That is, make it actually loop as required, so it gracefully handles
spurious wakeups instead of barging into invalid states.

acpiec(4): Fix interrupt wait loop in acpiec_gpe_query thread.

acpiec(4): Fix cv_timedwait abuse in acpiec_read/write.

acpiec(4): Don't touch sc->sc_state outside sc->sc_mtx.

acpiec(4): Merge returns in acpiec_read/write.
No functional change intended.

acpiec(4): Factor wait logic out.
No functional change intended.

acpiec(4): Pass softc, not device_t, to acpiec_gpe_state_machine.
Simpler, type-safer.
No functional change intended.

acpiec(4): Pass softc, not device_t, to acpiec_callout.
Simpler.
No functional change intended.

acpiec(4): Pass softc, not device_t, to acpiec_gpe_handler.
Simpler.
No functional change intended.

acpiec(4): Pass softc, not device_t, to acpiec_lock/unlock.
Simpler, type-safer.
No functional change intended.

acpiec(4): Pass softc, not device_t, to acpiec_read/write.
Simpler, type-safer.
No functional change intended.

acpiec(4): Pass softc, not device_t, to acpiec_gpe_query thread.
Simpler.
No functional change intended.

acpiec(4): Pass softc, not device_t, to acpiec_space_handler.
Better to keep the device_t isolated to public interfaces.  Simpler
internally this way.
No functional change intended.

acpiec(4): Factor out if (state == FREE) cv_signal(sc_cv).

In principle this could have a functional change, but at worst, it is
to signal more wakeups than needed, which should always be safe.
acpiec(4): Take a lock around acpiec_cold updates.

Otherwise we race with readers -- probably harmlessly, but let's
avoid the appearance of problems.
XXX Maybe acpiec_suspend and acpiec_shutdown should interrupt
transactions and force them to fail promptly?
XXX This looks bad because acpiec_cold is global and sc->sc_mtx
doesn't look like it's global, but we expect to have only one
acpiec(4) device anyway from what I understand.  Maybe we should move
acpiec_cold into the softc?

acpiec(4): One more debug message about read/write polling timeout.

Revision 1.511: download - view: text, markup, annotated - select for diffs
Tue Jul 18 10:02:25 2023 UTC (18 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.510: preferred, colored
Changes since revision 1.510: +3 -2 lines
acpiec(4): New ACPIEC_DEBUG option.

Value is bit mask of debug messages to enable.

Enable in x86/ALL kernels.

No functional change intended when the option is off.

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

Revision 1.509: download - view: text, markup, annotated - select for diffs
Sun Jul 16 05:24:08 2023 UTC (18 months, 1 week ago) by mrg
Branches: MAIN
Diff to: previous 1.508: preferred, colored
Changes since revision 1.508: +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.508: download - view: text, markup, annotated - select for diffs
Sat Jul 15 22:13:27 2023 UTC (18 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.507: preferred, colored
Changes since revision 1.507: +6 -2 lines
i386/ALL: Enable HEARTBEAT.

Revision 1.507: download - view: text, markup, annotated - select for diffs
Mon May 22 16:28:25 2023 UTC (20 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.506: preferred, colored
Changes since revision 1.506: +5 -5 lines
i386/ALL: Enable EFI runtime support.

PR kern/57076

XXX pullup-10

Revision 1.506: download - view: text, markup, annotated - select for diffs
Thu Feb 9 14:09:48 2023 UTC (23 months, 2 weeks ago) by abs
Branches: MAIN
Diff to: previous 1.505: preferred, colored
Changes since revision 1.505: +3 -3 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.505: download - view: text, markup, annotated - select for diffs
Thu Dec 22 19:09:48 2022 UTC (2 years, 1 month ago) by jakllsch
Branches: MAIN
Diff to: previous 1.504: preferred, colored
Changes since revision 1.504: +6 -2 lines
Add missing virtio devices to x86 ALL kernels

Revision 1.504: download - view: text, markup, annotated - select for diffs
Thu Dec 22 11:05:55 2022 UTC (2 years, 1 month ago) by nat
Branches: MAIN
Diff to: previous 1.503: preferred, colored
Changes since revision 1.503: +3 -2 lines
Driver for DaynaPORT SCSI/Link (dse.4).

Written by Hiroshi Noguchi, of which an updated version was posted to
port-mac68k in 2001.

Attachments were added to kernel configs for platforms that already had
the Cabletron (se.4) driver added, although other platorms may benefit.

Reviewed on tech-net by Izumi Tsutsui.

Revision 1.503: download - view: text, markup, annotated - select for diffs
Sat Sep 24 11:05:17 2022 UTC (2 years, 4 months ago) by riastradh
Branches: MAIN
CVS tags: netbsd-10-base, bouyer-sunxi-drm-base, bouyer-sunxi-drm
Branch point for: netbsd-10
Diff to: previous 1.502: preferred, colored
Changes since revision 1.502: +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.502: download - view: text, markup, annotated - select for diffs
Sun Aug 7 02:52:26 2022 UTC (2 years, 5 months ago) by simonb
Branches: MAIN
Diff to: previous 1.501: preferred, colored
Changes since revision 1.501: +14 -9 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.501: download - view: text, markup, annotated - select for diffs
Fri May 13 10:45:24 2022 UTC (2 years, 8 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.500: preferred, colored
Changes since revision 1.500: +4 -2 lines
Add MFI_DEBUG and MFII_DEBUG.

Revision 1.500: download - view: text, markup, annotated - select for diffs
Thu Dec 23 17:13:13 2021 UTC (3 years, 1 month ago) by hannken
Branches: MAIN
Diff to: previous 1.499: preferred, colored
Changes since revision 1.499: +5 -4 lines
Disable amdgpu as it uses floating point arithmetics and subr_kcov
doesnt handle it.

Ok: riastradh@

Revision 1.498.4.1: download - view: text, markup, annotated - select for diffs
Sun Aug 1 22:42:10 2021 UTC (3 years, 5 months ago) by thorpej
Branches: thorpej-i2c-spi-conf
Diff to: previous 1.498: preferred, colored; next MAIN 1.499: preferred, colored
Changes since revision 1.498: +2 -5 lines
Sync with HEAD.

Revision 1.499: download - view: text, markup, annotated - select for diffs
Tue Jun 29 10:22:36 2021 UTC (3 years, 6 months ago) by nia
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
Diff to: previous 1.498: preferred, colored
Changes since revision 1.498: +2 -5 lines
Remove uscanner(4) driver

This exists for compatibility with a Linux interface which was apparently
deprecated in Linux 2.6. There are various mailing list threads going
back to 2004 where the usefulness of this driver is discussed, but
the conclusion is that scanner software has all moved to using ugen(4)
instead, and enabling this driver will not help you scan things.

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

Revision 1.498: download - view: text, markup, annotated - select for diffs
Mon Mar 1 17:53:29 2021 UTC (3 years, 10 months ago) by jakllsch
Branches: MAIN
CVS tags: thorpej-futex-base, thorpej-cfargs-base, thorpej-cfargs, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Branch point for: thorpej-i2c-spi-conf
Diff to: previous 1.497: preferred, colored
Changes since revision 1.497: +3 -2 lines
add rge(4) to x86 ALL kernels

Revision 1.497: download - view: text, markup, annotated - select for diffs
Sun Sep 27 13:48:51 2020 UTC (4 years, 4 months ago) by roy
Branches: MAIN
Branch point for: thorpej-futex
Diff to: previous 1.496: preferred, colored
Changes since revision 1.496: +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.496: download - view: text, markup, annotated - select for diffs
Tue Sep 8 10:05:47 2020 UTC (4 years, 4 months ago) by yamaguchi
Branches: MAIN
Diff to: previous 1.495: preferred, colored
Changes since revision 1.495: +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.495: download - view: text, markup, annotated - select for diffs
Sat Aug 1 08:20:49 2020 UTC (4 years, 5 months ago) by maxv
Branches: MAIN
Diff to: previous 1.494: preferred, colored
Changes since revision 1.494: +2 -3 lines
Remove references to BRIDGE_IPF, it is now compiled in by default.

Revision 1.494: download - view: text, markup, annotated - select for diffs
Tue Jul 14 00:45:52 2020 UTC (4 years, 6 months ago) by yamaguchi
Branches: MAIN
Diff to: previous 1.493: preferred, colored
Changes since revision 1.493: +3 -2 lines
Introduce per-cpu IDTs

This is realized by following modifications:
- Add IDT pages and its allocation maps for each cpu in "struct cpu_info"
- Load per-cpu IDTs at cpu_init_idt(struct cpu_info*)
- Copy the IDT entries for cpu0 to other CPUs at attach
   - These are, for example, exceptions, db, system calls, etc.

And, added a kernel option named PCPU_IDT to enable the feature.

Revision 1.469.2.3: download - view: text, markup, annotated - select for diffs
Tue Jul 7 10:29:06 2020 UTC (4 years, 6 months ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-4-RELEASE, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE
Diff to: previous 1.469.2.2: preferred, colored; branchpoint 1.469: preferred, colored; next MAIN 1.470: preferred, colored
Changes since revision 1.469.2.2: +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.493: download - view: text, markup, annotated - select for diffs
Mon May 25 07:20:15 2020 UTC (4 years, 8 months ago) by yamaguchi
Branches: MAIN
Diff to: previous 1.492: preferred, colored
Changes since revision 1.492: +2 -3 lines
Obsolete VIOIF_SOFTINT_INTR

The kernel option is introduced to realize softint-based if_input.
Since the same scheme has been implemented in if_percpuq_enqueue(),
the option is no longer needed.

pointed out by ozaki-r@n.o.

Revision 1.492: download - view: text, markup, annotated - select for diffs
Sat May 16 13:46:11 2020 UTC (4 years, 8 months ago) by maya
Branches: MAIN
Diff to: previous 1.491: preferred, colored
Changes since revision 1.491: +2 -5 lines
Remove uyap, USB YAP phone firmware loader.

And the associated ezload EZ-USB code, which is only used by uyap.
It could theoretically be used by other drivers, but none of them are
in tree.

I suspect that this device isn't in use, as phone technology has improved
a lot since 2001 when uyap(4) was added to the tree.

Proposed with no objections on netbsd-users on 13 April 2020

Revision 1.491: download - view: text, markup, annotated - select for diffs
Fri May 1 14:15:41 2020 UTC (4 years, 8 months ago) by hannken
Branches: MAIN
Diff to: previous 1.490: preferred, colored
Changes since revision 1.490: +2 -3 lines
Remove wd* at umass?, it was dropped.

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

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

Revision 1.490: download - view: text, markup, annotated - select for diffs
Wed Mar 25 17:06:19 2020 UTC (4 years, 10 months ago) by jdolecek
Branches: MAIN
CVS tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh
Diff to: previous 1.489: preferred, colored
Changes since revision 1.489: +2 -6 lines
remove 'file-system SMBFS' and 'pseudo-device nsmb' from all kernel configs
to prepare for their eventual removal

Revision 1.479.2.3: download - view: text, markup, annotated - select for diffs
Sat Feb 29 20:18:24 2020 UTC (4 years, 10 months ago) by ad
Branches: ad-namecache
Diff to: previous 1.479.2.2: preferred, colored; branchpoint 1.479: preferred, colored; next MAIN 1.480: preferred, colored
Changes since revision 1.479.2.2: +2 -7 lines
Sync with head.

Revision 1.489: download - view: text, markup, annotated - select for diffs
Sun Feb 9 16:06:18 2020 UTC (4 years, 11 months ago) by jmcneill
Branches: MAIN
CVS tags: is-mlppp-base, is-mlppp, ad-namecache-base3
Diff to: previous 1.488: preferred, colored
Changes since revision 1.488: +2 -3 lines
Retire azalia(4).

Revision 1.488: download - view: text, markup, annotated - select for diffs
Mon Feb 3 19:37:42 2020 UTC (4 years, 11 months ago) by maya
Branches: MAIN
Diff to: previous 1.487: preferred, colored
Changes since revision 1.487: +2 -3 lines
Remove more urio(4) traces.

Pointed out by maxv, thanks.

Revision 1.487: download - view: text, markup, annotated - select for diffs
Wed Jan 29 18:39:02 2020 UTC (4 years, 11 months ago) by maya
Branches: MAIN
Diff to: previous 1.486: preferred, colored
Changes since revision 1.486: +2 -5 lines
remove urio(4), a driver for the Rio500 MP3 player.

At this point it is highly unlikely this 1999 device still has users,
but it still comes up in the context of maxv's USB-fuzzing (and any device
could pretend to be a urio(4)), so it's best to get rid of it.

Renamed all major entries to obsolete, as was done in previous removals.

This still requires an update to sanitizers, but they're located in
"external", perhaps it should be first committed upstream?

Proposed on tech-kern a month ago.

Revision 1.479.2.2: download - view: text, markup, annotated - select for diffs
Sat Jan 25 22:38:40 2020 UTC (5 years ago) by ad
Branches: ad-namecache
Diff to: previous 1.479.2.1: preferred, colored; branchpoint 1.479: preferred, colored
Changes since revision 1.479.2.1: +2 -16 lines
Sync with head.

Revision 1.486: download - view: text, markup, annotated - select for diffs
Sat Jan 25 18:38:36 2020 UTC (5 years ago) by thorpej
Branches: MAIN
CVS tags: ad-namecache-base2
Diff to: previous 1.485: preferred, colored
Changes since revision 1.485: +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.485: download - view: text, markup, annotated - select for diffs
Mon Jan 20 18:38:20 2020 UTC (5 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.484: preferred, colored
Changes since revision 1.484: +2 -4 lines
Remove FDDI support.

Revision 1.484: download - view: text, markup, annotated - select for diffs
Sun Jan 19 20:41:18 2020 UTC (5 years ago) by riastradh
Branches: MAIN
Diff to: previous 1.483: preferred, colored
Changes since revision 1.483: +2 -4 lines
Remove filemon(4).

Discussed on tech-kern:
https://mail-index.NetBSD.org/tech-kern/2020/01/13/msg025938.html

This was never (intentionally) enabled by default, and the design has
some shortcomings.  You can get mostly the same results with ktrace,
as in usr.bin/make/filemon/filemon_ktrace.c which is now used instead
of filemon for make's meta mode.

If applications require higher performance than ktrace, or nesting
that ktrace doesn't support, we might consider adding something back
into the vfs system calls themselves, without hijacking the syscall
table.  (Might want a more reliable output format too, e.g. one that
can handle newlines in file names.)

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

Revision 1.482: download - view: text, markup, annotated - select for diffs
Sun Jan 19 06:55:23 2020 UTC (5 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.481: preferred, colored
Changes since revision 1.481: +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.481: download - view: text, markup, annotated - select for diffs
Sun Jan 19 01:25:05 2020 UTC (5 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.480: preferred, colored
Changes since revision 1.480: +2 -3 lines
Remove the strip(4) - Starmode Radio IP - pseudo-device driver.  It is
long since obsolete.

Revision 1.479.2.1: download - view: text, markup, annotated - select for diffs
Fri Jan 17 21:47:25 2020 UTC (5 years ago) by ad
Branches: ad-namecache
Diff to: previous 1.479: preferred, colored
Changes since revision 1.479: +2 -4 lines
Sync with head.

Revision 1.480: download - view: text, markup, annotated - select for diffs
Fri Jan 17 15:00:20 2020 UTC (5 years ago) by maya
Branches: MAIN
CVS tags: ad-namecache-base1
Diff to: previous 1.479: preferred, colored
Changes since revision 1.479: +2 -4 lines
Remove uyurex(4).

This is a driver for a "nonsense machine" made by the art group Maywa-Denki
in 2008. It was disabled by default.

Unfortunately even so it draws development attention (flaws found in the
code, MP-ification needs) and it is best not to continue to maintain this
driver.

Proposed without objections on tech-kern.

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

Revision 1.478: download - view: text, markup, annotated - select for diffs
Mon Dec 23 06:45:37 2019 UTC (5 years, 1 month ago) by maxv
Branches: MAIN
Diff to: previous 1.477: preferred, colored
Changes since revision 1.477: +4 -2 lines
Revert the removal of filemon.

Revision 1.477: download - view: text, markup, annotated - select for diffs
Wed Dec 18 07:37:18 2019 UTC (5 years, 1 month ago) by maxv
Branches: MAIN
Diff to: previous 1.476: preferred, colored
Changes since revision 1.476: +2 -4 lines
Retire filemon, discussed on tech-kern@.

Revision 1.476: download - view: text, markup, annotated - select for diffs
Sun Dec 15 17:17:16 2019 UTC (5 years, 1 month ago) by riastradh
Branches: MAIN
Diff to: previous 1.475: preferred, colored
Changes since revision 1.475: +6 -2 lines
Add vhci to x86/ALL.

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

reviewed by msaitoh and knakahara

Revision 1.469.2.2: download - view: text, markup, annotated - select for diffs
Mon Nov 25 20:47:24 2019 UTC (5 years, 2 months ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1
Diff to: previous 1.469.2.1: preferred, colored; branchpoint 1.469: preferred, colored
Changes since revision 1.469.2.1: +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.469.2.1: download - view: text, markup, annotated - select for diffs
Mon Nov 25 16:44:32 2019 UTC (5 years, 2 months ago) by martin
Branches: netbsd-9
Diff to: previous 1.469: preferred, colored
Changes since revision 1.469: +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.474: download - view: text, markup, annotated - select for diffs
Fri Nov 1 02:53:23 2019 UTC (5 years, 2 months ago) by msaitoh
Branches: MAIN
CVS tags: phil-wifi-20191119
Diff to: previous 1.473: preferred, colored
Changes since revision 1.473: +3 -2 lines
 Port SMSC LAN87xx 10/100 Ethernet PHY driver from FreeBSD with some cleanup
and IFM_NONE support.

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

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

Revision 1.471: download - view: text, markup, annotated - select for diffs
Mon Oct 7 11:53:40 2019 UTC (5 years, 3 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.470: preferred, colored
Changes since revision 1.470: +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.470: download - view: text, markup, annotated - select for diffs
Mon Aug 19 03:25:40 2019 UTC (5 years, 5 months ago) by ozaki-r
Branches: MAIN
Diff to: previous 1.469: preferred, colored
Changes since revision 1.469: +3 -2 lines
Add MBUFTRACE to ALL configs

Revision 1.469: download - view: text, markup, annotated - select for diffs
Wed Jul 24 23:13:46 2019 UTC (5 years, 6 months ago) by tnn
Branches: MAIN
CVS tags: netbsd-9-base
Branch point for: netbsd-9
Diff to: previous 1.468: preferred, colored
Changes since revision 1.468: +5 -2 lines
add ssdfb(4) to ALL

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

Revision 1.468: download - view: text, markup, annotated - select for diffs
Tue May 7 22:00:10 2019 UTC (5 years, 8 months ago) by mrg
Branches: MAIN
CVS tags: phil-wifi-20190609
Diff to: previous 1.467: preferred, colored
Changes since revision 1.467: +2 -5 lines
obsolete moscom(4).  it was never in any default configs, did
not work for some cases.

umcs(4) supports everything it does plus one additional chipset,
has been in default configurations since netbsd 7.

Revision 1.467: download - view: text, markup, annotated - select for diffs
Fri Apr 26 22:46:03 2019 UTC (5 years, 9 months ago) by sevan
Branches: MAIN
Diff to: previous 1.466: preferred, colored
Changes since revision 1.466: +3 -14 lines
Use veriexec.config to reduce duplication

Revision 1.466: download - view: text, markup, annotated - select for diffs
Fri Apr 12 04:46:48 2019 UTC (5 years, 9 months ago) by msaitoh
Branches: MAIN
CVS tags: isaki-audio2-base, isaki-audio2
Diff to: previous 1.465: preferred, colored
Changes since revision 1.465: +27 -2 lines
Add the following debug options:

 AI_DEBUG
 ATHN_DEBUG
 ATU_DEBUG
 AXEN_DEBUG
 BGE_DEBUG
 BNX_DEBUG
 BWFM_DEBUG
 CAS_DEBUG
 CBB_DEBUG
 CMALO_DEBUG
 EF_DEBUG
 IWN_DEBUG
 IX_DEBUG
 LII_DEBUG
 MSK_DEBUG
 OTUS_DEBUG
 RUM_DEBUG
 RUN_DEBUG
 UMB_DEBUG
 UPGT_DEBUG
 URAL_DEBUG
 URNDIS_DEBUG
 URTW_DEBUG
 URTWN_DEBUG
 WPI_DEBUG
 ZYD_DEBUG

Revision 1.465: download - view: text, markup, annotated - select for diffs
Sat Mar 16 04:31:25 2019 UTC (5 years, 10 months ago) by isaki
Branches: MAIN
Diff to: previous 1.464: preferred, colored
Changes since revision 1.464: +2 -3 lines
Remove duplicated option.

Revision 1.464: download - view: text, markup, annotated - select for diffs
Sun Feb 24 20:56:27 2019 UTC (5 years, 11 months ago) by kamil
Branches: MAIN
Diff to: previous 1.463: preferred, colored
Changes since revision 1.463: +8 -2 lines
Enable kUBSan and KCOV in NetBSD/i386 kernel=ALL

Revision 1.463: download - view: text, markup, annotated - select for diffs
Wed Feb 6 11:58:31 2019 UTC (5 years, 11 months ago) by rin
Branches: MAIN
Diff to: previous 1.462: preferred, colored
Changes since revision 1.462: +3 -2 lines
Add ure(4) to kernel config files. Also add PHY drivers where necessary.

Revision 1.462: download - view: text, markup, annotated - select for diffs
Sun Jan 27 08:53:30 2019 UTC (6 years ago) by maxv
Branches: MAIN
Diff to: previous 1.461: preferred, colored
Changes since revision 1.461: +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.434.2.12: download - view: text, markup, annotated - select for diffs
Fri Jan 18 08:50:17 2019 UTC (6 years ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.434.2.11: preferred, colored; branchpoint 1.434: preferred, colored; next MAIN 1.435: preferred, colored
Changes since revision 1.434.2.11: +2 -3 lines
Synch with HEAD

Revision 1.461: download - view: text, markup, annotated - select for diffs
Sat Dec 29 11:30:11 2018 UTC (6 years ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-20190127, pgoyette-compat-20190118
Diff to: previous 1.460: preferred, colored
Changes since revision 1.460: +2 -3 lines
Retire compat_ibcs2, as discussed on tech-kern@. FreeBSD did the same
recently.

Revision 1.434.2.11: download - view: text, markup, annotated - select for diffs
Wed Dec 26 14:01:37 2018 UTC (6 years, 1 month ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.434.2.10: preferred, colored; branchpoint 1.434: preferred, colored
Changes since revision 1.434.2.10: +3 -3 lines
Sync with HEAD, resolve a few conflicts

Revision 1.460: download - view: text, markup, annotated - select for diffs
Fri Dec 14 22:00:26 2018 UTC (6 years, 1 month ago) by jakllsch
Branches: MAIN
CVS tags: pgoyette-compat-1226
Diff to: previous 1.459: preferred, colored
Changes since revision 1.459: +3 -2 lines
add cardbus malo(4) to x86 GENERIC and ALL kernels

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

Revision 1.419.2.4: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:11:37 2018 UTC (6 years, 1 month ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1
Diff to: previous 1.419.2.3: preferred, colored; branchpoint 1.419: preferred, colored; next MAIN 1.420: preferred, colored
Changes since revision 1.419.2.3: +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.434.2.10: download - view: text, markup, annotated - select for diffs
Mon Nov 26 01:52:25 2018 UTC (6 years, 2 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.434.2.9: preferred, colored; branchpoint 1.434: preferred, colored
Changes since revision 1.434.2.9: +3 -2 lines
Sync with HEAD, resolve a couple of conflicts

Revision 1.458: download - view: text, markup, annotated - select for diffs
Sat Nov 24 18:23:29 2018 UTC (6 years, 2 months ago) by bouyer
Branches: MAIN
CVS tags: pgoyette-compat-1126
Diff to: previous 1.457: preferred, colored
Changes since revision 1.457: +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.434.2.9: download - view: text, markup, annotated - select for diffs
Sun Sep 30 01:45:44 2018 UTC (6 years, 3 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.434.2.8: preferred, colored; branchpoint 1.434: preferred, colored
Changes since revision 1.434.2.8: +2 -95 lines
Ssync with HEAD

Revision 1.457: download - view: text, markup, annotated - select for diffs
Sun Sep 23 09:21:02 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-1020, pgoyette-compat-0930
Diff to: previous 1.456: preferred, colored
Changes since revision 1.456: +2 -6 lines
Remove ISDN from the kernel. It has remained unmaintained for a long time,
is of poor quality, and is now an obstacle to MP-ification. It was removed
ten years ago from FreeBSD for the same reason.

This retires a big user of the mbuf API, and will ease maintenance of the
kernel.

Revision 1.456: download - view: text, markup, annotated - select for diffs
Sat Sep 22 16:22:23 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.455: preferred, colored
Changes since revision 1.455: +2 -78 lines
Remove isic(4). It is part of ISDN, which we are now retiring.

Revision 1.455: download - view: text, markup, annotated - select for diffs
Sat Sep 22 12:41:00 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.454: preferred, colored
Changes since revision 1.454: +2 -5 lines
Remove iwic(4). It is part of ISDN, which we are now retiring. This driver
was still marked as experimental (its man page dates back to 2002).

Revision 1.454: download - view: text, markup, annotated - select for diffs
Sat Sep 22 12:26:27 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.453: preferred, colored
Changes since revision 1.453: +2 -5 lines
Remove the "ifritz" driver (no man page). It is part of ISDN, which we are
retiring.

Revision 1.453: download - view: text, markup, annotated - select for diffs
Sat Sep 22 12:19:11 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.452: preferred, colored
Changes since revision 1.452: +2 -5 lines
Remove ifpci(4). It is part of ISDN, which we are retiring.

Revision 1.452: download - view: text, markup, annotated - select for diffs
Fri Sep 21 18:38:25 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.451: preferred, colored
Changes since revision 1.451: +2 -5 lines
Remove iavc(4).

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

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

Revision 1.451: download - view: text, markup, annotated - select for diffs
Thu Sep 6 05:36:50 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.450: preferred, colored
Changes since revision 1.450: +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.450: download - view: text, markup, annotated - select for diffs
Mon Aug 27 16:29:18 2018 UTC (6 years, 5 months ago) by riastradh
Branches: MAIN
CVS tags: pgoyette-compat-0906
Diff to: previous 1.449: preferred, colored
Changes since revision 1.449: +5 -2 lines
Add amdgpu to i386/ALL.

Revision 1.449: download - view: text, markup, annotated - select for diffs
Sat Aug 25 20:52:41 2018 UTC (6 years, 5 months ago) by rin
Branches: MAIN
Diff to: previous 1.448: preferred, colored
Changes since revision 1.448: +3 -2 lines
Add (commented out) mue(4) to where appropriate.
Also add MII/PHY drivers for USB NICs if missing.

Revision 1.448: download - view: text, markup, annotated - select for diffs
Sat Aug 25 07:48:56 2018 UTC (6 years, 5 months ago) by maxv
Branches: MAIN
Diff to: previous 1.447: preferred, colored
Changes since revision 1.447: +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.447: download - view: text, markup, annotated - select for diffs
Tue Aug 14 06:37:59 2018 UTC (6 years, 5 months ago) by maxv
Branches: MAIN
Diff to: previous 1.446: preferred, colored
Changes since revision 1.446: +2 -3 lines
Replace references to etherip by l2tp. Etherip was already not enabled
anyway.

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

Revision 1.445: download - view: text, markup, annotated - select for diffs
Wed Aug 1 18:36:14 2018 UTC (6 years, 5 months ago) by khorben
Branches: MAIN
Diff to: previous 1.444: preferred, colored
Changes since revision 1.444: +3 -2 lines
Build the umb(4) driver in the ALL kernels (amd64, i386)

As suggested by Robert Swindells; thank you!

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

Revision 1.444: download - view: text, markup, annotated - select for diffs
Thu Jul 26 15:46:09 2018 UTC (6 years, 6 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-0728
Diff to: previous 1.443: preferred, colored
Changes since revision 1.443: +2 -4 lines
Retire XENDEBUG_LOW, and switch its only user to XENDEBUG.

Revision 1.443: download - view: text, markup, annotated - select for diffs
Fri Jul 13 09:37:32 2018 UTC (6 years, 6 months ago) by maxv
Branches: MAIN
Diff to: previous 1.442: preferred, colored
Changes since revision 1.442: +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.442: download - view: text, markup, annotated - select for diffs
Tue Jul 10 19:58:13 2018 UTC (6 years, 6 months ago) by maya
Branches: MAIN
Diff to: previous 1.441: preferred, colored
Changes since revision 1.441: +2 -3 lines
Remove unused macro.

Revision 1.441: download - view: text, markup, annotated - select for diffs
Tue Jul 10 17:01:43 2018 UTC (6 years, 6 months ago) by maya
Branches: MAIN
Diff to: previous 1.440: preferred, colored
Changes since revision 1.440: +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.434.2.6: download - view: text, markup, annotated - select for diffs
Mon Jun 25 07:25:42 2018 UTC (6 years, 7 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.434.2.5: preferred, colored; branchpoint 1.434: preferred, colored
Changes since revision 1.434.2.5: +25 -25 lines
Sync with HEAD

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

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

Revision 1.439: download - view: text, markup, annotated - select for diffs
Tue May 15 01:53:27 2018 UTC (6 years, 8 months ago) by thorpej
Branches: MAIN
CVS tags: pgoyette-compat-0521
Diff to: previous 1.438: preferred, colored
Changes since revision 1.438: +25 -25 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.434.2.4: download - view: text, markup, annotated - select for diffs
Wed May 2 07:20:04 2018 UTC (6 years, 8 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.434.2.3: preferred, colored; branchpoint 1.434: preferred, colored
Changes since revision 1.434.2.3: +3 -3 lines
Synch with HEAD

Revision 1.438: download - view: text, markup, annotated - select for diffs
Tue May 1 16:16:05 2018 UTC (6 years, 8 months ago) by maya
Branches: MAIN
CVS tags: pgoyette-compat-0502
Diff to: previous 1.437: preferred, colored
Changes since revision 1.437: +3 -3 lines
Fix ALL configs following MPVERBOSE becoming a defparam

XXX i386 ALL kernel build is failing

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

Revision 1.419.2.3: download - view: text, markup, annotated - select for diffs
Wed Apr 11 14:23:30 2018 UTC (6 years, 9 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1
Diff to: previous 1.419.2.2: preferred, colored; branchpoint 1.419: preferred, colored
Changes since revision 1.419.2.2: +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.437: download - view: text, markup, annotated - select for diffs
Sun Apr 8 00:52:38 2018 UTC (6 years, 9 months ago) by mrg
Branches: MAIN
CVS tags: pgoyette-compat-0422, pgoyette-compat-0415
Diff to: previous 1.436: preferred, colored
Changes since revision 1.436: +4 -2 lines
turn on GCC spectre v2 mitigation options.

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

Revision 1.434.2.2: download - view: text, markup, annotated - select for diffs
Fri Mar 30 06:20:11 2018 UTC (6 years, 9 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.434.2.1: preferred, colored; branchpoint 1.434: preferred, colored
Changes since revision 1.434.2.1: +2 -3 lines
Resolve conflicts between branch and HEAD

Revision 1.436: download - view: text, markup, annotated - select for diffs
Thu Mar 29 18:54:48 2018 UTC (6 years, 10 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-0407, pgoyette-compat-0330
Diff to: previous 1.435: preferred, colored
Changes since revision 1.435: +2 -3 lines
Remove TCPREASS_DEBUG. It was introduced 20 years ago when the reassembler
was being developed, but it's irrelevant today. Makes the code clearer.

Revision 1.434.2.1: download - view: text, markup, annotated - select for diffs
Thu Mar 22 01:44:45 2018 UTC (6 years, 10 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.434: preferred, colored
Changes since revision 1.434: +2 -4 lines
Synch with HEAD, resolve conflicts

Revision 1.435: download - view: text, markup, annotated - select for diffs
Fri Mar 16 12:48:54 2018 UTC (6 years, 10 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-0322
Diff to: previous 1.434: preferred, colored
Changes since revision 1.434: +2 -4 lines
Remove ipkdb from i386. Also remove unused references in amd64.

I already talked about doing that six months ago on port-i386@. Back then
it was as general cleanup, but now, with SVS etc, we do actually have
good reasons for simplifying the entry points.

Ok kamil@. (christos@ was in the conversation too)

Revision 1.434: download - view: text, markup, annotated - select for diffs
Sun Feb 25 22:00:22 2018 UTC (6 years, 11 months ago) by pgoyette
Branches: MAIN
CVS tags: pgoyette-compat-base, pgoyette-compat-0315
Branch point for: pgoyette-compat
Diff to: previous 1.433: preferred, colored
Changes since revision 1.433: +7 -2 lines
As requested by chuq@, add the new imc devices to the i386 and amd64
ALL kernels.

Revision 1.433: download - view: text, markup, annotated - select for diffs
Sun Dec 10 17:52:13 2017 UTC (7 years, 1 month ago) by hannken
Branches: MAIN
Diff to: previous 1.432: preferred, colored
Changes since revision 1.432: +3 -2 lines
Add option XHCI_DEBUG.

Revision 1.432: download - view: text, markup, annotated - select for diffs
Sun Dec 10 17:19:48 2017 UTC (7 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.431: preferred, colored
Changes since revision 1.431: +13 -2 lines
Add dwiic, ihidev and ims

Revision 1.343.2.5: download - view: text, markup, annotated - select for diffs
Sun Dec 3 11:36:17 2017 UTC (7 years, 1 month ago) by jdolecek
Branches: tls-maxphys
Diff to: previous 1.343.2.4: preferred, colored; next MAIN 1.344: preferred, colored
Changes since revision 1.343.2.4: +114 -92 lines
update from HEAD

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

Revision 1.430: download - view: text, markup, annotated - select for diffs
Thu Sep 14 07:58:41 2017 UTC (7 years, 4 months ago) by mrg
Branches: MAIN
Diff to: previous 1.429: preferred, colored
Changes since revision 1.429: +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.429: download - view: text, markup, annotated - select for diffs
Wed Sep 13 22:24:44 2017 UTC (7 years, 4 months ago) by sevan
Branches: MAIN
Diff to: previous 1.428: preferred, colored
Changes since revision 1.428: +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.419.2.2: download - view: text, markup, annotated - select for diffs
Sat Sep 9 17:29:40 2017 UTC (7 years, 4 months ago) by snj
Branches: netbsd-8
CVS tags: matt-nb8-mediatek-base, matt-nb8-mediatek
Diff to: previous 1.419.2.1: preferred, colored; branchpoint 1.419: preferred, colored
Changes since revision 1.419.2.1: +2 -3 lines
Pull up following revision(s) (requested by maxv in ticket #258):
	sys/arch/amd64/conf/ALL: 1.68
	sys/arch/i386/conf/ALL: 1.428
	sys/arch/i386/i386/i386_trap.S: 1.12
	sys/arch/i386/i386/locore.S: 1.149-1.150
	sys/arch/x86/x86/sys_machdep.c: 1.38
Remove undocumented hack.
--
Switch to the temporary stack right away when booted via multiboot. GRUB
happens to give a correct stack, but it is not guaranteed by the spec. This
temporary stack will be reset later, which is fine.
Fixes PR/50245.
--
Pfff, use %ss and not %ds. The latter is controlled by userland, the former
contains the kernel value (flat); FreeBSD fixed this too a few weeks ago.
As I said earlier, this dtrace code is complete bullshit.
--
Don't allow userland to create 286/386 call gates anymore - they are not
used by Wine. While here, don't allow it to overwrite the static entries
either, don't allow unknown entry types, remove LDT_DEBUG, and style.

Revision 1.419.2.1: download - view: text, markup, annotated - select for diffs
Thu Aug 31 08:41:33 2017 UTC (7 years, 4 months ago) by bouyer
Branches: netbsd-8
Diff to: previous 1.419: preferred, colored
Changes since revision 1.419: +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.428: download - view: text, markup, annotated - select for diffs
Wed Aug 30 15:44:01 2017 UTC (7 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.427: preferred, colored
Changes since revision 1.427: +2 -3 lines
Don't allow userland to create 286/386 call gates anymore - they are not
used by Wine. While here, don't allow it to overwrite the static entries
either, don't allow unknown entry types, remove LDT_DEBUG, and style.

Revision 1.389.2.8: download - view: text, markup, annotated - select for diffs
Mon Aug 28 17:51:40 2017 UTC (7 years, 5 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.389.2.7: preferred, colored; branchpoint 1.389: preferred, colored; next MAIN 1.390: preferred, colored
Changes since revision 1.389.2.7: +14 -13 lines
Sync with HEAD

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

Revision 1.426: download - view: text, markup, annotated - select for diffs
Sat Aug 12 06:46:13 2017 UTC (7 years, 5 months ago) by maxv
Branches: MAIN
Diff to: previous 1.425: preferred, colored
Changes since revision 1.425: +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.425: download - view: text, markup, annotated - select for diffs
Wed Aug 9 18:45:30 2017 UTC (7 years, 5 months ago) by maxv
Branches: MAIN
Diff to: previous 1.424: preferred, colored
Changes since revision 1.424: +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.424: download - view: text, markup, annotated - select for diffs
Sat Jul 29 18:08:58 2017 UTC (7 years, 6 months ago) by maxv
Branches: MAIN
Diff to: previous 1.423: preferred, colored
Changes since revision 1.423: +2 -3 lines
Remove TCP_COMPAT_42 from the config files. Pass 3.

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

Revision 1.422: download - view: text, markup, annotated - select for diffs
Sat Jul 29 07:19:47 2017 UTC (7 years, 6 months ago) by maxv
Branches: MAIN
Diff to: previous 1.421: preferred, colored
Changes since revision 1.421: +2 -3 lines
Remove DEBUG_HPUX (does not exist).

Revision 1.421: download - view: text, markup, annotated - select for diffs
Sat Jul 29 07:16:14 2017 UTC (7 years, 6 months ago) by maxv
Branches: MAIN
Diff to: previous 1.420: preferred, colored
Changes since revision 1.420: +2 -3 lines
Remove IBCS2_DEBUG (does not exist).

Revision 1.420: download - view: text, markup, annotated - select for diffs
Wed Jun 14 09:00:08 2017 UTC (7 years, 7 months ago) by pgoyette
Branches: MAIN
CVS tags: perseant-stdc-iso10646-base, perseant-stdc-iso10646
Diff to: previous 1.419: preferred, colored
Changes since revision 1.419: +3 -2 lines
Add wsbell

Revision 1.419: download - view: text, markup, annotated - select for diffs
Sat May 27 22:53:29 2017 UTC (7 years, 8 months ago) by bouyer
Branches: MAIN
CVS tags: netbsd-8-base
Branch point for: netbsd-8
Diff to: previous 1.418: preferred, colored
Changes since revision 1.418: +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.418: download - view: text, markup, annotated - select for diffs
Wed May 24 20:23:04 2017 UTC (7 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.417: preferred, colored
Changes since revision 1.417: +3 -3 lines
rename u3ginit driver to umodeswitch

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

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

Revision 1.417: download - view: text, markup, annotated - select for diffs
Tue Apr 18 19:09:12 2017 UTC (7 years, 9 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.416: preferred, colored
Changes since revision 1.416: +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.416: download - view: text, markup, annotated - select for diffs
Mon Apr 17 08:59:37 2017 UTC (7 years, 9 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.415: preferred, colored
Changes since revision 1.415: +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.380.2.4: download - view: text, markup, annotated - select for diffs
Wed Apr 5 19:54:17 2017 UTC (7 years, 9 months ago) by snj
Branches: netbsd-7
CVS tags: netbsd-7-2-RELEASE
Diff to: previous 1.380.2.3: preferred, colored; branchpoint 1.380: preferred, colored; next MAIN 1.381: preferred, colored
Changes since revision 1.380.2.3: +2 -2 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.399.2.4: download - view: text, markup, annotated - select for diffs
Mon Mar 20 06:57:14 2017 UTC (7 years, 10 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.399.2.3: preferred, colored; branchpoint 1.399: preferred, colored
Changes since revision 1.399.2.3: +46 -46 lines
Sync with HEAD

Revision 1.415: download - view: text, markup, annotated - select for diffs
Wed Mar 8 18:00:49 2017 UTC (7 years, 10 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-localcount-20170320, jdolecek-ncq-base, jdolecek-ncq
Diff to: previous 1.414: preferred, colored
Changes since revision 1.414: +2 -3 lines
A few changes:
 * Use markers to reduce false sharing.
 * Remove XENDEBUG_SYNC and several debug messages, they are just useless.
 * Remove xen_vcpu_*. They are unused and not optimized: if we really
   wanted to flush ranges we should pack the VAs in a mmuext_op array
   instead of performing several hypercalls in a loop.
 * Start removing PG_k.
 * KNF, reorder, simplify and remove stupid comments.

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

Revision 1.413: download - view: text, markup, annotated - select for diffs
Sun Feb 19 07:47:00 2017 UTC (7 years, 11 months ago) by rin
Branches: MAIN
Diff to: previous 1.412: preferred, colored
Changes since revision 1.412: +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.412: download - view: text, markup, annotated - select for diffs
Sat Feb 18 14:36:32 2017 UTC (7 years, 11 months ago) by maxv
Branches: MAIN
Diff to: previous 1.411: preferred, colored
Changes since revision 1.411: +3 -4 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.389.2.7: download - view: text, markup, annotated - select for diffs
Sun Feb 5 13:40:12 2017 UTC (7 years, 11 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.389.2.6: preferred, colored; branchpoint 1.389: preferred, colored
Changes since revision 1.389.2.6: +48 -44 lines
Sync with HEAD

Revision 1.380.2.2.4.1: download - view: text, markup, annotated - select for diffs
Wed Jan 18 08:46:25 2017 UTC (8 years ago) by skrll
Branches: netbsd-7-nhusb
Diff to: previous 1.380.2.2: preferred, colored; next MAIN 1.380.2.3: preferred, colored
Changes since revision 1.380.2.2: +9 -2 lines
Sync with netbsd-5

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

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

Revision 1.410: download - view: text, markup, annotated - select for diffs
Tue Dec 27 01:11:52 2016 UTC (8 years, 1 month ago) by pgoyette
Branches: MAIN
CVS tags: pgoyette-localcount-20170107
Diff to: previous 1.409: preferred, colored
Changes since revision 1.409: +4 -2 lines
Add BIOHIST (and belatedly, UVMHIST) to the ALL kernels for i386 and amd64.

XXX Perhaps it should be added to others as well?  Perhaps just as comments?

Revision 1.409: download - view: text, markup, annotated - select for diffs
Fri Dec 23 11:27:10 2016 UTC (8 years, 1 month ago) by maya
Branches: MAIN
Diff to: previous 1.408: preferred, colored
Changes since revision 1.408: +3 -2 lines
add SCTP_DEBUG to ALL kernels

Revision 1.408: download - view: text, markup, annotated - select for diffs
Thu Dec 15 04:01:09 2016 UTC (8 years, 1 month ago) by ozaki-r
Branches: MAIN
Diff to: previous 1.407: preferred, colored
Changes since revision 1.407: +3 -2 lines
Add SCTP to ALL configs to keep it buildable anyway

Revision 1.407: download - view: text, markup, annotated - select for diffs
Tue Dec 13 20:42:18 2016 UTC (8 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.406: preferred, colored
Changes since revision 1.406: +4 -5 lines
wildcard speaker attachments, now that we can handle many of them.

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

Revision 1.380.2.3: download - view: text, markup, annotated - select for diffs
Fri Dec 9 05:10:45 2016 UTC (8 years, 1 month 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, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1
Diff to: previous 1.380.2.2: preferred, colored; branchpoint 1.380: preferred, colored
Changes since revision 1.380.2.2: +9 -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.405: download - view: text, markup, annotated - select for diffs
Fri Dec 9 02:24:17 2016 UTC (8 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.404: preferred, colored
Changes since revision 1.404: +2 -3 lines
PCPPISPEAKER

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

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

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

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

Revision 1.402: download - view: text, markup, annotated - select for diffs
Tue Oct 11 05:16:04 2016 UTC (8 years, 3 months ago) by ozaki-r
Branches: MAIN
CVS tags: pgoyette-localcount-20161104
Diff to: previous 1.401: preferred, colored
Changes since revision 1.401: +3 -2 lines
Add IFA_STATS to ALLs

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

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

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

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

Revision 1.399: download - view: text, markup, annotated - select for diffs
Mon Jul 11 11:26:46 2016 UTC (8 years, 6 months ago) by msaitoh
Branches: MAIN
CVS tags: pgoyette-localcount-base, pgoyette-localcount-20160726
Branch point for: pgoyette-localcount
Diff to: previous 1.398: preferred, colored
Changes since revision 1.398: +13 -2 lines
Add tcpcib, gpioiic, gpiopwm and bwi into i386/conf/ALL.

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

Revision 1.398: download - view: text, markup, annotated - select for diffs
Wed May 11 02:09:10 2016 UTC (8 years, 8 months ago) by riastradh
Branches: MAIN
CVS tags: nick-nhusb-base-20160907, nick-nhusb-base-20160529
Diff to: previous 1.397: preferred, colored
Changes since revision 1.397: +4 -5 lines
Enable nouveau in i386/ALL.  Omit incorrect option NV_DEBUG.

NV_DEBUG does not appear except as a macro function in nouveau, which
is broken by defining it on the command line.

From coypu.

Revision 1.389.2.3: download - view: text, markup, annotated - select for diffs
Sun Dec 27 12:09:36 2015 UTC (9 years, 1 month ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.389.2.2: preferred, colored; branchpoint 1.389: preferred, colored
Changes since revision 1.389.2.2: +3 -5 lines
Sync with HEAD (as of 26th Dec)

Revision 1.397: download - view: text, markup, annotated - select for diffs
Sun Oct 25 22:48:23 2015 UTC (9 years, 3 months ago) by khorben
Branches: MAIN
CVS tags: nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226
Diff to: previous 1.396: preferred, colored
Changes since revision 1.396: +2 -3 lines
Remove references to SPLASHSCREEN_PROGRESS

To my knowledge this feature is no longer supported at the moment. The
manual page for wsdisplay(4) should probably also be updated to reflect
this situation.

Revision 1.396: download - view: text, markup, annotated - select for diffs
Sat Sep 26 16:33:16 2015 UTC (9 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.395: preferred, colored
Changes since revision 1.395: +3 -3 lines
Disable PAX_SEGVGUARD.

We actually have a big problem: the fileassocs are never deleted.
Therefore, if a user generates a lot of buggy binaries and launches them
all, the kernel will allocate memory again again and again for all these
entries and will never free them (unless the files are deleted from the
disk). Which means that a user can too easily put the kernel under memory
pressure.

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

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

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

Revision 1.393: download - view: text, markup, annotated - select for diffs
Wed Apr 29 11:37:31 2015 UTC (9 years, 9 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.392: preferred, colored
Changes since revision 1.392: +6 -2 lines
Hook up viadrmums and include it it i386/ALL.

Revision 1.392: download - view: text, markup, annotated - select for diffs
Tue Apr 28 13:52:50 2015 UTC (9 years, 9 months ago) by rjs
Branches: MAIN
Diff to: previous 1.391: preferred, colored
Changes since revision 1.391: +3 -2 lines
Add DCCP.

Revision 1.332.2.5: download - view: text, markup, annotated - select for diffs
Thu Apr 16 07:01:38 2015 UTC (9 years, 9 months ago) by snj
Branches: netbsd-6
Diff to: previous 1.332.2.4: preferred, colored; branchpoint 1.332: preferred, colored; next MAIN 1.333: preferred, colored
Changes since revision 1.332.2.4: +6 -2 lines
Pull up following revision(s) (requested by mbalmer in ticket #891):
	distrib/sets/lists/man/mi: revision 1.1411
	share/man/man4/Makefile: revision 1.593
	share/man/man4/gpio.4: revision 1.24
	share/man/man4/ptcd.4: revision 1.1-1.4
	sys/arch/i386/conf/ALL: revision 1.348
	sys/arch/i386/conf/files.i386: revision 1.369
	sys/dev/isa/ptcd.c: revision 1.1
ptcd(4) is a device driver for the cash drawer port found on Protech PS3100
point of sale terminals.  It controls the cash drawer using a gpio(4) device
that attaches at ptcd0:  Pin 0 controls the drawer, pin 1 reports the current
state.  For details read the manual page.
--
Mention ptcd(4) in the synopsis.
--
Add ptcd(4).
--
Mention ibmcd(4).
--
Sort sections.
--
Sort SEE ALSO.

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

Revision 1.380.2.2: download - view: text, markup, annotated - select for diffs
Wed Mar 18 03:57:15 2015 UTC (9 years, 10 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, netbsd-7-0
Branch point for: netbsd-7-nhusb
Diff to: previous 1.380.2.1: preferred, colored; branchpoint 1.380: preferred, colored
Changes since revision 1.380.2.1: +22 -14 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.391: download - view: text, markup, annotated - select for diffs
Fri Feb 13 18:57:47 2015 UTC (9 years, 11 months ago) by nonaka
Branches: MAIN
CVS tags: nick-nhusb-base-20150406
Diff to: previous 1.390: preferred, colored
Changes since revision 1.390: +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.390: download - view: text, markup, annotated - select for diffs
Fri Dec 19 07:04:52 2014 UTC (10 years, 1 month ago) by ozaki-r
Branches: MAIN
Diff to: previous 1.389: preferred, colored
Changes since revision 1.389: +3 -2 lines
Add SOFTINT_INTR to ALL

Revision 1.380.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 18 19:05:30 2014 UTC (10 years, 2 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.380: preferred, colored
Changes since revision 1.380: +2 -3 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.389: download - view: text, markup, annotated - select for diffs
Sun Nov 16 16:01:41 2014 UTC (10 years, 2 months ago) by manu
Branches: MAIN
CVS tags: nick-nhusb-base
Branch point for: nick-nhusb
Diff to: previous 1.388: preferred, colored
Changes since revision 1.388: +2 -3 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.388: download - view: text, markup, annotated - select for diffs
Sun Nov 2 23:14:20 2014 UTC (10 years, 2 months ago) by christos
Branches: MAIN
Diff to: previous 1.387: preferred, colored
Changes since revision 1.387: +22 -13 lines
switch to DRMKMS drivers

Revision 1.332.2.4: download - view: text, markup, annotated - select for diffs
Mon Oct 27 05:37:28 2014 UTC (10 years, 3 months ago) by msaitoh
Branches: netbsd-6
Diff to: previous 1.332.2.3: preferred, colored; branchpoint 1.332: preferred, colored
Changes since revision 1.332.2.3: +3 -3 lines
Pull up following revision(s) (requested by riastradh in ticket #1128):
	sys/arch/i386/conf/ALL: revision 1.372
Remove FFS_NO_SNAPSHOT from x86/ALL so we do compile the snapshot code.

Revision 1.387: download - view: text, markup, annotated - select for diffs
Sat Oct 18 16:56:51 2014 UTC (10 years, 3 months ago) by uebayasi
Branches: MAIN
Diff to: previous 1.386: preferred, colored
Changes since revision 1.386: +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.386: download - view: text, markup, annotated - select for diffs
Fri Sep 19 17:30:03 2014 UTC (10 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.385: preferred, colored
Changes since revision 1.385: +3 -2 lines
Add HDAUDIOVERBOSE

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

Revision 1.384: download - view: text, markup, annotated - select for diffs
Sat Aug 23 21:05:39 2014 UTC (10 years, 5 months ago) by dholland
Branches: MAIN
Diff to: previous 1.383: preferred, colored
Changes since revision 1.383: +3 -2 lines
Add options COMPAT_44, which controls mostly MD code but should be in
here anyway.

Revision 1.383: download - view: text, markup, annotated - select for diffs
Sat Aug 23 20:26:58 2014 UTC (10 years, 5 months ago) by dholland
Branches: MAIN
Diff to: previous 1.382: preferred, colored
Changes since revision 1.382: +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.343.2.4: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:03:05 2014 UTC (10 years, 5 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.343.2.3: preferred, colored
Changes since revision 1.343.2.3: +24 -14 lines
Rebase to HEAD as of a few days ago.

Revision 1.382: download - view: text, markup, annotated - select for diffs
Mon Aug 18 06:31:24 2014 UTC (10 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.381: preferred, colored
Changes since revision 1.381: +2 -3 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.381: download - view: text, markup, annotated - select for diffs
Sat Aug 16 17:56:32 2014 UTC (10 years, 5 months ago) by apb
Branches: MAIN
Diff to: previous 1.380: preferred, colored
Changes since revision 1.380: +3 -2 lines
Add "options COMPAT_70" to all kernel configuration files that
already had "options COMPAT_60".

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

Revision 1.380: download - view: text, markup, annotated - select for diffs
Fri Jul 25 15:01:14 2014 UTC (10 years, 6 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.379: preferred, colored
Changes since revision 1.379: +3 -3 lines
Fix description of DIAGNOSTIC in x86 kernels.

Revision 1.379: download - view: text, markup, annotated - select for diffs
Wed Jul 2 07:18:32 2014 UTC (10 years, 6 months ago) by ozaki-r
Branches: MAIN
Diff to: previous 1.378: preferred, colored
Changes since revision 1.378: +3 -2 lines
Add NET_MPSAFE to ALL

Revision 1.378: download - view: text, markup, annotated - select for diffs
Sun Jun 29 03:44:33 2014 UTC (10 years, 7 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.377: preferred, colored
Changes since revision 1.377: +3 -2 lines
Add gffb(4) at pci.

Revision 1.377: download - view: text, markup, annotated - select for diffs
Tue Jun 24 11:59:10 2014 UTC (10 years, 7 months ago) by maxv
Branches: MAIN
Diff to: previous 1.376: preferred, colored
Changes since revision 1.376: +2 -3 lines
Remove dead code. The kernel already checks for PT_INTERP sections, and puts
their content into "itp". There's no need for re-reading the whole binary and
trying to find this section again. Just use "itp".

DEBUG_FREEBSD_ELF is now unused, so remove its references in amd64/conf/ALL
and i386/conf/ALL.

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

Revision 1.375: download - view: text, markup, annotated - select for diffs
Mon Jun 2 02:11:52 2014 UTC (10 years, 7 months ago) by dholland
Branches: MAIN
Diff to: previous 1.374: preferred, colored
Changes since revision 1.374: +3 -2 lines
add MPVERBOSE, noted missing in PR 48733.

Revision 1.325.2.5: download - view: text, markup, annotated - select for diffs
Thu May 22 11:39:51 2014 UTC (10 years, 8 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.325.2.4: preferred, colored; branchpoint 1.325: preferred, colored; next MAIN 1.326: preferred, colored
Changes since revision 1.325.2.4: +43 -23 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.361.2.2: download - view: text, markup, annotated - select for diffs
Sun May 18 17:45:12 2014 UTC (10 years, 8 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.361.2.1: preferred, colored; next MAIN 1.362: preferred, colored
Changes since revision 1.361.2.1: +21 -13 lines
sync with head

Revision 1.374: download - view: text, markup, annotated - select for diffs
Fri Apr 25 18:25:52 2014 UTC (10 years, 9 months ago) by riastradh
Branches: MAIN
CVS tags: yamt-pagecache-base9, rmind-smpnet-nbase, rmind-smpnet-base
Diff to: previous 1.373: preferred, colored
Changes since revision 1.373: +7 -2 lines
Add applesmc(4) to {i386,amd64}/ALL.

Revision 1.373: download - view: text, markup, annotated - select for diffs
Mon Apr 21 16:35:38 2014 UTC (10 years, 9 months ago) by chs
Branches: MAIN
Diff to: previous 1.372: preferred, colored
Changes since revision 1.372: +3 -2 lines
add malo at pcmcia.

Revision 1.372: download - view: text, markup, annotated - select for diffs
Tue Apr 8 22:04:15 2014 UTC (10 years, 9 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.371: preferred, colored
Changes since revision 1.371: +3 -3 lines
Remove FFS_NO_SNAPSHOT from x86/ALL so we do compile the snapshot code.

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

Revision 1.370: download - view: text, markup, annotated - select for diffs
Mon Mar 24 14:15:38 2014 UTC (10 years, 10 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.369: preferred, colored
Changes since revision 1.369: +3 -3 lines
fix manual section numbering of sysctl.
  thanks wiz@

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

Revision 1.368: download - view: text, markup, annotated - select for diffs
Sun Mar 16 09:35:05 2014 UTC (10 years, 10 months ago) by martin
Branches: MAIN
CVS tags: riastradh-drm2-base3
Diff to: previous 1.367: preferred, colored
Changes since revision 1.367: +5 -2 lines
Add umcs(4)

Revision 1.367: download - view: text, markup, annotated - select for diffs
Sun Jan 26 19:16:16 2014 UTC (11 years ago) by dsl
Branches: MAIN
Diff to: previous 1.366: preferred, colored
Changes since revision 1.366: +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.366: download - view: text, markup, annotated - select for diffs
Sat Nov 23 23:36:34 2013 UTC (11 years, 2 months ago) by riz
Branches: MAIN
Diff to: previous 1.365: preferred, colored
Changes since revision 1.365: +3 -2 lines
Add RAID_DIAGNOSTIC so that code gets built.

ok oster@

Revision 1.365: download - view: text, markup, annotated - select for diffs
Fri Nov 22 18:58:01 2013 UTC (11 years, 2 months ago) by riz
Branches: MAIN
Diff to: previous 1.364: preferred, colored
Changes since revision 1.364: +3 -3 lines
Comment out npf for now, as we can't have both NPF and PF in the
same kernel - rmind has said he'll address this eventually,
and for now PF is more likely to have unnoticed breakage.  ALL now
builds again!

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

Revision 1.363: download - view: text, markup, annotated - select for diffs
Sat Sep 14 00:42:21 2013 UTC (11 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.362: preferred, colored
Changes since revision 1.362: +4 -2 lines
Add xhci(4).

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

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

Revision 1.183.4.11: download - view: text, markup, annotated - select for diffs
Sun Jun 23 11:09:54 2013 UTC (11 years, 7 months ago) by bouyer
Branches: netbsd-5
Diff to: previous 1.183.4.10: preferred, colored; branchpoint 1.183: preferred, colored; next MAIN 1.184: preferred, colored
Changes since revision 1.183.4.10: +6 -2 lines
Pull up following revision(s) (requested by mbalmer in ticket #1863):
	distrib/sets/lists/man/mi: revision 1.1411
	share/man/man4/gpio.4: revision 1.24
	sys/arch/i386/conf/ALL: revision 1.348
	sys/arch/i386/conf/files.i386: revision 1.369
	sys/dev/isa/ptcd.c: revision 1.1
	share/man/man4/Makefile: revision 1.593
	share/man/man4/ptcd.4: revision 1.1, 1.3, 1.4
ptcd(4) is a device driver for the cash drawer port found on Protech PS3100
point of sale terminals.  It controls the cash drawer using a gpio(4) device
that attaches at ptcd0:  Pin 0 controls the drawer, pin 1 reports the current
state.  For details read the manual page.
Mention ptcd(4) in the synopsis.

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

Revision 1.183.4.10: download - view: text, markup, annotated - select for diffs
Wed Jun 19 07:50:14 2013 UTC (11 years, 7 months ago) by bouyer
Branches: netbsd-5
Diff to: previous 1.183.4.9: preferred, colored; branchpoint 1.183: preferred, colored
Changes since revision 1.183.4.9: +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.361: download - view: text, markup, annotated - select for diffs
Tue Jun 18 04:33:57 2013 UTC (11 years, 7 months ago) by dholland
Branches: MAIN
Branch point for: rmind-smpnet
Diff to: previous 1.360: preferred, colored
Changes since revision 1.360: +3 -2 lines
Add LFS_KERNEL_RFW, a preexisting lfs option that should have been
here all along.

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

Revision 1.359: download - view: text, markup, annotated - select for diffs
Sat Jun 8 02:43:10 2013 UTC (11 years, 7 months ago) by dholland
Branches: MAIN
Diff to: previous 1.358: preferred, colored
Changes since revision 1.358: +8 -2 lines
Add the new LFS options.

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

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

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

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

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

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

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

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

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

Revision 1.325.2.4: download - view: text, markup, annotated - select for diffs
Wed Jan 23 00:05:48 2013 UTC (12 years ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.325.2.3: preferred, colored; branchpoint 1.325: preferred, colored
Changes since revision 1.325.2.3: +21 -2 lines
sync with head

Revision 1.350: download - view: text, markup, annotated - select for diffs
Thu Dec 27 14:39:39 2012 UTC (12 years, 1 month ago) by skrll
Branches: MAIN
CVS tags: yamt-pagecache-base8
Diff to: previous 1.349: preferred, colored
Changes since revision 1.349: +13 -2 lines
Add some usb devices.

Revision 1.349: download - view: text, markup, annotated - select for diffs
Mon Dec 17 20:38:00 2012 UTC (12 years, 1 month ago) by mbalmer
Branches: MAIN
Diff to: previous 1.348: preferred, colored
Changes since revision 1.348: +6 -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.348: download - view: text, markup, annotated - select for diffs
Sun Dec 16 18:52:17 2012 UTC (12 years, 1 month ago) by mbalmer
Branches: MAIN
Diff to: previous 1.347: preferred, colored
Changes since revision 1.347: +6 -2 lines
Add ptcd(4).

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

Revision 1.325.2.3: download - view: text, markup, annotated - select for diffs
Tue Oct 30 17:19:47 2012 UTC (12 years, 2 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.325.2.2: preferred, colored; branchpoint 1.325: preferred, colored
Changes since revision 1.325.2.2: +19 -11 lines
sync with head

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

Revision 1.346: download - view: text, markup, annotated - select for diffs
Wed Oct 3 18:58:30 2012 UTC (12 years, 3 months ago) by dsl
Branches: MAIN
Diff to: previous 1.345: preferred, colored
Changes since revision 1.345: +2 -3 lines
Remove all references to KVM86.
It was only ever used by APMBIOS - and then only if an option was selected.
Probably didn't work well at all!

Revision 1.345: download - view: text, markup, annotated - select for diffs
Sun Sep 30 21:36:18 2012 UTC (12 years, 3 months ago) by dsl
Branches: MAIN
Diff to: previous 1.344: preferred, colored
Changes since revision 1.344: +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.344: download - view: text, markup, annotated - select for diffs
Sun Sep 23 01:03:39 2012 UTC (12 years, 4 months ago) by chs
Branches: MAIN
Diff to: previous 1.343: preferred, colored
Changes since revision 1.343: +8 -7 lines
add some more devices and options.

Revision 1.343: download - view: text, markup, annotated - select for diffs
Sat Sep 1 18:17:50 2012 UTC (12 years, 4 months ago) by jakllsch
Branches: MAIN
Branch point for: tls-maxphys
Diff to: previous 1.342: preferred, colored
Changes since revision 1.342: +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.342: download - view: text, markup, annotated - select for diffs
Sat Aug 4 04:39:40 2012 UTC (12 years, 5 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.341: preferred, colored
Changes since revision 1.341: +6 -2 lines
Add uatp(4) to i386 ALL kernel configuration.

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

Revision 1.340: download - view: text, markup, annotated - select for diffs
Sun Jul 22 14:23:47 2012 UTC (12 years, 6 months ago) by matt
Branches: MAIN
Diff to: previous 1.339: preferred, colored
Changes since revision 1.339: +5 -2 lines
Add a few missing devices.

Revision 1.332.2.3: download - view: text, markup, annotated - select for diffs
Tue Jun 12 17:47:53 2012 UTC (12 years, 7 months ago) by riz
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-1, 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, netbsd-6-0, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Diff to: previous 1.332.2.2: preferred, colored; branchpoint 1.332: preferred, colored
Changes since revision 1.332.2.2: +3 -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.339: download - view: text, markup, annotated - select for diffs
Tue Jun 5 08:44:12 2012 UTC (12 years, 7 months ago) by abs
Branches: MAIN
Diff to: previous 1.338: preferred, colored
Changes since revision 1.338: +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.325.2.2: download - view: text, markup, annotated - select for diffs
Wed May 23 10:07:43 2012 UTC (12 years, 8 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.325.2.1: preferred, colored; branchpoint 1.325: preferred, colored
Changes since revision 1.325.2.1: +5 -4 lines
sync with head.

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

Revision 1.332.2.2: download - view: text, markup, annotated - select for diffs
Mon Apr 23 16:31:36 2012 UTC (12 years, 9 months ago) by riz
Branches: netbsd-6
Diff to: previous 1.332.2.1: preferred, colored; branchpoint 1.332: preferred, colored
Changes since revision 1.332.2.1: +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.338: download - view: text, markup, annotated - select for diffs
Thu Apr 19 20:20:34 2012 UTC (12 years, 9 months ago) by wiz
Branches: MAIN
CVS tags: yamt-pagecache-base5, jmcneill-usbmp-base9, jmcneill-usbmp-base10
Diff to: previous 1.337: preferred, colored
Changes since revision 1.337: +3 -3 lines
Correct option name for hdaudio debugging.
Reported by Dave Tyson in PR 46357.

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

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

Revision 1.336: download - view: text, markup, annotated - select for diffs
Fri Apr 13 13:11:16 2012 UTC (12 years, 9 months ago) by cegger
Branches: MAIN
CVS tags: yamt-pagecache-base4
Diff to: previous 1.335: preferred, colored
Changes since revision 1.335: +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.335: download - view: text, markup, annotated - select for diffs
Tue Apr 10 23:59:47 2012 UTC (12 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.334: preferred, colored
Changes since revision 1.334: +3 -2 lines
Add apple partition recognition.

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

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

Revision 1.327.2.4: download - view: text, markup, annotated - select for diffs
Tue Mar 6 18:26:36 2012 UTC (12 years, 10 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.327.2.3: preferred, colored; branchpoint 1.327: preferred, colored
Changes since revision 1.327.2.3: +3 -2 lines
sync to -current

Revision 1.327.2.3: download - view: text, markup, annotated - select for diffs
Tue Mar 6 09:56:07 2012 UTC (12 years, 10 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.327.2.2: preferred, colored; branchpoint 1.327: preferred, colored
Changes since revision 1.327.2.2: +2 -3 lines
sync to -current

Revision 1.327.2.2: download - view: text, markup, annotated - select for diffs
Sun Mar 4 00:46:08 2012 UTC (12 years, 10 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.327.2.1: preferred, colored; branchpoint 1.327: preferred, colored
Changes since revision 1.327.2.1: +3 -2 lines
sync to latest -current.

Revision 1.332.2.1: download - view: text, markup, annotated - select for diffs
Fri Mar 2 16:31:44 2012 UTC (12 years, 10 months ago) by riz
Branches: netbsd-6
Diff to: previous 1.332: preferred, colored
Changes since revision 1.332: +3 -2 lines
Pull up following revision(s) (requested by tron in ticket #63):
	sys/ufs/chfs/chfs_inode.h: revision 1.2
	sys/ufs/chfs/chfs_malloc.c: revision 1.2
	sys/arch/i386/conf/ALL: revision 1.333
	sys/ufs/chfs/chfs_pool.c: revision 1.2
Make this compile again. From Paul Fleischer.
Add Chip File System.

Revision 1.333: download - view: text, markup, annotated - select for diffs
Tue Feb 28 07:47:50 2012 UTC (12 years, 11 months ago) by tron
Branches: MAIN
CVS tags: jmcneill-usbmp-base6, jmcneill-usbmp-base4
Diff to: previous 1.332: preferred, colored
Changes since revision 1.332: +3 -2 lines
Add Chip File System.

Revision 1.327.2.1: download - view: text, markup, annotated - select for diffs
Sat Feb 18 07:32:18 2012 UTC (12 years, 11 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.327: preferred, colored
Changes since revision 1.327: +16 -4 lines
merge to -current.

Revision 1.332: download - view: text, markup, annotated - select for diffs
Fri Feb 3 23:37:20 2012 UTC (12 years, 11 months ago) by christos
Branches: MAIN
CVS tags: netbsd-6-base, jmcneill-usbmp-base5, jmcneill-usbmp-base3, jmcneill-usbmp-base2
Branch point for: netbsd-6
Diff to: previous 1.331: preferred, colored
Changes since revision 1.331: +10 -2 lines
add tpm

Revision 1.331: download - view: text, markup, annotated - select for diffs
Sun Jan 29 18:55:12 2012 UTC (13 years ago) by jakllsch
Branches: MAIN
Diff to: previous 1.330: preferred, colored
Changes since revision 1.330: +2 -3 lines
options MALLOC_DEBUG is no longer expected to compile,
but has not yet been removed.  Avoid compiling it here.

Revision 1.183.4.9: download - view: text, markup, annotated - select for diffs
Wed Jan 25 21:18:14 2012 UTC (13 years ago) by riz
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.183.4.8: preferred, colored; branchpoint 1.183: preferred, colored
Changes since revision 1.183.4.8: +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.330: download - view: text, markup, annotated - select for diffs
Sat Jan 14 12:30:12 2012 UTC (13 years ago) by tron
Branches: MAIN
Diff to: previous 1.329: preferred, colored
Changes since revision 1.329: +4 -2 lines
Add "CPU_UCODE" option.

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

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

Revision 1.327: download - view: text, markup, annotated - select for diffs
Tue Nov 22 21:25:18 2011 UTC (13 years, 2 months ago) by tls
Branches: MAIN
CVS tags: jmcneill-usbmp-pre-base2, jmcneill-usbmp-base
Branch point for: jmcneill-usbmp
Diff to: previous 1.326: preferred, colored
Changes since revision 1.326: +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.326: download - view: text, markup, annotated - select for diffs
Fri Nov 18 22:18:07 2011 UTC (13 years, 2 months ago) by jmcneill
Branches: MAIN
CVS tags: jmcneill-audiomp3-base, jmcneill-audiomp3
Diff to: previous 1.325: preferred, colored
Changes since revision 1.325: +2 -11 lines
remove Xbox support

Revision 1.325: download - view: text, markup, annotated - select for diffs
Sun Oct 30 12:12:21 2011 UTC (13 years, 3 months 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.324: preferred, colored
Changes since revision 1.324: +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.324: download - view: text, markup, annotated - select for diffs
Mon Oct 17 22:40:31 2011 UTC (13 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.323: preferred, colored
Changes since revision 1.323: +3 -2 lines
add vmt(4)

Revision 1.323: download - view: text, markup, annotated - select for diffs
Sat Oct 15 00:23:08 2011 UTC (13 years, 3 months ago) by sjg
Branches: MAIN
Diff to: previous 1.322: preferred, colored
Changes since revision 1.322: +4 -2 lines
Add the plumbing so one could compile filemon(4) into a kernel.

Revision 1.322: download - view: text, markup, annotated - select for diffs
Sun Oct 2 16:39:47 2011 UTC (13 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.321: preferred, colored
Changes since revision 1.321: +2 -3 lines
Install dev/i2c/i2c_io.h and implement the API in the iic(4) driver.
Obsolete the I2C_SCAN option as this can now be done from userland.

Revision 1.321: download - view: text, markup, annotated - select for diffs
Mon Sep 26 18:14:07 2011 UTC (13 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.320: preferred, colored
Changes since revision 1.320: +2 -3 lines
options PMS_DISABLE_POWERHOOK is obsolete.

Revision 1.320: download - view: text, markup, annotated - select for diffs
Thu Sep 22 01:15:31 2011 UTC (13 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.319: preferred, colored
Changes since revision 1.319: +2 -5 lines
valz(4) is superseded entirely by acpivga(4) these days.

Revision 1.191.2.7: download - view: text, markup, annotated - select for diffs
Sat Aug 27 15:37:23 2011 UTC (13 years, 5 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.191.2.6: preferred, colored; next MAIN 1.192: preferred, colored
Changes since revision 1.191.2.6: +90 -72 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.319: download - view: text, markup, annotated - select for diffs
Thu Aug 18 20:55:20 2011 UTC (13 years, 5 months ago) by jakllsch
Branches: MAIN
CVS tags: jym-xensuspend-nbase, jym-xensuspend-base
Diff to: previous 1.318: preferred, colored
Changes since revision 1.318: +3 -3 lines
Attach amdtemp(4) at pchb(4) instead of in place of pchb(4).

Should fix PR#45268.

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

Revision 1.317: download - view: text, markup, annotated - select for diffs
Thu Aug 4 14:45:54 2011 UTC (13 years, 5 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.316: preferred, colored
Changes since revision 1.316: +6 -2 lines
Add coram(4).

Revision 1.316: download - view: text, markup, annotated - select for diffs
Sat Jul 30 12:19:12 2011 UTC (13 years, 6 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.315: preferred, colored
Changes since revision 1.315: +2 -6 lines
remove xboxcontroller; use the uhidev driver instead

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

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

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

Revision 1.312: download - view: text, markup, annotated - select for diffs
Tue Jul 19 19:46:38 2011 UTC (13 years, 6 months ago) by tron
Branches: MAIN
Diff to: previous 1.311: preferred, colored
Changes since revision 1.311: +4 -2 lines
Build 7th Edition(V7) File System.

Revision 1.311: download - view: text, markup, annotated - select for diffs
Wed Jul 13 07:52:48 2011 UTC (13 years, 6 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.310: preferred, colored
Changes since revision 1.310: +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.310: download - view: text, markup, annotated - select for diffs
Mon Jul 11 18:31:10 2011 UTC (13 years, 6 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.309: preferred, colored
Changes since revision 1.309: +3 -2 lines
add emdtv at uhub

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

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

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

Revision 1.284.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 6 09:05:46 2011 UTC (13 years, 7 months ago) by jruoho
Branches: jruoho-x86intr
Diff to: previous 1.284: preferred, colored; next MAIN 1.285: preferred, colored
Changes since revision 1.284: +109 -122 lines
Sync with HEAD.

Revision 1.249.2.5: download - view: text, markup, annotated - select for diffs
Tue May 31 03:04:03 2011 UTC (13 years, 8 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.249.2.4: preferred, colored; branchpoint 1.249: preferred, colored; next MAIN 1.250: preferred, colored
Changes since revision 1.249.2.4: +65 -78 lines
sync with head

Revision 1.307: download - view: text, markup, annotated - select for diffs
Sat May 28 13:01:49 2011 UTC (13 years, 8 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.306: preferred, colored
Changes since revision 1.306: +67 -67 lines
many whitespace cleanup.
confirmed "cvs diff -b" are identical.

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

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

Revision 1.305: download - view: text, markup, annotated - select for diffs
Tue Apr 26 16:36:40 2011 UTC (13 years, 9 months ago) by joerg
Branches: MAIN
Diff to: previous 1.304: preferred, colored
Changes since revision 1.304: +2 -3 lines
Remove IRIX emulation

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

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

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

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

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

Revision 1.191.2.4: download - view: text, markup, annotated - select for diffs
Mon Mar 28 23:04:38 2011 UTC (13 years, 10 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.191.2.3: preferred, colored
Changes since revision 1.191.2.3: +70 -50 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.301: download - view: text, markup, annotated - select for diffs
Sun Mar 6 17:08:25 2011 UTC (13 years, 10 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.300: preferred, colored
Changes since revision 1.300: +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.249.2.3: download - view: text, markup, annotated - select for diffs
Sat Mar 5 20:50:37 2011 UTC (13 years, 10 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.249.2.2: preferred, colored; branchpoint 1.249: preferred, colored
Changes since revision 1.249.2.2: +96 -54 lines
sync with head

Revision 1.285.2.3: download - view: text, markup, annotated - select for diffs
Sat Mar 5 15:09:43 2011 UTC (13 years, 10 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.285.2.2: preferred, colored; next MAIN 1.286: preferred, colored
Changes since revision 1.285.2.2: +25 -34 lines
Sync with HEAD

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

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

Revision 1.298: download - view: text, markup, annotated - select for diffs
Sat Feb 26 18:07:30 2011 UTC (13 years, 11 months ago) by ahoka
Branches: MAIN
Diff to: previous 1.297: preferred, colored
Changes since revision 1.297: +10 -2 lines
Import the Flash and NAND subsytem code contributed by the University
of Szeged, Hungary.

The commit includes:
 - Flash layer, which gives a common API to access flash devices
 - NAND controller subsystem for the flash layer
 - An example OMAP driver which is used on BeagleBoard or alike ARM boards

Revision 1.297: download - view: text, markup, annotated - select for diffs
Thu Feb 24 17:42:16 2011 UTC (13 years, 11 months ago) by macallan
Branches: MAIN
Diff to: previous 1.296: preferred, colored
Changes since revision 1.296: +4 -12 lines
Some cleanup:
- voyagerfb has no business on x86, so throw it out
- add igsfb, unlike the above it exists in real life on PC graphics cards
- remove duplicate genfb and machfb entries
- remove duplicate wsdisplay entries

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

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

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

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

Revision 1.292: download - view: text, markup, annotated - select for diffs
Tue Feb 22 23:57:22 2011 UTC (13 years, 11 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.291: preferred, colored
Changes since revision 1.291: +5 -2 lines
Add CardBus to PCI bridge, ppb at cardbus, but comment it out for now.

Revision 1.291: download - view: text, markup, annotated - select for diffs
Sun Feb 20 15:41:22 2011 UTC (13 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.290: preferred, colored
Changes since revision 1.290: +3 -2 lines
add vboxdrm* at drm?

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

Revision 1.289: download - view: text, markup, annotated - select for diffs
Sat Feb 19 13:52:27 2011 UTC (13 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.288: preferred, colored
Changes since revision 1.288: +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.285.2.2: download - view: text, markup, annotated - select for diffs
Thu Feb 17 11:59:44 2011 UTC (13 years, 11 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.285.2.1: preferred, colored
Changes since revision 1.285.2.1: +15 -11 lines
Sync with HEAD

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

Revision 1.287: download - view: text, markup, annotated - select for diffs
Mon Feb 14 08:50:39 2011 UTC (13 years, 11 months ago) by hannken
Branches: MAIN
Diff to: previous 1.286: preferred, colored
Changes since revision 1.286: +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.286: download - view: text, markup, annotated - select for diffs
Fri Feb 11 01:59:56 2011 UTC (13 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.285: preferred, colored
Changes since revision 1.285: +11 -11 lines
attach drm hw drivers to 'drm' not 'vga'

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

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

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

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

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

Revision 1.281: download - view: text, markup, annotated - select for diffs
Thu Dec 16 07:51:21 2010 UTC (14 years, 1 month ago) by cegger
Branches: MAIN
Diff to: previous 1.280: preferred, colored
Changes since revision 1.280: +12 -4 lines
add PCI VGA drivers

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

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

Revision 1.183.4.8: download - view: text, markup, annotated - select for diffs
Sun Nov 21 03:05:05 2010 UTC (14 years, 2 months ago) by riz
Branches: netbsd-5
CVS tags: matt-nb5-pq3-base, matt-nb5-pq3
Diff to: previous 1.183.4.7: preferred, colored; branchpoint 1.183: preferred, colored
Changes since revision 1.183.4.7: +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.278: download - view: text, markup, annotated - select for diffs
Sat Nov 13 14:38:44 2010 UTC (14 years, 2 months ago) by pgoyette
Branches: MAIN
CVS tags: uebayasi-xip-base6
Diff to: previous 1.277: preferred, colored
Changes since revision 1.277: +5 -2 lines
Add pseudo-device dmoverio(4) to ALL

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

Revision 1.233.2.5: download - view: text, markup, annotated - select for diffs
Tue Nov 9 06:03:37 2010 UTC (14 years, 2 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.233.2.4: preferred, colored; branchpoint 1.233: preferred, colored; next MAIN 1.234: preferred, colored
Changes since revision 1.233.2.4: +4 -2 lines
Sync with HEAD.

Revision 1.276: download - view: text, markup, annotated - select for diffs
Sat Nov 6 15:11:50 2010 UTC (14 years, 2 months ago) by jakllsch
Branches: MAIN
CVS tags: uebayasi-xip-base5
Diff to: previous 1.275: preferred, colored
Changes since revision 1.275: +3 -2 lines
fwhrng(4) is in i386 GENERIC already, add it to ALL too.

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

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

Revision 1.274: download - view: text, markup, annotated - select for diffs
Fri Nov 5 10:28:21 2010 UTC (14 years, 2 months ago) by gsutre
Branches: MAIN
CVS tags: uebayasi-xip-base4
Diff to: previous 1.273: preferred, colored
Changes since revision 1.273: +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.273: download - view: text, markup, annotated - select for diffs
Fri Nov 5 01:34:51 2010 UTC (14 years, 2 months ago) by rmind
Branches: MAIN
Diff to: previous 1.272: preferred, colored
Changes since revision 1.272: +3 -2 lines
Add pfsync to ALL kernel.

Revision 1.272: download - view: text, markup, annotated - select for diffs
Wed Nov 3 23:24:14 2010 UTC (14 years, 2 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.271: preferred, colored
Changes since revision 1.271: +13 -2 lines
Add to ALL some USB drivers that are never compiled, otherwise:
moscom(4), uark(4), uhmodem(4), uyurex(4).

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

Revision 1.270: download - view: text, markup, annotated - select for diffs
Sun Oct 24 09:27:45 2010 UTC (14 years, 3 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.269: preferred, colored
Changes since revision 1.269: +3 -2 lines
Add wmimsi(4).

Revision 1.233.2.3: download - view: text, markup, annotated - select for diffs
Fri Oct 22 07:21:19 2010 UTC (14 years, 3 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.233.2.2: preferred, colored; branchpoint 1.233: preferred, colored
Changes since revision 1.233.2.2: +9 -0 lines
Sync with HEAD (-D20101022).

Revision 1.269: download - view: text, markup, annotated - select for diffs
Tue Oct 19 11:58:42 2010 UTC (14 years, 3 months ago) by pgoyette
Branches: MAIN
CVS tags: uebayasi-xip-base3
Diff to: previous 1.268: preferred, colored
Changes since revision 1.268: +5 -2 lines
Include swsensor(4) in ALL

Revision 1.268: download - view: text, markup, annotated - select for diffs
Tue Oct 12 19:10:50 2010 UTC (14 years, 3 months ago) by gsutre
Branches: MAIN
Diff to: previous 1.267: preferred, colored
Changes since revision 1.267: +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.167.2.8: download - view: text, markup, annotated - select for diffs
Sat Oct 9 03:31:46 2010 UTC (14 years, 3 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.167.2.7: preferred, colored; branchpoint 1.167: preferred, colored; next MAIN 1.168: preferred, colored
Changes since revision 1.167.2.7: +6 -2 lines
sync with head

Revision 1.267: download - view: text, markup, annotated - select for diffs
Sun Aug 22 18:56:21 2010 UTC (14 years, 5 months ago) by rmind
Branches: MAIN
CVS tags: yamt-nfs-mp-base11
Diff to: previous 1.266: preferred, colored
Changes since revision 1.266: +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.266: download - view: text, markup, annotated - select for diffs
Sat Aug 21 03:06:37 2010 UTC (14 years, 5 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.265: preferred, colored
Changes since revision 1.265: +3 -2 lines
Add upgt(4), Intersil PrismGT USB 802.11b/g adapter.

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

Revision 1.167.2.7: download - view: text, markup, annotated - select for diffs
Wed Aug 11 22:52:10 2010 UTC (14 years, 5 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.167.2.6: preferred, colored; branchpoint 1.167: preferred, colored
Changes since revision 1.167.2.6: +33 -9 lines
sync with head.

Revision 1.265: download - view: text, markup, annotated - select for diffs
Sun Aug 8 20:04:54 2010 UTC (14 years, 5 months ago) by chs
Branches: MAIN
CVS tags: yamt-nfs-mp-base10, uebayasi-xip-base2
Diff to: previous 1.264: preferred, colored
Changes since revision 1.264: +7 -2 lines
add more spdmem instances for HP xw-series workstations.
add se (scsi ethernet).

Revision 1.264: download - view: text, markup, annotated - select for diffs
Sat Aug 7 09:55:59 2010 UTC (14 years, 5 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.263: preferred, colored
Changes since revision 1.263: +2 -3 lines
Remove the last ACPI driver -specific #ifdef, ACPI_FDC_DEBUG.

Revision 1.263: download - view: text, markup, annotated - select for diffs
Sat Aug 7 09:53:25 2010 UTC (14 years, 5 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.262: preferred, colored
Changes since revision 1.262: +2 -3 lines
Remove ACPI_MADT_DEBUG.

Revision 1.262: download - view: text, markup, annotated - select for diffs
Mon Jul 26 22:33:23 2010 UTC (14 years, 6 months ago) by jym
Branches: MAIN
Diff to: previous 1.261: preferred, colored
Changes since revision 1.261: +3 -2 lines
Add PAE to ALL kernel, so that most paddr_t format string errors get caught
during compilation.

While here, fix the compilation for ALL.

Revision 1.261: download - view: text, markup, annotated - select for diffs
Sun Jul 18 10:19:09 2010 UTC (14 years, 6 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.260: preferred, colored
Changes since revision 1.260: +3 -2 lines
Add ACPI CPU.

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

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

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

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

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

Revision 1.257: download - view: text, markup, annotated - select for diffs
Sat May 8 22:16:28 2010 UTC (14 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.256: preferred, colored
Changes since revision 1.256: +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.256: download - view: text, markup, annotated - select for diffs
Sun May 2 17:27:16 2010 UTC (14 years, 8 months ago) by chs
Branches: MAIN
Diff to: previous 1.255: preferred, colored
Changes since revision 1.255: +6 -2 lines
add alipm and its iic bus.

Revision 1.233.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 30 14:39:27 2010 UTC (14 years, 9 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.233: preferred, colored
Changes since revision 1.233: +43 -15 lines
Sync with HEAD.

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

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

Revision 1.254: download - view: text, markup, annotated - select for diffs
Sun Apr 11 22:42:30 2010 UTC (14 years, 9 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.253: preferred, colored
Changes since revision 1.253: +5 -2 lines
Add valz(4), a simple driver to handle the backlight keys on some
Toshiba laptops.  As of yet only tested on a Satellite A135-S4527.

Revision 1.253: download - view: text, markup, annotated - select for diffs
Thu Apr 8 17:50:34 2010 UTC (14 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.252: preferred, colored
Changes since revision 1.252: +4 -2 lines
Add wmidell(4) and wmihp(4).

Revision 1.252: download - view: text, markup, annotated - select for diffs
Thu Apr 1 04:04:11 2010 UTC (14 years, 10 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.251: preferred, colored
Changes since revision 1.251: +3 -2 lines
Add support for Domex 536 PCI SCSI controller to nca(4).
This truly remarkable chip is found on the Domex DMX-3191D SCSI adapter.

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

Revision 1.250: download - view: text, markup, annotated - select for diffs
Fri Mar 19 04:04:27 2010 UTC (14 years, 10 months ago) by cnst
Branches: MAIN
Diff to: previous 1.249: preferred, colored
Changes since revision 1.249: +2 -3 lines
Remove aiboost(4) as obsolete and redundant since the introduction of aibs(4).

      http://mail-index.netbsd.org/tech-kern/2010/03/06/msg007458.html

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

Revision 1.167.2.6: download - view: text, markup, annotated - select for diffs
Thu Mar 11 15:02:27 2010 UTC (14 years, 10 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.167.2.5: preferred, colored; branchpoint 1.167: preferred, colored
Changes since revision 1.167.2.5: +283 -122 lines
sync with head

Revision 1.249: download - view: text, markup, annotated - select for diffs
Sat Mar 6 21:12:04 2010 UTC (14 years, 10 months ago) by plunky
Branches: MAIN
CVS tags: yamt-nfs-mp-base9
Branch point for: rmind-uvmplock
Diff to: previous 1.248: preferred, colored
Changes since revision 1.248: +5 -2 lines
add uhso(4)

Revision 1.248: download - view: text, markup, annotated - select for diffs
Thu Mar 4 22:30:57 2010 UTC (14 years, 10 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.247: preferred, colored
Changes since revision 1.247: +2 -3 lines
Remove ACPI_BUT_DEBUG.

Revision 1.247: download - view: text, markup, annotated - select for diffs
Thu Mar 4 21:55:32 2010 UTC (14 years, 10 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.246: preferred, colored
Changes since revision 1.246: +2 -3 lines
VALD_ACPI_DEBUG is dead.

Revision 1.246: download - view: text, markup, annotated - select for diffs
Thu Mar 4 21:47:58 2010 UTC (14 years, 10 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.245: preferred, colored
Changes since revision 1.245: +7 -7 lines
Enable (uncomment) ACPI_DEBUG, ACPI_DEBUG_ALLOC, and ACPI_MUTEX_DEBUG.

Revision 1.245: download - view: text, markup, annotated - select for diffs
Wed Mar 3 06:57:53 2010 UTC (14 years, 10 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.244: preferred, colored
Changes since revision 1.244: +2 -3 lines
Remove ACPI_EXTRA_DEBUG.

Revision 1.244: download - view: text, markup, annotated - select for diffs
Sun Feb 28 13:10:43 2010 UTC (14 years, 11 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.243: preferred, colored
Changes since revision 1.243: +8 -2 lines
Add ACPI_DEBUG_ALLOC.

Revision 1.243: download - view: text, markup, annotated - select for diffs
Sun Feb 28 09:24:46 2010 UTC (14 years, 11 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.242: preferred, colored
Changes since revision 1.242: +2 -3 lines
Remove ACPI_LID_DEBUG.

Revision 1.242: download - view: text, markup, annotated - select for diffs
Mon Feb 22 13:42:04 2010 UTC (14 years, 11 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.241: preferred, colored
Changes since revision 1.241: +4 -4 lines
Correct spelling of smscmon and add (commented out) to GENERICs

Revision 1.241: download - view: text, markup, annotated - select for diffs
Mon Feb 22 04:57:43 2010 UTC (14 years, 11 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.240: preferred, colored
Changes since revision 1.240: +3 -3 lines
Specify the correct default address for smscmon

Revision 1.240: download - view: text, markup, annotated - select for diffs
Mon Feb 22 03:52:06 2010 UTC (14 years, 11 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.239: preferred, colored
Changes since revision 1.239: +6 -2 lines
Add smscmon(4)

Revision 1.239: download - view: text, markup, annotated - select for diffs
Sun Feb 21 05:16:29 2010 UTC (14 years, 11 months ago) by cnst
Branches: MAIN
Diff to: previous 1.238: preferred, colored
Changes since revision 1.238: +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.238: download - view: text, markup, annotated - select for diffs
Fri Feb 12 15:51:16 2010 UTC (14 years, 11 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.237: preferred, colored
Changes since revision 1.237: +3 -2 lines
Add PPPOE_SERVER
 - disabled (commented out) in GENERIC,
 - enabled in ALL

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

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

Revision 1.235: download - view: text, markup, annotated - select for diffs
Tue Feb 9 03:19:50 2010 UTC (14 years, 11 months ago) by cnst
Branches: MAIN
Diff to: previous 1.234: preferred, colored
Changes since revision 1.234: +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.234: download - view: text, markup, annotated - select for diffs
Mon Feb 8 21:45:31 2010 UTC (14 years, 11 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.233: preferred, colored
Changes since revision 1.233: +5 -4 lines
Add flags to all instances of lm(4), add a reference to man page

Revision 1.233: download - view: text, markup, annotated - select for diffs
Sat Feb 6 21:27:51 2010 UTC (14 years, 11 months ago) by pgoyette
Branches: MAIN
CVS tags: uebayasi-xip-base
Branch point for: uebayasi-xip
Diff to: previous 1.232: preferred, colored
Changes since revision 1.232: +6 -3 lines
Enable acpismbus(4) for ALL kernel, per discussion on tech-kern

Revision 1.232: download - view: text, markup, annotated - select for diffs
Sat Feb 6 20:12:32 2010 UTC (14 years, 11 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.231: preferred, colored
Changes since revision 1.231: +3 -2 lines
Add acpismbus enries - commented out!

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

Revision 1.230: download - view: text, markup, annotated - select for diffs
Sun Jan 31 11:19:40 2010 UTC (14 years, 11 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.229: preferred, colored
Changes since revision 1.229: +2 -3 lines
No more ACPI_ACAD_DEBUG.

Revision 1.229: download - view: text, markup, annotated - select for diffs
Sat Jan 23 15:40:14 2010 UTC (15 years ago) by jruoho
Branches: MAIN
Diff to: previous 1.228: preferred, colored
Changes since revision 1.228: +2 -3 lines
ACPI_BAT_DEBUG is no more.

Revision 1.228: download - view: text, markup, annotated - select for diffs
Mon Jan 18 16:43:15 2010 UTC (15 years ago) by pooka
Branches: MAIN
Diff to: previous 1.227: preferred, colored
Changes since revision 1.227: +90 -3 lines
include ISDN support

Revision 1.227: download - view: text, markup, annotated - select for diffs
Thu Jan 7 18:49:30 2010 UTC (15 years ago) by tnn
Branches: MAIN
Diff to: previous 1.226: preferred, colored
Changes since revision 1.226: +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.226: download - view: text, markup, annotated - select for diffs
Thu Jan 7 00:18:47 2010 UTC (15 years ago) by martin
Branches: MAIN
Diff to: previous 1.225: preferred, colored
Changes since revision 1.225: +3 -2 lines
Add the u3ginit driver to all configs which have the u3g driver

Revision 1.225: download - view: text, markup, annotated - select for diffs
Sun Jan 3 03:53:34 2010 UTC (15 years ago) by dholland
Branches: MAIN
Diff to: previous 1.224: preferred, colored
Changes since revision 1.224: +33 -33 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.224: download - view: text, markup, annotated - select for diffs
Sun Jan 3 03:50:38 2010 UTC (15 years ago) by dholland
Branches: MAIN
Diff to: previous 1.223: preferred, colored
Changes since revision 1.223: +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.223: download - view: text, markup, annotated - select for diffs
Wed Dec 23 01:04:46 2009 UTC (15 years, 1 month ago) by pooka
Branches: MAIN
Diff to: previous 1.222: preferred, colored
Changes since revision 1.222: +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.222: download - view: text, markup, annotated - select for diffs
Sat Dec 5 20:11:15 2009 UTC (15 years, 1 month ago) by pooka
Branches: MAIN
CVS tags: matt-premerge-20091211
Diff to: previous 1.221: preferred, colored
Changes since revision 1.221: +3 -4 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.221: download - view: text, markup, annotated - select for diffs
Mon Nov 30 16:19:55 2009 UTC (15 years, 1 month ago) by tsutsui
Branches: MAIN
Diff to: previous 1.220: preferred, colored
Changes since revision 1.220: +6 -2 lines
Add udl(4) and wsdisplay(4) as its child.

Revision 1.220: download - view: text, markup, annotated - select for diffs
Sat Nov 21 13:19:04 2009 UTC (15 years, 2 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.219: preferred, colored
Changes since revision 1.219: +113 -68 lines
Reduce diffs against GENERIC.

Revision 1.219: download - view: text, markup, annotated - select for diffs
Thu Nov 12 14:58:09 2009 UTC (15 years, 2 months ago) by tron
Branches: MAIN
Diff to: previous 1.218: preferred, colored
Changes since revision 1.218: +4 -2 lines
Turn on Stack Smash Protection (SSP) for the "ALL" kernel to get at least
compile time coverage during a full release build.

Suggested by Mindaugas Rasiukevicius.

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

Revision 1.183.4.7: download - view: text, markup, annotated - select for diffs
Wed Oct 28 09:03:42 2009 UTC (15 years, 3 months 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.183.4.6: preferred, colored; branchpoint 1.183: preferred, colored
Changes since revision 1.183.4.6: +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.183.4.6: download - view: text, markup, annotated - select for diffs
Thu Oct 8 09:47:08 2009 UTC (15 years, 3 months ago) by sborrill
Branches: netbsd-5
Diff to: previous 1.183.4.5: preferred, colored; branchpoint 1.183: preferred, colored
Changes since revision 1.183.4.5: +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.183.4.5: download - view: text, markup, annotated - select for diffs
Mon Oct 5 11:37:13 2009 UTC (15 years, 3 months ago) by sborrill
Branches: netbsd-5
Diff to: previous 1.183.4.4: preferred, colored; branchpoint 1.183: preferred, colored
Changes since revision 1.183.4.4: +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.218: download - view: text, markup, annotated - select for diffs
Fri Oct 2 18:50:49 2009 UTC (15 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.217: preferred, colored
Changes since revision 1.217: +5 -2 lines
Add and enable options VIA_C7TEMP

Revision 1.217: download - view: text, markup, annotated - select for diffs
Fri Oct 2 16:47:52 2009 UTC (15 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.216: preferred, colored
Changes since revision 1.216: +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.216: download - view: text, markup, annotated - select for diffs
Wed Sep 30 22:19:00 2009 UTC (15 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.215: preferred, colored
Changes since revision 1.215: +3 -2 lines
Need sdmmc* at wb?

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

Revision 1.214: download - view: text, markup, annotated - select for diffs
Tue Sep 29 11:58:18 2009 UTC (15 years, 4 months ago) by pooka
Branches: MAIN
Diff to: previous 1.213: preferred, colored
Changes since revision 1.213: +2 -3 lines
remove the tempting VNODE_LOCKDEBUG option

Revision 1.213: download - view: text, markup, annotated - select for diffs
Sun Sep 27 12:53:46 2009 UTC (15 years, 4 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.212: preferred, colored
Changes since revision 1.212: +3 -2 lines
+jme* at pci?

Revision 1.212: download - view: text, markup, annotated - select for diffs
Sun Sep 27 12:41:05 2009 UTC (15 years, 4 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.211: preferred, colored
Changes since revision 1.211: +3 -2 lines
add viadrm at pci

Revision 1.183.4.4: download - view: text, markup, annotated - select for diffs
Sat Sep 26 19:52:09 2009 UTC (15 years, 4 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.183.4.3: preferred, colored; branchpoint 1.183: preferred, colored
Changes since revision 1.183.4.3: +8 -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.211: download - view: text, markup, annotated - select for diffs
Tue Sep 22 16:46:15 2009 UTC (15 years, 4 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.210: preferred, colored
Changes since revision 1.210: +3 -2 lines
+cs* at isapnp?

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

Revision 1.210: download - view: text, markup, annotated - select for diffs
Mon Sep 14 11:38:29 2009 UTC (15 years, 4 months ago) by tsutsui
Branches: MAIN
CVS tags: yamt-nfs-mp-base8
Diff to: previous 1.209: preferred, colored
Changes since revision 1.209: +4 -4 lines
Enable options IPKDB.

Revision 1.183.4.3: download - view: text, markup, annotated - select for diffs
Sun Sep 13 22:11:14 2009 UTC (15 years, 4 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.183.4.2: preferred, colored; branchpoint 1.183: preferred, colored
Changes since revision 1.183.4.2: +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.209: download - view: text, markup, annotated - select for diffs
Sat Sep 12 18:53:22 2009 UTC (15 years, 4 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.208: preferred, colored
Changes since revision 1.208: +13 -2 lines
Add MI and ISA gpib(4) stuff. (compile test only)

Revision 1.208: download - view: text, markup, annotated - select for diffs
Sat Sep 12 18:09:47 2009 UTC (15 years, 4 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.207: preferred, colored
Changes since revision 1.207: +3 -2 lines
+options RTSOCK_DEBUG

Revision 1.207: download - view: text, markup, annotated - select for diffs
Mon Sep 7 10:40:54 2009 UTC (15 years, 4 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.206: preferred, colored
Changes since revision 1.206: +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.206: download - view: text, markup, annotated - select for diffs
Sun Sep 6 17:25:56 2009 UTC (15 years, 4 months ago) by sborrill
Branches: MAIN
Diff to: previous 1.205: preferred, colored
Changes since revision 1.205: +8 -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.205: download - view: text, markup, annotated - select for diffs
Wed Aug 26 03:39:16 2009 UTC (15 years, 5 months ago) by elad
Branches: MAIN
Diff to: previous 1.204: preferred, colored
Changes since revision 1.204: +3 -2 lines
Build NiLFS(2).

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

Revision 1.204: download - view: text, markup, annotated - select for diffs
Sat Aug 15 09:43:58 2009 UTC (15 years, 5 months ago) by mbalmer
Branches: MAIN
CVS tags: yamt-nfs-mp-base7
Diff to: previous 1.203: preferred, colored
Changes since revision 1.203: +6 -2 lines
Move the keylock.h header from sys/sys to sys/dev where it really belongs.
Add keylock options to the ALL kernel configuration.

Revision 1.203: download - view: text, markup, annotated - select for diffs
Wed Jul 29 11:52:44 2009 UTC (15 years, 6 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.202: preferred, colored
Changes since revision 1.202: +5 -3 lines
Add pseudo-device gpiosim, fix gpioow usage.

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

Revision 1.201: download - view: text, markup, annotated - select for diffs
Sat Jul 25 19:04:41 2009 UTC (15 years, 6 months ago) by cegger
Branches: MAIN
Diff to: previous 1.200: preferred, colored
Changes since revision 1.200: +3 -2 lines
add GPIO_DEBUG

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

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

Revision 1.167.2.3: download - view: text, markup, annotated - select for diffs
Sat May 16 10:41:14 2009 UTC (15 years, 8 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.167.2.2: preferred, colored; branchpoint 1.167: preferred, colored
Changes since revision 1.167.2.2: +6 -3 lines
sync with head

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

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

Revision 1.199: download - view: text, markup, annotated - select for diffs
Sun May 10 15:26:23 2009 UTC (15 years, 8 months ago) by elad
Branches: MAIN
CVS tags: yamt-nfs-mp-base6, yamt-nfs-mp-base5, yamt-nfs-mp-base4
Diff to: previous 1.198: preferred, colored
Changes since revision 1.198: +4 -2 lines
Add IPKDB options, but commented out as it doesn't build at the moment.

Revision 1.198: download - view: text, markup, annotated - select for diffs
Sat May 9 15:04:25 2009 UTC (15 years, 8 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.197: preferred, colored
Changes since revision 1.197: +4 -3 lines
Initial implementation of sdtemp(4) driver for on-DIMM temp sensor.

(These optional sensors are specified by JEDEC Standard No. 21-C
Section 4-7 and implemented by multiple vendors.  Tested on my
amd64 machine with Kingston KVR1066D3E7S/2G memory which includes
a STMicro STTS424E02 sensor.)

Revision 1.167.2.2: download - view: text, markup, annotated - select for diffs
Mon May 4 08:11:15 2009 UTC (15 years, 8 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.167.2.1: preferred, colored; branchpoint 1.167: preferred, colored
Changes since revision 1.167.2.1: +45 -25 lines
sync with head.

Revision 1.183.4.2: download - view: text, markup, annotated - select for diffs
Fri May 1 01:20:41 2009 UTC (15 years, 9 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.183.4.1: preferred, colored; branchpoint 1.183: preferred, colored
Changes since revision 1.183.4.1: +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.183.2.3: download - view: text, markup, annotated - select for diffs
Tue Apr 28 07:34:07 2009 UTC (15 years, 9 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.183.2.2: preferred, colored; branchpoint 1.183: preferred, colored; next MAIN 1.184: preferred, colored
Changes since revision 1.183.2.2: +12 -3 lines
Sync with HEAD.

Revision 1.197: download - view: text, markup, annotated - select for diffs
Tue Apr 21 22:47:55 2009 UTC (15 years, 9 months ago) by nonaka
Branches: MAIN
CVS tags: yamt-nfs-mp-base3, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base
Diff to: previous 1.196: preferred, colored
Changes since revision 1.196: +11 -2 lines
Add SD/MMC related devices.

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

Revision 1.73.2.11: download - view: text, markup, annotated - select for diffs
Tue Mar 24 21:25:02 2009 UTC (15 years, 10 months ago) by bouyer
Branches: netbsd-4
Diff to: previous 1.73.2.10: preferred, colored; branchpoint 1.73: preferred, colored; next MAIN 1.74: preferred, colored
Changes since revision 1.73.2.10: +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.195: download - view: text, markup, annotated - select for diffs
Fri Mar 6 20:31:49 2009 UTC (15 years, 10 months ago) by joerg
Branches: MAIN
Diff to: previous 1.194: preferred, colored
Changes since revision 1.194: +2 -3 lines
Remove SHMMAXPGS from all kernel configs. Dynamically compute the
initial limit as 1/4 of the physical memory. Ensure the limit is at
least 1024 pages, the old default on most platforms.

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

Revision 1.194: download - view: text, markup, annotated - select for diffs
Fri Feb 27 23:37:20 2009 UTC (15 years, 11 months ago) by dyoung
Branches: MAIN
CVS tags: nick-hppapmap-base2
Diff to: previous 1.193: preferred, colored
Changes since revision 1.193: +3 -2 lines
Add isv(4).

Revision 1.193: download - view: text, markup, annotated - select for diffs
Thu Feb 19 00:54:09 2009 UTC (15 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.192: preferred, colored
Changes since revision 1.192: +2 -12 lines
Remove vesafb, it has been replaced by genfb on x86.

Revision 1.192: download - view: text, markup, annotated - select for diffs
Sat Feb 14 22:13:22 2009 UTC (15 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.191: preferred, colored
Changes since revision 1.191: +4 -2 lines
Add genfb(4)

Revision 1.191: download - view: text, markup, annotated - select for diffs
Sat Jan 24 15:49:14 2009 UTC (16 years ago) by cegger
Branches: MAIN
Branch point for: jym-xensuspend
Diff to: previous 1.190: preferred, colored
Changes since revision 1.190: +3 -2 lines
add bwi(4)

Revision 1.190: download - view: text, markup, annotated - select for diffs
Sat Jan 24 14:19:04 2009 UTC (16 years ago) by haad
Branches: MAIN
Diff to: previous 1.189: preferred, colored
Changes since revision 1.189: +4 -2 lines
Add dm driver to ALL kernel.

Revision 1.189: download - view: text, markup, annotated - select for diffs
Sat Jan 24 14:11:07 2009 UTC (16 years ago) by cegger
Branches: MAIN
Diff to: previous 1.188: preferred, colored
Changes since revision 1.188: +4 -2 lines
add age(4) and atphy(4).
Requested by cube@

Revision 1.188: download - view: text, markup, annotated - select for diffs
Wed Jan 21 14:26:25 2009 UTC (16 years ago) by tsutsui
Branches: MAIN
Diff to: previous 1.187: preferred, colored
Changes since revision 1.187: +3 -2 lines
Add esp at mca, so that daily build will detect botches in it.

Revision 1.183.2.1: download - view: text, markup, annotated - select for diffs
Mon Jan 19 13:16:14 2009 UTC (16 years ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.183: preferred, colored
Changes since revision 1.183: +4 -4 lines
Sync with HEAD.

Revision 1.160.6.5: download - view: text, markup, annotated - select for diffs
Sat Jan 17 13:28:02 2009 UTC (16 years ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.160.6.4: preferred, colored; branchpoint 1.160: preferred, colored; next MAIN 1.161: preferred, colored
Changes since revision 1.160.6.4: +9 -5 lines
Sync with HEAD.

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

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

Revision 1.173.4.2: download - view: text, markup, annotated - select for diffs
Sat Dec 13 01:13:13 2008 UTC (16 years, 1 month ago) by haad
Branches: haad-dm
Diff to: previous 1.173.4.1: preferred, colored; branchpoint 1.173: preferred, colored; next MAIN 1.174: preferred, colored
Changes since revision 1.173.4.1: +2 -4 lines
Update haad-dm branch to haad-dm-base2.

Revision 1.185: download - view: text, markup, annotated - select for diffs
Mon Nov 24 11:41:11 2008 UTC (16 years, 2 months ago) by ad
Branches: MAIN
CVS tags: haad-nbase2, haad-dm-base2, haad-dm-base, ad-audiomp2-base, ad-audiomp2
Diff to: previous 1.184: preferred, colored
Changes since revision 1.184: +2 -3 lines
Remove softdep, pass 1. We are focused on improving journalling.

Proposed on tech-kern@.

Revision 1.183.4.1: download - view: text, markup, annotated - select for diffs
Tue Nov 18 01:56:58 2008 UTC (16 years, 2 months ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, 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.183: preferred, colored
Changes since revision 1.183: +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.184: download - view: text, markup, annotated - select for diffs
Wed Nov 12 12:36:01 2008 UTC (16 years, 2 months ago) by ad
Branches: MAIN
Diff to: previous 1.183: preferred, colored
Changes since revision 1.183: +2 -3 lines
Remove LKMs and switch to the module framework, pass 1.

Proposed on tech-kern@.

Revision 1.173.4.1: download - view: text, markup, annotated - select for diffs
Sun Oct 19 22:15:48 2008 UTC (16 years, 3 months ago) by haad
Branches: haad-dm
Diff to: previous 1.173: preferred, colored
Changes since revision 1.173: +20 -12 lines
Sync with HEAD.

Revision 1.183: download - view: text, markup, annotated - select for diffs
Mon Oct 13 12:20:37 2008 UTC (16 years, 3 months ago) by pgoyette
Branches: MAIN
CVS tags: netbsd-5-base, matt-mips64-base2, haad-dm-base1
Branch point for: nick-hppapmap, netbsd-5
Diff to: previous 1.182: preferred, colored
Changes since revision 1.182: +5 -2 lines
Add lm0 at iic?

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

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

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

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

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

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

Revision 1.180: download - view: text, markup, annotated - select for diffs
Fri Sep 19 22:50:05 2008 UTC (16 years, 4 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.179: preferred, colored
Changes since revision 1.179: +10 -2 lines
Add pseye, uvideo, video, UVIDEO_DEBUG

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

Revision 1.179: download - view: text, markup, annotated - select for diffs
Thu Sep 11 20:50:04 2008 UTC (16 years, 4 months ago) by pgoyette
Branches: MAIN
CVS tags: wrstuden-revivesa-base-3
Diff to: previous 1.178: preferred, colored
Changes since revision 1.178: +3 -2 lines
Include new I2C_SCAN option in ALL.

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

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

Revision 1.176: download - view: text, markup, annotated - select for diffs
Thu Jul 31 23:56:00 2008 UTC (16 years, 5 months ago) by cegger
Branches: MAIN
Diff to: previous 1.175: preferred, colored
Changes since revision 1.175: +0 -1 lines
backout rev. 1.175:
options VGA_POST already existed which makes config barf.

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

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

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

Revision 1.166.2.2: download - view: text, markup, annotated - select for diffs
Wed Jun 4 02:04:46 2008 UTC (16 years, 7 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.166.2.1: preferred, colored; branchpoint 1.166: preferred, colored; next MAIN 1.167: preferred, colored
Changes since revision 1.166.2.1: +6 -2 lines
sync with head

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

Revision 1.160.6.2: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:22:13 2008 UTC (16 years, 7 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.160.6.1: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.6.1: +633 -10 lines
Sync with HEAD.

Revision 1.173: download - view: text, markup, annotated - select for diffs
Mon May 26 00:25:32 2008 UTC (16 years, 8 months ago) by christos
Branches: MAIN
CVS tags: yamt-pf42-base4, yamt-pf42-base3, wrstuden-revivesa-base-1, wrstuden-revivesa-base, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl
Branch point for: haad-dm
Diff to: previous 1.172: preferred, colored
Changes since revision 1.172: +5 -2 lines
Add uberry.

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

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

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

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

Revision 1.170: download - view: text, markup, annotated - select for diffs
Thu May 1 20:18:18 2008 UTC (16 years, 8 months ago) by cegger
Branches: MAIN
Branch point for: wrstuden-revivesa
Diff to: previous 1.169: preferred, colored
Changes since revision 1.169: +3 -2 lines
hpqlb(4): driver for HP Quick Launch buttons - found on HP Pavilion Notebooks

Revision 1.169: download - view: text, markup, annotated - select for diffs
Wed Apr 30 15:29:11 2008 UTC (16 years, 9 months ago) by ad
Branches: MAIN
Diff to: previous 1.168: preferred, colored
Changes since revision 1.168: +2 -9 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.168: download - view: text, markup, annotated - select for diffs
Wed Apr 30 14:13:26 2008 UTC (16 years, 9 months ago) by ad
Branches: MAIN
Diff to: previous 1.167: preferred, colored
Changes since revision 1.167: +622 -2 lines
Fold DEBUG into ALL.

Revision 1.167: download - view: text, markup, annotated - select for diffs
Tue Apr 22 22:37:14 2008 UTC (16 years, 9 months ago) by cegger
Branches: MAIN
CVS tags: yamt-nfs-mp-base
Branch point for: yamt-nfs-mp
Diff to: previous 1.166: preferred, colored
Changes since revision 1.166: +4 -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.73.2.10: download - view: text, markup, annotated - select for diffs
Sat Apr 19 15:57:56 2008 UTC (16 years, 9 months ago) by bouyer
Branches: netbsd-4
CVS tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base
Diff to: previous 1.73.2.9: preferred, colored; branchpoint 1.73: preferred, colored
Changes since revision 1.73.2.9: +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.166: download - view: text, markup, annotated - select for diffs
Sun Apr 13 04:59:45 2008 UTC (16 years, 9 months ago) by tsutsui
Branches: MAIN
CVS tags: yamt-pf42-baseX, yamt-pf42-base
Branch point for: yamt-pf42
Diff to: previous 1.165: preferred, colored
Changes since revision 1.165: +3 -2 lines
Add esp(4) at isa. (though I doubt it has ever worked)

Revision 1.165: download - view: text, markup, annotated - select for diffs
Wed Apr 9 17:35:17 2008 UTC (16 years, 9 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.164: preferred, colored
Changes since revision 1.164: +3 -3 lines
Attach elansc at mainbus instead of at pci.

Revision 1.164: download - view: text, markup, annotated - select for diffs
Fri Apr 4 16:21:08 2008 UTC (16 years, 9 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.163: preferred, colored
Changes since revision 1.163: +3 -2 lines
Add nca at pcmcia (53C400 based SCSI).

Revision 1.163: download - view: text, markup, annotated - select for diffs
Thu Apr 3 23:11:11 2008 UTC (16 years, 9 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.162: preferred, colored
Changes since revision 1.162: +5 -2 lines
Enable finsio(4).

Revision 1.160.6.1: download - view: text, markup, annotated - select for diffs
Thu Apr 3 12:42:17 2008 UTC (16 years, 9 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.160: preferred, colored
Changes since revision 1.160: +4 -2 lines
Sync with HEAD.

Revision 1.162: download - view: text, markup, annotated - select for diffs
Mon Mar 31 15:19:28 2008 UTC (16 years, 10 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.161: preferred, colored
Changes since revision 1.161: +3 -2 lines
Enable asus(4)

Revision 1.161: download - view: text, markup, annotated - select for diffs
Sat Mar 29 00:21:01 2008 UTC (16 years, 10 months ago) by cube
Branches: MAIN
Diff to: previous 1.160: preferred, colored
Changes since revision 1.160: +3 -2 lines
Add and enable lii(4).

Revision 1.118.2.3: download - view: text, markup, annotated - select for diffs
Sun Mar 23 02:04:05 2008 UTC (16 years, 10 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.118.2.2: preferred, colored; next MAIN 1.119: preferred, colored
Changes since revision 1.118.2.2: +29 -5 lines
sync with HEAD

Revision 1.133.2.4: download - view: text, markup, annotated - select for diffs
Mon Feb 18 21:04:37 2008 UTC (16 years, 11 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.133.2.3: preferred, colored; branchpoint 1.133: preferred, colored; next MAIN 1.134: preferred, colored
Changes since revision 1.133.2.3: +38 -11 lines
Sync with HEAD.

Revision 1.57.30.9: download - view: text, markup, annotated - select for diffs
Mon Feb 11 14:59:27 2008 UTC (16 years, 11 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.57.30.8: preferred, colored; branchpoint 1.57: preferred, colored; next MAIN 1.58: preferred, colored
Changes since revision 1.57.30.8: +3 -2 lines
sync with head.

Revision 1.160: download - view: text, markup, annotated - select for diffs
Sat Feb 9 19:34:58 2008 UTC (16 years, 11 months ago) by jmmv
Branches: MAIN
CVS tags: yamt-lazymbuf-base15, yamt-lazymbuf-base14, nick-net80211-sync-base, nick-net80211-sync, mjf-devfs-base, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-base, ad-socklock-base1
Branch point for: mjf-devfs2
Diff to: previous 1.159: preferred, colored
Changes since revision 1.159: +3 -2 lines
Add 'options MODULAR'.  Does not seem to conflict with anything else
(aka ALL builds fine).

Revision 1.57.30.8: download - view: text, markup, annotated - select for diffs
Mon Feb 4 09:22:00 2008 UTC (16 years, 11 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.57.30.7: preferred, colored; branchpoint 1.57: preferred, colored
Changes since revision 1.57.30.7: +23 -4 lines
sync with head.

Revision 1.159: download - view: text, markup, annotated - select for diffs
Wed Jan 30 14:24:11 2008 UTC (17 years ago) by ad
Branches: MAIN
Diff to: previous 1.158: preferred, colored
Changes since revision 1.158: +3 -2 lines
+UFS_EXTATTR

Revision 1.146.2.6: download - view: text, markup, annotated - select for diffs
Wed Jan 23 19:27:15 2008 UTC (17 years ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.146.2.5: preferred, colored; branchpoint 1.146: preferred, colored; next MAIN 1.147: preferred, colored
Changes since revision 1.146.2.5: +22 -2 lines
Sync with HEAD.

Revision 1.158: download - view: text, markup, annotated - select for diffs
Wed Jan 23 00:12:03 2008 UTC (17 years ago) by jmcneill
Branches: MAIN
CVS tags: bouyer-xeni386-nbase
Diff to: previous 1.157: preferred, colored
Changes since revision 1.157: +18 -4 lines
Add XBOX specific device drivers and options.

Revision 1.157: download - view: text, markup, annotated - select for diffs
Mon Jan 21 22:12:00 2008 UTC (17 years ago) by ichiro
Branches: MAIN
Diff to: previous 1.156: preferred, colored
Changes since revision 1.156: +6 -2 lines
enable 'uhmodem'

Revision 1.57.30.7: download - view: text, markup, annotated - select for diffs
Mon Jan 21 09:36:49 2008 UTC (17 years ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.57.30.6: preferred, colored; branchpoint 1.57: preferred, colored
Changes since revision 1.57.30.6: +24 -9 lines
sync with head

Revision 1.156: download - view: text, markup, annotated - select for diffs
Mon Jan 21 08:04:51 2008 UTC (17 years ago) by dyoung
Branches: MAIN
Diff to: previous 1.155: preferred, colored
Changes since revision 1.155: +4 -2 lines
Attach two new devices to the AMD Elan SC520 System Controller,
elansc(4).

elanpex(4) is for PCI exception reporting.  I've already found some
kernel bugs by reading the exceptions reported.  Beware that it
will spam the console a lot while the kernel and pcictl(8) probe
non-existing addresses in PCI configuration space.

elanpar(4) protects the kernel text from writes by the CPU and by
PCI bus masters.  As you might guess, this is not compatible with
setting breakpoints using a debugger; detach the device using
'drvctl -d elanpar0' before you try to set breakpoints.  In the
future, I hope to extend elanpar(4) to provide general-purpose RAM
write-protection.

Revision 1.146.2.5: download - view: text, markup, annotated - select for diffs
Sat Jan 19 12:14:14 2008 UTC (17 years ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.146.2.4: preferred, colored; branchpoint 1.146: preferred, colored
Changes since revision 1.146.2.4: +0 -1 lines
Sync with HEAD

Revision 1.155: download - view: text, markup, annotated - select for diffs
Wed Jan 16 09:37:05 2008 UTC (17 years ago) by ad
Branches: MAIN
CVS tags: bouyer-xeni386-base
Diff to: previous 1.154: preferred, colored
Changes since revision 1.154: +2 -3 lines
Remove options MATH_EMULATE.

Revision 1.146.2.4: download - view: text, markup, annotated - select for diffs
Thu Jan 10 23:43:17 2008 UTC (17 years ago) by bouyer
Branches: bouyer-xeni386
CVS tags: bouyer-xeni386-merge1
Diff to: previous 1.146.2.3: preferred, colored; branchpoint 1.146: preferred, colored
Changes since revision 1.146.2.3: +3 -0 lines
Sync with HEAD

Revision 1.154: download - view: text, markup, annotated - select for diffs
Wed Jan 9 14:28:55 2008 UTC (17 years ago) by xtraeme
Branches: MAIN
Diff to: previous 1.153: preferred, colored
Changes since revision 1.153: +5 -2 lines
Add gcscpcib(4).

Revision 1.118.2.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:46:26 2008 UTC (17 years ago) by matt
Branches: matt-armv6
Diff to: previous 1.118.2.1: preferred, colored
Changes since revision 1.118.2.1: +33 -24 lines
sync with HEAD

Revision 1.146.2.3: download - view: text, markup, annotated - select for diffs
Tue Jan 8 22:09:51 2008 UTC (17 years ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.146.2.2: preferred, colored; branchpoint 1.146: preferred, colored
Changes since revision 1.146.2.2: +5 -5 lines
Sync with HEAD

Revision 1.153: download - view: text, markup, annotated - select for diffs
Mon Jan 7 08:39:03 2008 UTC (17 years ago) by martti
Branches: MAIN
CVS tags: matt-armv6-base
Diff to: previous 1.152: preferred, colored
Changes since revision 1.152: +7 -7 lines
Fixed indentation, it should be

option<space><tab>
makeoption<space><tab>

Revision 1.146.2.2: download - view: text, markup, annotated - select for diffs
Wed Jan 2 21:48:08 2008 UTC (17 years ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.146.2.1: preferred, colored; branchpoint 1.146: preferred, colored
Changes since revision 1.146.2.1: +6 -2 lines
Sync with HEAD

Revision 1.152: download - view: text, markup, annotated - select for diffs
Mon Dec 31 15:31:55 2007 UTC (17 years, 1 month ago) by ad
Branches: MAIN
Diff to: previous 1.151: preferred, colored
Changes since revision 1.151: +2 -3 lines
Remove systrace. Ok core@.

Revision 1.151: download - view: text, markup, annotated - select for diffs
Sat Dec 29 06:09:04 2007 UTC (17 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.150: preferred, colored
Changes since revision 1.150: +3 -3 lines
Update itesio(4) comments.

Revision 1.133.2.3: download - view: text, markup, annotated - select for diffs
Thu Dec 27 00:43:00 2007 UTC (17 years, 1 month ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.133.2.2: preferred, colored; branchpoint 1.133: preferred, colored
Changes since revision 1.133.2.2: +11 -3 lines
Sync with HEAD.

Revision 1.150: download - view: text, markup, annotated - select for diffs
Wed Dec 26 22:32:44 2007 UTC (17 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.149: preferred, colored
Changes since revision 1.149: +4 -2 lines
Add missing PAX defines

Revision 1.143.2.2: download - view: text, markup, annotated - select for diffs
Wed Dec 26 21:38:44 2007 UTC (17 years, 1 month ago) by ad
Branches: vmlocking2
Diff to: previous 1.143.2.1: preferred, colored; branchpoint 1.143: preferred, colored; next MAIN 1.144: preferred, colored
Changes since revision 1.143.2.1: +13 -3 lines
Sync with head.

Revision 1.149: download - view: text, markup, annotated - select for diffs
Tue Dec 25 14:22:26 2007 UTC (17 years, 1 month ago) by joerg
Branches: MAIN
CVS tags: vmlocking2-base3
Diff to: previous 1.148: preferred, colored
Changes since revision 1.148: +4 -2 lines
Add initial version of calling VGA POST from vga_resume. This is the
equivalent to "vbetool post" using x86emu in the kernel.

Revision 1.148: download - view: text, markup, annotated - select for diffs
Fri Dec 21 15:20:13 2007 UTC (17 years, 1 month ago) by jmcneill
Branches: MAIN
Diff to: previous 1.147: preferred, colored
Changes since revision 1.147: +3 -2 lines
Add thinkpad at acpi

Revision 1.146.2.1: download - view: text, markup, annotated - select for diffs
Thu Dec 13 21:54:38 2007 UTC (17 years, 1 month ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.146: preferred, colored
Changes since revision 1.146: +4 -2 lines
Sync with HEAD

Revision 1.147: download - view: text, markup, annotated - select for diffs
Thu Dec 13 17:25:19 2007 UTC (17 years, 1 month ago) by joerg
Branches: MAIN
Diff to: previous 1.146: preferred, colored
Changes since revision 1.146: +4 -2 lines
Add glue for x86emu and build it as part of i386/ALL.

Revision 1.145.2.1: download - view: text, markup, annotated - select for diffs
Tue Dec 11 15:20:27 2007 UTC (17 years, 1 month ago) by yamt
Branches: yamt-kmem
Diff to: previous 1.145: preferred, colored; next MAIN 1.146: preferred, colored
Changes since revision 1.145: +8 -3 lines
sync with head.

Revision 1.146: download - view: text, markup, annotated - select for diffs
Sun Dec 9 20:27:45 2007 UTC (17 years, 1 month 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.145: preferred, colored
Changes since revision 1.145: +8 -3 lines
Merge jmcneill-pm branch.

Revision 1.115.4.15: download - view: text, markup, annotated - select for diffs
Sun Dec 9 19:35:18 2007 UTC (17 years, 1 month ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.115.4.14: preferred, colored; branchpoint 1.115: preferred, colored; next MAIN 1.116: preferred, colored
Changes since revision 1.115.4.14: +3 -2 lines
Sync with HEAD.

Revision 1.133.2.2: download - view: text, markup, annotated - select for diffs
Sat Dec 8 18:17:06 2007 UTC (17 years, 1 month ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.133.2.1: preferred, colored; branchpoint 1.133: preferred, colored
Changes since revision 1.133.2.1: +8 -2 lines
Sync with HEAD.

Revision 1.143.2.1: download - view: text, markup, annotated - select for diffs
Sat Dec 8 17:56:22 2007 UTC (17 years, 1 month ago) by ad
Branches: vmlocking2
Diff to: previous 1.143: preferred, colored
Changes since revision 1.143: +3 -2 lines
Sync with head.

Revision 1.57.30.6: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:24:53 2007 UTC (17 years, 1 month ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.57.30.5: preferred, colored; branchpoint 1.57: preferred, colored
Changes since revision 1.57.30.5: +9 -6 lines
sync with head

Revision 1.145: download - view: text, markup, annotated - select for diffs
Wed Dec 5 00:19:41 2007 UTC (17 years, 1 month 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.144: preferred, colored
Changes since revision 1.144: +3 -3 lines
arc(4) -> arcmsr(4)

Revision 1.144: download - view: text, markup, annotated - select for diffs
Tue Dec 4 23:49:46 2007 UTC (17 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.143: preferred, colored
Changes since revision 1.143: +3 -2 lines
Enable arc(4), reminded by riz@.

Revision 1.85.2.10: download - view: text, markup, annotated - select for diffs
Mon Dec 3 19:03:21 2007 UTC (17 years, 1 month ago) by ad
Branches: vmlocking
Diff to: previous 1.85.2.9: preferred, colored; next MAIN 1.86: preferred, colored
Changes since revision 1.85.2.9: +2 -14 lines
Sync with HEAD.

Revision 1.85.2.9: download - view: text, markup, annotated - select for diffs
Mon Dec 3 18:36:21 2007 UTC (17 years, 1 month ago) by ad
Branches: vmlocking
Diff to: previous 1.85.2.8: preferred, colored
Changes since revision 1.85.2.8: +35 -18 lines
Sync with HEAD.

Revision 1.115.4.14: download - view: text, markup, annotated - select for diffs
Mon Dec 3 16:14:01 2007 UTC (17 years, 1 month ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.13: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.13: +4 -2 lines
Sync with HEAD.

Revision 1.143: download - view: text, markup, annotated - select for diffs
Sun Dec 2 05:19:13 2007 UTC (17 years, 1 month ago) by kiyohara
Branches: MAIN
CVS tags: vmlocking2-base1, vmlocking-nbase
Branch point for: vmlocking2
Diff to: previous 1.142: preferred, colored
Changes since revision 1.142: +4 -2 lines
Add bcsp(4).

Revision 1.115.4.13: download - view: text, markup, annotated - select for diffs
Wed Nov 21 21:53:09 2007 UTC (17 years, 2 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.12: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.12: +6 -18 lines
Sync with HEAD.

Revision 1.125.2.3: download - view: text, markup, annotated - select for diffs
Wed Nov 21 21:19:13 2007 UTC (17 years, 2 months ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.125.2.2: preferred, colored; branchpoint 1.125: preferred, colored; next MAIN 1.126: preferred, colored
Changes since revision 1.125.2.2: +3 -0 lines
Sync with HEAD

Revision 1.142: download - view: text, markup, annotated - select for diffs
Tue Nov 20 18:54:31 2007 UTC (17 years, 2 months ago) by pooka
Branches: MAIN
CVS tags: bouyer-xenamd64-base2, bouyer-xenamd64-base
Diff to: previous 1.141: preferred, colored
Changes since revision 1.141: +5 -2 lines
pud (userspace char/block drivers) build goo

Revision 1.133.2.1: download - view: text, markup, annotated - select for diffs
Mon Nov 19 00:46:17 2007 UTC (17 years, 2 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.133: preferred, colored
Changes since revision 1.133: +10 -18 lines
Sync with HEAD.

Revision 1.125.2.2: download - view: text, markup, annotated - select for diffs
Sun Nov 18 19:34:14 2007 UTC (17 years, 2 months ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.125.2.1: preferred, colored; branchpoint 1.125: preferred, colored
Changes since revision 1.125.2.1: +1 -16 lines
Sync with HEAD

Revision 1.141: download - view: text, markup, annotated - select for diffs
Thu Nov 15 19:18:32 2007 UTC (17 years, 2 months ago) by ad
Branches: MAIN
Diff to: previous 1.140: preferred, colored
Changes since revision 1.140: +2 -5 lines
Remove support for 80386 level CPUs. PR port-i386/36163.

Revision 1.140: download - view: text, markup, annotated - select for diffs
Thu Nov 15 12:58:28 2007 UTC (17 years, 2 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.139: preferred, colored
Changes since revision 1.139: +3 -3 lines
Update for it(4) -> itesio(4) rename.

Revision 1.57.30.5: download - view: text, markup, annotated - select for diffs
Thu Nov 15 11:42:46 2007 UTC (17 years, 2 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.57.30.4: preferred, colored; branchpoint 1.57: preferred, colored
Changes since revision 1.57.30.4: +13 -15 lines
sync with head.

Revision 1.115.4.12: download - view: text, markup, annotated - select for diffs
Wed Nov 14 19:04:07 2007 UTC (17 years, 2 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.11: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.11: +6 -2 lines
Sync with HEAD.

Revision 1.139: download - view: text, markup, annotated - select for diffs
Wed Nov 14 17:54:56 2007 UTC (17 years, 2 months ago) by ad
Branches: MAIN
Diff to: previous 1.138: preferred, colored
Changes since revision 1.138: +3 -15 lines
- Remove I486_CPU, I586_CPU, I686_CPU options. They buy us nothing and
  clutter the code significantly.
- Remove pccons.

Revision 1.125.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 13 15:58:29 2007 UTC (17 years, 2 months ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.125: preferred, colored
Changes since revision 1.125: +17 -2 lines
Sync with HEAD

Revision 1.138: download - view: text, markup, annotated - select for diffs
Mon Nov 12 08:42:40 2007 UTC (17 years, 2 months ago) by njoly
Branches: MAIN
Diff to: previous 1.137: preferred, colored
Changes since revision 1.137: +3 -2 lines
Add missing hpet@acpi.

Revision 1.137: download - view: text, markup, annotated - select for diffs
Sun Nov 11 18:06:24 2007 UTC (17 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.136: preferred, colored
Changes since revision 1.136: +5 -2 lines
Enable pad(4)

Revision 1.115.4.11: download - view: text, markup, annotated - select for diffs
Sun Nov 11 16:46:29 2007 UTC (17 years, 2 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.10: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.10: +5 -2 lines
Sync with HEAD.

Revision 1.136: download - view: text, markup, annotated - select for diffs
Sat Nov 10 21:45:47 2007 UTC (17 years, 2 months ago) by pooka
Branches: MAIN
Diff to: previous 1.135: preferred, colored
Changes since revision 1.135: +5 -2 lines
add pseudo-device putter

Revision 1.135: download - view: text, markup, annotated - select for diffs
Sat Nov 10 13:17:24 2007 UTC (17 years, 2 months ago) by dsl
Branches: MAIN
Diff to: previous 1.134: preferred, colored
Changes since revision 1.134: +3 -3 lines
Re-instate COMPAT_PECOFF, it is largely userspace and can use the standard
syscall table.

Revision 1.134: download - view: text, markup, annotated - select for diffs
Fri Nov 9 22:31:47 2007 UTC (17 years, 2 months ago) by dsl
Branches: MAIN
Diff to: previous 1.133: preferred, colored
Changes since revision 1.133: +3 -3 lines
Remove COMPAT_PECOFF from all - I suspect is doesn't build anymore,
and isn't worth fixing :-)

Revision 1.118.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:17:09 2007 UTC (17 years, 2 months ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.118: preferred, colored
Changes since revision 1.118: +33 -14 lines
sync with HEAD

Revision 1.115.4.10: download - view: text, markup, annotated - select for diffs
Sun Nov 4 21:02:56 2007 UTC (17 years, 2 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.115.4.9: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.9: +2 -2 lines
Sync with HEAD.

Revision 1.133: download - view: text, markup, annotated - select for diffs
Thu Nov 1 13:54:28 2007 UTC (17 years, 2 months ago) by xtraeme
Branches: MAIN
CVS tags: jmcneill-base
Branch point for: mjf-devfs
Diff to: previous 1.132: preferred, colored
Changes since revision 1.132: +3 -3 lines
Revert previous, thanks wikipedia :-)

Revision 1.132: download - view: text, markup, annotated - select for diffs
Thu Nov 1 13:48:52 2007 UTC (17 years, 2 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.131: preferred, colored
Changes since revision 1.131: +3 -3 lines
Fix typo "iff" -> "if" reported by leot via freenode@irc.

Revision 1.115.4.9: download - view: text, markup, annotated - select for diffs
Wed Oct 31 23:13:58 2007 UTC (17 years, 3 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.8: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.8: +3 -3 lines
Sync with HEAD.

Revision 1.131: download - view: text, markup, annotated - select for diffs
Tue Oct 30 00:03:50 2007 UTC (17 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.130: preferred, colored
Changes since revision 1.130: +3 -3 lines
options<space><tab>FOO

Revision 1.115.4.8: download - view: text, markup, annotated - select for diffs
Mon Oct 29 02:57:19 2007 UTC (17 years, 3 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.7: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.7: +5 -2 lines
Sync with HEAD.

Revision 1.130: download - view: text, markup, annotated - select for diffs
Mon Oct 29 00:47:16 2007 UTC (17 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.129: preferred, colored
Changes since revision 1.129: +5 -2 lines
Enable "options INTEL_CORETEMP".

Revision 1.115.4.7: download - view: text, markup, annotated - select for diffs
Sun Oct 28 20:10:36 2007 UTC (17 years, 3 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.6: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.6: +7 -2 lines
Sync with HEAD.

Revision 1.57.30.4: download - view: text, markup, annotated - select for diffs
Sat Oct 27 11:26:21 2007 UTC (17 years, 3 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.57.30.3: preferred, colored; branchpoint 1.57: preferred, colored
Changes since revision 1.57.30.3: +28 -14 lines
sync with head.

Revision 1.129: download - view: text, markup, annotated - select for diffs
Fri Oct 26 22:21:20 2007 UTC (17 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.128: preferred, colored
Changes since revision 1.128: +5 -2 lines
Add amdpcib(4).

Revision 1.115.4.6: download - view: text, markup, annotated - select for diffs
Fri Oct 26 15:42:32 2007 UTC (17 years, 3 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.5: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.5: +4 -3 lines
Sync with HEAD.

Follow the merge of pmap.c on i386 and amd64 and move
pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup
code to restore CR4 before jumping back into kernel space as the large
page option might cover that.

Revision 1.128: download - view: text, markup, annotated - select for diffs
Thu Oct 25 08:15:32 2007 UTC (17 years, 3 months ago) by dogcow
Branches: MAIN
Diff to: previous 1.127: preferred, colored
Changes since revision 1.127: +3 -3 lines
oh, for lack of a query...

Revision 1.127: download - view: text, markup, annotated - select for diffs
Wed Oct 24 23:20:06 2007 UTC (17 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.126: preferred, colored
Changes since revision 1.126: +4 -2 lines
Add jmide(4).

Revision 1.126: download - view: text, markup, annotated - select for diffs
Wed Oct 17 19:54:41 2007 UTC (17 years, 3 months ago) by garbled
Branches: MAIN
CVS tags: yamt-x86pmap-base4
Diff to: previous 1.125: preferred, colored
Changes since revision 1.125: +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.95.2.4: download - view: text, markup, annotated - select for diffs
Tue Oct 16 18:23:41 2007 UTC (17 years, 3 months ago) by garbled
Branches: ppcoea-renovation
Diff to: previous 1.95.2.3: preferred, colored; next MAIN 1.96: preferred, colored
Changes since revision 1.95.2.3: +5 -3 lines
Sync with HEAD

Revision 1.123.2.1: download - view: text, markup, annotated - select for diffs
Sun Oct 14 11:47:37 2007 UTC (17 years, 3 months ago) by yamt
Branches: yamt-x86pmap
Diff to: previous 1.123: preferred, colored; next MAIN 1.124: preferred, colored
Changes since revision 1.123: +5 -3 lines
sync with head.

Revision 1.85.2.8: download - view: text, markup, annotated - select for diffs
Fri Oct 12 17:03:02 2007 UTC (17 years, 3 months ago) by ad
Branches: vmlocking
Diff to: previous 1.85.2.7: preferred, colored
Changes since revision 1.85.2.7: +4 -3 lines
Sync with head.

Revision 1.125: download - view: text, markup, annotated - select for diffs
Wed Oct 10 22:41:15 2007 UTC (17 years, 3 months ago) by ad
Branches: MAIN
CVS tags: yamt-x86pmap-base3, vmlocking-base, ppcoea-renovation-base
Branch point for: bouyer-xenamd64
Diff to: previous 1.124: preferred, colored
Changes since revision 1.124: +4 -3 lines
+DEBUG, +VNODE_LOCKDEBUG

Revision 1.85.2.7: download - view: text, markup, annotated - select for diffs
Tue Oct 9 13:37:47 2007 UTC (17 years, 3 months ago) by ad
Branches: vmlocking
Diff to: previous 1.85.2.6: preferred, colored
Changes since revision 1.85.2.6: +27 -14 lines
Sync with head.

Revision 1.115.4.5: download - view: text, markup, annotated - select for diffs
Sun Oct 7 13:25:00 2007 UTC (17 years, 3 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.4: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.4: +3 -2 lines
Sync with HEAD.

Revision 1.124: download - view: text, markup, annotated - select for diffs
Fri Oct 5 17:58:38 2007 UTC (17 years, 3 months ago) by joerg
Branches: MAIN
Diff to: previous 1.123: preferred, colored
Changes since revision 1.123: +3 -2 lines
Add re* at cardbus.

Revision 1.95.2.3: download - view: text, markup, annotated - select for diffs
Wed Oct 3 19:23:34 2007 UTC (17 years, 3 months ago) by garbled
Branches: ppcoea-renovation
Diff to: previous 1.95.2.2: preferred, colored
Changes since revision 1.95.2.2: +49 -13 lines
Sync with HEAD

Revision 1.115.4.4: download - view: text, markup, annotated - select for diffs
Tue Oct 2 21:44:08 2007 UTC (17 years, 3 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.3: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.3: +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.115.4.3: download - view: text, markup, annotated - select for diffs
Tue Oct 2 18:27:05 2007 UTC (17 years, 3 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.2: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.2: +20 -13 lines
Sync with HEAD.

Revision 1.73.2.5.2.3: download - view: text, markup, annotated - select for diffs
Sun Sep 30 03:39:00 2007 UTC (17 years, 4 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.73.2.5.2.2: preferred, colored
Changes since revision 1.73.2.5.2.2: +5 -2 lines
Catch up on netbsd-4 as of a few days ago.

Revision 1.73.2.9: download - view: text, markup, annotated - select for diffs
Thu Sep 27 22:04:27 2007 UTC (17 years, 4 months ago) by xtraeme
Branches: netbsd-4
CVS tags: wrstuden-fixsa-base-1, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-1-RELEASE, netbsd-4-0, matt-nb4-arm-base, matt-nb4-arm
Diff to: previous 1.73.2.8: preferred, colored; branchpoint 1.73: preferred, colored
Changes since revision 1.73.2.8: +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.123: download - view: text, markup, annotated - select for diffs
Sat Sep 22 21:44:38 2007 UTC (17 years, 4 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-x86pmap-base2, yamt-x86pmap-base
Branch point for: yamt-x86pmap
Diff to: previous 1.122: preferred, colored
Changes since revision 1.122: +3 -2 lines
Add DDB_VERBOSE_HELP.

Revision 1.122: download - view: text, markup, annotated - select for diffs
Tue Sep 11 21:59:11 2007 UTC (17 years, 4 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.121: preferred, colored
Changes since revision 1.121: +5 -2 lines
GENERIC_LAPTOP -> add aps(4) commented out
ALL -> add aps(4)

Revision 1.113.4.3: download - view: text, markup, annotated - select for diffs
Mon Sep 10 10:54:19 2007 UTC (17 years, 4 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.113.4.2: preferred, colored; branchpoint 1.113: preferred, colored; next MAIN 1.114: preferred, colored
Changes since revision 1.113.4.2: +16 -13 lines
Sync with HEAD.

Revision 1.121: download - view: text, markup, annotated - select for diffs
Thu Sep 6 11:10:30 2007 UTC (17 years, 4 months ago) by martti
Branches: MAIN
CVS tags: nick-csl-alignment-base5
Diff to: previous 1.120: preferred, colored
Changes since revision 1.120: +13 -13 lines
Fixed indentation (it should be <keyword><space><tab><name>tab><comment>).

Revision 1.115.4.2: download - view: text, markup, annotated - select for diffs
Tue Sep 4 20:05:11 2007 UTC (17 years, 4 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.115.4.1: preferred, colored; branchpoint 1.115: preferred, colored
Changes since revision 1.115.4.1: +3 -2 lines
Don't use a global variable to decide whether this is a ICH6+,
use a variable in the softc to determine whether the RCBA is supported.
Add generic HPET support for ICH5 and ICH6+.

This is not (yet) enabled by default, until someone adds the code to
not use the direct attachment if hpet was configured via ACPI.

Revision 1.120: download - view: text, markup, annotated - select for diffs
Mon Sep 3 20:02:58 2007 UTC (17 years, 4 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.119: preferred, colored
Changes since revision 1.119: +5 -2 lines
Add uchcom(4).

Revision 1.115.4.1: download - view: text, markup, annotated - select for diffs
Mon Sep 3 16:47:20 2007 UTC (17 years, 4 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.115: preferred, colored
Changes since revision 1.115: +12 -3 lines
Sync with HEAD.

Revision 1.57.30.3: download - view: text, markup, annotated - select for diffs
Mon Sep 3 14:26:29 2007 UTC (17 years, 4 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.57.30.2: preferred, colored; branchpoint 1.57: preferred, colored
Changes since revision 1.57.30.2: +75 -10 lines
sync with head.

Revision 1.113.4.2: download - view: text, markup, annotated - select for diffs
Mon Sep 3 10:19:00 2007 UTC (17 years, 4 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.113.4.1: preferred, colored; branchpoint 1.113: preferred, colored
Changes since revision 1.113.4.1: +12 -3 lines
Sync with HEAD.

Revision 1.73.2.5.2.2: download - view: text, markup, annotated - select for diffs
Mon Sep 3 07:03:31 2007 UTC (17 years, 4 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.73.2.5.2.1: preferred, colored
Changes since revision 1.73.2.5.2.1: +4 -2 lines
Sync w/ NetBSD-4-RC_1

Revision 1.119: download - view: text, markup, annotated - select for diffs
Sat Sep 1 17:54:48 2007 UTC (17 years, 4 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.118: preferred, colored
Changes since revision 1.118: +4 -2 lines
Add se(4).

Revision 1.73.2.8: download - view: text, markup, annotated - select for diffs
Wed Aug 29 18:34:16 2007 UTC (17 years, 5 months ago) by liamjfoy
Branches: netbsd-4
CVS tags: netbsd-4-0-RC1
Diff to: previous 1.73.2.7: preferred, colored; branchpoint 1.73: preferred, colored
Changes since revision 1.73.2.7: +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.118: download - view: text, markup, annotated - select for diffs
Tue Aug 21 02:48:15 2007 UTC (17 years, 5 months ago) by kiyohara
Branches: MAIN
Branch point for: matt-armv6
Diff to: previous 1.117: preferred, colored
Changes since revision 1.117: +6 -3 lines
Add slhci at pcmcia.
 And reorder.

Revision 1.85.2.6: download - view: text, markup, annotated - select for diffs
Mon Aug 20 18:38:07 2007 UTC (17 years, 5 months ago) by ad
Branches: vmlocking
Diff to: previous 1.85.2.5: preferred, colored
Changes since revision 1.85.2.5: +15 -2 lines
Sync with HEAD.

Revision 1.117: download - view: text, markup, annotated - select for diffs
Mon Aug 20 00:54:41 2007 UTC (17 years, 5 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.116: preferred, colored
Changes since revision 1.116: +4 -2 lines
Add btbc(4).

Revision 1.116: download - view: text, markup, annotated - select for diffs
Sat Aug 18 11:35:55 2007 UTC (17 years, 5 months ago) by tnn
Branches: MAIN
Diff to: previous 1.115: preferred, colored
Changes since revision 1.115: +4 -2 lines
Enable spdmem(4) in ALL configuration. Add commented out entries to GENERIC

Revision 1.113.4.1: download - view: text, markup, annotated - select for diffs
Wed Aug 15 13:47:21 2007 UTC (17 years, 5 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.113: preferred, colored
Changes since revision 1.113: +8 -3 lines
Sync with HEAD.

Revision 1.113.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 7 18:05:18 2007 UTC (17 years, 5 months ago) by matt
Branches: matt-mips64
Diff to: previous 1.113: preferred, colored; next MAIN 1.114: preferred, colored
Changes since revision 1.113: +8 -3 lines
Sync with HEAD.

Revision 1.115: download - view: text, markup, annotated - select for diffs
Sat Jul 28 11:06:23 2007 UTC (17 years, 6 months ago) by kiyohara
Branches: MAIN
CVS tags: matt-mips64-base, hpcarm-cleanup
Branch point for: jmcneill-pm
Diff to: previous 1.114: preferred, colored
Changes since revision 1.114: +6 -2 lines
Add ichsmb(4).

Revision 1.114: download - view: text, markup, annotated - select for diffs
Fri Jul 20 22:26:12 2007 UTC (17 years, 6 months ago) by rumble
Branches: MAIN
Diff to: previous 1.113: preferred, colored
Changes since revision 1.113: +4 -3 lines
Comment FILECORE and add ADOSFS.

Revision 1.113: download - view: text, markup, annotated - select for diffs
Tue Jul 17 16:40:21 2007 UTC (17 years, 6 months ago) by daniel
Branches: MAIN
CVS tags: nick-csl-alignment-base
Branch point for: nick-csl-alignment, matt-mips64
Diff to: previous 1.112: preferred, colored
Changes since revision 1.112: +5 -2 lines
Add VIA_PADLOCK.

Revision 1.112: download - view: text, markup, annotated - select for diffs
Sun Jul 15 19:36:53 2007 UTC (17 years, 6 months ago) by dsl
Branches: MAIN
Diff to: previous 1.111: preferred, colored
Changes since revision 1.111: +3 -2 lines
Add the FILECORE filesystem so it gets test compiled.

Revision 1.85.2.5: download - view: text, markup, annotated - select for diffs
Sun Jul 15 13:16:07 2007 UTC (17 years, 6 months ago) by ad
Branches: vmlocking
Diff to: previous 1.85.2.4: preferred, colored
Changes since revision 1.85.2.4: +18 -6 lines
Sync with head.

Revision 1.111: download - view: text, markup, annotated - select for diffs
Sat Jul 14 16:16:17 2007 UTC (17 years, 6 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.110: preferred, colored
Changes since revision 1.110: +6 -6 lines
Alphabetical reorder.

Revision 1.85.4.1: download - view: text, markup, annotated - select for diffs
Wed Jul 11 19:59:42 2007 UTC (17 years, 6 months ago) by mjf
Branches: mjf-ufs-trans
Diff to: previous 1.85: preferred, colored; next MAIN 1.86: preferred, colored
Changes since revision 1.85: +50 -6 lines
Sync with head.

Revision 1.110: download - view: text, markup, annotated - select for diffs
Wed Jul 11 08:01:51 2007 UTC (17 years, 6 months ago) by kiyohara
Branches: MAIN
CVS tags: mjf-ufs-trans-base
Diff to: previous 1.109: preferred, colored
Changes since revision 1.109: +8 -2 lines
Add nfsmb(4).

Revision 1.109: download - view: text, markup, annotated - select for diffs
Sun Jul 8 03:01:20 2007 UTC (17 years, 6 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.108: preferred, colored
Changes since revision 1.108: +4 -2 lines
Enable gcscehci(4)

Revision 1.108: download - view: text, markup, annotated - select for diffs
Fri Jun 29 23:30:25 2007 UTC (17 years, 7 months ago) by rumble
Branches: MAIN
Diff to: previous 1.107: preferred, colored
Changes since revision 1.107: +3 -2 lines
Add read-only support for SGI's Extent File System.

Reviewed by pooka@.

Revision 1.107: download - view: text, markup, annotated - select for diffs
Thu Jun 28 12:16:36 2007 UTC (17 years, 7 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.106: preferred, colored
Changes since revision 1.106: +3 -2 lines
Add file-system SYSVBFS.

Revision 1.106: download - view: text, markup, annotated - select for diffs
Wed Jun 27 23:12:03 2007 UTC (17 years, 7 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.105: preferred, colored
Changes since revision 1.105: +3 -2 lines
Add gcscide(4).

Revision 1.95.2.2: download - view: text, markup, annotated - select for diffs
Tue Jun 26 18:12:31 2007 UTC (17 years, 7 months ago) by garbled
Branches: ppcoea-renovation
Diff to: previous 1.95.2.1: preferred, colored
Changes since revision 1.95.2.1: +9 -4 lines
Sync with HEAD.

Revision 1.73.2.7: download - view: text, markup, annotated - select for diffs
Tue Jun 19 09:26:31 2007 UTC (17 years, 7 months ago) by liamjfoy
Branches: netbsd-4
Diff to: previous 1.73.2.6: preferred, colored; branchpoint 1.73: preferred, colored
Changes since revision 1.73.2.6: +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.105: download - view: text, markup, annotated - select for diffs
Sat Jun 16 12:35:55 2007 UTC (17 years, 7 months ago) by ad
Branches: MAIN
Diff to: previous 1.104: preferred, colored
Changes since revision 1.104: +2 -3 lines
-options I2OVERBOSE.

Revision 1.104: download - view: text, markup, annotated - select for diffs
Fri Jun 15 23:05:28 2007 UTC (17 years, 7 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.103: preferred, colored
Changes since revision 1.103: +3 -2 lines
Enable glxsb(4)

Revision 1.85.2.4: download - view: text, markup, annotated - select for diffs
Sat Jun 9 23:55:05 2007 UTC (17 years, 7 months ago) by ad
Branches: vmlocking
Diff to: previous 1.85.2.3: preferred, colored
Changes since revision 1.85.2.3: +6 -2 lines
Sync with head.

Revision 1.103: download - view: text, markup, annotated - select for diffs
Sat Jun 9 11:34:02 2007 UTC (17 years, 7 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.102: preferred, colored
Changes since revision 1.102: +3 -2 lines
Add zyd(4).

Revision 1.73.2.5.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 4 01:54:17 2007 UTC (17 years, 7 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.73.2.5: preferred, colored
Changes since revision 1.73.2.5: +3 -2 lines
Update to today's netbsd-4.

Revision 1.102: download - view: text, markup, annotated - select for diffs
Fri Jun 1 14:26:36 2007 UTC (17 years, 8 months ago) by blymn
Branches: MAIN
Diff to: previous 1.101: preferred, colored
Changes since revision 1.101: +5 -2 lines
Add smsc device

Revision 1.101: download - view: text, markup, annotated - select for diffs
Tue May 29 21:37:07 2007 UTC (17 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.100: preferred, colored
Changes since revision 1.100: +3 -2 lines
Add COMPAT_40 for struct ifreq changes.

Revision 1.85.2.3: download - view: text, markup, annotated - select for diffs
Sun May 27 12:27:26 2007 UTC (17 years, 8 months ago) by ad
Branches: vmlocking
Diff to: previous 1.85.2.2: preferred, colored
Changes since revision 1.85.2.2: +13 -3 lines
Sync with head.

Revision 1.73.2.6: download - view: text, markup, annotated - select for diffs
Fri May 25 07:12:00 2007 UTC (17 years, 8 months ago) by pavel
Branches: netbsd-4
Diff to: previous 1.73.2.5: preferred, colored; branchpoint 1.73: preferred, colored
Changes since revision 1.73.2.5: +3 -2 lines
Pull up following revision(s) (requested by riz in ticket #670):
	sys/netinet/tcp_input.c: revision 1.265
	sys/netinet/tcp_input.c: revision 1.266
	sys/arch/i386/conf/ALL: revision 1.98
Revert a small part of revision 1.254 - remove const qualifier from
the struct tcphdr * argument of tcp_dooptions().  RFC2385 support
(options TCP_SIGNATURE) needs to modify the header during options
processing, and this revision broke it.
OK yamt@.

Fix compilation in the TCP_SIGNATURE case:
	- don't use void * for pointer arithmetic
	- don't try to modify const parameters
A kernel with 'options TCP_SIGNATURE' works as well as it ever did, now.
(ie, clunky, but passable)

Add 'options TCP_SIGNATURE' to hopefully keep this code from
invisibly breaking periodically, as it's done a couple times.

Revision 1.100: download - view: text, markup, annotated - select for diffs
Thu May 24 13:36:57 2007 UTC (17 years, 8 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.99: preferred, colored
Changes since revision 1.99: +3 -3 lines
Indentation.

Revision 1.95.2.1: download - view: text, markup, annotated - select for diffs
Tue May 22 17:26:55 2007 UTC (17 years, 8 months ago) by matt
Branches: ppcoea-renovation
Diff to: previous 1.95: preferred, colored
Changes since revision 1.95: +8 -2 lines
Update to HEAD.

Revision 1.99: download - view: text, markup, annotated - select for diffs
Sun May 20 05:19:18 2007 UTC (17 years, 8 months ago) by dogcow
Branches: MAIN
Diff to: previous 1.98: preferred, colored
Changes since revision 1.98: +5 -2 lines
as pointed out by juan RP, uslsa should be in ALL as well.

Revision 1.98: download - view: text, markup, annotated - select for diffs
Fri May 18 22:38:51 2007 UTC (17 years, 8 months ago) by riz
Branches: MAIN
Diff to: previous 1.97: preferred, colored
Changes since revision 1.97: +3 -2 lines
Add 'options TCP_SIGNATURE' to hopefully keep this code from
invisibly breaking periodically, as it's done a couple times.

Revision 1.81.2.6: download - view: text, markup, annotated - select for diffs
Thu May 17 13:40:56 2007 UTC (17 years, 8 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.81.2.5: preferred, colored; next MAIN 1.82: preferred, colored
Changes since revision 1.81.2.5: +4 -2 lines
sync with head.

Revision 1.97: download - view: text, markup, annotated - select for diffs
Tue May 15 14:27:47 2007 UTC (17 years, 8 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-idlelwp-base8
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +3 -2 lines
Add agr(4).

Revision 1.73.2.5: download - view: text, markup, annotated - select for diffs
Sun May 13 06:52:51 2007 UTC (17 years, 8 months ago) by pavel
Branches: netbsd-4
Branch point for: wrstuden-fixsa
Diff to: previous 1.73.2.4: preferred, colored; branchpoint 1.73: preferred, colored
Changes since revision 1.73.2.4: +3 -2 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.96: download - view: text, markup, annotated - select for diffs
Tue May 8 16:55:55 2007 UTC (17 years, 8 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.95: preferred, colored
Changes since revision 1.95: +3 -2 lines
Add "ug* at acpi?" following the current scheme in the files.

Revision 1.81.2.5: download - view: text, markup, annotated - select for diffs
Mon May 7 10:54:55 2007 UTC (17 years, 8 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.81.2.4: preferred, colored
Changes since revision 1.81.2.4: +6 -2 lines
sync with head.

Revision 1.95: download - view: text, markup, annotated - select for diffs
Thu Apr 26 17:21:18 2007 UTC (17 years, 9 months ago) by dyoung
Branches: MAIN
Branch point for: ppcoea-renovation
Diff to: previous 1.94: preferred, colored
Changes since revision 1.94: +3 -2 lines
Add ATADEBUG to ease debugging.

Revision 1.94: download - view: text, markup, annotated - select for diffs
Thu Apr 19 14:34:35 2007 UTC (17 years, 9 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +5 -2 lines
ALL: add ug(4).
GENERIC/GENERIC_LAPTOP: add ug(4) commented out.

Revision 1.81.2.4: download - view: text, markup, annotated - select for diffs
Sun Apr 15 16:02:46 2007 UTC (17 years, 9 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.81.2.3: preferred, colored
Changes since revision 1.81.2.3: +12 -2 lines
sync with head.

Revision 1.85.2.2: download - view: text, markup, annotated - select for diffs
Tue Apr 10 13:23:01 2007 UTC (17 years, 9 months ago) by ad
Branches: vmlocking
Diff to: previous 1.85.2.1: preferred, colored
Changes since revision 1.85.2.1: +22 -5 lines
Sync with head.

Revision 1.88.2.2: download - view: text, markup, annotated - select for diffs
Thu Mar 29 19:27:26 2007 UTC (17 years, 10 months ago) by reinoud
Branches: reinoud-bufcleanup
Diff to: previous 1.88.2.1: preferred, colored; next MAIN 1.89: preferred, colored
Changes since revision 1.88.2.1: +15 -2 lines
Pullup to -current

Revision 1.93: download - view: text, markup, annotated - select for diffs
Thu Mar 29 13:11:14 2007 UTC (17 years, 10 months ago) by dillo
Branches: MAIN
CVS tags: thorpej-atomic-base, thorpej-atomic
Diff to: previous 1.92: preferred, colored
Changes since revision 1.92: +10 -0 lines
Now that all DRM drivers build (thanks jmcneill), readd them.

Revision 1.92: download - view: text, markup, annotated - select for diffs
Thu Mar 29 08:44:23 2007 UTC (17 years, 10 months ago) by dillo
Branches: MAIN
Diff to: previous 1.91: preferred, colored
Changes since revision 1.91: +2 -12 lines
Revert previous, mgadrm does not compile.

Revision 1.91: download - view: text, markup, annotated - select for diffs
Thu Mar 29 08:27:01 2007 UTC (17 years, 10 months ago) by dillo
Branches: MAIN
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +12 -2 lines
Add DRI drivers.

Revision 1.81.2.3: download - view: text, markup, annotated - select for diffs
Sat Mar 24 14:54:43 2007 UTC (17 years, 10 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.81.2.2: preferred, colored
Changes since revision 1.81.2.2: +13 -5 lines
sync with head.

Revision 1.90: download - view: text, markup, annotated - select for diffs
Tue Mar 20 21:29:28 2007 UTC (17 years, 10 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.89: preferred, colored
Changes since revision 1.89: +5 -2 lines
ALL: Enable INTEL_ONDEMAND_CLOCKMOD.
GENERIC: Add INTEL_ONDEMAND_CLOCKMOD disabled by default.

Revision 1.88.2.1: download - view: text, markup, annotated - select for diffs
Sun Mar 18 00:06:32 2007 UTC (17 years, 10 months ago) by reinoud
Branches: reinoud-bufcleanup
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +3 -3 lines
First attempt to bring branch in sync with HEAD

Revision 1.89: download - view: text, markup, annotated - select for diffs
Thu Mar 15 17:06:17 2007 UTC (17 years, 10 months ago) by dogcow
Branches: MAIN
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +3 -3 lines
Comment out VGA_RASTEROPS; even the fine manpage says that it's deprecated
in favor of wscons(4).

Revision 1.88: download - view: text, markup, annotated - select for diffs
Wed Mar 14 12:27:22 2007 UTC (17 years, 10 months ago) by drochner
Branches: MAIN
Branch point for: reinoud-bufcleanup
Diff to: previous 1.87: preferred, colored
Changes since revision 1.87: +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.87: download - view: text, markup, annotated - select for diffs
Tue Mar 13 23:49:38 2007 UTC (17 years, 10 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +6 -2 lines
ALL: add unichromefb.
GENERIC: add unichromefb (disabled by default).
GENERIC_LAPTOP: add unichromefb and vesafb (disabled by default).

Revision 1.85.2.1: download - view: text, markup, annotated - select for diffs
Tue Mar 13 16:49:58 2007 UTC (17 years, 10 months ago) by ad
Branches: vmlocking
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +3 -2 lines
Sync with head.

Revision 1.86: download - view: text, markup, annotated - select for diffs
Tue Mar 13 06:01:07 2007 UTC (17 years, 10 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +3 -2 lines
Add aiboost* at acpi.

Revision 1.81.2.2: download - view: text, markup, annotated - select for diffs
Mon Mar 12 05:48:19 2007 UTC (17 years, 10 months ago) by rmind
Branches: yamt-idlelwp
Diff to: previous 1.81.2.1: preferred, colored
Changes since revision 1.81.2.1: +5 -2 lines
Sync with HEAD.

Revision 1.85: download - view: text, markup, annotated - select for diffs
Tue Mar 6 11:28:46 2007 UTC (17 years, 10 months ago) by dillo
Branches: MAIN
Branch point for: vmlocking, mjf-ufs-trans
Diff to: previous 1.84: preferred, colored
Changes since revision 1.84: +3 -3 lines
Complete rename of hfsp to hfs, requested by thorpej.

Revision 1.84: download - view: text, markup, annotated - select for diffs
Mon Mar 5 23:19:18 2007 UTC (17 years, 10 months ago) by dillo
Branches: MAIN
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +3 -2 lines
Integrate apmlabel and HFS+ file system.

Revision 1.83: download - view: text, markup, annotated - select for diffs
Thu Mar 1 14:57:38 2007 UTC (17 years, 11 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +4 -2 lines
Add btuart(4).

Revision 1.81.2.1: download - view: text, markup, annotated - select for diffs
Tue Feb 27 16:51:31 2007 UTC (17 years, 11 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +5 -2 lines
- sync with head.
- move sched_changepri back to kern_synch.c as it doesn't know PPQ anymore.

Revision 1.57.30.2: download - view: text, markup, annotated - select for diffs
Mon Feb 26 09:06:49 2007 UTC (17 years, 11 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.57.30.1: preferred, colored; branchpoint 1.57: preferred, colored
Changes since revision 1.57.30.1: +35 -6 lines
sync with head.

Revision 1.73.2.4: download - view: text, markup, annotated - select for diffs
Tue Feb 20 14:12:08 2007 UTC (17 years, 11 months ago) by tron
Branches: netbsd-4
Diff to: previous 1.73.2.3: preferred, colored; branchpoint 1.73: preferred, colored
Changes since revision 1.73.2.3: +2 -4 lines
Remove entry for srt(4) pseudo device which isn't supported in the
"netbsd-4" branch.

This fixes build problems caused by ticket #434.

Revision 1.82: download - view: text, markup, annotated - select for diffs
Mon Feb 19 20:43:57 2007 UTC (17 years, 11 months ago) by xtraeme
Branches: MAIN
CVS tags: ad-audiomp-base, ad-audiomp
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +5 -2 lines
Add options SYSCALL_{STATS,TIMES,TIMES_HASCOUNTER}.

Revision 1.73.2.3: download - view: text, markup, annotated - select for diffs
Sun Feb 18 21:41:21 2007 UTC (17 years, 11 months ago) by tron
Branches: netbsd-4
Diff to: previous 1.73.2.2: preferred, colored; branchpoint 1.73: preferred, colored
Changes since revision 1.73.2.2: +17 -0 lines
Pull up following revision(s) (requested by hubertf in ticket #434):
	sys/arch/i386/conf/ALL: revision 1.78
Enable Altq and some others, sinced from GENERIC

Revision 1.81: download - view: text, markup, annotated - select for diffs
Sat Feb 10 18:00:59 2007 UTC (17 years, 11 months ago) by xtraeme
Branches: MAIN
Branch point for: yamt-idlelwp
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +6 -3 lines
Add pseudo-device cmos - see cmos(4)
Remove unit number in pseudo-device swwdog, by default it is 1.

Revision 1.60.2.4: download - view: text, markup, annotated - select for diffs
Fri Feb 9 21:03:49 2007 UTC (17 years, 11 months ago) by ad
Branches: newlock2
Diff to: previous 1.60.2.3: preferred, colored; branchpoint 1.60: preferred, colored; next MAIN 1.61: preferred, colored
Changes since revision 1.60.2.3: +9 -3 lines
Sync with HEAD.

Revision 1.80: download - view: text, markup, annotated - select for diffs
Sun Feb 4 17:49:02 2007 UTC (17 years, 11 months ago) by xtraeme
Branches: MAIN
CVS tags: post-newlock2-merge, newlock2-nbase, newlock2-base
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +9 -3 lines
Add the following pseudo-devices:

* lockstat - see lockstat(8)
* swwdog - see swwdog(4)

Revision 1.60.2.3: download - view: text, markup, annotated - select for diffs
Thu Feb 1 08:48:00 2007 UTC (17 years, 11 months ago) by ad
Branches: newlock2
Diff to: previous 1.60.2.2: preferred, colored; branchpoint 1.60: preferred, colored
Changes since revision 1.60.2.2: +22 -5 lines
Sync with head.

Revision 1.79: download - view: text, markup, annotated - select for diffs
Sun Jan 28 20:55:20 2007 UTC (18 years ago) by pooka
Branches: MAIN
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +3 -2 lines
add puffs

Revision 1.78: download - view: text, markup, annotated - select for diffs
Sat Jan 27 23:41:09 2007 UTC (18 years ago) by hubertf
Branches: MAIN
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +19 -2 lines
Enable Altq and some others, sinced from GENERIC

Revision 1.77: download - view: text, markup, annotated - select for diffs
Sat Jan 20 18:48:17 2007 UTC (18 years ago) by xtraeme
Branches: MAIN
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +4 -5 lines
viaenv(4) does not need anymore viapm.

Revision 1.60.2.2: download - view: text, markup, annotated - select for diffs
Fri Jan 12 01:00:49 2007 UTC (18 years ago) by ad
Branches: newlock2
Diff to: previous 1.60.2.1: preferred, colored; branchpoint 1.60: preferred, colored
Changes since revision 1.60.2.1: +8 -3 lines
Sync with head.

Revision 1.57.30.1: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:46:04 2006 UTC (18 years, 1 month ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +1396 -240 lines
sync with head.

Revision 1.73.2.2: download - view: text, markup, annotated - select for diffs
Thu Dec 21 13:44:00 2006 UTC (18 years, 1 month ago) by tron
Branches: netbsd-4
Diff to: previous 1.73.2.1: preferred, colored; branchpoint 1.73: preferred, colored
Changes since revision 1.73.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.73.2.1: download - view: text, markup, annotated - select for diffs
Thu Dec 21 12:46:21 2006 UTC (18 years, 1 month ago) by tron
Branches: netbsd-4
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +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.62.2.3: download - view: text, markup, annotated - select for diffs
Mon Dec 18 11:42:04 2006 UTC (18 years, 1 month ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.62.2.2: preferred, colored; branchpoint 1.62: preferred, colored; next MAIN 1.63: preferred, colored
Changes since revision 1.62.2.2: +4 -3 lines
sync with head.

Revision 1.76: download - view: text, markup, annotated - select for diffs
Sun Dec 17 23:02:06 2006 UTC (18 years, 1 month ago) by bouyer
Branches: MAIN
CVS tags: yamt-splraiseipl-base5, yamt-splraiseipl-base4
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +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.75: download - view: text, markup, annotated - select for diffs
Sun Dec 17 22:57:15 2006 UTC (18 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +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.74: download - view: text, markup, annotated - select for diffs
Mon Dec 11 15:24:28 2006 UTC (18 years, 1 month ago) by yamt
Branches: MAIN
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +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.62.2.2: download - view: text, markup, annotated - select for diffs
Sun Dec 10 07:16:01 2006 UTC (18 years, 1 month ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.62.2.1: preferred, colored; branchpoint 1.62: preferred, colored
Changes since revision 1.62.2.1: +8 -4 lines
sync with head.

Revision 1.73: download - view: text, markup, annotated - select for diffs
Wed Nov 29 13:41:28 2006 UTC (18 years, 2 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-splraiseipl-base3, netbsd-4-base
Branch point for: netbsd-4
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +5 -2 lines
Add pseudo-device drvctl... needed for drvctl -p <device> to show
device properties dictionary.

IMHO this should be enabled by default in GENERIC.

Revision 1.72: download - view: text, markup, annotated - select for diffs
Thu Nov 23 04:22:02 2006 UTC (18 years, 2 months ago) by rpaulo
Branches: MAIN
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +3 -2 lines
Add pseudo-device etherip.

Revision 1.60.2.1: download - view: text, markup, annotated - select for diffs
Sat Nov 18 21:29:17 2006 UTC (18 years, 2 months ago) by ad
Branches: newlock2
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +23 -13 lines
Sync with head.

Revision 1.71: download - view: text, markup, annotated - select for diffs
Sat Nov 11 18:47:10 2006 UTC (18 years, 2 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +3 -3 lines
Remove tmpfs's experimental status.  OK'ed by core@.

Revision 1.70: download - view: text, markup, annotated - select for diffs
Tue Oct 31 22:21:16 2006 UTC (18 years, 3 months ago) by joerg
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +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.69: download - view: text, markup, annotated - select for diffs
Wed Oct 25 13:56:15 2006 UTC (18 years, 3 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +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.62.2.1: download - view: text, markup, annotated - select for diffs
Sun Oct 22 06:04:43 2006 UTC (18 years, 3 months ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +14 -7 lines
sync with head

Revision 1.68: download - view: text, markup, annotated - select for diffs
Sat Oct 21 14:10:33 2006 UTC (18 years, 3 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-splraiseipl-base2
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +3 -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.67: download - view: text, markup, annotated - select for diffs
Fri Oct 13 21:02:19 2006 UTC (18 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +4 -4 lines
remove debug options

Revision 1.66: download - view: text, markup, annotated - select for diffs
Fri Oct 13 21:00:51 2006 UTC (18 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +10 -5 lines
merge in 1.787

Revision 1.65: download - view: text, markup, annotated - select for diffs
Sun Oct 8 16:56:18 2006 UTC (18 years, 3 months ago) by rpaulo
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +3 -2 lines
Add kttcp.

Revision 1.64: download - view: text, markup, annotated - select for diffs
Sun Oct 1 09:53:08 2006 UTC (18 years, 4 months ago) by itohy
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +3 -3 lines
Use ATA timing, instead of busmaster wait, for adding waits.
Use default wait value 0x01.

Revision 1.63: download - view: text, markup, annotated - select for diffs
Tue Sep 19 13:58:55 2006 UTC (18 years, 4 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +5 -5 lines
Fix definition of some options to be 'options<space><tab>' for consistency.

Revision 1.57.44.2: download - view: text, markup, annotated - select for diffs
Thu Sep 14 12:31:10 2006 UTC (18 years, 4 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.57.44.1: preferred, colored; branchpoint 1.57: preferred, colored; next MAIN 1.58: preferred, colored
Changes since revision 1.57.44.1: +12 -6 lines
sync with head.

Revision 1.62: download - view: text, markup, annotated - select for diffs
Sun Sep 10 15:45:56 2006 UTC (18 years, 4 months ago) by plunky
Branches: MAIN
CVS tags: yamt-splraiseipl-base, yamt-pdpolicy-base9
Branch point for: yamt-splraiseipl
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +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.61: download - view: text, markup, annotated - select for diffs
Sun Sep 10 02:28:33 2006 UTC (18 years, 4 months ago) by riz
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +4 -2 lines
Add msk and mskc.

Revision 1.57.40.1: download - view: text, markup, annotated - select for diffs
Sat Sep 9 02:39:53 2006 UTC (18 years, 4 months ago) by rpaulo
Branches: rpaulo-netinet-merge-pcb
Diff to: previous 1.57: preferred, colored; next MAIN 1.58: preferred, colored
Changes since revision 1.57: +1381 -240 lines
sync with head

Revision 1.60: download - view: text, markup, annotated - select for diffs
Thu Sep 7 14:23:44 2006 UTC (18 years, 4 months ago) by itohy
Branches: MAIN
CVS tags: rpaulo-netinet-merge-pcb-base
Branch point for: newlock2
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +5 -2 lines
Add njata* at cardbus?

Revision 1.57.44.1: download - view: text, markup, annotated - select for diffs
Sun Sep 3 15:22:58 2006 UTC (18 years, 4 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +1378 -240 lines
sync with head.

Revision 1.59: download - view: text, markup, annotated - select for diffs
Sat Aug 26 20:26:45 2006 UTC (18 years, 5 months ago) by christos
Branches: MAIN
CVS tags: yamt-pdpolicy-base8
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +3 -5 lines
PR/34283: Gene ENonymous: Add IPFILTER_LOOKUP to the default kernel options
Also remove CCITT,NS,NIP

Revision 1.58: download - view: text, markup, annotated - select for diffs
Thu Aug 17 19:56:14 2006 UTC (18 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +1380 -240 lines
the kernels Arnaud and I used to fix the debugging options.

Revision 1.57
Thu Nov 3 18:14:54 1994 UTC (30 years, 3 months ago) by mycroft
Branches: MAIN
CVS tags: yamt-vop-base3, yamt-vop-base2, yamt-vop-base, yamt-vop, yamt-uio_vmspace-base5, yamt-uio_vmspace, yamt-readahead-base3, yamt-readahead-base2, yamt-readahead-base, yamt-readahead, yamt-pdpolicy-base7, yamt-pdpolicy-base6, yamt-pdpolicy-base5, yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, yamt-pdpolicy-base, yamt-km-base4, yamt-km-base3, yamt-km-base2, yamt-km-base, yamt-km, thorpej_scsipi_nbase, thorpej_scsipi_beforemerge, thorpej_scsipi_base, thorpej_scsipi, thorpej-vnode-attr-base, thorpej-vnode-attr, thorpej-signal-base, thorpej-signal, thorpej-mips-cache-base, thorpej-mips-cache, thorpej-devvp-base, thorpej-devvp, sommerfeld_i386mpnext, simonb-timecounters-base, simonb-timecounters, simonb-timcounters-final, newlock-base, newlock, nathanw_sa_before_merge, nathanw_sa_base, marc-pcmcia-base, ktrace-lwp-base, ktrace-lwp, kqueue-base, kqueue, kent-audio2-base, kent-audio2, ifpoll-base, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw, gehenna-devsw-base, gehenna-devsw, gdamore-uart-base, gdamore-uart, fvdl-softdep-base, elad-kernelauth-nbase, eeh-devprop-base, eeh-devprop, chs-ubc2-newbase
Branch point for: yamt-pdpolicy, yamt-lazymbuf, rpaulo-netinet-merge-pcb
FILE REMOVED
Changes since revision 1.56: +1 -1 lines
Clean up deleted files.

Revision 1.56: download - view: text, markup, annotated - select for diffs
Thu Oct 27 04:14:46 1994 UTC (30 years, 3 months ago) by cgd
Branches: MAIN
CVS tags: before_newconf_base
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +1 -2 lines
new RCS ID format.

Revision 1.55: download - view: text, markup, annotated - select for diffs
Tue Oct 25 21:31:32 1994 UTC (30 years, 3 months ago) by cgd
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +3 -2 lines
add COMPAT_10

Revision 1.54: download - view: text, markup, annotated - select for diffs
Mon Jul 4 20:22:26 1994 UTC (30 years, 7 months ago) by cgd
Branches: MAIN
CVS tags: netbsd-1-0-base, netbsd-1-0-RELEASE, netbsd-1-0-PATCH1, netbsd-1-0-PATCH06, netbsd-1-0-PATCH05, netbsd-1-0-PATCH04, netbsd-1-0-PATCH03, netbsd-1-0-PATCH02, netbsd-1-0-PATCH0, netbsd-1-0
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +3 -3 lines
ISOFS -> CD9660

Revision 1.53: download - view: text, markup, annotated - select for diffs
Fri Jul 1 20:09:56 1994 UTC (30 years, 7 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +2 -2 lines
is0 --> le0, and give trinity one.

Revision 1.52: download - view: text, markup, annotated - select for diffs
Sat May 21 08:37:27 1994 UTC (30 years, 8 months ago) by cgd
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +1 -4 lines
kiss maxfdescs goodbye

Revision 1.51: download - view: text, markup, annotated - select for diffs
Thu May 19 09:11:57 1994 UTC (30 years, 8 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +3 -5 lines
Add network foo.

Revision 1.50: download - view: text, markup, annotated - select for diffs
Thu May 19 07:17:29 1994 UTC (30 years, 8 months ago) by cgd
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +3 -3 lines
kill all sysv compat stuff, for a bit...

Revision 1.49: download - view: text, markup, annotated - select for diffs
Mon May 9 23:10:40 1994 UTC (30 years, 8 months ago) by cgd
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +2 -2 lines
no more SYSVSHM; commented out

Revision 1.48: download - view: text, markup, annotated - select for diffs
Thu May 5 00:03:45 1994 UTC (30 years, 9 months ago) by cgd
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +2 -2 lines
comment out hp0; at charles's prompting

Revision 1.47: download - view: text, markup, annotated - select for diffs
Wed Apr 20 23:39:19 1994 UTC (30 years, 9 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +27 -27 lines
Remove all `bio', `tty', `net', and `vector' specifications.

Revision 1.46: download - view: text, markup, annotated - select for diffs
Fri Apr 15 00:25:12 1994 UTC (30 years, 9 months ago) by cgd
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +4 -1 lines
add COMPAT_09 to all kernels, Pentium support to generic kernels

Revision 1.45: download - view: text, markup, annotated - select for diffs
Wed Apr 13 07:53:02 1994 UTC (30 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +2 -2 lines
ep driver doesn't need port/irq, figures out by itself

Revision 1.44: download - view: text, markup, annotated - select for diffs
Tue Mar 29 04:40:38 1994 UTC (30 years, 10 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +56 -52 lines
Update for new code.

Revision 1.43: download - view: text, markup, annotated - select for diffs
Wed Mar 9 22:55:57 1994 UTC (30 years, 10 months ago) by hpeyerl
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -2 lines
Make ep0 reflect factory default settings rather than my own.

Revision 1.42: download - view: text, markup, annotated - select for diffs
Wed Mar 9 21:22:31 1994 UTC (30 years, 10 months ago) by ws
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +4 -1 lines
Make FFS optional

Revision 1.41: download - view: text, markup, annotated - select for diffs
Wed Mar 9 02:57:21 1994 UTC (30 years, 10 months ago) by cgd
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +2 -1 lines
add I586_CPU at the suggestion of mike.long@analog.com

Revision 1.40: download - view: text, markup, annotated - select for diffs
Fri Feb 18 19:56:46 1994 UTC (30 years, 11 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +3 -3 lines
Update for new lpt.

Revision 1.39: download - view: text, markup, annotated - select for diffs
Wed Jan 26 07:29:35 1994 UTC (31 years ago) by hpeyerl
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +1 -2 lines
ne0 goes away.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Tue Jan 25 04:24:59 1994 UTC (31 years ago) by hpeyerl
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +1 -3 lines
(woops; forgot this one) make ec and we go away.

Revision 1.37: download - view: text, markup, annotated - select for diffs
Sat Jan 22 19:19:14 1994 UTC (31 years ago) by hpeyerl
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -1 lines
Add ep driver

Revision 1.36: download - view: text, markup, annotated - select for diffs
Sun Jan 16 01:36:15 1994 UTC (31 years ago) by cgd
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +4 -4 lines
turn on SYSVSHM and note the default value of SHMMAXPGS

Revision 1.35: download - view: text, markup, annotated - select for diffs
Sun Jan 9 19:27:36 1994 UTC (31 years ago) by cgd
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +7 -1 lines
add entries for the 'audio' pseudo-dev and for the new soundblaster driver

Revision 1.34: download - view: text, markup, annotated - select for diffs
Thu Jan 6 12:07:44 1994 UTC (31 years ago) by cgd
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +5 -2 lines
add 'maxfdescs 2048' to everything.  i'm sick of the warning...

Revision 1.33: download - view: text, markup, annotated - select for diffs
Tue Dec 21 05:27:35 1993 UTC (31 years, 1 month ago) by brezak
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +4 -1 lines
Add pseudo-device vn

Revision 1.32: download - view: text, markup, annotated - select for diffs
Sun Nov 14 14:40:44 1993 UTC (31 years, 2 months ago) by cgd
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +7 -1 lines
add SYSVMSG and SYSVSEM

Revision 1.31: download - view: text, markup, annotated - select for diffs
Thu Nov 4 09:12:30 1993 UTC (31 years, 2 months ago) by cgd
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +5 -1 lines
add mcd: Mitsumi CD driver by Holger Veit and Brian Moore

Revision 1.30: download - view: text, markup, annotated - select for diffs
Tue Nov 2 06:19:46 1993 UTC (31 years, 3 months ago) by glass
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +3 -2 lines
tablet line discipline compiles and probably works now.

Revision 1.29: download - view: text, markup, annotated - select for diffs
Wed Oct 20 23:04:52 1993 UTC (31 years, 3 months ago) by cgd
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +1 -4 lines
get rid of ACCOUNTING option.  it's mandatory, and there's no define any more.

Revision 1.28: download - view: text, markup, annotated - select for diffs
Sun Sep 19 19:11:24 1993 UTC (31 years, 4 months ago) by brezak
Branches: MAIN
CVS tags: magnum-base
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +4 -1 lines
Add USER_LDT option.

Revision 1.27: download - view: text, markup, annotated - select for diffs
Tue Sep 14 20:01:19 1993 UTC (31 years, 4 months ago) by brezak
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -2 lines
No need to lospecifiy load address at 1M, now the default for any kernel.

Revision 1.26: download - view: text, markup, annotated - select for diffs
Tue Sep 7 00:36:27 1993 UTC (31 years, 4 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +33 -13 lines
Add a bunch more shit that was missing.

Revision 1.25: download - view: text, markup, annotated - select for diffs
Tue Sep 7 00:25:50 1993 UTC (31 years, 4 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +49 -17 lines
Rearrange SCSI probing to actually work.

Revision 1.24: download - view: text, markup, annotated - select for diffs
Mon Sep 6 23:35:19 1993 UTC (31 years, 4 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +2 -2 lines
Rearrange ethernet probing in the vain hope that maybe, just maybe, the ne0
probe's effect on ed0 will be reversed when the latter is reset.

Revision 1.23: download - view: text, markup, annotated - select for diffs
Mon Sep 6 23:31:33 1993 UTC (31 years, 4 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +6 -4 lines
Comment out we0 and ec0, and add equivalent ed0 and ed1.

Revision 1.22: download - view: text, markup, annotated - select for diffs
Mon Sep 6 23:29:33 1993 UTC (31 years, 4 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +94 -39 lines
Add a generous dose of comments.

Revision 1.21: download - view: text, markup, annotated - select for diffs
Mon Sep 6 21:15:56 1993 UTC (31 years, 4 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -2 lines
Change `NFS' to `NFSSERVER,NFSCLIENT'.

Revision 1.20: download - view: text, markup, annotated - select for diffs
Mon Sep 6 18:37:56 1993 UTC (31 years, 4 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +8 -7 lines
Correct I/O ports for mice.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Sun Sep 5 22:34:12 1993 UTC (31 years, 4 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -2 lines
Second wd0 should be wd1.

Revision 1.18: download - view: text, markup, annotated - select for diffs
Mon Aug 30 07:07:54 1993 UTC (31 years, 5 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -4 lines
pagers are not options, not pseudo-devices

Revision 1.17: download - view: text, markup, annotated - select for diffs
Sun Aug 29 01:54:25 1993 UTC (31 years, 5 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +2 -2 lines
There is no longer any good reason to allocate a small number of ptys.
Increased to 32 so people will not bitch at me next time around.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Fri Aug 27 23:55:28 1993 UTC (31 years, 5 months ago) by brezak
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +4 -2 lines
Load at 1M and turn-on MACHINE_NONCONTIG option.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Tue Aug 24 21:39:35 1993 UTC (31 years, 5 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +6 -4 lines
Add ACCOUNTING and GATEWAY options.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Sat Aug 14 06:38:06 1993 UTC (31 years, 5 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -1 lines
ppp from paul mackerras

Revision 1.13: download - view: text, markup, annotated - select for diffs
Sat Aug 7 08:03:26 1993 UTC (31 years, 5 months ago) by cgd
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2 lines
merge in changes from netbsd-0-9-ALPHA2

Revision 1.12.2.1: download - view: text, markup, annotated - select for diffs
Fri Aug 6 08:28:08 1993 UTC (31 years, 5 months ago) by cgd
Branches: netbsd-0-9
CVS tags: netbsd-0-9-patch-001, netbsd-0-9-RELEASE, netbsd-0-9-BETA, netbsd-0-9-ALPHA2
Diff to: previous 1.12: preferred, colored; next MAIN 1.13: preferred, colored
Changes since revision 1.12: +2 -2 lines
bms -> mms

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sun Jun 27 05:33:18 1993 UTC (31 years, 7 months ago) by andrew
Branches: MAIN
CVS tags: netbsd-0-9-base, netbsd-0-9-ALPHA
Branch point for: netbsd-0-9
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +6 -1 lines
Added bus mice.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Sun Jun 6 22:20:03 1993 UTC (31 years, 7 months ago) by cgd
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +1 -6 lines
cleanup, add DDB to dist. floppy kernels, and get rid of f*@#ing "as"

Revision 1.10: download - view: text, markup, annotated - select for diffs
Sun Jun 6 04:15:29 1993 UTC (31 years, 7 months ago) by cgd
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +5 -5 lines
incorporate Bruce Evans' interrupt changes, as hacked by Rod grimes,
for patchkit patch 158.  it appears to work well.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Thu Jun 3 01:30:22 1993 UTC (31 years, 8 months ago) by cgd
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -1 lines
add 'options "COMPAT_NOMID"' for compatibility w/i386 binaries w/no
a_mid in their exec structure (and therefore, in the NWO, having
an a_mid of MID_ZERO)

Revision 1.8: download - view: text, markup, annotated - select for diffs
Thu May 20 14:32:19 1993 UTC (31 years, 8 months ago) by cgd
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +4 -2 lines
update config files for correct "cpu" usage

Revision 1.7: download - view: text, markup, annotated - select for diffs
Fri May 7 08:32:23 1993 UTC (31 years, 8 months ago) by cgd
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +6 -3 lines
add PC speaker driver pseudo-device

Revision 1.6: download - view: text, markup, annotated - select for diffs
Tue May 4 05:37:52 1993 UTC (31 years, 9 months ago) by cgd
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2 lines
make serial ports have right numbers, and add slip to generic kernels

Revision 1.5: download - view: text, markup, annotated - select for diffs
Wed Apr 28 06:39:20 1993 UTC (31 years, 9 months ago) by cgd
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +1 -1 lines
bsd->netbsd

Revision 1.4: download - view: text, markup, annotated - select for diffs
Wed Apr 28 05:31:04 1993 UTC (31 years, 9 months ago) by cgd
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +1 -1 lines
get rid of the silly quotes

Revision 1.3: download - view: text, markup, annotated - select for diffs
Wed Apr 28 05:28:58 1993 UTC (31 years, 9 months ago) by cgd
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +1 -1 lines
new kernel name is bsd

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat Apr 10 15:55:16 1993 UTC (31 years, 9 months ago) by glass
Branches: MAIN
CVS tags: netbsd-alpha-1, netbsd-0-8
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +5 -5 lines
Added ISO,CITTT,NS stuff.  still missing a few things.  up to 798k

Revision 1.1: download - view: text, markup, annotated - select for diffs
Sat Apr 10 12:03:36 1993 UTC (31 years, 9 months ago) by glass
Branches: MAIN
fixed to be compliant, subservient, and to take advantage of the newly
hacked config(8)
ALL config file should gradually get all the configurable options,drivers,etc

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>