CVS log for src/sys/arch/i386/conf/GENERIC
Up to [cvs.NetBSD.org] / src / sys / arch / i386 / conf
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.1260: download - view: text, markup, annotated - select for diffs
Thu Mar 27 12:22:59 2025 UTC (4 weeks ago) by riastradh
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.1259: preferred, colored
Changes since revision 1.1259: +2 -3
lines
x86: Enable vio9p(4) out of the box.
PR kern/59211: vio9p(4): missing from various GENERICs and MAKEDEVs
Revision 1.1259: download - view: text, markup, annotated - select for diffs
Thu Mar 27 12:22:44 2025 UTC (4 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.1258: preferred, colored
Changes since revision 1.1258: +5 -9
lines
virtio(4): Consolidate kernel configs.
No functional change intended.
Leave `# XXX ?' comments where I don't know why the driver in
question is excluded. (Typical reason is that PAGE_SIZE is not 4096
but I didn't investigate -- if you do investigate, please either
update the comment if you determine a reason, or enable the driver if
you don't.)
PR kern/59211: vio9p(4): missing from various GENERICs and MAKEDEVs
Revision 1.1243.2.5: download - view: text, markup, annotated - select for diffs
Wed Oct 9 13:25:11 2024 UTC (6 months, 2 weeks ago) by martin
Branches: netbsd-10
CVS tags: netbsd-10-1-RELEASE
Diff to: previous 1.1243.2.4: preferred, colored; branchpoint 1.1243: preferred, colored; next MAIN 1.1244: preferred, colored
Changes since revision 1.1243.2.4: +5 -2
lines
Pull up following revision(s) (requested by riastradh in ticket #939):
distrib/sets/lists/debug/module.md.amd64: revision 1.18
sys/modules/Makefile: revision 1.292
lib/libc/gen/arc4random.c: revision 1.34
lib/libc/gen/arc4random.c: revision 1.35
lib/libc/gen/arc4random.c: revision 1.36
lib/libc/gen/arc4random.c: revision 1.37
sys/kern/kern_entropy.c: revision 1.70
lib/libc/gen/arc4random.c: revision 1.38
sys/kern/kern_entropy.c: revision 1.71
lib/libc/gen/getentropy.3: revision 1.8
distrib/sets/lists/modules/md.amd64: revision 1.103
share/man/man4/rnd.4: revision 1.42
share/man/man4/rnd.4: revision 1.44
lib/libc/include/arc4random.h: revision 1.1
distrib/sets/lists/man/mi: revision 1.1786
sys/arch/i386/conf/GENERIC: revision 1.1258
sys/modules/acpivmgenid/acpivmgenid.ioconf: revision 1.1
sys/arch/amd64/conf/ALL: revision 1.190
distrib/sets/lists/debug/mi: revision 1.446
sys/arch/i386/conf/ALL: revision 1.521
lib/libc/gen/Makefile.inc: revision 1.219
distrib/sets/lists/debug/module.md.i386: revision 1.12
sys/dev/acpi/acpi_vmgenid.c: revision 1.1
sys/dev/acpi/acpi_vmgenid.c: revision 1.2
lib/libc/include/reentrant.h: revision 1.22
sys/arch/evbarm/conf/GENERIC64: revision 1.219
share/man/man4/Makefile: revision 1.735
distrib/sets/lists/modules/md.i386: revision 1.100
distrib/sets/lists/tests/mi: revision 1.1334
lib/libc/gen/arc4random.3: revision 1.22
sys/dev/acpi/files.acpi: revision 1.133
lib/libc/gen/arc4random.3: revision 1.23
tests/lib/libc/gen/t_arc4random.c: revision 1.1
sys/sys/entropy.h: revision 1.6
sys/arch/amd64/conf/GENERIC: revision 1.614
sys/modules/acpivmgenid/Makefile: revision 1.1
share/man/man4/acpivmgenid.4: revision 1.1
lib/libc/gen/Makefile.inc: revision 1.220
tests/lib/libc/gen/Makefile: revision 1.56
share/man/man4/acpivmgenid.4: revision 1.2
share/man/man4/acpivmgenid.4: revision 1.3
(all via patch)
Catch up with all the lint warnings since exit on warning was disabled.
Disable 'missing header declaration' and 'nested extern' warnings for now.
acpivmgenid(4): New driver for virtual machine generation ID.
Added to amd64/ALL and i386/ALL kernel configurations, and made
available as a loadable module acpivmgenid.kmod on x86, for now.
TBD: Add to all ACPI-supporting GENERIC kernels.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
entropy(9): Factor out subroutines to reset and gather entropy.
`Reset' means we keep the data in the pool, but assume it had zero
entropy. `Gather' means we request samples from all on-demand
sources and wait for the synchronous ones to complete.
No functional change intended, other than to expose new symbols --
just preparation to expose these to acpivmgenid(4), so it can use
these when the VM host notifies us that we, the guest, have been
cloned.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
acpivmgenid(4): Reset and gather entropy on VM clone notification.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
arc4random(3): Reseed if system entropy epoch changes.
This can happen, for example, if the system is a VM instance, and the
VM is cloned.
This incurs the cost of a system call on every arc4random call, which
is unfortunate, but
1. we don't currently have a (machine-independent) mechanism for
exposing a read-only page to userland shared by the kernel to
enable a cheaper access path to the entropy epoch; and
2. the algorithm here -- a simple application of ChaCha -- is likely
also a bottleneck and could be much cheaper by
(a) using sys/crypto/chacha for machine-dependent vectorized
ChaCha code, and
(b) filling a buffer (somewhere between a cipher block and a page)
in a batch at a time, instead of running ChaCha to generate
only 32 bytes at a time.
So although this might be a performance hit, the security benefit is
worthwhile and we have a clear path to do better than reversing the
performance hit later.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
acpivmgenid(4): Nix BUGS that have been squashed.
Reference kern.entropy.epoch for the remaining bug (which is a
performance issue, not a security issue).
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
entropy(9): Allow unprivileged reads of sysctl kern.entropy.epoch.
Applications need this in order to know when to reseed. (We should
also expose it through a page shared read-only with userland for
cheaper access, but until we do, let's let applications get at it
through sysctl.)
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
arc4random.c: Fix test program.
This isn't wired up anywhere, but let's reduce the bitrot. It was
helpful in reminding me that kern.entropy.epoch was, for reasons I
can't remember, restricted to privileged access.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
amd64, evbarm, i386: Add acpivmgenid(4) to GENERIC.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
rnd(4): Document kern.entropy.epoch is unprivileged and elaborate.
Cross-reference acpivmgenid(4).
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
arc4random(3): Note that arc4random respects kern.entropy.epoch.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
Add debug info for new acpivmgenid module
arc4random(3): Add automatic tests.
This verifies that:
- arc4random zeroes its state and reseeds itself on fork
- arc4random reseeds itself on entropy consolidation (e.g., VM clone)
- arc4random falls back to global state if it can't allocate local
state because address space limits cause mmap to fail
NOTE: This adds a new libc symbol __arc4random_global, but it's in
the reserved namespace and only used by t_arc4random, so no libc
minor bump.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
getentropy(3): Note intent to reseed on VM clone, and caveats.
Tidy markup and pacify some mandoc -Tlint complaints while here.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
Bump dates on man pages recently updated to mention VM clones.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
arc4random(3): Pacify some of lint's complaints.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
arc4random: suppress another lint warning
Revision 1.1258: download - view: text, markup, annotated - select for diffs
Tue Aug 27 00:56:16 2024 UTC (7 months, 4 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.1257: preferred, colored
Changes since revision 1.1257: +3 -2
lines
amd64, evbarm, i386: Add acpivmgenid(4) to GENERIC.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
Revision 1.1257: download - view: text, markup, annotated - select for diffs
Tue Jul 16 12:01:19 2024 UTC (9 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.1256: preferred, colored
Changes since revision 1.1256: +3 -2
lines
viocon(4): Add to various kernel configs.
Revision 1.1243.2.4: download - view: text, markup, annotated - select for diffs
Thu Jun 20 11:00:06 2024 UTC (10 months ago) by martin
Branches: netbsd-10
Diff to: previous 1.1243.2.3: preferred, colored; branchpoint 1.1243: preferred, colored
Changes since revision 1.1243.2.3: +3 -3
lines
Pull up following revision(s) (requested by andvar in ticket #700):
sys/arch/i386/conf/GENERIC: revision 1.1256
share/man/man4/man4.x86/viac7temp.4: revision 1.1
sys/arch/x86/x86/viac7temp.c: revision 1.11
share/man/man4/man4.x86/Makefile: revision 1.24
share/man/man4/man4.i386/viac7temp.4: file removal
share/man/man4/man4.i386/Makefile: revision 1.81
distrib/sets/lists/man/mi: revision 1.1773
sys/arch/amd64/conf/GENERIC: revision 1.612
sys/arch/amd64/conf/ALL: revision 1.188
sys/arch/i386/conf/ALL: revision 1.519
viac7temp(4): rewrite temperature sensor to read value from MSR instead of using
documented cpuid instruction and eax register.
This approach is adapted from linux via-cputemp.c, no official documentation is
currently available. However, msr value seems to work on all tested CPUs while
documented cpuid instruction typically reports 0, even for my C7-D CPU.
msr value seems to have temperature in Celsius in lower 24-bits without fraction
(thus "msr & 0xffffff;" is used).
Tested on my personal systems based on CPUs below (i386 and amd64):
C7-D 1.6GHz (i386 only), Nano X2 L4350E, Nano X2 U4300, U2300 Nano, KX-U6580.
Also got one response via email which was based on Nano X2 L4050 (VE-900).
Nano reports independent values for each core.
KX-U6580 seems to show the same value for all cores but more testing is needed.
Since it works on amd64 capable CPUs, adding driver to GENERIC kernel config.
Also moving viac7temp man page to x86 instead of i386 (with updates).
In theory the change should add support for all VIA Nano CPUs and Zhaoxin CPUs
at least up to KX-6000(G) series.
In the future I may need to introduce amd64 kernel module as well.
Patch mainly reviewed by riastradh.
Revision 1.1256: download - view: text, markup, annotated - select for diffs
Tue Apr 30 19:35:28 2024 UTC (11 months, 3 weeks ago) by andvar
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs
Diff to: previous 1.1255: preferred, colored
Changes since revision 1.1255: +3 -3
lines
viac7temp(4): rewrite temperature sensor to read value from MSR instead of using
documented cpuid instruction and eax register.
This approach is adapted from linux via-cputemp.c, no official documentation is
currently available. However, msr value seems to work on all tested CPUs while
documented cpuid instruction typically reports 0, even for my C7-D CPU.
msr value seems to have temperature in Celsius in lower 24-bits without fraction
(thus "msr & 0xffffff;" is used).
Tested on my personal systems based on CPUs below (i386 and amd64):
C7-D 1.6GHz (i386 only), Nano X2 L4350E, Nano X2 U4300, U2300 Nano, KX-U6580.
Also got one response via email which was based on Nano X2 L4050 (VE-900).
Nano reports independent values for each core.
KX-U6580 seems to show the same value for all cores but more testing is needed.
Since it works on amd64 capable CPUs, adding driver to GENERIC kernel config.
Also moving viac7temp man page to x86 instead of i386 (with updates).
In theory the change should add support for all VIA Nano CPUs and Zhaoxin CPUs
at least up to KX-6000(G) series.
In the future I may need to introduce amd64 kernel module as well.
Plan to pullup to at least netbsd-10.
Patch mainly reviewed by riastradh.
Revision 1.1255: download - view: text, markup, annotated - select for diffs
Sun Apr 21 14:11:12 2024 UTC (12 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1254: preferred, colored
Changes since revision 1.1254: +4 -2
lines
apei(4), acpihed(4): Enable in x86 GENERIC.
Let's just see how this works out in practice. Might need to reduce
the overhead of each GHES on machines with thousands of them, but
we'll see.
PR kern/58046
Revision 1.1254: download - view: text, markup, annotated - select for diffs
Tue Apr 2 22:56:50 2024 UTC (12 months, 3 weeks ago) by charlotte
Branches: MAIN
Diff to: previous 1.1253: preferred, colored
Changes since revision 1.1253: +3 -2
lines
Mention DKWEDGE_METHOD_TOS in several kernel config files
Revision 1.1253: download - view: text, markup, annotated - select for diffs
Mon Jan 29 18:27:13 2024 UTC (14 months, 3 weeks ago) by christos
Branches: MAIN
Diff to: previous 1.1252: preferred, colored
Changes since revision 1.1252: +2 -4
lines
PR/57889: Ricardo Branco: ext2fs does not have user immutable and append
file flags, only system ones. Restrict those to the superuser. Before
the behavior was controlled by EXT2FS_SYSTEM_FLAGS. Make that behavior the
default.
Revision 1.1243.2.3: download - view: text, markup, annotated - select for diffs
Fri Nov 3 08:56:36 2023 UTC (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.1243.2.2: preferred, colored; branchpoint 1.1243: preferred, colored
Changes since revision 1.1243.2.2: +3 -2
lines
Pull up following revision(s) (requested by msaitoh in ticket #446):
sys/dev/pci/if_eqos_pci.c: revision 1.3
sys/arch/i386/conf/GENERIC: revision 1.1251
sys/arch/i386/conf/GENERIC: revision 1.1252
sys/arch/amd64/conf/GENERIC: revision 1.607
sys/arch/amd64/conf/GENERIC: revision 1.608
sys/dev/ic/dwc_eqos.c: revision 1.20
sys/dev/ic/dwc_eqos.c: revision 1.21
share/man/man4/eqos.4: revision 1.2
sys/dev/ic/dwc_eqos.c: revision 1.22
sys/dev/ic/dwc_eqos_reg.h: revision 1.7
sys/dev/ic/dwc_eqos.c: revision 1.23
sys/dev/ic/dwc_eqos_reg.h: revision 1.8
sys/dev/ic/dwc_eqos.c: revision 1.24
sys/dev/ic/dwc_eqos.c: revision 1.25
sys/dev/ic/dwc_eqos.c: revision 1.26
sys/dev/ic/dwc_eqos.c: revision 1.27
sys/dev/ic/dwc_eqos_var.h: revision 1.5
sys/dev/ic/dwc_eqos.c: revision 1.28
sys/dev/ic/dwc_eqos_var.h: revision 1.6
sys/dev/ic/dwc_eqos.c: revision 1.29
sys/dev/ic/dwc_eqos.c: revision 1.18
sys/dev/ic/dwc_eqos.c: revision 1.19
sys/dev/pci/files.pci: revision 1.448
sys/dev/pci/if_eqos_pci.c: revision 1.1
sys/dev/pci/if_eqos_pci.c: revision 1.2
eqos(4): Fix definition of GMAC_MAC_HW_FEATURE1_RXFIFOSIZE.
eqos(4): Fix a bug that the MAC address is swapped.
Don't swap the MAC address in eqos_get_eaddr(). Other OSes except FreeBSD
(which was based on NetBSD's) don't swap it. With this change, my own
OnLogic Helix 330's MAC address becomes correct. The OUI is 84:8b:cd:4d.
It's owned by Logic Supply and they were acquired by OnLogic.
On Quartz64 with UEFI, the MAC address is wrongly set and the multicast
bit might be set. To do workaround, clear the bit if it's set.
eqos(4): Add missing clock range.
eqos(4): Accept if snpsver == 0x52. Tested with Intel Elkhart Lake.
TODO:
Multiqueue support.
Add watchdog timer.
Add detach function.
eqos(4): Add initial support for Intel Elkhart Lake internal Ethernet devices.
- Only tested on PSE SGMII 1G Ethernet MAC with MaxLinear GPY115.
- I don't know why dmat64 doesn't work. eqos_attach() have a special
code if EQOS_HW_FEATURE_ADDR64_32BIT(sc) is true, but it seems it doesn't
work.
- TODO:
Multiqueue support.
Detach support.
eqos(4): Fix compile error for arch that sizeof(bus_size_t) == 4 (i386).
Trailing whitespace
eqos(4): Disable eqos(4) by default because it's not stable on x86.
eqos(4): KNF. No functional change.
eqos(4): Add and modify some DPRINTF()s.
eqos(4): Add sysctls for debugging.
eqos(4): Use EQOS_TXLOCK() more to be stable.
Fix a bug that sc_tx.{cur,next,queued} become inconsitent.
Use txlock when accessing TX data.
eqos(4): Set TX/RX DMA burst length to improve performance.
eqos(4): Set flow control correctly.
eqos_pci: Limit to 32bit DMA only for PSE devices.
eqos(4): Fix typo in comment.
Revision 1.1252: download - view: text, markup, annotated - select for diffs
Mon Oct 23 01:43:55 2023 UTC (18 months ago) by msaitoh
Branches: MAIN
CVS tags: thorpej-ifq-base,
thorpej-ifq,
thorpej-altq-separation-base,
thorpej-altq-separation
Diff to: previous 1.1251: preferred, colored
Changes since revision 1.1251: +3 -3
lines
eqos(4): Disable eqos(4) by default because it's not stable on x86.
Revision 1.1251: download - view: text, markup, annotated - select for diffs
Fri Oct 20 10:09:44 2023 UTC (18 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.1250: preferred, colored
Changes since revision 1.1250: +3 -2
lines
eqos(4): Add initial support for Intel Elkhart Lake internal Ethernet devices.
- Only tested on PSE SGMII 1G Ethernet MAC with MaxLinear GPY115.
- I don't know why dmat64 doesn't work. eqos_attach() have a special
code if EQOS_HW_FEATURE_ADDR64_32BIT(sc) is true, but it seems it doesn't
work.
- TODO:
Multiqueue support.
Detach support.
Revision 1.1243.2.2: download - view: text, markup, annotated - select for diffs
Mon Oct 9 23:33:46 2023 UTC (18 months, 2 weeks ago) by snj
Branches: netbsd-10
Diff to: previous 1.1243.2.1: preferred, colored; branchpoint 1.1243: preferred, colored
Changes since revision 1.1243.2.1: +3 -3
lines
Apply patch (requested by martin in ticket #401):
Disable DIAGNOSTIC/DEBUG.
Revision 1.1243.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 1 16:07:19 2023 UTC (20 months, 3 weeks ago) by martin
Branches: netbsd-10
Diff to: previous 1.1243: preferred, colored
Changes since revision 1.1243: +5 -5
lines
Pull up following revision(s) (requested by riastradh in ticket #293):
sys/arch/i386/conf/ALL: revision 1.507
sys/arch/i386/conf/GENERIC: revision 1.1247
i386/ALL: Enable EFI runtime support.
PR kern/57076
i386/GENERIC: Enable EFI runtime support.
PR kern/57076
Revision 1.1250: download - view: text, markup, annotated - select for diffs
Sun Jul 16 10:20:07 2023 UTC (21 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.1249: preferred, colored
Changes since revision 1.1249: +6 -2
lines
i386: Re-enable HEARTBEAT.
Revision 1.1249: download - view: text, markup, annotated - select for diffs
Sun Jul 16 05:24:08 2023 UTC (21 months, 1 week ago) by mrg
Branches: MAIN
Diff to: previous 1.1248: preferred, colored
Changes since revision 1.1248: +2 -6
lines
revert previous change to enable HEARTBEAT.
the new code has a "needs 64-bit atomic ops" trigger:
ci->ci_heartbeat_uptime_cache = atomic_load_relaxed(&time_uptime);
but time_uptime is a 64-bit value, and this trips CTASSERT().
Revision 1.1248: download - view: text, markup, annotated - select for diffs
Sat Jul 15 22:14:39 2023 UTC (21 months, 1 week ago) by riastradh
Branches: MAIN
Diff to: previous 1.1247: preferred, colored
Changes since revision 1.1247: +6 -2
lines
x86: Enable HEARTBEAT by default in GENERIC.
Revision 1.1247: download - view: text, markup, annotated - select for diffs
Mon May 22 16:28:34 2023 UTC (23 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1246: preferred, colored
Changes since revision 1.1246: +5 -5
lines
i386/GENERIC: Enable EFI runtime support.
PR kern/57076
XXX pullup-10
Revision 1.1208.2.6: download - view: text, markup, annotated - select for diffs
Sun Feb 12 11:43:29 2023 UTC (2 years, 2 months ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-4-RELEASE
Diff to: previous 1.1208.2.5: preferred, colored; branchpoint 1.1208: preferred, colored; next MAIN 1.1209: preferred, colored
Changes since revision 1.1208.2.5: +3 -3
lines
Pull up following revision(s) (requested by tsutsui in ticket #1589):
sys/arch/i386/conf/GENERIC: revision 1.1243
Enable options DISKLABEL_EI by default as amd64.
No particular comment no port-i386@:
https://mail-index.netbsd.org/port-i386/2022/12/02/msg004063.html
Revision 1.1246: download - view: text, markup, annotated - select for diffs
Thu Feb 9 14:09:48 2023 UTC (2 years, 2 months ago) by abs
Branches: MAIN
Diff to: previous 1.1245: preferred, colored
Changes since revision 1.1245: +4 -4
lines
Adjust _all_ cinclude of *.local files
- Ensure always at end
- Use tab rather than spaces
- Add consistent comment
"Pull in optional local configuration - always at end"
The only functional change is that a local file which tried to
override an existing setting (eg with "no foo") would have failed
in some cases before, but now will work
Revision 1.1245: download - view: text, markup, annotated - select for diffs
Thu Feb 9 13:16:04 2023 UTC (2 years, 2 months ago) by abs
Branches: MAIN
Diff to: previous 1.1244: preferred, colored
Changes since revision 1.1244: +5 -7
lines
Ensure GENERIC.local is always at the end of GENERIC
Where a GENERIC config had an existing inclusion of GENERIC.local,
ensure it is always at the end of the file, with a consistent
comment:
# Pull in optional local configuration
cinclude "arch/landisk/conf/GENERIC.local"
This allows GENERIC.local to correctly override all options
(This pass does not affect any GENERIC which did not already have
an include of GENERIC.local)
Revision 1.1244: download - view: text, markup, annotated - select for diffs
Thu Dec 22 19:07:16 2022 UTC (2 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1243: preferred, colored
Changes since revision 1.1243: +3 -2
lines
Add commented vio9p* to match amd64 GENERIC
Revision 1.1243: download - view: text, markup, annotated - select for diffs
Sun Dec 11 04:20:52 2022 UTC (2 years, 4 months ago) by tsutsui
Branches: MAIN
CVS tags: netbsd-10-base
Branch point for: netbsd-10
Diff to: previous 1.1242: preferred, colored
Changes since revision 1.1242: +3 -3
lines
Enable options DISKLABEL_EI by default as amd64.
No particular comment no port-i386@:
https://mail-index.netbsd.org/port-i386/2022/12/02/msg004063.html
Revision 1.1242: download - view: text, markup, annotated - select for diffs
Thu Sep 29 10:10:07 2022 UTC (2 years, 6 months ago) by riastradh
Branches: MAIN
CVS tags: bouyer-sunxi-drm-base,
bouyer-sunxi-drm
Diff to: previous 1.1241: preferred, colored
Changes since revision 1.1241: +3 -2
lines
swwdog(4): Add to GENERIC kernels.
Plus a handful of others that I'm familiar with. Lots of special-
purpose kernels should probably have this too but I'm not going
through all the arm, mips, and ppc evaluation board kernels to see
which ones are relevant.
Omitted from systems I know to be very small:
- sun2/GENERIC
- dreamcast/GENERIC
Feel free to remove it from others that need to be kept smaller.
Compile-tested a few of these just in case:
- alpha/GENERIC
- amd64/GENERIC
- evbmips/OCTEON
- i386/GENERIC
- riscv/GENERIC
PR kern/29702
Revision 1.1241: download - view: text, markup, annotated - select for diffs
Sat Sep 24 11:05:17 2022 UTC (2 years, 7 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1240: preferred, colored
Changes since revision 1.1240: +6 -2
lines
x86: Support EFI runtime services.
This creates a special pmap, efi_runtime_pmap, which avoids setting
PTE_U but allows mappings to lie in what would normally be user VM --
this way we don't fall afoul of SMAP/SMEP when executing EFI runtime
services from CPL 0. SVS does not apply to the EFI runtime pmap.
The mechanism is intended to work with either physical addressing or
virtual addressing; currently the bootloader does physical addressing
but in principle it could be modified to do virtual addressing
instead, if it allocated virtual pages, assigned them in the memory
map, and issued RT->SetVirtualAddressMap.
Not sure pmap_activate_sync and pmap_deactivate_sync are correct,
need more review from an x86 wizard.
If this causes fallout, it can be disabled temporarily without
reverting anything by just making efi_runtime_init return immediately
without doing anything, or by removing options EFI_RUNTIME.
amd64-only for now pending type fixes and testing on i386.
Revision 1.1240: download - view: text, markup, annotated - select for diffs
Sun Aug 7 02:52:26 2022 UTC (2 years, 8 months ago) by simonb
Branches: MAIN
Diff to: previous 1.1239: preferred, colored
Changes since revision 1.1239: +9 -8
lines
UFS/LFS dirhash:
- Enable UFS_DIRHASH if the architecture or kernel model specific config
file can use 128MB of RAM or more.
- Remove experimental tag from UFS_DIRHASH; it's been with RUMP kernel
and by a number of NetBSD developers for years.
- Add LFS_DIRHASH if LFS was enabled.
- Be somewhat consistent with FS options order.
Revision 1.1239: download - view: text, markup, annotated - select for diffs
Thu Jul 28 21:52:36 2022 UTC (2 years, 8 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1238: preferred, colored
Changes since revision 1.1238: +4 -3
lines
drm: New option DRM_LEGACY.
This brings in the `drmums' components, which are the parts of the
current drm code base (sys/external/bsd/drm2) needed by legacy
user-mode-setting drivers (currently just viadrmums), in contrast to
the old drm code base (sys/external/bsd/drm).
This way, viadrmums.kmod can be loaded into GENERIC i386 kernels, but
platforms without any relevant legacy UMS drivers don't get the
legacy goo statically baked in.
Revision 1.1238: download - view: text, markup, annotated - select for diffs
Sat Apr 16 11:57:46 2022 UTC (3 years ago) by nia
Branches: MAIN
Diff to: previous 1.1237: preferred, colored
Changes since revision 1.1237: +3 -3
lines
x86: Enable HDAUDIOVERBOSE (as on arm) in order for AUDIO_GETDEV
to return human-readable data. Especially now that HDMI/DP audio
is enabled by default, it helps to be able to tell two devices
apart in audiocfg/aiomixer.
Revision 1.1236.4.1: download - view: text, markup, annotated - select for diffs
Thu Jun 17 04:46:20 2021 UTC (3 years, 10 months ago) by thorpej
Branches: thorpej-i2c-spi-conf
Diff to: previous 1.1236: preferred, colored; next MAIN 1.1237: preferred, colored
Changes since revision 1.1236: +3 -2
lines
Sync w/ HEAD.
Revision 1.1236.6.1: download - view: text, markup, annotated - select for diffs
Mon May 31 22:15:12 2021 UTC (3 years, 10 months ago) by cjep
Branches: cjep_staticlib_x
Diff to: previous 1.1236: preferred, colored; next MAIN 1.1237: preferred, colored
Changes since revision 1.1236: +3 -2
lines
sync with head
Revision 1.1237: download - view: text, markup, annotated - select for diffs
Mon May 17 04:07:43 2021 UTC (3 years, 11 months ago) by yamaguchi
Branches: MAIN
CVS tags: thorpej-i2c-spi-conf2-base,
thorpej-i2c-spi-conf2,
thorpej-i2c-spi-conf-base,
thorpej-futex2-base,
thorpej-futex2,
thorpej-cfargs2-base,
thorpej-cfargs2,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1
Diff to: previous 1.1236: preferred, colored
Changes since revision 1.1236: +3 -2
lines
Add a new link-aggregation pseudo interface named lagg(4)
- FreeBSD's lagg(4) based implementation
- MP-safe and MP-scalable
Revision 1.1233.2.1: download - view: text, markup, annotated - select for diffs
Sat Apr 3 22:28:27 2021 UTC (4 years ago) by thorpej
Branches: thorpej-futex
Diff to: previous 1.1233: preferred, colored; next MAIN 1.1234: preferred, colored
Changes since revision 1.1233: +4 -4
lines
Sync with HEAD.
Revision 1.1236: download - view: text, markup, annotated - select for diffs
Wed Mar 10 06:38:44 2021 UTC (4 years, 1 month ago) by msaitoh
Branches: MAIN
CVS tags: thorpej-futex-base,
thorpej-cfargs-base,
thorpej-cfargs,
cjep_staticlib_x-base
Branch point for: thorpej-i2c-spi-conf,
cjep_staticlib_x
Diff to: previous 1.1235: preferred, colored
Changes since revision 1.1235: +3 -2
lines
Add micphy(4).
Revision 1.1235: download - view: text, markup, annotated - select for diffs
Mon Mar 1 18:12:58 2021 UTC (4 years, 1 month ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1234: preferred, colored
Changes since revision 1.1234: +3 -2
lines
enable rge(4) on x86 and evbarm64
Revision 1.1234: download - view: text, markup, annotated - select for diffs
Wed Jan 20 13:22:08 2021 UTC (4 years, 3 months ago) by nia
Branches: MAIN
Diff to: previous 1.1233: preferred, colored
Changes since revision 1.1233: +2 -4
lines
remove compat_ossaudio from kernel modules
this is only useful with compat_linux and gets autoloaded when
compat_linux is loaded, so there's no reason to bake it into kernels
any more.
Revision 1.1233: download - view: text, markup, annotated - select for diffs
Sun Sep 27 13:48:51 2020 UTC (4 years, 6 months ago) by roy
Branches: MAIN
Branch point for: thorpej-futex
Diff to: previous 1.1232: preferred, colored
Changes since revision 1.1232: +3 -2
lines
vether: Add to kernel configurations
It's only enabled if the kernel enabled bridge AND tap.
Otherwise it's commented out.
Revision 1.1232: download - view: text, markup, annotated - select for diffs
Tue Sep 8 10:05:47 2020 UTC (4 years, 7 months ago) by yamaguchi
Branches: MAIN
Diff to: previous 1.1231: preferred, colored
Changes since revision 1.1231: +3 -2
lines
Added iavf(4) that is based on OpenBSD's iavf(4) implementation
reviewed by msaitoh@n.o and knakahara@n.o
Revision 1.1231: download - view: text, markup, annotated - select for diffs
Sun Aug 16 10:27:47 2020 UTC (4 years, 8 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.1230: preferred, colored
Changes since revision 1.1230: +2 -4
lines
make COMPAT_LINUX option disabled by default
leave the option enabled only in amd64/i386 ALL kernels to make
sure it continues to be compilable also when included in kernel
Revision 1.1230: download - view: text, markup, annotated - select for diffs
Sat Aug 1 08:20:49 2020 UTC (4 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1229: preferred, colored
Changes since revision 1.1229: +2 -3
lines
Remove references to BRIDGE_IPF, it is now compiled in by default.
Revision 1.1208.2.5: download - view: text, markup, annotated - select for diffs
Tue Jul 7 10:29:06 2020 UTC (4 years, 9 months ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE
Diff to: previous 1.1208.2.4: preferred, colored; branchpoint 1.1208: preferred, colored
Changes since revision 1.1208.2.4: +3 -2
lines
Pull up following revision(s) (requested by jmcneill in ticket #980):
sys/dev/pci/if_aq.c: revision 1.4
sys/dev/pci/if_aq.c: revision 1.5
sys/arch/amd64/conf/GENERIC: revision 1.553
sys/dev/pci/files.pci: revision 1.419
sys/arch/amd64/conf/XEN3_DOM0: revision 1.170
sys/dev/pci/if_aq.c: revision 1.9
share/man/man4/Makefile: revision 1.693
sys/dev/pci/pcidevs: revision 1.1411
share/man/man4/aq.4: revision 1.1
share/man/man4/aq.4: revision 1.3
sys/arch/i386/conf/ALL: revision 1.479
share/man/man4/aq.4: revision 1.4
sys/dev/pci/if_aq.c: revision 1.10
sys/dev/pci/files.pci: revision 1.421
sys/dev/pci/if_aq.c: revision 1.11
sys/dev/pci/if_aq.c: revision 1.12
sys/dev/pci/if_aq.c: revision 1.13
sys/dev/pci/if_aq.c: revision 1.14
sys/dev/pci/if_aq.c: revision 1.15
sys/dev/pci/if_aq.c: revision 1.16
sys/dev/pci/pcidevs: revision 1.1408
sys/arch/amd64/conf/ALL: revision 1.135
sys/net/ethertypes.h: revision 1.19
sys/arch/i386/conf/GENERIC: revision 1.1218
distrib/sets/lists/man/mi: revision 1.1668
sys/dev/pci/if_aq.c: revision 1.1
sys/dev/pci/if_aq.c: revision 1.2
sys/dev/pci/pcidevs: revision 1.1395
sys/dev/pci/if_aq.c: revision 1.3
sys/arch/evbarm/conf/GENERIC64: revision 1.125
Add the ETHERTYPE_QINQ for 802.1ad VLAN stacking
add Aquantia AQC 10G network adapters
add support Aquantia AQC seriese 10G network adapters.
this driver is based on the FreeBSD version https://github.com/Aquantia/aqtion-freebsd ,
but drastically rewritten for NetBSD.
add aq(4)
Add Aquantia AQC100, AQC100S and D100.
add support VLAN HW filter
set/clear IFF_OACTIVE flag only on txring 0
make counters per queue
support internal PHY temperature sensor
Found by kUBSan:
- Use unsigned to avoid undefined behavior in aq_hw_init().
- Cast to unsigned to avoid undefined behavior in aq_set_mac_addr().
fix descriptions of register map in comment
return the ifmedia active status correctly even while the link is not up after attach.
pointed out by msaitoh@. thanks.
On FIBRE devices, there are times when linkstat interrupt doesn't occur?
reported from Andrius V. thanks.
- use polling instead of linkstat interrupt when FIBRE
- add AQ_FORCE_POLL_LINKSTAT options (not by default)
sort product table, and tabify
add support AQC100S and D100.
not tested, but they are probably the same as the AQC100.
Revision 1.1229: download - view: text, markup, annotated - select for diffs
Sat Apr 25 16:10:06 2020 UTC (5 years ago) by bouyer
Branches: MAIN
Diff to: previous 1.1228: preferred, colored
Changes since revision 1.1228: +3 -3
lines
Disable -g, which got enabled by mistake in the bouyer-xenpvh merge
Revision 1.1228: download - view: text, markup, annotated - select for diffs
Sat Apr 25 15:26:16 2020 UTC (5 years ago) by bouyer
Branches: MAIN
Diff to: previous 1.1227: preferred, colored
Changes since revision 1.1227: +12 -3
lines
Merge the bouyer-xenpvh branch, bringing in Xen PV drivers support under HVM
guests in GENERIC.
Xen support can be disabled at runtime with
boot -c
disable hypervisor
Revision 1.1227.2.2: download - view: text, markup, annotated - select for diffs
Sat Apr 25 15:03:18 2020 UTC (5 years ago) by bouyer
Branches: bouyer-xenpvh
Diff to: previous 1.1227.2.1: preferred, colored; branchpoint 1.1227: preferred, colored; next MAIN 1.1228: preferred, colored
Changes since revision 1.1227.2.1: +11 -2
lines
Merge GENERIC_XENHVM in GENERIC.
Remove XEN3_PVHVM/XEN3PAE_PVHVM files which have been obsolete for some time
on the branch
Revision 1.1227.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 20 19:38:11 2020 UTC (5 years ago) by bouyer
Branches: bouyer-xenpvh
Diff to: previous 1.1227: preferred, colored
Changes since revision 1.1227: +3 -3
lines
build with -g on the branch
Revision 1.1180.2.3: download - view: text, markup, annotated - select for diffs
Mon Apr 13 08:03:52 2020 UTC (5 years ago) by martin
Branches: phil-wifi
Diff to: previous 1.1180.2.2: preferred, colored; branchpoint 1.1180: preferred, colored; next MAIN 1.1181: preferred, colored
Changes since revision 1.1180.2.2: +9 -7
lines
Mostly merge changes from HEAD upto 20200411
Revision 1.1180.2.2: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:07:39 2020 UTC (5 years ago) by martin
Branches: phil-wifi
Diff to: previous 1.1180.2.1: preferred, colored; branchpoint 1.1180: preferred, colored
Changes since revision 1.1180.2.1: +6 -16
lines
Merge changes from current as of 20200406
Revision 1.1227: download - view: text, markup, annotated - select for diffs
Sat Mar 28 08:35:36 2020 UTC (5 years ago) by isaki
Branches: MAIN
CVS tags: phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
bouyer-xenpvh-base2,
bouyer-xenpvh-base1,
bouyer-xenpvh-base
Branch point for: bouyer-xenpvh
Diff to: previous 1.1226: preferred, colored
Changes since revision 1.1226: +2 -5
lines
Reduce default AUDIO_BLK_MS from 40msec to 10msec on all platform except m68k
(m68k uses 40msec default as before). And remove the option from GENERIC.
- It's not good idea to set such parameter in individual GENERICs.
- 4msec is (probably no problem for most modern real hardware but)
too aggressive to be default.
- 10msec is too severe for antique machines but it's hard to draw a line.
Revision 1.1226: download - view: text, markup, annotated - select for diffs
Mon Mar 16 19:09:34 2020 UTC (5 years, 1 month ago) by nia
Branches: MAIN
Diff to: previous 1.1225: preferred, colored
Changes since revision 1.1225: +5 -2
lines
Lower blk_ms on more ports that are even slightly likely to play video
Revision 1.1218.2.2: download - view: text, markup, annotated - select for diffs
Sat Feb 29 20:18:24 2020 UTC (5 years, 1 month ago) by ad
Branches: ad-namecache
Diff to: previous 1.1218.2.1: preferred, colored; branchpoint 1.1218: preferred, colored; next MAIN 1.1219: preferred, colored
Changes since revision 1.1218.2.1: +3 -3
lines
Sync with head.
Revision 1.1225: download - view: text, markup, annotated - select for diffs
Mon Feb 17 06:32:46 2020 UTC (5 years, 2 months ago) by nisimura
Branches: MAIN
CVS tags: is-mlppp-base,
is-mlppp,
ad-namecache-base3
Diff to: previous 1.1224: preferred, colored
Changes since revision 1.1224: +3 -2
lines
add kse(4) for i386/amd64 GENERIC
Revision 1.1224: download - view: text, markup, annotated - select for diffs
Sun Feb 9 16:06:18 2020 UTC (5 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1223: preferred, colored
Changes since revision 1.1223: +2 -3
lines
Retire azalia(4).
Revision 1.1218.2.1: download - view: text, markup, annotated - select for diffs
Sat Jan 25 22:38:40 2020 UTC (5 years, 2 months ago) by ad
Branches: ad-namecache
Diff to: previous 1.1218: preferred, colored
Changes since revision 1.1218: +2 -14
lines
Sync with head.
Revision 1.1223: download - view: text, markup, annotated - select for diffs
Sat Jan 25 18:38:36 2020 UTC (5 years, 3 months ago) by thorpej
Branches: MAIN
CVS tags: ad-namecache-base2
Diff to: previous 1.1222: preferred, colored
Changes since revision 1.1222: +2 -3
lines
Retire "le* at pci?" from the shipped kernel configs:
- If the config had both an le@pci and a pcn, simply remove le@pci
(pcn would match at a higher priority anyway).
- If the config had le@pci enabled, but no pcn, change le@pci to pcn.
- If the config had le@pci commented out, but no pcn, change le@pci
to pcn and leave it commented out.
The pcn driver supports more chips than le@pci and does DMA directly
to/from mbufs rather than memory copies.
Revision 1.1222: download - view: text, markup, annotated - select for diffs
Mon Jan 20 18:38:20 2020 UTC (5 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.1221: preferred, colored
Changes since revision 1.1221: +2 -4
lines
Remove FDDI support.
Revision 1.1221: download - view: text, markup, annotated - select for diffs
Sun Jan 19 20:00:37 2020 UTC (5 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.1220: preferred, colored
Changes since revision 1.1220: +2 -9
lines
Remove Token Ring support.
Revision 1.1220: download - view: text, markup, annotated - select for diffs
Sun Jan 19 06:55:23 2020 UTC (5 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.1219: preferred, colored
Changes since revision 1.1219: +2 -3
lines
Remove HIPPI support and the esh(4) driver that uses it. There have not
been any users of HIPPI for some time, and it is unlikely to be resurrected.
Revision 1.1219: download - view: text, markup, annotated - select for diffs
Sun Jan 19 01:25:05 2020 UTC (5 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.1218: preferred, colored
Changes since revision 1.1218: +2 -3
lines
Remove the strip(4) - Starmode Radio IP - pseudo-device driver. It is
long since obsolete.
Revision 1.1218: download - view: text, markup, annotated - select for diffs
Wed Jan 1 10:36:43 2020 UTC (5 years, 3 months ago) by ryo
Branches: MAIN
CVS tags: ad-namecache-base1,
ad-namecache-base
Branch point for: ad-namecache
Diff to: previous 1.1217: preferred, colored
Changes since revision 1.1217: +3 -2
lines
add aq(4)
Revision 1.1217: download - view: text, markup, annotated - select for diffs
Tue Dec 10 12:08:52 2019 UTC (5 years, 4 months ago) by yamaguchi
Branches: MAIN
Diff to: previous 1.1216: preferred, colored
Changes since revision 1.1216: +3 -2
lines
Ported driver for Intel Ethernet 700 series
reviewed by msaitoh and knakahara
Revision 1.1216: download - view: text, markup, annotated - select for diffs
Thu Dec 5 22:05:05 2019 UTC (5 years, 4 months ago) by sevan
Branches: MAIN
Diff to: previous 1.1215: preferred, colored
Changes since revision 1.1215: +3 -3
lines
Enable pciverbose option to make use of the pcidevs database by default.
ok ad, mrg
Revision 1.1208.2.4: download - view: text, markup, annotated - select for diffs
Mon Nov 25 20:47:24 2019 UTC (5 years, 5 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.1208.2.3: preferred, colored; branchpoint 1.1208: preferred, colored
Changes since revision 1.1208.2.3: +4 -2
lines
Pull up following revision(s) (requested by msaitoh in ticket #478):
sys/dev/mii/smscphy.c: revision 1.1
sys/arch/amd64/conf/ALL: revision 1.127
sys/arch/amd64/conf/ALL: revision 1.128
sys/dev/mii/files.mii: revision 1.52
sys/dev/mii/files.mii: revision 1.53
sys/arch/i386/conf/ALL: revision 1.473
share/man/man4/mii.4: revision 1.29
sys/arch/i386/conf/ALL: revision 1.474
sys/arch/amd64/conf/GENERIC: revision 1.543
sys/arch/amd64/conf/GENERIC: revision 1.544
sys/dev/mii/jmphyreg.h: revision 1.1
share/man/man4/Makefile: revision 1.687
share/man/man4/smscphy.4: revision 1.1
share/man/man4/Makefile: revision 1.688
sys/dev/mii/jmphy.c: revision 1.1
sys/dev/DEVNAMES: revision 1.324
sys/dev/DEVNAMES: revision 1.325
distrib/sets/lists/man/mi: revision 1.1661
sys/arch/i386/conf/GENERIC: revision 1.1214
distrib/sets/lists/man/mi: revision 1.1662
sys/arch/i386/conf/GENERIC: revision 1.1215
share/man/man4/jmphy.4: revision 1.1
share/man/man4/jme.4: revision 1.8
Add jmphy(4) from OpenBSD.
Add jmphy.4.
Port SMSC LAN87xx 10/100 Ethernet PHY driver from FreeBSD with some cleanup
and IFM_NONE support.
Revision 1.1208.2.3: download - view: text, markup, annotated - select for diffs
Mon Nov 25 16:44:32 2019 UTC (5 years, 5 months ago) by martin
Branches: netbsd-9
Diff to: previous 1.1208.2.2: preferred, colored; branchpoint 1.1208: preferred, colored
Changes since revision 1.1208.2.2: +3 -2
lines
Pull up following revision(s) (requested by msaitoh in ticket #476):
sys/dev/pci/if_stgereg.h: revision 1.6
sys/arch/amd64/conf/ALL: revision 1.124
sys/dev/mii/files.mii: revision 1.51
share/man/man4/vge.4: revision 1.8
share/man/man4/vge.4: revision 1.9
distrib/sets/lists/man/mi: revision 1.1656
sys/arch/i386/conf/ALL: revision 1.471
share/man/man4/mii.4: revision 1.28
sys/dev/pci/if_stge.c: revision 1.71
sys/dev/mii/ipgphy.c: revision 1.1
sys/dev/mii/ipgphy.c: revision 1.2
share/man/man4/Makefile: revision 1.684
sys/dev/mii/ipgphy.c: revision 1.3
sys/dev/mii/ipgphyreg.h: revision 1.1
sys/dev/mii/ipgphy.c: revision 1.4
sys/dev/mii/ipgphyreg.h: revision 1.2
sys/dev/mii/ipgphy.c: revision 1.5
sys/dev/mii/ipgphyreg.h: revision 1.3
sys/dev/DEVNAMES: revision 1.322
sys/arch/i386/conf/GENERIC: revision 1.1211
sys/arch/amd64/conf/GENERIC: revision 1.537
share/man/man4/ipgphy.4: revision 1.1
share/man/man4/ipgphy.4: revision 1.2
Add support IC Plus IP1000* PHYs. PR/kern 42314 first reported by
Tomokazu HARADA and patch provided by Andrius V.
New sentence, new line.
Fix date. Add RCS Id.
KNF. No functional change.
STGE_PhyCtrl is not PHY register but MAC register, so use ukphy_status()
for IP1000A device.
- Use auto-negotiation when forcing 1000BASE-T.
- Add XXX comment for strange pause setting code. I suspect this is wrong.
- On my environments, 1000BASE-T half duplex doesn't work, so we might remove
IFM_1000T_HDX from this device in future.
- Define IPGPHY_SCR's address.
- Whitespace fix.
Add missing NetBSD RCS Id. Reported by Andrius V.
Revision 1.1208.2.2: download - view: text, markup, annotated - select for diffs
Thu Nov 21 18:17:59 2019 UTC (5 years, 5 months ago) by martin
Branches: netbsd-9
Diff to: previous 1.1208.2.1: preferred, colored; branchpoint 1.1208: preferred, colored
Changes since revision 1.1208.2.1: +5 -5
lines
In preparation for the upcoming release, turn off DIAGNOSTIC in most
kernel configs, modules and libc.
Revision 1.1215: download - view: text, markup, annotated - select for diffs
Fri Nov 1 02:53:23 2019 UTC (5 years, 5 months ago) by msaitoh
Branches: MAIN
CVS tags: phil-wifi-20191119
Diff to: previous 1.1214: preferred, colored
Changes since revision 1.1214: +3 -2
lines
Port SMSC LAN87xx 10/100 Ethernet PHY driver from FreeBSD with some cleanup
and IFM_NONE support.
Revision 1.1214: download - view: text, markup, annotated - select for diffs
Wed Oct 30 12:06:25 2019 UTC (5 years, 5 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.1213: preferred, colored
Changes since revision 1.1213: +3 -2
lines
Add jmphy(4) from OpenBSD.
Revision 1.1213: download - view: text, markup, annotated - select for diffs
Fri Oct 25 17:39:57 2019 UTC (5 years, 6 months ago) by martin
Branches: MAIN
Diff to: previous 1.1212: preferred, colored
Changes since revision 1.1212: +5 -2
lines
Add support for Nuvoton NCT5104D GPIO chips, as found on PC Engines APU
systems. From Andrew Doran in PR kern/54648.
Revision 1.1212: download - view: text, markup, annotated - select for diffs
Tue Oct 8 18:50:44 2019 UTC (5 years, 6 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1211: preferred, colored
Changes since revision 1.1211: +2 -6
lines
No I/O ports for TPM-ISA, only MMIO, so remove commented-out options.
Revision 1.1211: download - view: text, markup, annotated - select for diffs
Mon Oct 7 11:53:40 2019 UTC (5 years, 6 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.1210: preferred, colored
Changes since revision 1.1210: +3 -2
lines
Add support IC Plus IP1000* PHYs. PR/kern 42314 first reported by
Tomokazu HARADA and patch provided by Andrius V.
Revision 1.1208.2.1: download - view: text, markup, annotated - select for diffs
Fri Aug 9 15:59:52 2019 UTC (5 years, 8 months ago) by martin
Branches: netbsd-9
Diff to: previous 1.1208: preferred, colored
Changes since revision 1.1208: +2 -3
lines
Pull up following revision(s) (requested by rin in ticket #35):
sys/arch/amd64/conf/ALL: revision 1.121
sys/arch/i386/conf/XEN3PAE_DOM0: revision 1.14
sys/arch/amd64/conf/XEN3_DOM0: revision 1.168
sys/arch/i386/conf/GENERIC: revision 1.1210
sys/arch/amd64/conf/GENERIC: revision 1.534
xhci(4) is considered stable enough. So, remove misleading comments.
XXX
pullup to netbsd-9
Revision 1.1210: download - view: text, markup, annotated - select for diffs
Fri Aug 9 08:01:06 2019 UTC (5 years, 8 months ago) by rin
Branches: MAIN
Diff to: previous 1.1209: preferred, colored
Changes since revision 1.1209: +2 -3
lines
xhci(4) is considered stable enough. So, remove misleading comments.
XXX
pullup to netbsd-9
Revision 1.1209: download - view: text, markup, annotated - select for diffs
Thu Aug 8 04:25:21 2019 UTC (5 years, 8 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.1208: preferred, colored
Changes since revision 1.1208: +5 -5
lines
Use <SPACE>+<TAB>
Revision 1.1208: download - view: text, markup, annotated - select for diffs
Mon Jun 17 19:01:17 2019 UTC (5 years, 10 months ago) by kamil
Branches: MAIN
CVS tags: netbsd-9-base
Branch point for: netbsd-9
Diff to: previous 1.1207: preferred, colored
Changes since revision 1.1207: +3 -2
lines
Register UBSAN_ALWAYS_FATAL in kernel configs for kUBSan
Revision 1.1156.2.15: download - view: text, markup, annotated - select for diffs
Wed Jun 12 10:17:32 2019 UTC (5 years, 10 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE,
netbsd-8-2-RELEASE
Diff to: previous 1.1156.2.14: preferred, colored; branchpoint 1.1156: preferred, colored; next MAIN 1.1157: preferred, colored
Changes since revision 1.1156.2.14: +5 -2
lines
Pull up following revision(s) (requested by nonaka in ticket #1280):
sys/arch/x86/x86/consinit.c: revision 1.29
sys/dev/hyperv/vmbusvar.h: revision 1.2
sys/dev/hyperv/genfb_vmbusvar.h: revision 1.1
sys/arch/x86/x86/x86_autoconf.c: revision 1.78
sys/arch/x86/x86/identcpu.c: revision 1.91
sys/arch/x86/x86/hyperv.c: revision 1.2
sys/arch/x86/x86/hyperv.c: revision 1.3
sys/arch/x86/x86/hyperv.c: revision 1.4
sys/arch/i386/conf/GENERIC: revision 1.1207
sys/dev/wscons/wsconsio.h: revision 1.123
sys/arch/x86/x86/hypervvar.h: revision 1.1
sys/arch/amd64/conf/GENERIC: revision 1.528
sys/dev/hyperv/files.hyperv: revision 1.2
sys/arch/x86/include/autoconf.h: revision 1.6
sys/dev/hyperv/hyperv_common.c: revision 1.2
sys/arch/xen/x86/autoconf.c: revision 1.23
sys/arch/x86/pci/pci_machdep.c: revision 1.86
sys/dev/hyperv/hvkbd.c: revision 1.1
sys/dev/hyperv/hypervvar.h: revision 1.2
sys/dev/acpi/vmbus_acpi.c: revision 1.2
sys/dev/hyperv/vmbus.c: revision 1.3
sys/dev/hyperv/hvkbdvar.h: revision 1.1
sys/dev/hyperv/genfb_vmbus.c: revision 1.1
Added drivers for Hyper-V Synthetic Keyboard and Video device.
Avoid undefined reference to `hyperv_guid_video' without vmbus(4).
Avoid undefined reference to `hyperv_is_gen1' without hyperv(4).
Use efi_probe().
Revision 1.1180.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:06:20 2019 UTC (5 years, 10 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.1180: preferred, colored
Changes since revision 1.1180: +32 -257
lines
Sync with HEAD
Revision 1.1207: download - view: text, markup, annotated - select for diffs
Fri May 24 14:28:48 2019 UTC (5 years, 11 months ago) by nonaka
Branches: MAIN
CVS tags: phil-wifi-20190609
Diff to: previous 1.1206: preferred, colored
Changes since revision 1.1206: +5 -2
lines
Added drivers for Hyper-V Synthetic Keyboard and Video device.
Revision 1.1206: download - view: text, markup, annotated - select for diffs
Mon May 6 02:24:37 2019 UTC (5 years, 11 months ago) by sevan
Branches: MAIN
Diff to: previous 1.1205: preferred, colored
Changes since revision 1.1205: +4 -33
lines
Use filesystems.config to reduce duplication
Revision 1.1205: download - view: text, markup, annotated - select for diffs
Fri Apr 26 21:40:30 2019 UTC (6 years ago) by sevan
Branches: MAIN
Diff to: previous 1.1204: preferred, colored
Changes since revision 1.1204: +4 -16
lines
Enable BUFQ_PRIOCSCAN, CARP, Veriexec by default in GENERIC kernel configs.
On ports without a GENERIC kernel config enable in individul files, e.g evbmips.
Omit on:
atari, dreamcast, emips, epoc32, evbppc/VIRTEX*, ia64, luna68x, mvme68k,
mvmeppc, playstation2, riscv, sun2, sun3, x68k, zaurus due to resource
constraints or port infancy.
Revision 1.1156.2.14: download - view: text, markup, annotated - select for diffs
Sat Mar 9 17:10:20 2019 UTC (6 years, 1 month ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-1-RELEASE,
netbsd-8-1-RC1
Diff to: previous 1.1156.2.13: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.13: +12 -2
lines
Pull up following revision(s) via patch (requested by nonaka in ticket #1210):
sys/dev/hyperv/vmbusvar.h: revision 1.1
sys/dev/hyperv/hvs.c: revision 1.1
sys/dev/hyperv/if_hvn.c: revision 1.1
sys/dev/hyperv/vmbusic.c: revision 1.1
sys/arch/x86/x86/lapic.c: revision 1.69
sys/arch/x86/isa/clock.c: revision 1.34
sys/arch/x86/include/intrdefs.h: revision 1.22
sys/arch/i386/conf/GENERIC: revision 1.1201
sys/arch/x86/x86/hyperv.c: revision 1.1
sys/arch/x86/include/cpu.h: revision 1.105
sys/arch/x86/x86/x86_machdep.c: revision 1.124
sys/arch/i386/conf/GENERIC: revision 1.1203
sys/arch/amd64/amd64/genassym.cf: revision 1.74
sys/arch/i386/conf/GENERIC: revision 1.1204
sys/arch/amd64/conf/GENERIC: revision 1.520
sys/arch/x86/x86/hypervreg.h: revision 1.1
sys/arch/amd64/amd64/vector.S: revision 1.69
sys/dev/hyperv/hvshutdown.c: revision 1.1
sys/dev/hyperv/hvshutdown.c: revision 1.2
sys/dev/usb/if_urndisreg.h: file removal
sys/arch/x86/x86/cpu.c: revision 1.167
sys/arch/x86/conf/files.x86: revision 1.107
sys/dev/usb/if_urndis.c: revision 1.20
sys/dev/hyperv/vmbusicreg.h: revision 1.1
sys/dev/hyperv/hvheartbeat.c: revision 1.1
sys/dev/hyperv/vmbusicreg.h: revision 1.2
sys/dev/hyperv/hvheartbeat.c: revision 1.2
sys/dev/hyperv/files.hyperv: revision 1.1
sys/dev/ic/rndisreg.h: revision 1.1
sys/arch/i386/i386/genassym.cf: revision 1.111
sys/dev/ic/rndisreg.h: revision 1.2
sys/dev/hyperv/hyperv_common.c: revision 1.1
sys/dev/hyperv/hvtimesync.c: revision 1.1
sys/dev/hyperv/hypervreg.h: revision 1.1
sys/dev/hyperv/hvtimesync.c: revision 1.2
sys/dev/hyperv/vmbusicvar.h: revision 1.1
sys/dev/hyperv/if_hvnreg.h: revision 1.1
sys/arch/x86/x86/lapic.c: revision 1.70
sys/arch/amd64/amd64/vector.S: revision 1.70
sys/dev/ic/ndisreg.h: revision 1.1
sys/arch/amd64/conf/GENERIC: revision 1.516
sys/dev/hyperv/hypervvar.h: revision 1.1
sys/arch/amd64/conf/GENERIC: revision 1.518
sys/arch/amd64/conf/GENERIC: revision 1.519
sys/arch/i386/conf/files.i386: revision 1.400
sys/dev/acpi/vmbus_acpi.c: revision 1.1
sys/dev/hyperv/vmbus.c: revision 1.1
sys/dev/hyperv/vmbus.c: revision 1.2
sys/arch/x86/x86/intr.c: revision 1.144
sys/arch/i386/i386/vector.S: revision 1.83
sys/arch/amd64/conf/files.amd64: revision 1.112
separate RNDIS definitions from urndis(4) for use with Hyper-V NetVSC.
-
Added Microsoft Hyper-V support. It ported from OpenBSD and FreeBSD.
graphical console is not work on Gen.2 VM yet. To use the serial console,
enter "consdev com,0x3f8,115200" on efiboot.
-
Add __diagused.
-
PR/53984: Partial revert of modify lapic_calibrate_timer() in lapic.c r1.69.
-
Update Hyper-V related drivers description.
-
Remove unused definition.
-
Rename the MODULE_*_HOOK() macros to MODULE_HOOK_*() as briefly
discussed on irc.
NFCI intended.
-
commented out hvkvp entry.
-
fix typo. pointed out by pgoyette@n.o.
-
Use IDTVEC instead of NENTRY for handle_hyperv_hypercall.
-
Rename the MODULE_*_HOOK() macros to MODULE_HOOK_*() as briefly
discussed on irc.
Revision 1.1204: download - view: text, markup, annotated - select for diffs
Fri Mar 1 12:23:10 2019 UTC (6 years, 1 month ago) by nonaka
Branches: MAIN
CVS tags: isaki-audio2-base,
isaki-audio2
Diff to: previous 1.1203: preferred, colored
Changes since revision 1.1203: +3 -3
lines
commented out hvkvp entry.
Revision 1.1203: download - view: text, markup, annotated - select for diffs
Fri Mar 1 08:17:51 2019 UTC (6 years, 1 month ago) by nonaka
Branches: MAIN
Diff to: previous 1.1202: preferred, colored
Changes since revision 1.1202: +6 -5
lines
Update Hyper-V related drivers description.
Revision 1.1202: download - view: text, markup, annotated - select for diffs
Sat Feb 23 12:28:22 2019 UTC (6 years, 2 months ago) by kamil
Branches: MAIN
Diff to: previous 1.1201: preferred, colored
Changes since revision 1.1201: +7 -2
lines
Register kUBSan and KCOV in kernel=GENERIC of NetBSD/i386
Both options are disabled by default.
Revision 1.1201: download - view: text, markup, annotated - select for diffs
Fri Feb 15 08:54:01 2019 UTC (6 years, 2 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.1200: preferred, colored
Changes since revision 1.1200: +11 -2
lines
Added Microsoft Hyper-V support. It ported from OpenBSD and FreeBSD.
graphical console is not work on Gen.2 VM yet. To use the serial console,
enter "consdev com,0x3f8,115200" on efiboot.
Revision 1.1200: download - view: text, markup, annotated - select for diffs
Sun Jan 27 08:53:30 2019 UTC (6 years, 2 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1199: preferred, colored
Changes since revision 1.1199: +2 -5
lines
Remove the satlink driver. It was disabled everywhere, had no man page and
no use either. Spotted by thorpej in PR/21345, ok christos.
Revision 1.1174.2.8: download - view: text, markup, annotated - select for diffs
Wed Dec 26 14:01:38 2018 UTC (6 years, 3 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.1174.2.7: preferred, colored; branchpoint 1.1174: preferred, colored; next MAIN 1.1175: preferred, colored
Changes since revision 1.1174.2.7: +5 -3
lines
Sync with HEAD, resolve a few conflicts
Revision 1.1199: download - view: text, markup, annotated - select for diffs
Tue Dec 25 11:56:14 2018 UTC (6 years, 4 months ago) by mlelstv
Branches: MAIN
CVS tags: pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226
Diff to: previous 1.1198: preferred, colored
Changes since revision 1.1198: +4 -2
lines
Make ipmi driver available to other platforms.
Add ACPI attachment.
Revision 1.1198: download - view: text, markup, annotated - select for diffs
Fri Dec 14 22:00:26 2018 UTC (6 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1197: preferred, colored
Changes since revision 1.1197: +3 -2
lines
add cardbus malo(4) to x86 GENERIC and ALL kernels
Revision 1.1197: download - view: text, markup, annotated - select for diffs
Wed Dec 12 06:29:37 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1196: preferred, colored
Changes since revision 1.1196: +2 -3
lines
Remove references to "lmc" in the kernel configurations.
Revision 1.1196: download - view: text, markup, annotated - select for diffs
Tue Dec 11 16:52:49 2018 UTC (6 years, 4 months ago) by maya
Branches: MAIN
Diff to: previous 1.1195: preferred, colored
Changes since revision 1.1195: +4 -4
lines
revert previous, nouveau apparently works for some people.
Revision 1.1195: download - view: text, markup, annotated - select for diffs
Tue Dec 11 11:00:18 2018 UTC (6 years, 4 months ago) by maya
Branches: MAIN
Diff to: previous 1.1194: preferred, colored
Changes since revision 1.1194: +4 -4
lines
disable nouveau. it hasn't been functional since the import of new drmkms
code.
Revision 1.1156.2.13: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:11:37 2018 UTC (6 years, 4 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156.2.12: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.12: +3 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #1129):
sys/arch/amd64/conf/XEN3_DOM0: revision 1.159
sys/arch/amd64/conf/GENERIC: revision 1.508
sys/arch/i386/conf/ALL: revision 1.458
sys/dev/ic/mfi.c: revision 1.60
sys/dev/pci/mpiireg.h: revision 1.1
distrib/sets/lists/man/mi: revision 1.1628
sys/dev/pci/mfii.c: revision 1.1,1.2 (adapted)
sys/arch/i386/conf/GENERIC: revision 1.1194
sys/dev/pci/mpii.c: revision 1.13
sys/dev/ic/mfireg.h: revision 1.9
share/man/man4/mfii.4: revision 1.1
share/man/man4/Makefile: revision 1.673 (patch)
sys/dev/pci/files.pci: revision 1.410
share/man/man4/mfii.4: revision 1.2
sys/arch/amd64/conf/ALL: revision 1.108
sys/arch/i386/conf/XEN3PAE_DOM0: revision 1.8 (patch, in XEN3_DOM0)
Add some definitions from OpenBSD, needed by the upcoming mfii driver.
No functionnal change.
-
Move registers definitions to a separate file, needed for the upcomning mpii
driver. No functionnal change.
-
Add mpii(4), a driver for LSI Megaraid Fusion controllers.
Ported from OpenBSD. This driver is MP-safe.
Note that the earlier fusion controllers (Megaraid 2208, codenamed Thunderbold)
are also supported by mfi(4). mpii will take precedence if both drivers
are enabled.
Tested on a
mfii0 at pci6 dev 0 function 0: "PERC H740P Adapter ", firmware 50.3.0-1512, 819
2MB cache
mfii0: interrupting at ioapic2 pin 2
scsibus0 at mfii0: 64 targets, 8 luns per target
scsibus0: waiting 2 seconds for devices to settle...
sd0 at scsibus0 target 0 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd0: fabricating a geometry
sd0: 99 GB, 102399 cyl, 64 head, 32 sec, 512 bytes/sect x 209714688 sectors
sd0: tagged queueing
sd1 at scsibus0 target 1 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd1: fabricating a geometry
sd1: 22254 GB, 22788608 cyl, 64 head, 32 sec, 512 bytes/sect x 46671069696 sectors
sd1: fabricating a geometry
It supports bioctl(8) ioctls, as well as sensors for the BBU and logical
drives.
Sponsored by LIP6.
-
Add my name in copyright list
-
add a man page for the new mpii, mostly from OpenBSD.
-
Sort SEE ALSO. Fix date. Whitespace fixes.
Revision 1.1174.2.7: download - view: text, markup, annotated - select for diffs
Mon Nov 26 01:52:25 2018 UTC (6 years, 4 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.6: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.6: +4 -2
lines
Sync with HEAD, resolve a couple of conflicts
Revision 1.1194: download - view: text, markup, annotated - select for diffs
Sat Nov 24 18:23:29 2018 UTC (6 years, 5 months ago) by bouyer
Branches: MAIN
CVS tags: pgoyette-compat-1126
Diff to: previous 1.1193: preferred, colored
Changes since revision 1.1193: +3 -2
lines
Add mpii(4), a driver for LSI Megaraid Fusion controllers.
Ported from OpenBSD. This driver is MP-safe.
Note that the earlier fusion controllers (Megaraid 2208, codenamed Thunderbold)
are also supported by mfi(4). mpii will take precedence if both drivers
are enabled.
Tested on a
mfii0 at pci6 dev 0 function 0: "PERC H740P Adapter ", firmware 50.3.0-1512, 819
2MB cache
mfii0: interrupting at ioapic2 pin 2
scsibus0 at mfii0: 64 targets, 8 luns per target
scsibus0: waiting 2 seconds for devices to settle...
sd0 at scsibus0 target 0 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd0: fabricating a geometry
sd0: 99 GB, 102399 cyl, 64 head, 32 sec, 512 bytes/sect x 209714688 sectors
sd0: tagged queueing
sd1 at scsibus0 target 1 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd1: fabricating a geometry
sd1: 22254 GB, 22788608 cyl, 64 head, 32 sec, 512 bytes/sect x 46671069696 sectors
sd1: fabricating a geometry
It supports bioctl(8) ioctls, as well as sensors for the BBU and logical
drives.
Sponsored by LIP6.
Revision 1.1193: download - view: text, markup, annotated - select for diffs
Thu Nov 1 13:11:11 2018 UTC (6 years, 5 months ago) by martin
Branches: MAIN
Diff to: previous 1.1192: preferred, colored
Changes since revision 1.1192: +3 -2
lines
Add bwfm at pci
Revision 1.1156.2.12: download - view: text, markup, annotated - select for diffs
Wed Oct 31 09:30:10 2018 UTC (6 years, 5 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156.2.11: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.11: +3 -2
lines
Add bwfm config glue, requested by maya in ticket #1072.
Revision 1.1174.2.6: download - view: text, markup, annotated - select for diffs
Sun Sep 30 01:45:44 2018 UTC (6 years, 6 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.5: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.5: +2 -3
lines
Ssync with HEAD
Revision 1.1156.2.11: download - view: text, markup, annotated - select for diffs
Fri Sep 7 12:27:26 2018 UTC (6 years, 7 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156.2.10: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.10: +3 -191
lines
Pull up following revision(s) (requested by mrg in ticket #1011):
sys/dev/usb/usbdevices.config: revision 1.32 (patch)
sys/arch/amd64/conf/GENERIC: revision 1.502 (patch)
sys/arch/i386/conf/GENERIC: revision 1.1188 (patch)
- add commented entries that exist in amd64 GENERIC: oboe, mos, umb.
(XXX: mos might be deleteable now?).
- comment uscanner(4) -- usb scanners use ugen(4) interface.
- minor sort.
-
use dev/usb/usbdevices.config, gaining these missing drivers:
slurm(4), uthum(4), umcs(4), uark(4), upgt(4), and usmsc(4).
-
use dev/usb/usbdevices.config instead of a local list.
adds slurm(4), umcs(4), uark(4), and usmsc(4).
Revision 1.1174.2.5: download - view: text, markup, annotated - select for diffs
Thu Sep 6 06:55:34 2018 UTC (6 years, 7 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.4: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.4: +5 -204
lines
Sync with HEAD
Resolve a couple of conflicts (result of the uimin/uimax changes)
Revision 1.1192: download - view: text, markup, annotated - select for diffs
Thu Sep 6 05:36:50 2018 UTC (6 years, 7 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-1020,
pgoyette-compat-0930
Diff to: previous 1.1191: preferred, colored
Changes since revision 1.1191: +2 -3
lines
Retire the 'midway' driver. Discussed on tech-net@ recently and also three
years ago, part of removing the network ATM code.
Revision 1.1191: download - view: text, markup, annotated - select for diffs
Sat Aug 25 07:48:56 2018 UTC (6 years, 8 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-0906
Diff to: previous 1.1190: preferred, colored
Changes since revision 1.1190: +2 -4
lines
Retire NDIS. It appears that it has never worked, after 13 years it was
still marked as "experimental", and nowadays it may be one more obstacle
to MPification of the network stack.
Discussed on tech-net@.
Revision 1.1190: download - view: text, markup, annotated - select for diffs
Tue Aug 14 06:37:59 2018 UTC (6 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1189: preferred, colored
Changes since revision 1.1189: +2 -3
lines
Replace references to etherip by l2tp. Etherip was already not enabled
anyway.
Revision 1.1189: download - view: text, markup, annotated - select for diffs
Tue Aug 14 06:04:24 2018 UTC (6 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1188: preferred, colored
Changes since revision 1.1188: +3 -2
lines
Enable L2TP on all x86 configurations, not just native amd64.
Revision 1.1188: download - view: text, markup, annotated - select for diffs
Mon Aug 13 18:48:53 2018 UTC (6 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.1187: preferred, colored
Changes since revision 1.1187: +3 -193
lines
use dev/usb/usbdevices.config instead of a local list.
adds slurm(4), umcs(4), uark(4), and usmsc(4).
Revision 1.1187: download - view: text, markup, annotated - select for diffs
Sun Aug 12 17:59:21 2018 UTC (6 years, 8 months ago) by sevan
Branches: MAIN
Diff to: previous 1.1186: preferred, colored
Changes since revision 1.1186: +2 -6
lines
Remove commented out BPFJIT & SLJIT options as they are provided as loadable
modules already.
Heads up by <leot> <christos>
Revision 1.1186: download - view: text, markup, annotated - select for diffs
Fri Aug 10 17:54:46 2018 UTC (6 years, 8 months ago) by sevan
Branches: MAIN
Diff to: previous 1.1185: preferred, colored
Changes since revision 1.1185: +6 -2
lines
Add snippet for bpfjit(4) as both i386 and amd64 are listed as supported.
Ideally BPFJIT should be enabled by default for use with NPF but I haven't
raised the question (no access to email at the moment) hence both are disabled.
Revision 1.1185: download - view: text, markup, annotated - select for diffs
Wed Aug 1 16:59:09 2018 UTC (6 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1184: preferred, colored
Changes since revision 1.1184: +3 -11
lines
Unreference IPF/PF from the x86 config files (amd64, i386, xen), and enable
NPF instead when wanted.
Revision 1.1184: download - view: text, markup, annotated - select for diffs
Tue Jul 31 16:44:29 2018 UTC (6 years, 8 months ago) by khorben
Branches: MAIN
Diff to: previous 1.1183: preferred, colored
Changes since revision 1.1183: +3 -2
lines
Add a port of the umb(4) driver from OpenBSD
The umb(4) driver provides support for USB MBIM (Mobile Broadband
Interface Model) devices.
MBIM devices establish connections via cellular networks such as GPRS,
UMTS, and LTE. They appear as a regular point-to-point network interface, transporting raw IP frames.
Required configuration parameters like PIN and APN have to be set with
umbctl(8), a new tool specific to this driver. The IP address is configured
automatically; the default route and DNS server information have to be set
separately.
The driver is not fully functional yet, it is therefore still marked as
experimental and disabled by default. Any help welcome to complete it!
Tested on NetBSD/amd64, with a Sierra Wireless EM7345 LTE modem on a Lenovo
ThinkPad T440s. No functional change expected otherwise.
Revision 1.1174.2.4: download - view: text, markup, annotated - select for diffs
Sat Jul 28 04:37:34 2018 UTC (6 years, 8 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.3: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.3: +2 -5
lines
Sync with HEAD
Revision 1.1183: download - view: text, markup, annotated - select for diffs
Fri Jul 13 09:37:32 2018 UTC (6 years, 9 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-0728
Diff to: previous 1.1182: preferred, colored
Changes since revision 1.1182: +2 -3
lines
Remove the X86PMC code I had written, replaced by tprof. Many defines
become unused in specialreg.h, so remove them. We don't want to add
defines all the time, there are countless PMCs on many generations, and
it's better to just inline the event/unit values.
Revision 1.1182: download - view: text, markup, annotated - select for diffs
Tue Jul 10 19:58:13 2018 UTC (6 years, 9 months ago) by maya
Branches: MAIN
Diff to: previous 1.1181: preferred, colored
Changes since revision 1.1181: +2 -3
lines
Remove unused macro.
Revision 1.1181: download - view: text, markup, annotated - select for diffs
Tue Jul 10 17:01:43 2018 UTC (6 years, 9 months ago) by maya
Branches: MAIN
Diff to: previous 1.1180: preferred, colored
Changes since revision 1.1180: +2 -3
lines
Remove viadrm(4), superseded by viadrmums.
Aside from viadrm using older drm code, it's also dysfunctional right now.
See PR port-i386/53364.
Revision 1.1174.2.3: download - view: text, markup, annotated - select for diffs
Mon Jun 25 07:25:42 2018 UTC (6 years, 10 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.2: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.2: +25 -24
lines
Sync with HEAD
Revision 1.1156.2.10: download - view: text, markup, annotated - select for diffs
Sat Jun 9 15:12:21 2018 UTC (6 years, 10 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-0-RELEASE,
netbsd-8-0-RC2
Diff to: previous 1.1156.2.9: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.9: +3 -2
lines
Pullup the following revisions, requested by maxv in ticket #865:
sys/arch/amd64/amd64/machdep.c 1.303 (patch)
sys/arch/amd64/conf/GENERIC 1.492 (patch)
sys/arch/amd64/conf/files.amd64 1.103 (patch)
sys/arch/i386/i386/machdep.c 1.806 (patch)
sys/arch/i386/conf/GENERIC 1.1179 (patch)
sys/arch/i386/conf/files.i386 1.393 (patch)
sys/arch/x86/include/cpu.h 1.91 (patch)
sys/arch/x86/include/specialreg.h upto 1.126 (patch)
sys/arch/x86/x86/x86_machdep.c upto 1.115 (patch, adapted)
sys/arch/x86/x86/spectre.c upto 1.19 (patch, adapted,
no IBRS,
SpectreV2 mitigations not
enabled by default)
Backport the hardware SpectreV2 and SpectreV4 mitigations.
Revision 1.1180: download - view: text, markup, annotated - select for diffs
Thu Jun 7 13:36:29 2018 UTC (6 years, 10 months ago) by thorpej
Branches: MAIN
CVS tags: phil-wifi-base,
pgoyette-compat-0625
Branch point for: phil-wifi
Diff to: previous 1.1179: preferred, colored
Changes since revision 1.1179: +24 -24
lines
Revert changes that pinned-down i2c parent specs. The i2c subsystem
has been enhanced to make this unnecessary.
Revision 1.1066.2.7.4.2: download - view: text, markup, annotated - select for diffs
Tue May 22 14:49:02 2018 UTC (6 years, 11 months ago) by martin
Branches: netbsd-6-0
Diff to: previous 1.1066.2.7.4.1: preferred, colored; branchpoint 1.1066.2.7: preferred, colored; next MAIN 1.1066.2.8: preferred, colored
Changes since revision 1.1066.2.7.4.1: +4 -4
lines
Apply patch requested by maxv in ticket #1500:
* disable compat_svr4 and compat_svr4_32 everywhere
* disable compat_ibcs2 everywhere but on Vax
* remove the svr4/svr4_32/ibcs2/freebsd entries from the autoload list
Revision 1.1066.2.7.6.2: download - view: text, markup, annotated - select for diffs
Tue May 22 14:44:30 2018 UTC (6 years, 11 months ago) by martin
Branches: netbsd-6-1
Diff to: previous 1.1066.2.7.6.1: preferred, colored; branchpoint 1.1066.2.7: preferred, colored; next MAIN 1.1066.2.8: preferred, colored
Changes since revision 1.1066.2.7.6.1: +4 -4
lines
Apply patch requested by maxv in ticket #1500:
* disable compat_svr4 and compat_svr4_32 everywhere
* disable compat_ibcs2 everywhere but on Vax
* remove the svr4/svr4_32/ibcs2/freebsd entries from the autoload list
Revision 1.1066.2.9: download - view: text, markup, annotated - select for diffs
Tue May 22 14:38:20 2018 UTC (6 years, 11 months ago) by martin
Branches: netbsd-6
Diff to: previous 1.1066.2.8: preferred, colored; branchpoint 1.1066: preferred, colored; next MAIN 1.1067: preferred, colored
Changes since revision 1.1066.2.8: +4 -4
lines
Apply patch requested by maxv in ticket #1500:
* disable compat_svr4 and compat_svr4_32 everywhere
* disable compat_ibcs2 everywhere but on Vax
* remove the svr4/svr4_32/ibcs2/freebsd entries from the autoload list
Revision 1.1179: download - view: text, markup, annotated - select for diffs
Tue May 22 08:15:26 2018 UTC (6 years, 11 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1178: preferred, colored
Changes since revision 1.1178: +3 -2
lines
Clarify the parameters for the SpectreV2 mitigation.
Add:
machdep.spectre_v2.swmitigated
Rename:
machdep.spectre_v2.mitigated -> machdep.spectre_v2.hwmitigated
Change the method string, to combine both the hardware and software
mitigations. swmitigated is set at compile time, hwmitigated can be
set by the user.
Examples:
spectre_v2.swmitigated = 1
spectre_v2.hwmitigated = 0
spectre_v2.method = [GCC retpoline]
spectre_v2.swmitigated = 0
spectre_v2.hwmitigated = 0
spectre_v2.method = (none)
spectre_v2.swmitigated = 1
spectre_v2.hwmitigated = 1
spectre_v2.method = [GCC retpoline] + [Intel IBRS]
Revision 1.1174.2.2: download - view: text, markup, annotated - select for diffs
Mon May 21 04:36:00 2018 UTC (6 years, 11 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174.2.1: preferred, colored; branchpoint 1.1174: preferred, colored
Changes since revision 1.1174.2.1: +24 -24
lines
Sync with HEAD
Revision 1.1178: download - view: text, markup, annotated - select for diffs
Tue May 15 01:53:27 2018 UTC (6 years, 11 months ago) by thorpej
Branches: MAIN
CVS tags: pgoyette-compat-0521
Diff to: previous 1.1177: preferred, colored
Changes since revision 1.1177: +24 -24
lines
Fully specifiy the location of indirectly-configured I2C devices. In
particular, the parent spec must not be wild-carded, as doing so doesn't
work well on systems where more than one I2C bus is present.
N.B. The x86 platforms are sort of a mess, here... legacy indirect
config and ACPI direct config sort of smashed together with the
same config file directives.
Revision 1.1156.2.9: download - view: text, markup, annotated - select for diffs
Wed Apr 18 14:45:08 2018 UTC (7 years ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-0-RC1
Diff to: previous 1.1156.2.8: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.8: +3 -3
lines
Requested by skrll in ticket #60:
sys/arch/amd64/conf/GENERIC
sys/arch/amd64/conf/XEN3_DOM0
sys/arch/amd64/conf/XEN3_DOMU
sys/arch/cobalt/conf/GENERIC
sys/arch/evbarm/conf/BEAGLEBONE
sys/arch/evbarm/conf/BEAGLEBOARD
sys/arch/evbarm/conf/BEAGLEBOARDXM
sys/arch/evbarm/conf/GENERIC.common
sys/arch/i386/conf/GENERIC
sys/arch/i386/conf/XEN3_DOM0
sys/arch/i386/conf/XEN3_DOMU
sys/arch/mvmeppc/conf/GENERIC
sys/arch/shark/conf/GENERIC
sys/arch/sparc64/conf/GENERIC
sys/arch/zaurus/conf/GENERIC
Remove option DIAGNOSTIC.
Revision 1.1174.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 16 01:59:54 2018 UTC (7 years ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.1174: preferred, colored
Changes since revision 1.1174: +4 -2
lines
Sync with HEAD, resolve some conflicts
Revision 1.1156.2.8: download - view: text, markup, annotated - select for diffs
Wed Apr 11 14:23:30 2018 UTC (7 years ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156.2.7: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.7: +4 -2
lines
Pull up following revision(s) (requested by mrg in ticket #731):
sys/arch/i386/conf/files.i386: revision 1.392
sys/arch/i386/conf/GENERIC: revision 1.1175
sys/arch/i386/conf/GENERIC: revision 1.1176
sys/arch/amd64/conf/files.amd64: revision 1.102
sys/arch/i386/conf/GENERIC: revision 1.1177
share/man/man4/options.4: revision 1.485 (patch)
sys/arch/i386/conf/Makefile.i386: revision 1.190
sys/arch/amd64/conf/GENERIC: revision 1.487
sys/arch/amd64/conf/ALL: revision 1.85
sys/arch/amd64/conf/GENERIC: revision 1.488
sys/arch/amd64/conf/GENERIC: revision 1.489
sys/arch/amd64/conf/Makefile.amd64: revision 1.67
sys/arch/i386/conf/ALL: revision 1.437
add an SPECTRE_V2_GCC_MITIGATION option to x86 kernels, that turns
on the GCC spectre v2 mitigation options.
XXX: pullup-8.
XXX: turn on in all kernels.
actually do what the previous change said:
don't turn on the new 'SPECTRE_V2_GCC_MITIGATION' option yet.
turn on GCC spectre v2 mitigation options.
XXX: amd64 ALL doesn't build for me right now
Revision 1.1177: download - view: text, markup, annotated - select for diffs
Sun Apr 8 00:52:38 2018 UTC (7 years ago) by mrg
Branches: MAIN
CVS tags: pgoyette-compat-0502,
pgoyette-compat-0422,
pgoyette-compat-0415
Diff to: previous 1.1176: preferred, colored
Changes since revision 1.1176: +3 -3
lines
turn on GCC spectre v2 mitigation options.
XXX: amd64 ALL doesn't build for me right now
Revision 1.1176: download - view: text, markup, annotated - select for diffs
Sat Apr 7 19:39:19 2018 UTC (7 years ago) by mrg
Branches: MAIN
Diff to: previous 1.1175: preferred, colored
Changes since revision 1.1175: +3 -3
lines
actually do what the previous change said:
don't turn on the new 'SPECTRE_V2_GCC_MITIGATION' option yet.
Revision 1.1175: download - view: text, markup, annotated - select for diffs
Sat Apr 7 19:38:06 2018 UTC (7 years ago) by mrg
Branches: MAIN
Diff to: previous 1.1174: preferred, colored
Changes since revision 1.1174: +4 -2
lines
add an SPECTRE_V2_GCC_MITIGATION option to x86 kernels, that turns
on the GCC spectre v2 mitigation options.
XXX: pullup-8.
XXX: turn on in all kernels.
Revision 1.1107.2.13: download - view: text, markup, annotated - select for diffs
Sun Feb 25 21:16:07 2018 UTC (7 years, 1 month ago) by snj
Branches: netbsd-7
CVS tags: netbsd-7-2-RELEASE
Diff to: previous 1.1107.2.12: preferred, colored; branchpoint 1.1107: preferred, colored; next MAIN 1.1108: preferred, colored
Changes since revision 1.1107.2.12: +4 -4
lines
Apply patch (requested by maxv in ticket #1499):
- disable compat_svr4 and compat_svr4_32 everywhere
- disable compat_ibcs2 everywhere but on Vax
- remove svr4/svr4_32/ibcs2/freebsd from the module autoload list
Revision 1.1107.2.9.2.2: download - view: text, markup, annotated - select for diffs
Sun Feb 25 21:15:38 2018 UTC (7 years, 1 month ago) by snj
Branches: netbsd-7-1
CVS tags: netbsd-7-1-2-RELEASE
Diff to: previous 1.1107.2.9.2.1: preferred, colored; branchpoint 1.1107.2.9: preferred, colored; next MAIN 1.1107.2.10: preferred, colored
Changes since revision 1.1107.2.9.2.1: +4 -4
lines
Apply patch (requested by maxv in ticket #1499):
- disable compat_svr4 and compat_svr4_32 everywhere
- disable compat_ibcs2 everywhere but on Vax
- remove svr4/svr4_32/ibcs2/freebsd from the module autoload list
Revision 1.1107.2.8.2.2: download - view: text, markup, annotated - select for diffs
Sun Feb 25 21:15:19 2018 UTC (7 years, 1 month ago) by snj
Branches: netbsd-7-0
Diff to: previous 1.1107.2.8.2.1: preferred, colored; branchpoint 1.1107.2.8: preferred, colored; next MAIN 1.1107.2.9: preferred, colored
Changes since revision 1.1107.2.8.2.1: +4 -4
lines
Apply patch (requested by maxv in ticket #1499):
- disable compat_svr4 and compat_svr4_32 everywhere
- disable compat_ibcs2 everywhere but on Vax
- remove svr4/svr4_32/ibcs2/freebsd from the module autoload list
Revision 1.1174: download - view: text, markup, annotated - select for diffs
Sun Dec 10 17:19:48 2017 UTC (7 years, 4 months ago) by bouyer
Branches: MAIN
CVS tags: pgoyette-compat-base,
pgoyette-compat-0407,
pgoyette-compat-0330,
pgoyette-compat-0322,
pgoyette-compat-0315
Branch point for: pgoyette-compat
Diff to: previous 1.1173: preferred, colored
Changes since revision 1.1173: +13 -2
lines
Add dwiic, ihidev and ims
Revision 1.1173: download - view: text, markup, annotated - select for diffs
Sat Dec 9 00:29:33 2017 UTC (7 years, 4 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1172: preferred, colored
Changes since revision 1.1172: +3 -2
lines
Attach wsmouse at wsmousedev on x86 so modular mice have a hope.
As noted on tech-kern:
https://mail-index.NetBSD.org/tech-kern/2017/12/08/msg022708.html
Revision 1.1156.2.7: download - view: text, markup, annotated - select for diffs
Mon Dec 4 19:47:05 2017 UTC (7 years, 4 months ago) by snj
Branches: netbsd-8
Diff to: previous 1.1156.2.6: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.6: +8 -6
lines
Pull up following revision(s) (requested by martin in ticket #413):
sys/arch/i386/conf/GENERIC: revision 1.1171
PR port-i386/52774: vioscsi missing in i386 kernel
Revision 1.1079.2.5: download - view: text, markup, annotated - select for diffs
Sun Dec 3 11:36:17 2017 UTC (7 years, 4 months ago) by jdolecek
Branches: tls-maxphys
Diff to: previous 1.1079.2.4: preferred, colored; next MAIN 1.1080: preferred, colored
Changes since revision 1.1079.2.4: +98 -66
lines
update from HEAD
Revision 1.1172: download - view: text, markup, annotated - select for diffs
Thu Nov 30 11:56:45 2017 UTC (7 years, 4 months ago) by jmcneill
Branches: MAIN
CVS tags: tls-maxphys-base-20171202
Diff to: previous 1.1171: preferred, colored
Changes since revision 1.1171: +3 -2
lines
add qemufwcfg(4)
Revision 1.1171: download - view: text, markup, annotated - select for diffs
Wed Nov 29 16:10:01 2017 UTC (7 years, 4 months ago) by martin
Branches: MAIN
Diff to: previous 1.1170: preferred, colored
Changes since revision 1.1170: +8 -6
lines
PR port-i386/52774: vioscsi missing in i386 kernel
Revision 1.1170: download - view: text, markup, annotated - select for diffs
Mon Nov 6 02:57:18 2017 UTC (7 years, 5 months ago) by rin
Branches: MAIN
Diff to: previous 1.1169: preferred, colored
Changes since revision 1.1169: +3 -2
lines
Revive commented out DISKLABEL_EI option to kernel configuration files
that contain FFS_EI option.
Revision 1.1169: download - view: text, markup, annotated - select for diffs
Mon Oct 23 08:08:53 2017 UTC (7 years, 6 months ago) by skrll
Branches: MAIN
Diff to: previous 1.1168: preferred, colored
Changes since revision 1.1168: +4 -3
lines
Add bwfm (and sort other 802.11 usb wifi drivers)
Revision 1.1168: download - view: text, markup, annotated - select for diffs
Thu Sep 14 07:58:41 2017 UTC (7 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.1167: preferred, colored
Changes since revision 1.1167: +3 -19
lines
clean up COMPAT_* options for native netbsd code:
- new series of files that are useful for saying "i want everything
since netbsd 1.4", etc.
- use the fact COMPAT_* options have future dependancies to remove
many redundant options.
removes about 3000 lines total across kernel configuration files.
tested about 30 random kernels in the changed list.
Revision 1.1167: download - view: text, markup, annotated - select for diffs
Wed Sep 13 22:24:44 2017 UTC (7 years, 7 months ago) by sevan
Branches: MAIN
Diff to: previous 1.1166: preferred, colored
Changes since revision 1.1166: +2 -5
lines
Remove support for VERIFIED_EXEC_FP_RMD160, VERIFIED_EXEC_FP_SHA1, and VERIFIED_EXEC_FP_MD5 options.
These algorithms are either broken or on their way to being broken.
Discussed on tech-security
http://mail-index.netbsd.org/tech-security/2017/08/21/msg000936.html
ok riastradh
Revision 1.1156.2.6: download - view: text, markup, annotated - select for diffs
Mon Sep 11 05:13:45 2017 UTC (7 years, 7 months ago) by snj
Branches: netbsd-8
CVS tags: matt-nb8-mediatek-base,
matt-nb8-mediatek
Diff to: previous 1.1156.2.5: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.5: +3 -3
lines
Pull up following revision(s) (requested by maxv in ticket #256):
sys/arch/i386/conf/GENERIC: revision 1.1159 via patch
sys/arch/i386/conf/XEN3_DOMU: revision 1.78 via patch
sys/arch/i386/conf/XEN3_DOM0: revision 1.114 via patch
sys/kern/kern_exec.c: 1.443-1.444 via patch
Disable svr4 and ibcs2 by default.
These options are not well-tested, of a limited use case, and the potential
for damage is too high. Vulnerabilities were presented at DEFCON 25 - I see
that at least one of them can be exploited to get ring0 privileges.
--
Remove compat_freebsd from the list of autoloaded modules. Interested users
will now have to type 'modload' to use it, or uncomment the entry in
GENERIC. I should have removed it when I disabled COMPAT_FREEBSD by
default, sorry about that.
--
Remove compat_svr4, compat_svr4_32 and compat_ibcs2 from the list of
autoloaded modules. These options are disabled everywhere (except ibcs2
on Vax, but Vax does not support kernel modules, so doesn't matter),
therefore there is no issue in removing them from the list. Interested
users will now have to do a 'modload' first, or uncomment the entries in
GENERIC.
Revision 1.1156.2.5: download - view: text, markup, annotated - select for diffs
Thu Aug 31 08:41:33 2017 UTC (7 years, 7 months ago) by bouyer
Branches: netbsd-8
Diff to: previous 1.1156.2.4: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.4: +3 -3
lines
apply paych, requested by maxv in ticket #237:
sys/arch/amiga/conf/DRACO patch
sys/arch/amiga/conf/GENERIC patch
sys/arch/amiga/conf/GENERIC.in patch
sys/arch/i386/conf/ALL patch
sys/arch/i386/conf/GENERIC patch
sys/arch/i386/conf/XEN3_DOM0 patch
sys/arch/i386/conf/XEN3_DOMU patch
sys/arch/sparc/conf/GENERIC patch
sys/arch/sparc/conf/KRUPS patch
sys/arch/sparc/conf/MRCOFFEE patch
sys/arch/sparc/conf/TADPOLE3GX patch
sys/arch/sparc64/conf/GENERIC patch
sys/arch/sparc64/conf/NONPLUS64 patch
sys/kern/kern_exec.c patch
Disables compat_svr4 and compat_svr4_32 on each architecture,
and removes the associated module autoload entries.
Revision 1.1156.2.4: download - view: text, markup, annotated - select for diffs
Tue Aug 29 09:42:19 2017 UTC (7 years, 7 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156.2.3: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.3: +3 -3
lines
Requested by skrll in ticket #60:
sys/arch/amd64/conf/GENERIC
sys/arch/amd64/conf/XEN3_DOM0
sys/arch/amd64/conf/XEN3_DOMU
sys/arch/cobalt/conf/GENERIC
sys/arch/evbarm/conf/BEAGLEBONE
sys/arch/evbarm/conf/BEAGLEBOARD
sys/arch/evbarm/conf/BEAGLEBOARDXM
sys/arch/evbarm/conf/GENERIC.common
sys/arch/i386/conf/GENERIC
sys/arch/i386/conf/XEN3_DOM0
sys/arch/i386/conf/XEN3_DOMU
sys/arch/mvmeppc/conf/GENERIC
sys/arch/shark/conf/GENERIC
sys/arch/sparc64/conf/GENERIC
sys/arch/zaurus/conf/GENERIC
Re-enable option DIAGNOSTIC for now, will remove it again later.
Revision 1.1118.2.13: download - view: text, markup, annotated - select for diffs
Mon Aug 28 17:51:40 2017 UTC (7 years, 7 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.12: preferred, colored; branchpoint 1.1118: preferred, colored; next MAIN 1.1119: preferred, colored
Changes since revision 1.1118.2.12: +12 -9
lines
Sync with HEAD
Revision 1.1066.2.8: download - view: text, markup, annotated - select for diffs
Sat Aug 26 16:26:46 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-6
Diff to: previous 1.1066.2.7: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.7: +3 -3
lines
Apply patch (requested by maxv in ticket #1466):
Disable vm86 by default. The use case is limited, and the potential
for damage is too high.
Revision 1.1066.2.7.6.1: download - view: text, markup, annotated - select for diffs
Sat Aug 26 16:26:29 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-6-1
Diff to: previous 1.1066.2.7: preferred, colored
Changes since revision 1.1066.2.7: +3 -3
lines
Apply patch (requested by maxv in ticket #1466):
Disable vm86 by default. The use case is limited, and the potential
for damage is too high.
Revision 1.1066.2.7.4.1: download - view: text, markup, annotated - select for diffs
Sat Aug 26 16:26:06 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-6-0
Diff to: previous 1.1066.2.7: preferred, colored
Changes since revision 1.1066.2.7: +3 -3
lines
Apply patch (requested by maxv in ticket #1466):
Disable vm86 by default. The use case is limited, and the potential
for damage is too high.
Revision 1.1156.2.3: download - view: text, markup, annotated - select for diffs
Fri Aug 25 05:53:12 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-8
Diff to: previous 1.1156.2.2: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.2: +3 -3
lines
Pull up following revision(s) (requested by maxv in ticket #230):
sys/arch/i386/conf/GENERIC: revision 1.1158
Disable vm86 by default. The use case is limited, and the potential for
damage is too high.
This code is fragile, and relies on a certain number of assumptions, some
of which are not be totally true. For example, it relies on the fact that
a 16bit process cannot perform a syscall, but verily it can. The slighest
confusion in the trap frame can lead to ring0 exploits. Also, I'm not
convinced that it interacts well with the compatibility layers.
Revision 1.1107.2.12: download - view: text, markup, annotated - select for diffs
Thu Aug 24 06:52:06 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.11: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.11: +3 -3
lines
Apply patch (requested by maxv in ticket #1463):
i386 GENERIC: disable VM86 by default.
Revision 1.1107.2.9.2.1: download - view: text, markup, annotated - select for diffs
Thu Aug 24 06:51:17 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-7-1
CVS tags: netbsd-7-1-1-RELEASE
Diff to: previous 1.1107.2.9: preferred, colored
Changes since revision 1.1107.2.9: +3 -3
lines
Apply patch (requested by maxv in ticket #1463):
i386 GENERIC: disable VM86 by default.
Revision 1.1107.2.8.2.1: download - view: text, markup, annotated - select for diffs
Thu Aug 24 06:50:16 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-7-0
Diff to: previous 1.1107.2.8: preferred, colored
Changes since revision 1.1107.2.8: +3 -3
lines
Apply patch (requested by maxv in ticket #1463):
i386 GENERIC: disable VM86 by default.
Revision 1.1166: download - view: text, markup, annotated - select for diffs
Sun Aug 13 08:48:30 2017 UTC (7 years, 8 months ago) by christos
Branches: MAIN
CVS tags: nick-nhusb-base-20170825
Diff to: previous 1.1165: preferred, colored
Changes since revision 1.1165: +3 -2
lines
Add ALPS pms support
Revision 1.1165: download - view: text, markup, annotated - select for diffs
Sat Aug 12 06:46:13 2017 UTC (7 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1164: preferred, colored
Changes since revision 1.1164: +2 -3
lines
Remove support for vm86 on i386. It is bug-friendly, and there is no point
in having kernel support for this: the instruction set of the CPU is small,
and it can easily be emulated in userland entirely. There are also several
assumptions in the code that are not respected, and the slightest confusion
in the trap frame can lead to ring0 exploits.
vm86 has received zero maintenance. As far as I can tell, it was added
20 years ago in order to make doscmd work. But doscmd has not been
maintained either, and was removed from pkgsrc in 2011. dosbox can be used
instead: it does not require kernel support, and will produce better
results than our flimsy implementation.
Pass 1. (many pieces still in the tree)
Revision 1.1164: download - view: text, markup, annotated - select for diffs
Wed Aug 9 18:45:30 2017 UTC (7 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1163: preferred, colored
Changes since revision 1.1163: +2 -3
lines
Remove compat_ibcs2 from i386. After a discussion on port-vax, it turns
out that compat_ibcs2 does not implement the iBCS2 standard - which is
x86-specific - but rather SVR3. Our real iBCS2 implementation was a
mixture of compat_ibcs2 and compat_svr4, and was only partial. Keeping
support for this in i386 is totally irrelevant today. I also asked on
port-i386 but didn't wait long.
The main issue is that compat_ibcs2 should have been called compat_svr3.
But CVS does not support renaming files, and moving things around is both
painful and tiring, even more so when no one seems to be interested in
doing this work or in the feature at all. For now compat_ibcs2 is available
on Vax and will stay, until someone (not me) cleans it up.
Revision 1.1163: download - view: text, markup, annotated - select for diffs
Fri Aug 4 09:30:19 2017 UTC (7 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1162: preferred, colored
Changes since revision 1.1162: +5 -5
lines
Revert my changes, and re-enable COMPAT_NOMID, COMPAT_09 and COMPAT_43.
Several compat options happen to be dependent on the compat_43_* functions,
the availability of which is (wrongfully) controlled with COMPAT_43. Same
for COMPAT_09.
Revision 1.1156.2.2: download - view: text, markup, annotated - select for diffs
Tue Aug 1 23:18:30 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-8
Diff to: previous 1.1156.2.1: preferred, colored; branchpoint 1.1156: preferred, colored
Changes since revision 1.1156.2.1: +3 -3
lines
Pull up following revision(s) (requested by maxv in ticket #164):
distrib/sets/lists/base/md.amd64: revision 1.269
distrib/sets/lists/debug/md.amd64: revision 1.97
sys/arch/amd64/conf/GENERIC: revision 1.460
sys/arch/amd64/conf/files.amd64: revision 1.89
sys/arch/i386/conf/GENERIC: revision 1.1157
sys/arch/i386/conf/files.i386: revision 1.379
sys/arch/i386/i386/i386_trap.S: revision 1.7-1.8
sys/arch/i386/include/frameasm.h: revision 1.16
sys/arch/x86/include/sysarch.h: revision 1.12
sys/arch/x86/x86/pmc.c: revision 1.8-1.10
sys/arch/x86/x86/sys_machdep.c: revision 1.36
sys/arch/xen/conf/files.compat: revision 1.26
sys/secmodel/suser/secmodel_suser.c: revision 1.43
sys/sys/kauth.h: revision 1.74
usr.bin/pmc/Makefile: revision 1.5
usr.bin/pmc/pmc.1: revision 1.12-1.13
usr.bin/pmc/pmc.c: revision 1.24-1.25
style
--
style
--
Disable interrupts for T_NMI (inline calltrap). Note that there's still a
way to evade the NMI mode here, if a segment register faults in
INTRFASTEXIT; but we don't care. I didn't test this change, but it seems
fine enough.
--
Make the PMC syscalls privileged.
--
Check argc, and add a message.
--
include opt_pmc.h
--
Build the pmc tool on amd64.
--
Properly handle overflows, and take them into account in userland.
--
Update.
--
Enable PMCs by default.
--
Sort sections. Fix macro usage.
Revision 1.1162: download - view: text, markup, annotated - select for diffs
Mon Jul 31 15:43:33 2017 UTC (7 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1161: preferred, colored
Changes since revision 1.1161: +5 -5
lines
Disable all the compat options until COMPAT_10. NetBSD 1.0 was released on
October 26 1994; 23 years of compatibility is enough. Discussed with
christos quickly.
Revision 1.1161: download - view: text, markup, annotated - select for diffs
Sat Jul 29 18:08:58 2017 UTC (7 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1160: preferred, colored
Changes since revision 1.1160: +2 -3
lines
Remove TCP_COMPAT_42 from the config files. Pass 3.
Revision 1.1160: download - view: text, markup, annotated - select for diffs
Sat Jul 29 12:00:56 2017 UTC (7 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1159: preferred, colored
Changes since revision 1.1159: +2 -3
lines
Remove svr4 from the config files.
Revision 1.1159: download - view: text, markup, annotated - select for diffs
Fri Jul 28 14:13:13 2017 UTC (7 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1158: preferred, colored
Changes since revision 1.1158: +4 -4
lines
Disable svr4 and ibcs2 by default.
These options are not well-tested, of a limited use case, and the potential
for damage is too high. Vulnerabilities were presented at DEFCON 25 - I see
that at least one of them can be exploited to get ring0 privileges.
Revision 1.1158: download - view: text, markup, annotated - select for diffs
Fri Jul 28 13:59:07 2017 UTC (7 years, 8 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1157: preferred, colored
Changes since revision 1.1157: +3 -3
lines
Disable vm86 by default. The use case is limited, and the potential for
damage is too high.
This code is fragile, and relies on a certain number of assumptions, some
of which are not be totally true. For example, it relies on the fact that
a 16bit process cannot perform a syscall, but verily it can. The slighest
confusion in the trap frame can lead to ring0 exploits. Also, I'm not
convinced that it interacts well with the compatibility layers.
Revision 1.1107.2.11: download - view: text, markup, annotated - select for diffs
Tue Jul 25 19:43:03 2017 UTC (7 years, 9 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.10: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.10: +3 -2
lines
Apply patch (requested by nonaka in ticket #1413):
iwm(4): Add a driver for Intel Wireless 726x, 316x, 826x and 416x series.
Ported from OpenBSD.
Revision 1.1157: download - view: text, markup, annotated - select for diffs
Wed Jul 12 17:40:34 2017 UTC (7 years, 9 months ago) by maxv
Branches: MAIN
CVS tags: perseant-stdc-iso10646-base,
perseant-stdc-iso10646
Diff to: previous 1.1156: preferred, colored
Changes since revision 1.1156: +3 -3
lines
Enable PMCs by default.
Revision 1.1156.2.1: download - view: text, markup, annotated - select for diffs
Wed Jul 5 13:58:48 2017 UTC (7 years, 9 months ago) by martin
Branches: netbsd-8
Diff to: previous 1.1156: preferred, colored
Changes since revision 1.1156: +5 -5
lines
Remove options DIAGNOSTIC/DEBUG and PAX debug options.
Requested by snj in #60.
Revision 1.1156: download - view: text, markup, annotated - select for diffs
Sat May 27 22:53:29 2017 UTC (7 years, 10 months ago) by bouyer
Branches: MAIN
CVS tags: netbsd-8-base
Branch point for: netbsd-8
Diff to: previous 1.1155: preferred, colored
Changes since revision 1.1155: +5 -2
lines
Add options CAN and pseudo-device canloop to ALL kernel configs.
Add the same commented out to i386/amd64 GENERIC and OLIMEXLIME2 (A20-based).
Also add commented out awincan0 in OLIMEXLIME2.
Revision 1.1155: download - view: text, markup, annotated - select for diffs
Wed May 24 20:23:04 2017 UTC (7 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.1154: preferred, colored
Changes since revision 1.1154: +3 -3
lines
rename u3ginit driver to umodeswitch
Revision 1.1137.2.5: download - view: text, markup, annotated - select for diffs
Wed Apr 26 02:53:03 2017 UTC (8 years ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.1137.2.4: preferred, colored; branchpoint 1.1137: preferred, colored; next MAIN 1.1138: preferred, colored
Changes since revision 1.1137.2.4: +5 -2
lines
Sync with HEAD
Revision 1.1146.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 21 16:53:28 2017 UTC (8 years ago) by bouyer
Branches: bouyer-socketcan
Diff to: previous 1.1146: preferred, colored; next MAIN 1.1147: preferred, colored
Changes since revision 1.1146: +7 -4
lines
Sync with HEAD
Revision 1.1154: download - view: text, markup, annotated - select for diffs
Tue Apr 18 19:09:12 2017 UTC (8 years ago) by riastradh
Branches: MAIN
CVS tags: prg-localcount2-base3,
prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
prg-localcount2,
pgoyette-localcount-20170426,
bouyer-socketcan-base1
Diff to: previous 1.1153: preferred, colored
Changes since revision 1.1153: +3 -3
lines
gson@ informs me the Alea I and II have the same USB product id.
Thus, ualea(4) should work for both of them. Rename USB product id
ARANEUS ALEA_II to ARANEUS ALEA to reflect this.
No functional change intended, except perhaps via usbdevs.
Revision 1.1153: download - view: text, markup, annotated - select for diffs
Mon Apr 17 08:59:37 2017 UTC (8 years ago) by riastradh
Branches: MAIN
Diff to: previous 1.1152: preferred, colored
Changes since revision 1.1152: +5 -2
lines
New rndsource driver for Araneus Alea II TRNG USB devices.
Disabled by default in x86/GENERIC and usbdevices.config pending
review and testing without rump ugenhc in the way, but enabled in
x86/ALL for compile-testing.
(Hi gson! Finally found a round tuit in my pocket, next to a certain
rectangular one.)
Revision 1.1107.2.10: download - view: text, markup, annotated - select for diffs
Wed Apr 5 19:54:17 2017 UTC (8 years ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.9: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.9: +4 -5
lines
Pull up following revision(s) (requested by skrll in ticket #1395):
share/man/man4/axe.4: netbsd-7-nhusb
share/man/man4/axen.4: netbsd-7-nhusb
share/man/man4/cdce.4: netbsd-7-nhusb
share/man/man4/uaudio.4: netbsd-7-nhusb
share/man/man4/ucom.4: netbsd-7-nhusb
share/man/man4/uep.4: netbsd-7-nhusb
share/man/man4/urtw.4: netbsd-7-nhusb
share/man/man4/usb.4: netbsd-7-nhusb
share/man/man4/uyap.4: netbsd-7-nhusb
share/man/man4/xhci.4: netbsd-7-nhusb
share/man/man9/usbdi.9: netbsd-7-nhusb
sys/arch/amd64/conf/ALL: netbsd-7-nhusb
sys/arch/amd64/conf/GENERIC: netbsd-7-nhusb
sys/arch/amiga/dev/slhci_zbus.c: netbsd-7-nhusb
sys/arch/arm/allwinner/awin_otg.c: netbsd-7-nhusb
sys/arch/arm/allwinner/awin_usb.c: netbsd-7-nhusb
sys/arch/arm/amlogic/amlogic_dwctwo.c: netbsd-7-nhusb
sys/arch/arm/at91/at91ohci.c: netbsd-7-nhusb
sys/arch/arm/broadcom/bcm2835_dwctwo.c: netbsd-7-nhusb
sys/arch/arm/broadcom/bcm53xx_usb.c: netbsd-7-nhusb
sys/arch/arm/ep93xx/epohci.c: netbsd-7-nhusb
sys/arch/arm/gemini/obio_ehci.c: netbsd-7-nhusb
sys/arch/arm/imx/files.imx23: netbsd-7-nhusb
sys/arch/arm/imx/imxusb.c: netbsd-7-nhusb
sys/arch/arm/imx/imxusbreg.h: netbsd-7-nhusb
sys/arch/arm/omap/obio_ohci.c: netbsd-7-nhusb
sys/arch/arm/omap/omap3_ehci.c: netbsd-7-nhusb
sys/arch/arm/omap/omapl1x_ohci.c: netbsd-7-nhusb
sys/arch/arm/omap/tiotg.c: netbsd-7-nhusb
sys/arch/arm/s3c2xx0/ohci_s3c24x0.c: netbsd-7-nhusb
sys/arch/arm/samsung/exynos_usb.c: netbsd-7-nhusb
sys/arch/arm/xscale/pxa2x0_ohci.c: netbsd-7-nhusb
sys/arch/arm/zynq/zynq_usb.c: netbsd-7-nhusb
sys/arch/hpcarm/dev/nbp_slhci.c: netbsd-7-nhusb
sys/arch/hpcmips/dev/plumohci.c: netbsd-7-nhusb
sys/arch/i386/conf/ALL: netbsd-7-nhusb
sys/arch/i386/conf/GENERIC: netbsd-7-nhusb
sys/arch/i386/pci/gcscehci.c: netbsd-7-nhusb
sys/arch/luna68k/conf/GENERIC: netbsd-7-nhusb
sys/arch/mips/adm5120/dev/ahci.c: netbsd-7-nhusb
sys/arch/mips/adm5120/dev/ahcivar.h: netbsd-7-nhusb
sys/arch/mips/alchemy/dev/ohci_aubus.c: netbsd-7-nhusb
sys/arch/mips/atheros/dev/ehci_arbus.c: netbsd-7-nhusb
sys/arch/mips/atheros/dev/ohci_arbus.c: netbsd-7-nhusb
sys/arch/mips/conf/files.adm5120: netbsd-7-nhusb
sys/arch/mips/ralink/ralink_ehci.c: netbsd-7-nhusb
sys/arch/mips/ralink/ralink_ohci.c: netbsd-7-nhusb
sys/arch/mips/rmi/rmixl_ehci.c: netbsd-7-nhusb
sys/arch/mips/rmi/rmixl_ohci.c: netbsd-7-nhusb
sys/arch/playstation2/dev/ohci_sbus.c: netbsd-7-nhusb
sys/arch/powerpc/booke/dev/pq3ehci.c: netbsd-7-nhusb
sys/arch/powerpc/ibm4xx/dev/dwctwo_plb.c: netbsd-7-nhusb
sys/arch/x68k/dev/slhci_intio.c: netbsd-7-nhusb
sys/conf/files: netbsd-7-nhusb
sys/dev/cardbus/ehci_cardbus.c: netbsd-7-nhusb
sys/dev/cardbus/ohci_cardbus.c: netbsd-7-nhusb
sys/dev/cardbus/uhci_cardbus.c: netbsd-7-nhusb
sys/dev/ic/sl811hs.c: netbsd-7-nhusb
sys/dev/ic/sl811hsvar.h: netbsd-7-nhusb
sys/dev/isa/slhci_isa.c: netbsd-7-nhusb
sys/dev/marvell/ehci_mv.c: netbsd-7-nhusb
sys/dev/pci/ehci_pci.c: netbsd-7-nhusb
sys/dev/pci/ohci_pci.c: netbsd-7-nhusb
sys/dev/pci/uhci_pci.c: netbsd-7-nhusb
sys/dev/pci/xhci_pci.c: netbsd-7-nhusb
sys/dev/pcmcia/slhci_pcmcia.c: netbsd-7-nhusb
sys/dev/usb/Makefile.usbdevs: netbsd-7-nhusb
sys/dev/usb/TODO: netbsd-7-nhusb
sys/dev/usb/TODO.usbmp: netbsd-7-nhusb
sys/dev/usb/aubtfwl.c: netbsd-7-nhusb
sys/dev/usb/auvitek.c: netbsd-7-nhusb
sys/dev/usb/auvitek_audio.c: netbsd-7-nhusb
sys/dev/usb/auvitek_dtv.c: netbsd-7-nhusb
sys/dev/usb/auvitek_i2c.c: netbsd-7-nhusb
sys/dev/usb/auvitek_video.c: netbsd-7-nhusb
sys/dev/usb/auvitekvar.h: netbsd-7-nhusb
sys/dev/usb/ehci.c: netbsd-7-nhusb
sys/dev/usb/ehcireg.h: netbsd-7-nhusb
sys/dev/usb/ehcivar.h: netbsd-7-nhusb
sys/dev/usb/emdtv.c: netbsd-7-nhusb
sys/dev/usb/emdtv_dtv.c: netbsd-7-nhusb
sys/dev/usb/emdtv_ir.c: netbsd-7-nhusb
sys/dev/usb/emdtvvar.h: netbsd-7-nhusb
sys/dev/usb/ezload.c: netbsd-7-nhusb
sys/dev/usb/ezload.h: netbsd-7-nhusb
sys/dev/usb/files.usb: netbsd-7-nhusb
sys/dev/usb/hid.c: netbsd-7-nhusb
sys/dev/usb/hid.h: netbsd-7-nhusb
sys/dev/usb/if_athn_usb.c: netbsd-7-nhusb
sys/dev/usb/if_athn_usb.h: netbsd-7-nhusb
sys/dev/usb/if_atu.c: netbsd-7-nhusb
sys/dev/usb/if_atureg.h: netbsd-7-nhusb
sys/dev/usb/if_aue.c: netbsd-7-nhusb
sys/dev/usb/if_auereg.h: netbsd-7-nhusb
sys/dev/usb/if_axe.c: netbsd-7-nhusb
sys/dev/usb/if_axen.c: netbsd-7-nhusb
sys/dev/usb/if_axenreg.h: netbsd-7-nhusb
sys/dev/usb/if_axereg.h: netbsd-7-nhusb
sys/dev/usb/if_cdce.c: netbsd-7-nhusb
sys/dev/usb/if_cdcereg.h: netbsd-7-nhusb
sys/dev/usb/if_cue.c: netbsd-7-nhusb
sys/dev/usb/if_cuereg.h: netbsd-7-nhusb
sys/dev/usb/if_kue.c: netbsd-7-nhusb
sys/dev/usb/if_kuereg.h: netbsd-7-nhusb
sys/dev/usb/if_otus.c: netbsd-7-nhusb
sys/dev/usb/if_otusvar.h: netbsd-7-nhusb
sys/dev/usb/if_rum.c: netbsd-7-nhusb
sys/dev/usb/if_rumreg.h: netbsd-7-nhusb
sys/dev/usb/if_rumvar.h: netbsd-7-nhusb
sys/dev/usb/if_run.c: netbsd-7-nhusb
sys/dev/usb/if_runvar.h: netbsd-7-nhusb
sys/dev/usb/if_smsc.c: netbsd-7-nhusb
sys/dev/usb/if_smscreg.h: netbsd-7-nhusb
sys/dev/usb/if_smscvar.h: netbsd-7-nhusb
sys/dev/usb/if_udav.c: netbsd-7-nhusb
sys/dev/usb/if_udavreg.h: netbsd-7-nhusb
sys/dev/usb/if_upgt.c: netbsd-7-nhusb
sys/dev/usb/if_upgtvar.h: netbsd-7-nhusb
sys/dev/usb/if_upl.c: netbsd-7-nhusb
sys/dev/usb/if_ural.c: netbsd-7-nhusb
sys/dev/usb/if_uralreg.h: netbsd-7-nhusb
sys/dev/usb/if_uralvar.h: netbsd-7-nhusb
sys/dev/usb/if_url.c: netbsd-7-nhusb
sys/dev/usb/if_urlreg.h: netbsd-7-nhusb
sys/dev/usb/if_urndis.c: netbsd-7-nhusb
sys/dev/usb/if_urndisreg.h: netbsd-7-nhusb
sys/dev/usb/if_urtw.c: netbsd-7-nhusb
sys/dev/usb/if_urtwn.c: netbsd-7-nhusb
sys/dev/usb/if_urtwn_data.h: netbsd-7-nhusb
sys/dev/usb/if_urtwnreg.h: netbsd-7-nhusb
sys/dev/usb/if_urtwnvar.h: netbsd-7-nhusb
sys/dev/usb/if_urtwreg.h: netbsd-7-nhusb
sys/dev/usb/if_zyd.c: netbsd-7-nhusb
sys/dev/usb/if_zydreg.h: netbsd-7-nhusb
sys/dev/usb/irmce.c: netbsd-7-nhusb
sys/dev/usb/moscom.c: netbsd-7-nhusb
sys/dev/usb/motg.c: netbsd-7-nhusb
sys/dev/usb/motgvar.h: netbsd-7-nhusb
sys/dev/usb/ohci.c: netbsd-7-nhusb
sys/dev/usb/ohcireg.h: netbsd-7-nhusb
sys/dev/usb/ohcivar.h: netbsd-7-nhusb
sys/dev/usb/pseye.c: netbsd-7-nhusb
sys/dev/usb/slurm.c: netbsd-7-nhusb
sys/dev/usb/stuirda.c: netbsd-7-nhusb
sys/dev/usb/u3g.c: netbsd-7-nhusb
sys/dev/usb/uark.c: netbsd-7-nhusb
sys/dev/usb/uatp.c: netbsd-7-nhusb
sys/dev/usb/uaudio.c: netbsd-7-nhusb
sys/dev/usb/uberry.c: netbsd-7-nhusb
sys/dev/usb/ubsa.c: netbsd-7-nhusb
sys/dev/usb/ubsa_common.c: netbsd-7-nhusb
sys/dev/usb/ubsavar.h: netbsd-7-nhusb
sys/dev/usb/ubt.c: netbsd-7-nhusb
sys/dev/usb/uchcom.c: netbsd-7-nhusb
sys/dev/usb/ucom.c: netbsd-7-nhusb
sys/dev/usb/ucomvar.h: netbsd-7-nhusb
sys/dev/usb/ucycom.c: netbsd-7-nhusb
sys/dev/usb/udl.c: netbsd-7-nhusb
sys/dev/usb/udl.h: netbsd-7-nhusb
sys/dev/usb/udsbr.c: netbsd-7-nhusb
sys/dev/usb/udsir.c: netbsd-7-nhusb
sys/dev/usb/uep.c: netbsd-7-nhusb
sys/dev/usb/uftdi.c: netbsd-7-nhusb
sys/dev/usb/uftdireg.h: netbsd-7-nhusb
sys/dev/usb/ugen.c: netbsd-7-nhusb
sys/dev/usb/ugensa.c: netbsd-7-nhusb
sys/dev/usb/uhci.c: netbsd-7-nhusb
sys/dev/usb/uhcireg.h: netbsd-7-nhusb
sys/dev/usb/uhcivar.h: netbsd-7-nhusb
sys/dev/usb/uhid.c: netbsd-7-nhusb
sys/dev/usb/uhidev.c: netbsd-7-nhusb
sys/dev/usb/uhidev.h: netbsd-7-nhusb
sys/dev/usb/uhmodem.c: netbsd-7-nhusb
sys/dev/usb/uhso.c: netbsd-7-nhusb
sys/dev/usb/uhub.c: netbsd-7-nhusb
sys/dev/usb/uipad.c: netbsd-7-nhusb
sys/dev/usb/uipaq.c: netbsd-7-nhusb
sys/dev/usb/uirda.c: netbsd-7-nhusb
sys/dev/usb/uirdavar.h: netbsd-7-nhusb
sys/dev/usb/ukbd.c: netbsd-7-nhusb
sys/dev/usb/ukbdmap.c: netbsd-7-nhusb
sys/dev/usb/ukyopon.c: netbsd-7-nhusb
sys/dev/usb/ukyopon.h: netbsd-7-nhusb
sys/dev/usb/ulpt.c: netbsd-7-nhusb
sys/dev/usb/umass.c: netbsd-7-nhusb
sys/dev/usb/umass_isdata.c: netbsd-7-nhusb
sys/dev/usb/umass_isdata.h: netbsd-7-nhusb
sys/dev/usb/umass_quirks.c: netbsd-7-nhusb
sys/dev/usb/umass_quirks.h: netbsd-7-nhusb
sys/dev/usb/umass_scsipi.c: netbsd-7-nhusb
sys/dev/usb/umass_scsipi.h: netbsd-7-nhusb
sys/dev/usb/umassvar.h: netbsd-7-nhusb
sys/dev/usb/umcs.c: netbsd-7-nhusb
sys/dev/usb/umct.c: netbsd-7-nhusb
sys/dev/usb/umidi.c: netbsd-7-nhusb
sys/dev/usb/umidi_quirks.c: netbsd-7-nhusb
sys/dev/usb/umidi_quirks.h: netbsd-7-nhusb
sys/dev/usb/umodem.c: netbsd-7-nhusb
sys/dev/usb/umodem_common.c: netbsd-7-nhusb
sys/dev/usb/umodemvar.h: netbsd-7-nhusb
sys/dev/usb/ums.c: netbsd-7-nhusb
sys/dev/usb/uplcom.c: netbsd-7-nhusb
sys/dev/usb/urio.c: netbsd-7-nhusb
sys/dev/usb/urio.h: netbsd-7-nhusb
sys/dev/usb/usb.c: netbsd-7-nhusb
sys/dev/usb/usb.h: netbsd-7-nhusb
sys/dev/usb/usb_mem.c: netbsd-7-nhusb
sys/dev/usb/usb_mem.h: netbsd-7-nhusb
sys/dev/usb/usb_quirks.c: netbsd-7-nhusb
sys/dev/usb/usb_quirks.h: netbsd-7-nhusb
sys/dev/usb/usb_subr.c: netbsd-7-nhusb
sys/dev/usb/usbdevices.config: netbsd-7-nhusb
sys/dev/usb/usbdevs: netbsd-7-nhusb
sys/dev/usb/usbdevs.h: netbsd-7-nhusb
sys/dev/usb/usbdevs_data.h: netbsd-7-nhusb
sys/dev/usb/usbdi.c: netbsd-7-nhusb
sys/dev/usb/usbdi.h: netbsd-7-nhusb
sys/dev/usb/usbdi_util.c: netbsd-7-nhusb
sys/dev/usb/usbdi_util.h: netbsd-7-nhusb
sys/dev/usb/usbdivar.h: netbsd-7-nhusb
sys/dev/usb/usbhid.h: netbsd-7-nhusb
sys/dev/usb/usbhist.h: netbsd-7-nhusb
sys/dev/usb/usbroothub.c: netbsd-7-nhusb
sys/dev/usb/usbroothub.h: netbsd-7-nhusb
sys/dev/usb/usbroothub_subr.c: delete
sys/dev/usb/usbroothub_subr.h: delete
sys/dev/usb/uscanner.c: netbsd-7-nhusb
sys/dev/usb/uslsa.c: netbsd-7-nhusb
sys/dev/usb/usscanner.c: netbsd-7-nhusb
sys/dev/usb/ustir.c: netbsd-7-nhusb
sys/dev/usb/uthum.c: netbsd-7-nhusb
sys/dev/usb/utoppy.c: netbsd-7-nhusb
sys/dev/usb/uts.c: netbsd-7-nhusb
sys/dev/usb/uvideo.c: netbsd-7-nhusb
sys/dev/usb/uvisor.c: netbsd-7-nhusb
sys/dev/usb/uvscom.c: netbsd-7-nhusb
sys/dev/usb/uyap.c: netbsd-7-nhusb
sys/dev/usb/uyap_firmware.h: netbsd-7-nhusb
sys/dev/usb/uyurex.c: netbsd-7-nhusb
sys/dev/usb/x1input_rdesc.h: netbsd-7-nhusb
sys/dev/usb/xhci.c: netbsd-7-nhusb
sys/dev/usb/xhcireg.h: netbsd-7-nhusb
sys/dev/usb/xhcivar.h: netbsd-7-nhusb
sys/dev/usb/xinput_rdesc.h: netbsd-7-nhusb
sys/external/bsd/common/conf/files.linux: netbsd-7-nhusb
sys/external/bsd/common/include/linux/err.h: netbsd-7-nhusb
sys/external/bsd/common/include/linux/kernel.h: netbsd-7-nhusb
sys/external/bsd/common/include/linux/workqueue.h: netbsd-7-nhusb
sys/external/bsd/common/linux/linux_work.c: netbsd-7-nhusb
sys/external/bsd/drm2/dist/drm/radeon/atombios_encoders.c: netbsd-7-nhusb
sys/external/bsd/drm2/dist/drm/radeon/radeon_legacy_encoders.c: netbsd-7-nhusb
sys/external/bsd/drm2/drm/files.drmkms: netbsd-7-nhusb
sys/external/bsd/drm2/i915drm/files.i915drmkms: netbsd-7-nhusb
sys/external/bsd/drm2/include/linux/err.h: delete
sys/external/bsd/drm2/include/linux/workqueue.h: delete
sys/external/bsd/drm2/linux/files.drmkms_linux: netbsd-7-nhusb
sys/external/bsd/drm2/linux/linux_work.c: delete
sys/external/bsd/dwc2/dwc2.c: netbsd-7-nhusb
sys/external/bsd/dwc2/dwc2.h: netbsd-7-nhusb
sys/external/bsd/dwc2/dwc2var.h: netbsd-7-nhusb
sys/external/bsd/dwc2/dwctwo2netbsd: netbsd-7-nhusb
sys/external/bsd/dwc2/conf/files.dwc2: netbsd-7-nhusb
sys/external/bsd/dwc2/dist/dwc2_core.c: netbsd-7-nhusb
sys/external/bsd/dwc2/dist/dwc2_core.h: netbsd-7-nhusb
sys/external/bsd/dwc2/dist/dwc2_coreintr.c: netbsd-7-nhusb
sys/external/bsd/dwc2/dist/dwc2_hcd.c: netbsd-7-nhusb
sys/external/bsd/dwc2/dist/dwc2_hcd.h: netbsd-7-nhusb
sys/external/bsd/dwc2/dist/dwc2_hcdddma.c: netbsd-7-nhusb
sys/external/bsd/dwc2/dist/dwc2_hcdintr.c: netbsd-7-nhusb
sys/external/bsd/dwc2/dist/dwc2_hcdqueue.c: netbsd-7-nhusb
sys/external/bsd/dwc2/dist/dwc2_hw.h: netbsd-7-nhusb
sys/modules/drmkms_linux/Makefile: netbsd-7-nhusb
sys/modules/i915drmkms/Makefile: netbsd-7-nhusb
sys/rump/dev/lib/libugenhc/ugenhc.c: netbsd-7-nhusb
sys/rump/dev/lib/libusb/Makefile: netbsd-7-nhusb
sys/rump/dev/lib/libusb/USB.ioconf: netbsd-7-nhusb
sys/rump/dev/lib/libusb/usb_at_ugenhc.c: delete
sys/rump/dev/lib/libusb/opt/opt_usb.h: delete
sys/rump/dev/lib/libusb/opt/opt_usbverbose.h: delete
sys/sys/mbuf.h: netbsd-7-nhusb
usr.sbin/usbdevs/usbdevs.8: netbsd-7-nhusb
usr.sbin/usbdevs/usbdevs.c: netbsd-7-nhusb
Merge netbsd-7-nhusb:
- API / infrastructure changes to support memory management changes.
- Memory management improvements and bug fixes.
- HCDs should now be MP safe
- conversion to KERNHIST based debug
- FS/LS isoc support on ehci(4).
- conversion to kmem(9)
- Some USB 3 support - mostly from Takahiro HAYASHI (t-hash).
- interrupt transfers now get proper DMA operations
- general bug fixes
- kern/48308
- uhub status notification improvements
- umass(4) probe fix (applied to HEAD already)
- ohci(4) short transfer fix
- Change the SOFTINT level from NET to SERIAL for the USB softint handler.
This gives the callback a chance of running when another softint handler
at SOFTINT_NET has blocked holding a lock, e.g. softnet_lock and most of
the network stack.
- kern/49065 - ifconfig tun0 ... sequence locks up system / lockup:
softnet_lock held across usb xfr
- kern/50491 - unkillable wait in usbd_transfer while using usmsc0
on raspberry pi 2
- kern/51395 - USB Ethernet makes xhci hang
- Various improvements to slhci(4)
- Various improvements to dwc2(4)
Revision 1.1137.2.4: download - view: text, markup, annotated - select for diffs
Mon Mar 20 06:57:14 2017 UTC (8 years, 1 month ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.1137.2.3: preferred, colored; branchpoint 1.1137: preferred, colored
Changes since revision 1.1137.2.3: +18 -18
lines
Sync with HEAD
Revision 1.1152: download - view: text, markup, annotated - select for diffs
Sun Feb 26 12:41:50 2017 UTC (8 years, 1 month ago) by rin
Branches: MAIN
CVS tags: pgoyette-localcount-20170320,
jdolecek-ncq-base,
jdolecek-ncq
Diff to: previous 1.1151: preferred, colored
Changes since revision 1.1151: +3 -3
lines
Comment out DISKLABEL_RDB as it is too specific for general usage.
(Also add commented out that entry for GENERIC on amd64; I forgot it)
Revision 1.1151: download - view: text, markup, annotated - select for diffs
Sun Feb 26 12:21:15 2017 UTC (8 years, 1 month ago) by maya
Branches: MAIN
Diff to: previous 1.1150: preferred, colored
Changes since revision 1.1150: +2 -3
lines
Remove commented DISKLABEL_EI for strictly little endian architectures
It will never be useful.
Revision 1.1150: download - view: text, markup, annotated - select for diffs
Sun Feb 26 12:03:14 2017 UTC (8 years, 1 month ago) by rin
Branches: MAIN
Diff to: previous 1.1149: preferred, colored
Changes since revision 1.1149: +3 -2
lines
Add DKWEDGE_METHOD_RDB option, which is enabled for x86, commented out for
other platforms by default.
Revision 1.1149: download - view: text, markup, annotated - select for diffs
Sun Feb 19 07:47:00 2017 UTC (8 years, 2 months ago) by rin
Branches: MAIN
Diff to: previous 1.1148: preferred, colored
Changes since revision 1.1148: +3 -2
lines
PR kern/51208
Add DISKLABEL_EI option (and also FFS_EI if missing), commented out except for
ALL on amd64 and i386.
Revision 1.1148: download - view: text, markup, annotated - select for diffs
Sat Feb 18 14:36:32 2017 UTC (8 years, 2 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1147: preferred, colored
Changes since revision 1.1147: +3 -3
lines
There is currently an ugly mix between the PERFCTRS subsystem (MI), and
i386's own PMC interface (MD). Stop using PERFCTRS and use PMC instead.
While here remove some unused flags, which are wrong on the latest CPUs
anyway.
Revision 1.1147: download - view: text, markup, annotated - select for diffs
Fri Feb 17 12:10:40 2017 UTC (8 years, 2 months ago) by maxv
Branches: MAIN
Diff to: previous 1.1146: preferred, colored
Changes since revision 1.1146: +2 -3
lines
Support PMCs on multi-processor systems. Still several things to fix, but
at least it works a little. Will be improved and moved into x86/ soon.
Revision 1.1118.2.12: download - view: text, markup, annotated - select for diffs
Sun Feb 5 13:40:12 2017 UTC (8 years, 2 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.11: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.11: +18 -17
lines
Sync with HEAD
Revision 1.1107.2.8.4.2: download - view: text, markup, annotated - select for diffs
Wed Jan 18 08:46:25 2017 UTC (8 years, 3 months ago) by skrll
Branches: netbsd-7-nhusb
Diff to: previous 1.1107.2.8.4.1: preferred, colored; branchpoint 1.1107.2.8: preferred, colored; next MAIN 1.1107.2.9: preferred, colored
Changes since revision 1.1107.2.8.4.1: +10 -2
lines
Sync with netbsd-5
Revision 1.1146: download - view: text, markup, annotated - select for diffs
Thu Jan 12 05:24:36 2017 UTC (8 years, 3 months ago) by ryo
Branches: MAIN
CVS tags: nick-nhusb-base-20170204,
bouyer-socketcan-base
Branch point for: bouyer-socketcan
Diff to: previous 1.1145: preferred, colored
Changes since revision 1.1145: +16 -16
lines
white space police
Revision 1.1137.2.3: download - view: text, markup, annotated - select for diffs
Sat Jan 7 08:56:18 2017 UTC (8 years, 3 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.1137.2.2: preferred, colored; branchpoint 1.1137: preferred, colored
Changes since revision 1.1137.2.2: +5 -3
lines
Sync with HEAD. (Note that most of these changes are simply $NetBSD$
tag issues.)
Revision 1.1145: download - view: text, markup, annotated - select for diffs
Tue Dec 13 20:42:18 2016 UTC (8 years, 4 months ago) by christos
Branches: MAIN
CVS tags: pgoyette-localcount-20170107
Diff to: previous 1.1144: preferred, colored
Changes since revision 1.1144: +4 -5
lines
wildcard speaker attachments, now that we can handle many of them.
Revision 1.1144: download - view: text, markup, annotated - select for diffs
Sat Dec 10 23:03:24 2016 UTC (8 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.1143: preferred, colored
Changes since revision 1.1143: +2 -3
lines
remove VAUDIOSPEAKER for now, will be done differently.
Revision 1.1107.2.9: download - view: text, markup, annotated - select for diffs
Fri Dec 9 05:10:45 2016 UTC (8 years, 4 months ago) by snj
Branches: netbsd-7
CVS tags: netbsd-7-nhusb-base-20170116,
netbsd-7-1-RELEASE,
netbsd-7-1-RC2,
netbsd-7-1-RC1
Branch point for: netbsd-7-1
Diff to: previous 1.1107.2.8: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.8: +10 -2
lines
Pull up following revision(s) (requested by msaitoh in ticket #1297):
sys/arch/amd64/conf/ALL: revision 1.37
sys/arch/amd64/conf/GENERIC: revision 1.436
sys/arch/amd64/conf/XEN3_DOM0: revision 1.120
sys/arch/i386/conf/ALL: revision 1.400
sys/arch/i386/conf/GENERIC: revision 1.1138
sys/arch/i386/conf/XEN3_DOM0: revision 1.99
Add sdtemp(4)
--
Add ichsmb(4), spdmem(4) and sdtemp(4).
Revision 1.1143: download - view: text, markup, annotated - select for diffs
Fri Dec 9 02:24:17 2016 UTC (8 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.1142: preferred, colored
Changes since revision 1.1142: +2 -3
lines
PCPPISPEAKER
Revision 1.1142: download - view: text, markup, annotated - select for diffs
Thu Dec 8 11:31:10 2016 UTC (8 years, 4 months ago) by nat
Branches: MAIN
Diff to: previous 1.1141: preferred, colored
Changes since revision 1.1141: +6 -2
lines
Add a synthesized pc beeper and keyboard bell for platforms with an audio
device.
Revision 1.1118.2.11: download - view: text, markup, annotated - select for diffs
Mon Dec 5 10:54:53 2016 UTC (8 years, 4 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.10: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.10: +3 -2
lines
Sync with HEAD
Revision 1.1141: download - view: text, markup, annotated - select for diffs
Sat Nov 26 13:59:45 2016 UTC (8 years, 4 months ago) by christos
Branches: MAIN
CVS tags: nick-nhusb-base-20161204
Diff to: previous 1.1140: preferred, colored
Changes since revision 1.1140: +3 -2
lines
mention PAX_SEGVGUARD dependency on FILEASSOC
Revision 1.1137.2.2: download - view: text, markup, annotated - select for diffs
Fri Nov 4 14:49:01 2016 UTC (8 years, 5 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.1137.2.1: preferred, colored; branchpoint 1.1137: preferred, colored
Changes since revision 1.1137.2.1: +5 -2
lines
Sync with HEAD
Revision 1.1118.2.10: download - view: text, markup, annotated - select for diffs
Wed Oct 5 20:55:28 2016 UTC (8 years, 6 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.9: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.9: +15 -4
lines
Sync with HEAD
Revision 1.1140: download - view: text, markup, annotated - select for diffs
Sat Sep 17 18:37:46 2016 UTC (8 years, 7 months ago) by jdolecek
Branches: MAIN
CVS tags: pgoyette-localcount-20161104,
nick-nhusb-base-20161004
Diff to: previous 1.1139: preferred, colored
Changes since revision 1.1139: +5 -2
lines
add nvme(4)
Revision 1.1107.2.8.4.1: download - view: text, markup, annotated - select for diffs
Tue Sep 6 20:33:06 2016 UTC (8 years, 7 months ago) by skrll
Branches: netbsd-7-nhusb
Diff to: previous 1.1107.2.8: preferred, colored
Changes since revision 1.1107.2.8: +4 -5
lines
First pass at netbsd-7 updated with USB code from HEAD
Revision 1.1139: download - view: text, markup, annotated - select for diffs
Sun Aug 7 10:44:05 2016 UTC (8 years, 8 months ago) by christos
Branches: MAIN
CVS tags: localcount-20160914
Diff to: previous 1.1138: preferred, colored
Changes since revision 1.1138: +4 -4
lines
rename ifmpls to mpls, so we don't have if_ifmpls...
Revision 1.1137.2.1: download - view: text, markup, annotated - select for diffs
Sat Aug 6 00:19:04 2016 UTC (8 years, 8 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.1137: preferred, colored
Changes since revision 1.1137: +10 -2
lines
Sync with HEAD
Revision 1.1138: download - view: text, markup, annotated - select for diffs
Wed Jul 27 07:04:56 2016 UTC (8 years, 9 months ago) by msaitoh
Branches: MAIN
CVS tags: pgoyette-localcount-20160806
Diff to: previous 1.1137: preferred, colored
Changes since revision 1.1137: +10 -2
lines
Add sdtemp(4)
Revision 1.1118.2.9: download - view: text, markup, annotated - select for diffs
Sat Jul 9 20:24:52 2016 UTC (8 years, 9 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.8: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.8: +3 -2
lines
Sync with HEAD
Revision 1.1137: download - view: text, markup, annotated - select for diffs
Tue Jun 21 11:37:25 2016 UTC (8 years, 10 months ago) by nonaka
Branches: MAIN
CVS tags: pgoyette-localcount-base,
pgoyette-localcount-20160726,
nick-nhusb-base-20160907
Branch point for: pgoyette-localcount
Diff to: previous 1.1136: preferred, colored
Changes since revision 1.1136: +3 -2
lines
add sdhc(4) at acpi to i386 and amd64 GENERIC kernel config.
Revision 1.1118.2.8: download - view: text, markup, annotated - select for diffs
Sun May 29 08:44:17 2016 UTC (8 years, 10 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.7: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.7: +7 -4
lines
Sync with HEAD
Revision 1.1136: download - view: text, markup, annotated - select for diffs
Fri May 20 01:37:47 2016 UTC (8 years, 11 months ago) by christos
Branches: MAIN
CVS tags: nick-nhusb-base-20160529
Diff to: previous 1.1135: preferred, colored
Changes since revision 1.1135: +7 -4
lines
Turn on PaX ASLR/MPROTECT
Revision 1.1135: download - view: text, markup, annotated - select for diffs
Sat Apr 23 10:15:29 2016 UTC (9 years ago) by skrll
Branches: MAIN
Diff to: previous 1.1134: preferred, colored
Changes since revision 1.1134: +4 -4
lines
Merge nick-nhusb
- API / infrastructure changes to support memory management changes.
- Memory management improvements and bug fixes.
- HCDs should now be MP safe
- conversion to KERNHIST based debug
- FS/LS isoc support on ehci(4).
- conversion to kmem(9)
- Some USB 3 support - mostly from Takahiro HAYASHI (t-hash).
- interrupt transfers now get proper DMA operations
- general bug fixes
- kern/48308
- uhub status notification improvements
- umass(4) probe fix (applied to HEAD already)
- ohci(4) short transfer fix
Revision 1.1118.2.7: download - view: text, markup, annotated - select for diffs
Fri Apr 22 15:44:10 2016 UTC (9 years ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.6: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.6: +5 -5
lines
Sync with HEAD
Revision 1.1134: download - view: text, markup, annotated - select for diffs
Wed Apr 13 15:26:27 2016 UTC (9 years ago) by riastradh
Branches: MAIN
CVS tags: nick-nhusb-base-20160422
Diff to: previous 1.1133: preferred, colored
Changes since revision 1.1133: +4 -4
lines
Enable nouveau by default again in x86 GENERIC.
Revision 1.1133: download - view: text, markup, annotated - select for diffs
Sat Mar 19 23:21:02 2016 UTC (9 years, 1 month ago) by gdt
Branches: MAIN
Diff to: previous 1.1132: preferred, colored
Changes since revision 1.1132: +3 -3
lines
Disable uscanner in all kernel configs
As discussed on current-users@, SANE uses ugen via libusb and not
uscanner, so users are not well served by having uscanner. Consensus
is that addressing how to adjust permissions for scanners should not
block restoring basic functionionality.
(Compile-tested only, but there are multiple reports of this being the
right approach.)
Revision 1.1118.2.6: download - view: text, markup, annotated - select for diffs
Sat Mar 19 11:30:00 2016 UTC (9 years, 1 month ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.5: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.5: +7 -3
lines
Sync with HEAD
Revision 1.1132: download - view: text, markup, annotated - select for diffs
Sat Mar 5 17:08:48 2016 UTC (9 years, 1 month ago) by riastradh
Branches: MAIN
CVS tags: nick-nhusb-base-20160319
Diff to: previous 1.1131: preferred, colored
Changes since revision 1.1131: +4 -4
lines
Revert to disabling nouveau by default in x86 GENERIC.
Haven't had time to debug the issues that seem to affect pretty much
everyone. Maybe soon!
Revision 1.1131: download - view: text, markup, annotated - select for diffs
Sat Feb 13 19:53:23 2016 UTC (9 years, 2 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1130: preferred, colored
Changes since revision 1.1130: +4 -4
lines
Add nouveau to x86 GENERIC kernels.
Revision 1.1130: download - view: text, markup, annotated - select for diffs
Fri Jan 22 21:56:56 2016 UTC (9 years, 3 months ago) by riz
Branches: MAIN
Diff to: previous 1.1129: preferred, colored
Changes since revision 1.1129: +3 -3
lines
Enable KDTRACE_HOOKS on i386 and amd64 GENERIC.
Revision 1.1129: download - view: text, markup, annotated - select for diffs
Tue Jan 5 11:33:18 2016 UTC (9 years, 3 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.1128: preferred, colored
Changes since revision 1.1128: +6 -2
lines
Add ismt(4).
Revision 1.1118.2.5: download - view: text, markup, annotated - select for diffs
Sun Dec 27 12:09:36 2015 UTC (9 years, 3 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.4: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.4: +2 -3
lines
Sync with HEAD (as of 26th Dec)
Revision 1.1128: download - view: text, markup, annotated - select for diffs
Sat Sep 26 11:16:12 2015 UTC (9 years, 7 months ago) by maxv
Branches: MAIN
CVS tags: nick-nhusb-base-20151226
Diff to: previous 1.1127: preferred, colored
Changes since revision 1.1127: +2 -3
lines
Remove KMEMSTATS. Normally it's ok now.
Revision 1.1118.2.4: download - view: text, markup, annotated - select for diffs
Tue Sep 22 12:05:44 2015 UTC (9 years, 7 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.3: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.3: +4 -2
lines
Sync with HEAD
Revision 1.1127: download - view: text, markup, annotated - select for diffs
Mon Sep 21 12:32:06 2015 UTC (9 years, 7 months ago) by nonaka
Branches: MAIN
CVS tags: nick-nhusb-base-20150921
Diff to: previous 1.1126: preferred, colored
Changes since revision 1.1126: +3 -2
lines
PR/50261: Added newer Toshiba hotkeys support.
Revision 1.1118.2.3: download - view: text, markup, annotated - select for diffs
Mon Sep 21 07:14:16 2015 UTC (9 years, 7 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.2: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.2: +4 -4
lines
Enable xhci(4)
Revision 1.1126: download - view: text, markup, annotated - select for diffs
Thu Aug 27 14:04:07 2015 UTC (9 years, 8 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.1125: preferred, colored
Changes since revision 1.1125: +3 -2
lines
Added rtwn(4) for Realtek RTL8188CE/RTL8192CE PCIe 802.11b/g/n wireless network
devices. Ported from OpenBSD.
Revision 1.1118.2.2: download - view: text, markup, annotated - select for diffs
Sat Jun 6 14:40:00 2015 UTC (9 years, 10 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118.2.1: preferred, colored; branchpoint 1.1118: preferred, colored
Changes since revision 1.1118.2.1: +9 -4
lines
Sync with HEAD
Revision 1.1107.2.8: download - view: text, markup, annotated - select for diffs
Fri Jun 5 16:52:39 2015 UTC (9 years, 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
Branch point for: netbsd-7-nhusb,
netbsd-7-0
Diff to: previous 1.1107.2.7: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.7: +3 -3
lines
Pull up following revision(s) (requested by maxv in ticket #814):
sys/arch/i386/conf/GENERIC: revision 1.1125
sys/arch/i386/conf/XEN3_DOM0: revision 1.95
sys/arch/i386/conf/XEN3_DOMU: revision 1.67
Disable COMPAT_FREEBSD. The implementation is poor, not well tested and
almost irrelevant. People who need it (for tw_cli for example) can still
recompile their kernels with this option.
Discussed on tech-kern@
Revision 1.1125: download - view: text, markup, annotated - select for diffs
Sat May 23 18:13:31 2015 UTC (9 years, 11 months ago) by maxv
Branches: MAIN
CVS tags: nick-nhusb-base-20150606
Diff to: previous 1.1124: preferred, colored
Changes since revision 1.1124: +3 -3
lines
Disable COMPAT_FREEBSD. The implementation is poor, not well tested and
almost irrelevant. People who need it (for tw_cli for example) can still
recompile their kernels with this option.
Discussed on tech-kern@
Revision 1.1107.2.7: download - view: text, markup, annotated - select for diffs
Fri May 15 03:44:18 2015 UTC (9 years, 11 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.6: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.6: +3 -2
lines
Pull up following revision(s) (requested by jnemeth in ticket #762):
share/man/man4/options.4: revision 1.442
sys/arch/amd64/conf/ALL: revision 1.18
sys/arch/amd64/conf/GENERIC: revision 1.396
sys/arch/dreamcast/conf/GENERIC: revision 1.119
sys/arch/epoc32/conf/GENERIC: revision 1.6
sys/arch/evbarm/conf/BCM5301X: revision 1.24
sys/arch/evbarm/conf/BCM56340: revision 1.9
sys/arch/evbarm/conf/IMX23_OLINUXINO: revision 1.9
sys/arch/evbarm/conf/std.beagle: revision 1.13
sys/arch/evbarm/conf/std.kobo: revision 1.2
sys/arch/evbarm/conf/std.netwalker: revision 1.10
sys/arch/evbppc/conf/P2020DS: revision 1.25
sys/arch/evbppc/conf/RB800: revision 1.30
sys/arch/evbppc/conf/TWRP1025: revision 1.18
sys/arch/hp300/conf/GENERIC: revision 1.187
sys/arch/hpcsh/conf/GENERIC: revision 1.104
sys/arch/i386/conf/GENERIC: revision 1.1111
sys/arch/i386/conf/MONOLITHIC: revision 1.17
sys/arch/landisk/conf/GENERIC: revision 1.43
sys/arch/luna68k/conf/GENERIC: revision 1.117
sys/arch/macppc/conf/GENERIC: revision 1.316
sys/arch/macppc/conf/GENERIC_601: revision 1.5
sys/arch/mmeye/conf/MMEYE_WLF: revision 1.16
sys/arch/news68k/conf/GENERIC: revision 1.123
sys/arch/sandpoint/conf/GENERIC: revision 1.85
sys/arch/shark/conf/GENERIC: revision 1.119
sys/arch/sparc/conf/GENERIC: revision 1.246
sys/arch/sparc64/conf/GENERIC: revision 1.174
sys/arch/sun3/conf/GENERIC3X: revision 1.125
sys/arch/sun3/conf/GENERIC: revision 1.169
sys/arch/x68k/conf/GENERIC: revision 1.177
sys/arch/zaurus/conf/GENERIC: revision 1.62
sys/conf/files: revision 1.1099
sys/kern/kern_module.c: revisions 1.98, 1.99
Create an "options MODULAR_DEFAULT_AUTOLOAD" config option and add
it to all kernel configs that contain "options MODULAR". This
option turns on module autoloading by default (which is the current
default). This allows people who don't want module autoloading on
by default to disable it by simply removing/commentting this line.
--
fix typo. (s/MODULE_DEFAULT_AUTOLOAD/MODULAR_DEFAULT_AUTOLOAD/)
Revision 1.1124: download - view: text, markup, annotated - select for diffs
Mon May 4 07:08:10 2015 UTC (9 years, 11 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.1123: preferred, colored
Changes since revision 1.1123: +3 -3
lines
One more typo.
Message to self: when making multi-architecture changes, build on more
than one arch.
Revision 1.1123: download - view: text, markup, annotated - select for diffs
Sun May 3 02:52:50 2015 UTC (9 years, 11 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.1122: preferred, colored
Changes since revision 1.1122: +4 -3
lines
Update to include the tco driver (it was previously included as part of
ichlpcib).
Revision 1.1122: download - view: text, markup, annotated - select for diffs
Wed Apr 29 17:43:06 2015 UTC (9 years, 11 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.1121: preferred, colored
Changes since revision 1.1121: +6 -2
lines
Add commented viadrmums to i386/GENERIC.
Revision 1.1118.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 6 15:17:57 2015 UTC (10 years ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.1118: preferred, colored
Changes since revision 1.1118: +8 -6
lines
Sync with HEAD
Revision 1.1107.2.6: download - view: text, markup, annotated - select for diffs
Wed Mar 18 03:57:15 2015 UTC (10 years, 1 month ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.5: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.5: +20 -11
lines
Apply patch (requested by christos in ticket #542):
- Enable intel and radeon DRM/KMS drivers in GENERIC
- Disable all of the old DRM drivers in GENERIC
- Remove the separate DRMKMS kernel
Revision 1.1121: download - view: text, markup, annotated - select for diffs
Wed Mar 18 02:05:05 2015 UTC (10 years, 1 month ago) by snj
Branches: MAIN
CVS tags: nick-nhusb-base-20150406
Diff to: previous 1.1120: preferred, colored
Changes since revision 1.1120: +3 -3
lines
fix commented out nouveaufb
Revision 1.1107.2.5: download - view: text, markup, annotated - select for diffs
Mon Mar 9 09:06:04 2015 UTC (10 years, 1 month ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.4: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.4: +6 -5
lines
Pull up following revision(s) (requested by mrg in ticket #578):
distrib/notes/i386/contents: revision 1.28
etc/etc.i386/Makefile.inc: revision 1.68
sys/arch/i386/conf/GENERIC: revision 1.1120
sys/arch/i386/conf/LEGACY: revision 1.1
remove vga@isa and pcdisplay@isa from i386 GENERIC, and create a new
LEGACY kernel that includes them instead. now radeon@pci is able to
properly claim wsdisplay0 on i386 systems, and radeondrmkms has a good
chance of working.
this "fixes" PR#49290.
Revision 1.1120: download - view: text, markup, annotated - select for diffs
Sat Mar 7 07:28:37 2015 UTC (10 years, 1 month ago) by mrg
Branches: MAIN
Diff to: previous 1.1119: preferred, colored
Changes since revision 1.1119: +6 -5
lines
remove vga@isa and pcdisplay@isa from i386 GENERIC, and create a new
LEGACY kernel that includes them instead. now radeon@pci is able to
properly claim wsdisplay0 on i386 systems, and radeondrmkms has a good
chance of working.
this "fixes" PR#49290.
Revision 1.1119: download - view: text, markup, annotated - select for diffs
Fri Feb 13 18:57:47 2015 UTC (10 years, 2 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.1118: preferred, colored
Changes since revision 1.1118: +3 -2
lines
iwm(4) works now, but 2.4GHz only.
> iwm0 at pci2 dev 0 function 0: Intel Dual Band Wireless AC 3160 (rev. 0x83)
> iwm0: interrupting at ioapic0 pin 18
> iwm0: hw rev: 0x160, fw ver 25.228 (API ver 9), address XX:XX:XX:XX:XX:XX
> iwm0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
> iwm0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
Revision 1.1107.2.4: download - view: text, markup, annotated - select for diffs
Tue Jan 20 20:40:50 2015 UTC (10 years, 3 months ago) by martin
Branches: netbsd-7
Diff to: previous 1.1107.2.3: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.3: +3 -3
lines
Change the following, requested by snj in ticket #438:
sys/arch/i386/conf/GENERIC patch
sys/arch/amd64/conf/GENERIC patch
Remove the i915drm driver since the version we use doesn't support UMS
anymore, so X will fail to start. Without it, at least the vesa driver
will work.
Revision 1.1107.2.3: download - view: text, markup, annotated - select for diffs
Tue Nov 18 19:05:30 2014 UTC (10 years, 5 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107.2.2: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.2: +2 -4
lines
Pull up following revision(s) (requested by manu in ticket #251):
sys/arch/acorn26/conf/GENERIC: revision 1.81
sys/arch/acorn32/conf/GENERIC: revision 1.116
sys/arch/alpha/conf/GENERIC: revision 1.362
sys/arch/amd64/conf/ALL: revision 1.23
sys/arch/amd64/conf/GENERIC: revision 1.404
sys/arch/amd64/conf/XEN3_DOM0: revision 1.112
sys/arch/amd64/conf/XEN3_DOMU: revision 1.60
sys/arch/amiga/conf/GENERIC.in: revision 1.129
sys/arch/amiga/conf/GENERIC: revision 1.311
sys/arch/amigappc/conf/GENERIC: revision 1.24
sys/arch/arc/conf/GENERIC: revision 1.184
sys/arch/bebox/conf/GENERIC: revision 1.145
sys/arch/cats/conf/GENERIC: revision 1.155
sys/arch/cesfic/conf/GENERIC: revision 1.65
sys/arch/cobalt/conf/GENERIC: revision 1.147
sys/arch/dreamcast/conf/GENERIC: revision 1.121
sys/arch/emips/conf/GENERIC: revision 1.15
sys/arch/epoc32/conf/GENERIC: revision 1.8
sys/arch/ews4800mips/conf/GENERIC: revision 1.51
sys/arch/hp300/conf/GENERIC: revision 1.190
sys/arch/hpcmips/conf/GENERIC: revision 1.229
sys/arch/hpcsh/conf/GENERIC: revision 1.106
sys/arch/hppa/conf/GENERIC: revision 1.6
sys/arch/i386/conf/ALL: revision 1.389
sys/arch/i386/conf/GENERIC: revision 1.1118
sys/arch/i386/conf/XEN3_DOM0: revision 1.93
sys/arch/i386/conf/XEN3_DOMU: revision 1.65
sys/arch/ibmnws/conf/GENERIC: revision 1.46
sys/arch/iyonix/conf/GENERIC: revision 1.88
sys/arch/landisk/conf/GENERIC: revision 1.45
sys/arch/luna68k/conf/GENERIC: revision 1.119
sys/arch/mac68k/conf/GENERIC: revision 1.220
sys/arch/macppc/conf/GENERIC: revision 1.320
sys/arch/macppc/conf/MAMBO: revision 1.24
sys/arch/macppc/conf/POWERMAC_G5: revision 1.25
sys/arch/mipsco/conf/GENERIC: revision 1.88
sys/arch/mmeye/conf/GENERIC: revision 1.120
sys/arch/mvme68k/conf/GENERIC: revision 1.94
sys/arch/mvmeppc/conf/GENERIC: revision 1.24
sys/arch/netwinder/conf/GENERIC: revision 1.126
sys/arch/news68k/conf/GENERIC: revision 1.125
sys/arch/newsmips/conf/GENERIC: revision 1.129
sys/arch/next68k/conf/GENERIC: revision 1.139
sys/arch/ofppc/conf/GENERIC: revision 1.157
sys/arch/pmax/conf/GENERIC64: revision 1.21
sys/arch/pmax/conf/GENERIC: revision 1.185
sys/arch/prep/conf/GENERIC: revision 1.174
sys/arch/rs6000/conf/GENERIC: revision 1.33
sys/arch/sandpoint/conf/GENERIC: revision 1.88
sys/arch/sbmips/conf/GENERIC: revision 1.101
sys/arch/sgimips/conf/GENERIC32_IP12: revision 1.28
sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.104
sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.106
sys/arch/shark/conf/GENERIC: revision 1.121
sys/arch/sparc/conf/GENERIC: revision 1.248
sys/arch/sparc/conf/TADPOLE3GX: revision 1.65
sys/arch/sparc64/conf/GENERIC: revision 1.177
sys/arch/sparc64/conf/NONPLUS64: revision 1.44
sys/arch/sun2/conf/GENERIC: revision 1.94
sys/arch/sun3/conf/GENERIC: revision 1.171
sys/arch/vax/conf/GENERIC: revision 1.193
sys/arch/vax/conf/VAX780: revision 1.19
sys/arch/x68k/conf/GENERIC: revision 1.179
sys/arch/zaurus/conf/GENERIC: revision 1.65
sys/ufs/files.ufs: revision 1.38
Remove unused extended attributes kernel options
As Masao Uebayashi pointed to me, UFS_EXTATTR_AUTOSTART, LFS_EXTATTR_AUTOSTART
and UFS_EXTATTR_AUTOCREATE are not used anywhere in the code. Remove them
as they have been obsolete for a long time:
UFS_EXTATTR_AUTOSTART was replaced by mount -o extattr
LFS_EXTATTR_AUTOSTART was created to match obsolete UFS_EXTATTR_AUTOSTART
UFS_EXTATTR_AUTOCREATE was replaced by sysctl vfs.ffs.extattr_autocreate
Revision 1.1118: download - view: text, markup, annotated - select for diffs
Sun Nov 16 16:01:41 2014 UTC (10 years, 5 months ago) by manu
Branches: MAIN
CVS tags: nick-nhusb-base
Branch point for: nick-nhusb
Diff to: previous 1.1117: preferred, colored
Changes since revision 1.1117: +2 -4
lines
Remove unused extended attributes kernel options
As Masao Uebayashi pointed to me, UFS_EXTATTR_AUTOSTART, LFS_EXTATTR_AUTOSTART
and UFS_EXTATTR_AUTOCREATE are not used anywhere in the code. Remove them
as they have been obsolete for a long time:
UFS_EXTATTR_AUTOSTART was replaced by mount -o extattr
LFS_EXTATTR_AUTOSTART was created to match obsolete UFS_EXTATTR_AUTOSTART
UFS_EXTATTR_AUTOCREATE was replaced by sysctl vfs.ffs.extattr_autocreate
Revision 1.1107.2.2: download - view: text, markup, annotated - select for diffs
Fri Nov 14 15:16:17 2014 UTC (10 years, 5 months ago) by martin
Branches: netbsd-7
Diff to: previous 1.1107.2.1: preferred, colored; branchpoint 1.1107: preferred, colored
Changes since revision 1.1107.2.1: +5 -2
lines
Pull up following revision(s) (requested by manu in ticket #232):
sys/arch/next68k/conf/GENERIC: revision 1.138
sys/arch/cobalt/conf/GENERIC: revision 1.146
sys/arch/mvme68k/conf/GENERIC: revision 1.93
sys/arch/vax/conf/VAX780: revision 1.18
sys/arch/newsmips/conf/GENERIC: revision 1.128
sys/arch/luna68k/conf/GENERIC: revision 1.118
sys/arch/sbmips/conf/GENERIC: revision 1.100
sys/arch/pmax/conf/GENERIC: revision 1.184
sys/arch/alpha/conf/GENERIC: revision 1.361
sys/arch/sparc64/conf/GENERIC: revision 1.176
sys/arch/sun3/conf/GENERIC: revision 1.170
sys/arch/shark/conf/GENERIC: revision 1.120
sys/arch/landisk/conf/GENERIC: revision 1.44
sys/arch/bebox/conf/GENERIC: revision 1.144
sys/arch/sparc64/conf/NONPLUS64: revision 1.43
sys/arch/sandpoint/conf/GENERIC: revision 1.87
sys/arch/emips/conf/GENERIC: revision 1.14
sys/arch/amd64/conf/XEN3_DOM0: revision 1.111
sys/arch/dreamcast/conf/GENERIC: revision 1.120
sys/arch/cesfic/conf/GENERIC: revision 1.64
sys/arch/mmeye/conf/GENERIC: revision 1.119
sys/arch/epoc32/conf/GENERIC: revision 1.7
sys/arch/x68k/conf/GENERIC: revision 1.178
sys/arch/iyonix/conf/GENERIC: revision 1.87
sys/arch/sun2/conf/GENERIC: revision 1.93
sys/arch/ews4800mips/conf/GENERIC: revision 1.50
sys/arch/amd64/conf/XEN3_DOMU: revision 1.59
sys/arch/acorn26/conf/GENERIC: revision 1.80
sys/arch/acorn32/conf/GENERIC: revision 1.115
sys/arch/macppc/conf/POWERMAC_G5: revision 1.24
sys/arch/i386/conf/GENERIC: revision 1.1117
sys/arch/arc/conf/GENERIC: revision 1.183
sys/arch/cats/conf/GENERIC: revision 1.154
sys/arch/amiga/conf/GENERIC.in: revision 1.128
sys/arch/zaurus/conf/GENERIC: revision 1.64
sys/arch/netwinder/conf/GENERIC: revision 1.125
sys/arch/hppa/conf/GENERIC: revision 1.5
sys/arch/mvmeppc/conf/GENERIC: revision 1.23
sys/arch/macppc/conf/GENERIC: revision 1.319
sys/arch/amiga/conf/GENERIC: revision 1.310
sys/arch/pmax/conf/GENERIC64: revision 1.20
sys/arch/macppc/conf/MAMBO: revision 1.23
sys/arch/sgimips/conf/GENERIC32_IP12: revision 1.27
sys/arch/amigappc/conf/GENERIC: revision 1.23
sys/arch/amd64/conf/GENERIC: revision 1.403
sys/arch/ofppc/conf/GENERIC: revision 1.156
sys/arch/mac68k/conf/GENERIC: revision 1.219
sys/arch/i386/conf/XEN3_DOMU: revision 1.64
sys/arch/mipsco/conf/GENERIC: revision 1.87
sys/arch/hp300/conf/GENERIC: revision 1.189
sys/arch/vax/conf/GENERIC: revision 1.192
sys/arch/news68k/conf/GENERIC: revision 1.124
sys/arch/ibmnws/conf/GENERIC: revision 1.45
sys/arch/hpcsh/conf/GENERIC: revision 1.105
sys/arch/sparc/conf/TADPOLE3GX: revision 1.64
sys/arch/i386/conf/XEN3_DOM0: revision 1.92
sys/arch/sparc/conf/GENERIC: revision 1.247
sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.105
sys/arch/prep/conf/GENERIC: revision 1.173
sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.103
sys/arch/rs6000/conf/GENERIC: revision 1.32
sys/arch/hpcmips/conf/GENERIC: revision 1.228
Support for UFS1 extended attributes in GENERIC and GENERIC-like kernels
This change just brings UFS1 extended attribute *support* in the kernel,
extended attributes are not enabled unless three conditions are met:
1) filesystem is UFS1 (newfs -O1)
2) .attribute/system and .attribute/user directories are created at fs root
3) filesystem is mounted with -o extattr
Some GENERIC kernels are obviously memory constrained, the extended
attributes options were not enabled for them, but just added commented out.
(kernel were considered memory constrained if QUOTA option was disabled)
Revision 1.1117: download - view: text, markup, annotated - select for diffs
Wed Nov 12 10:47:22 2014 UTC (10 years, 5 months ago) by manu
Branches: MAIN
Diff to: previous 1.1116: preferred, colored
Changes since revision 1.1116: +5 -2
lines
Support for UFS1 extended attributes in GENERIC and GENERIC-like kernels
This change just brings UFS1 extended attribute *support* in the kernel,
extended attributes are not enabled unless three conditions are met:
1) filesystem is UFS1 (newfs -O1)
2) .attribute/system and .attribute/user directories are created at fs root
3) filesystem is mounted with -o extattr
Some GENERIC kernels are obviously memory constrained, the extended
attributes options were not enabled for them, but just added commented out.
(kernel were considered memory constrained if QUOTA option was disabled)
Revision 1.1116: download - view: text, markup, annotated - select for diffs
Sun Nov 2 23:14:20 2014 UTC (10 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.1115: preferred, colored
Changes since revision 1.1115: +21 -12
lines
switch to DRMKMS drivers
Revision 1.1115: download - view: text, markup, annotated - select for diffs
Sat Oct 18 16:56:51 2014 UTC (10 years, 6 months ago) by uebayasi
Branches: MAIN
Diff to: previous 1.1114: preferred, colored
Changes since revision 1.1114: +3 -2
lines
Install agp_* drivers where pchb(4) is installed except INSTALL_FLOPPY.
XXX
Config around agp(4) is done in quite wrong direction.
"pchb <- (agpbus) <- agp <- agp_*"
should be:
"pchb <- (pcibus) <- agp_* <- (agpbus) <- agp"
Revision 1.1107.2.1: download - view: text, markup, annotated - select for diffs
Fri Oct 10 18:16:37 2014 UTC (10 years, 6 months ago) by snj
Branches: netbsd-7
Diff to: previous 1.1107: preferred, colored
Changes since revision 1.1107: +3 -3
lines
Apply patch (requested by bouyer/martin in ticket #116):
Disable DIAGNOSTIC and/or DEBUG.
Revision 1.1114: download - view: text, markup, annotated - select for diffs
Fri Sep 19 17:30:03 2014 UTC (10 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.1113: preferred, colored
Changes since revision 1.1113: +3 -2
lines
Add HDAUDIOVERBOSE
Revision 1.1113: download - view: text, markup, annotated - select for diffs
Fri Sep 19 15:24:24 2014 UTC (10 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.1112: preferred, colored
Changes since revision 1.1112: +4 -4
lines
Disable BSDLABEL and MBR DKWEDGE methods again since sysinst does not work
with wedges.
Revision 1.1112: download - view: text, markup, annotated - select for diffs
Thu Sep 18 14:58:21 2014 UTC (10 years, 7 months ago) by wiz
Branches: MAIN
Diff to: previous 1.1111: preferred, colored
Changes since revision 1.1111: +3 -2
lines
Add commented out KDTRACE_HOOKS line.
Revision 1.1111: download - view: text, markup, annotated - select for diffs
Sun Aug 24 07:59:22 2014 UTC (10 years, 8 months ago) by jnemeth
Branches: MAIN
Diff to: previous 1.1110: preferred, colored
Changes since revision 1.1110: +3 -2
lines
Create an "options MODULAR_DEFAULT_AUTOLOAD" config option and add
it to all kernel configs that contain "options MODULAR". This
option turns on module autoloading by default (which is the current
default). This allows people who don't want module autoloading on
by default to disable it by simply removing/commentting this line.
Revision 1.1110: download - view: text, markup, annotated - select for diffs
Sat Aug 23 20:26:58 2014 UTC (10 years, 8 months ago) by dholland
Branches: MAIN
Diff to: previous 1.1109: preferred, colored
Changes since revision 1.1109: +16 -16
lines
Systematize (and in many cases, fix) the comments on options COMPAT_NN.
There are quite a few configs that are missing some COMPAT_NN options
in ways that don't make sense; this should probably get cleaned up
too, but for the time being I've not added or removed anything.
Revision 1.1079.2.4: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:03:06 2014 UTC (10 years, 8 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.1079.2.3: preferred, colored
Changes since revision 1.1079.2.3: +12 -12
lines
Rebase to HEAD as of a few days ago.
Revision 1.1109: download - view: text, markup, annotated - select for diffs
Mon Aug 18 06:31:24 2014 UTC (10 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.1108: preferred, colored
Changes since revision 1.1108: +5 -6
lines
- Enable Wedge support for MBR/BSDLABEL where it was commented out.
- Add apple partition support where it was missing
- Add comments where missing
Revision 1.1108: download - view: text, markup, annotated - select for diffs
Sat Aug 16 17:56:32 2014 UTC (10 years, 8 months ago) by apb
Branches: MAIN
Diff to: previous 1.1107: preferred, colored
Changes since revision 1.1107: +3 -2
lines
Add "options COMPAT_70" to all kernel configuration files that
already had "options COMPAT_60".
Revision 1.1101.2.1: download - view: text, markup, annotated - select for diffs
Sun Aug 10 06:53:59 2014 UTC (10 years, 8 months ago) by tls
Branches: tls-earlyentropy
Diff to: previous 1.1101: preferred, colored; next MAIN 1.1102: preferred, colored
Changes since revision 1.1101: +10 -6
lines
Rebase.
Revision 1.1107: download - view: text, markup, annotated - select for diffs
Fri Jul 25 15:01:14 2014 UTC (10 years, 9 months ago) by dholland
Branches: MAIN
CVS tags: tls-maxphys-base,
tls-earlyentropy-base,
netbsd-7-base
Branch point for: netbsd-7
Diff to: previous 1.1106: preferred, colored
Changes since revision 1.1106: +3 -3
lines
Fix description of DIAGNOSTIC in x86 kernels.
Revision 1.1106: download - view: text, markup, annotated - select for diffs
Mon Jun 16 19:08:17 2014 UTC (10 years, 10 months ago) by dsl
Branches: MAIN
Diff to: previous 1.1105: preferred, colored
Changes since revision 1.1105: +5 -4
lines
Comment out the xhci entries.
The driver really doesn't work well enough to be generally useful.
Revision 1.1105: download - view: text, markup, annotated - select for diffs
Tue Jun 10 01:42:39 2014 UTC (10 years, 10 months ago) by hikaru
Branches: MAIN
Diff to: previous 1.1104: preferred, colored
Changes since revision 1.1104: +3 -2
lines
Add VMware VMXNET3 ethernet driver from OpenBSD, vmx(4).
Revision 1.1104: download - view: text, markup, annotated - select for diffs
Thu May 29 14:48:40 2014 UTC (10 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.1103: preferred, colored
Changes since revision 1.1103: +3 -3
lines
enable IPSEC
Revision 1.1055.2.6: download - view: text, markup, annotated - select for diffs
Thu May 22 11:39:51 2014 UTC (10 years, 11 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1055.2.5: preferred, colored; branchpoint 1.1055: preferred, colored; next MAIN 1.1056: preferred, colored
Changes since revision 1.1055.2.5: +25 -21
lines
sync with head.
for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
Revision 1.1095.2.2: download - view: text, markup, annotated - select for diffs
Sun May 18 17:45:12 2014 UTC (10 years, 11 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.1095.2.1: preferred, colored; next MAIN 1.1096: preferred, colored
Changes since revision 1.1095.2.1: +10 -11
lines
sync with head
Revision 1.1103: download - view: text, markup, annotated - select for diffs
Mon Apr 21 16:35:38 2014 UTC (11 years ago) by chs
Branches: MAIN
CVS tags: yamt-pagecache-base9,
rmind-smpnet-nbase,
rmind-smpnet-base
Diff to: previous 1.1102: preferred, colored
Changes since revision 1.1102: +3 -2
lines
add malo at pcmcia.
Revision 1.1102: download - view: text, markup, annotated - select for diffs
Tue Apr 8 19:40:57 2014 UTC (11 years ago) by christos
Branches: MAIN
Diff to: previous 1.1101: preferred, colored
Changes since revision 1.1101: +3 -2
lines
add ixg
Revision 1.1101: download - view: text, markup, annotated - select for diffs
Mon Mar 24 14:15:38 2014 UTC (11 years, 1 month ago) by szptvlfn
Branches: MAIN
CVS tags: riastradh-xf86-video-intel-2-7-1-pre-2-21-15
Branch point for: tls-earlyentropy
Diff to: previous 1.1100: preferred, colored
Changes since revision 1.1100: +3 -3
lines
fix manual section numbering of sysctl.
thanks wiz@
Revision 1.1100: download - view: text, markup, annotated - select for diffs
Wed Mar 19 15:26:42 2014 UTC (11 years, 1 month ago) by nonaka
Branches: MAIN
Diff to: previous 1.1099: preferred, colored
Changes since revision 1.1099: +4 -2
lines
Add a driver for Realtek RTS5209/RTS5229 Card Reader.
Ported from OpenBSD.
Revision 1.1099: download - view: text, markup, annotated - select for diffs
Sun Jan 26 19:16:16 2014 UTC (11 years, 3 months ago) by dsl
Branches: MAIN
CVS tags: riastradh-drm2-base3
Diff to: previous 1.1098: preferred, colored
Changes since revision 1.1098: +2 -10
lines
Remove support for 'external' floating point units and the MS-DOS
compatible method of handling floating point exceptions.
Make kernel support for teh fpu non-optional (486SX should still work).
Only 386 cpus support external fpu, and i386 support was removed years ago.
This means that the npx code no longer uses port 0xf0 or interupt 13.
All the "npx at isa" lines go from the configs, arch/i386/isa/npx.c
is now mandatory for all i386 kernels.
I've renamed npxinit() to fpuinit() and npxinit_cpu() to fpuinit_cpu()
to match the very similar amd64 functions.
The fpu of the boot cpu is now initialised by a direct call from
cpu_configure(), this enables FP emulation for a 486SX.
(for amd64 the cr0 values are set in locore.S and similar).
This fixes a long-standing bug in linux_setregs() - which did not
save the fpu regsiters if they were active.
I've test booted a single cpu i386 kernel (using anita).
amd64 builds - none of teh changes should affect it.
The i386 XEN kernels build, but I'm not sure where they set cr0, and
it might have got lost!
Revision 1.1098: download - view: text, markup, annotated - select for diffs
Sat Oct 26 09:16:20 2013 UTC (11 years, 6 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.1097: preferred, colored
Changes since revision 1.1097: +3 -2
lines
Add driver for ASIX AX88178a and AX88179 Ethernet interface.
Ported from OpenBSD.
Revision 1.1097: download - view: text, markup, annotated - select for diffs
Wed Oct 23 17:26:08 2013 UTC (11 years, 6 months ago) by matt
Branches: MAIN
Diff to: previous 1.1096: preferred, colored
Changes since revision 1.1096: +4 -2
lines
Add xhci device
Revision 1.1095.2.1: download - view: text, markup, annotated - select for diffs
Wed Aug 28 23:59:17 2013 UTC (11 years, 7 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.1095: preferred, colored
Changes since revision 1.1095: +2 -3
lines
sync with head
Revision 1.1096: download - view: text, markup, annotated - select for diffs
Sun Jun 30 21:38:57 2013 UTC (11 years, 9 months ago) by rmind
Branches: MAIN
CVS tags: riastradh-drm2-base2,
riastradh-drm2-base1,
riastradh-drm2-base,
riastradh-drm2
Diff to: previous 1.1095: preferred, colored
Changes since revision 1.1095: +2 -3
lines
G/C PFIL_HOOKS from the kernel configs.
Revision 1.1079.2.3: download - view: text, markup, annotated - select for diffs
Sun Jun 23 06:20:06 2013 UTC (11 years, 10 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.1079.2.2: preferred, colored
Changes since revision 1.1079.2.2: +17 -11
lines
resync from head
Revision 1.915.2.14: download - view: text, markup, annotated - select for diffs
Wed Jun 19 07:50:14 2013 UTC (11 years, 10 months ago) by bouyer
Branches: netbsd-5
Diff to: previous 1.915.2.13: preferred, colored; branchpoint 1.915: preferred, colored; next MAIN 1.916: preferred, colored
Changes since revision 1.915.2.13: +3 -2
lines
Pullup the following revisions via patch, requested by msaitoh in ticket #1850:
sys/dev/pci/if_wm.c 1.201, 1.203-1.204,
1.207-1.212, 1.215,
1.217-1.218, 1.220-1.223,
1.228, 1.232-245
sys/dev/pci/if_wmreg.h 1.40-1.45, 1.47-1.48
sys/dev/pci/if_wmvar.h 1.11-1.13
sys/dev/pci/pcidevs 1.1074, 1.1077, 1.1117
sys/dev/pci/pcidevs.h regen
sys/dev/pci/pcidevs_data.h regen
sys/dev/mii/igphyreg.h 1.6
sys/dev/mii/ihphy.c 1.1-1.2
sys/dev/mii/ihphyreg.h 1.1
sys/dev/mii/inbmphyreg.h 1.3
sys/dev/mii/files.mii 1.47 via patch
sys/dev/mii/miidevs 1.97 and 1.100
sys/dev/mii/miidevs.h regen
sys/dev/mii/miidevs_data.h regen
sys/arch/i386/conf/ALL 1.280
sys/arch/i386/conf/GENERIC 1.1001
sys/arch/i386/conf/INSTALL_FLOPPY 1.11
sys/arch/i386/conf/XEN2_DOM0 patch
sys/arch/amd64/conf/GENERIC 1.293
sys/arch/amd64/conf/XEN3_DOM0 1.61
share/man/man4/wm.4 1.21-1.24
Apply almost all fixes and improvements from netbsd-6 except for
the rev. 1.196's iqdrops' change.
- Add the detach code.
- Add code for WOL, ASF, IPMI and Intel AMT. WOL is disabled by default
- Add Yet another workaround for ICH8.
- 82576 is dual port, so check the FUNCID and increment the MAC address for
the 2nd port.
- Fix the names of 82577L[MC] LAN controllers (for mobile).
- Fix CTRL_EXT_SWDPIN() and CTRL_EXT_SWDPIO() macros. The bit order of the
SW definable pin is not 6543 but 3654!!!
- Rewrite the code to read MAC address from eeprom.
- Add 82580 support.
- 82571 quirk. Only 82571 shares port 0 of EEMNGCTL_CFGDONE.
- The document says that the TDH register must be set after
TCL.EN is set on 82575 and newer devices.
- Fix some register names. No functional change.
- Omit U+00AE "REGISTERED SIGN" in a product name due to its non-ASCII nature.
- Stop wm(4) from needlessly resetting when you add or delete a vlan(4).
- Fix MAC address check on 8257[156] and 80003 case. Some cards have non 0xffff
pointer but those don't use alternative MAC address in reality. So we check
whether the broadcast bit is set or not like Intel's e1000 driver.
Fixes PR kern/44072 reported by Jean-Yves Moulin.
- Add PCH2(and 82579) support. Fixes PR#46487
- Add yet another 82567V support.
- Add ICH10+HANKSVILL support.
- Add support Intel I350 Ethernet.
- Make vlan and all ip/ip6 checksum offload work for the I350.
- Fix compile error with WM_DEBUG.
- Fix a bug that PHY isn't set to low-power mode on PCH and PCH2.
- Add WM_DEBUG_NVM. If WM_DEBUG_NVM is enabled, dump the FLASH ROM data.
- Skip 64bit BAR correctly.
- Fix RAL_TABSIZE for ICH8, 82576, 82580 and I350.
- Use 82580(and I350) specific PHY read/write functions. Fixes PR#47542.
- Style fix. Fix typo in comment. Fix comments. Add comments.
Revision 1.1095: download - view: text, markup, annotated - select for diffs
Mon Jun 10 07:14:01 2013 UTC (11 years, 10 months ago) by kardel
Branches: MAIN
Branch point for: rmind-smpnet
Diff to: previous 1.1094: preferred, colored
Changes since revision 1.1094: +5 -2
lines
adjust soekrisgpio driver to NetBSD
Revision 1.1094: download - view: text, markup, annotated - select for diffs
Wed Jun 5 23:08:01 2013 UTC (11 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.1093: preferred, colored
Changes since revision 1.1093: +2 -3
lines
remove obsolete networking options
Revision 1.1093: download - view: text, markup, annotated - select for diffs
Tue May 28 12:13:55 2013 UTC (11 years, 10 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.1092: preferred, colored
Changes since revision 1.1092: +6 -2
lines
Add udsir.
Revision 1.1092: download - view: text, markup, annotated - select for diffs
Sat Apr 27 22:21:14 2013 UTC (12 years ago) by christos
Branches: MAIN
CVS tags: khorben-n900
Diff to: previous 1.1091: preferred, colored
Changes since revision 1.1091: +3 -3
lines
more bogus number removal
Revision 1.1091: download - view: text, markup, annotated - select for diffs
Sat Apr 27 21:43:29 2013 UTC (12 years ago) by christos
Branches: MAIN
Diff to: previous 1.1090: preferred, colored
Changes since revision 1.1090: +4 -4
lines
the bogus number police
Revision 1.1090: download - view: text, markup, annotated - select for diffs
Sat Apr 27 18:19:38 2013 UTC (12 years ago) by christos
Branches: MAIN
Diff to: previous 1.1089: preferred, colored
Changes since revision 1.1089: +4 -4
lines
remove confusing numeric locators where they are unused.
Revision 1.1089: download - view: text, markup, annotated - select for diffs
Sat Apr 6 16:59:59 2013 UTC (12 years ago) by martin
Branches: MAIN
Diff to: previous 1.1088: preferred, colored
Changes since revision 1.1088: +5 -2
lines
Add athn
Revision 1.1088: download - view: text, markup, annotated - select for diffs
Sat Mar 2 02:42:15 2013 UTC (12 years, 1 month ago) by christos
Branches: MAIN
CVS tags: agc-symver-base,
agc-symver
Diff to: previous 1.1087: preferred, colored
Changes since revision 1.1087: +2 -3
lines
Under FAST_IPSEC, IPSEC_ESP is mandatory; GC it.
Revision 1.1087: download - view: text, markup, annotated - select for diffs
Fri Mar 1 18:25:44 2013 UTC (12 years, 1 month ago) by joerg
Branches: MAIN
Diff to: previous 1.1086: preferred, colored
Changes since revision 1.1086: +2 -4
lines
Retire OSI network stack. OK core@
Revision 1.1079.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 25 00:28:43 2013 UTC (12 years, 2 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.1079.2.1: preferred, colored
Changes since revision 1.1079.2.1: +11 -5
lines
resync with head
Revision 1.1055.2.5: download - view: text, markup, annotated - select for diffs
Wed Jan 23 00:05:48 2013 UTC (12 years, 3 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.1055.2.4: preferred, colored; branchpoint 1.1055: preferred, colored
Changes since revision 1.1055.2.4: +7 -4
lines
sync with head
Revision 1.1055.2.4: download - view: text, markup, annotated - select for diffs
Wed Jan 16 05:32:58 2013 UTC (12 years, 3 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1055.2.3: preferred, colored; branchpoint 1.1055: preferred, colored
Changes since revision 1.1055.2.3: +6 -3
lines
sync with (a bit old) head
Revision 1.1086: download - view: text, markup, annotated - select for diffs
Tue Dec 25 10:51:03 2012 UTC (12 years, 4 months ago) by mbalmer
Branches: MAIN
CVS tags: yamt-pagecache-base8
Diff to: previous 1.1085: preferred, colored
Changes since revision 1.1085: +4 -4
lines
Whitespace fixes.
Revision 1.1085: download - view: text, markup, annotated - select for diffs
Mon Dec 17 20:38:00 2012 UTC (12 years, 4 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1084: preferred, colored
Changes since revision 1.1084: +5 -2
lines
Adding ibmcd(4), a device driver for the IBM 4810 BSP cash drawer port as
found e.g. in SurePOS 300 series point of sale terminals. The driver
provides a gpio(4) device with three pins: pin 0 to open drawer, pin 1
to read the status and pin 2 to read whether a cash drawer is connected or
not.
Revision 1.1084: download - view: text, markup, annotated - select for diffs
Mon Dec 10 02:03:45 2012 UTC (12 years, 4 months ago) by dholland
Branches: MAIN
CVS tags: yamt-pagecache-base7
Diff to: previous 1.1083: preferred, colored
Changes since revision 1.1083: +3 -3
lines
whitespace
Revision 1.1083: download - view: text, markup, annotated - select for diffs
Wed Dec 5 16:19:46 2012 UTC (12 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.1082: preferred, colored
Changes since revision 1.1082: +5 -2
lines
Intel Atom E600 PCI-LPC bridge, adds a watchdog + HPET support. Tested
on a Soekris net6501. (jmcneill)
Revision 1.1079.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 20 03:01:25 2012 UTC (12 years, 5 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.1079: preferred, colored
Changes since revision 1.1079: +7 -6
lines
Resync to 2012-11-19 00:00:00 UTC
Revision 1.1055.2.3: download - view: text, markup, annotated - select for diffs
Tue Oct 30 17:19:47 2012 UTC (12 years, 5 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1055.2.2: preferred, colored; branchpoint 1.1055: preferred, colored
Changes since revision 1.1055.2.2: +17 -9
lines
sync with head
Revision 1.1082: download - view: text, markup, annotated - select for diffs
Wed Oct 17 14:48:13 2012 UTC (12 years, 6 months ago) by apb
Branches: MAIN
CVS tags: yamt-pagecache-base6
Diff to: previous 1.1081: preferred, colored
Changes since revision 1.1081: +3 -2
lines
Add "options COMPAT_60" to all kernel configuration files
that already had "options COMPAT_50".
Revision 1.1081: download - view: text, markup, annotated - select for diffs
Sun Sep 30 21:36:18 2012 UTC (12 years, 6 months ago) by dsl
Branches: MAIN
Diff to: previous 1.1080: preferred, colored
Changes since revision 1.1080: +2 -3
lines
Remove code from dev/apm/apm.c for setting global variables to parameterise
the i386 bios apm code (now removed).
Remove the same code from the clone dev/hpc/apm/apmdev.c
Remove some not-used options from dev/apm/files.apm and the commented out
lines in ALL and GENERIC.
Maybe the APM_V10_ONLY and APM_NO_V12 could also be shot, but they are
further entwined in the code.
Revision 1.915.2.13: download - view: text, markup, annotated - select for diffs
Fri Sep 28 10:58:15 2012 UTC (12 years, 6 months ago) by sborrill
Branches: netbsd-5
CVS tags: netbsd-5-2-RELEASE,
netbsd-5-2-RC1,
netbsd-5-2-3-RELEASE,
netbsd-5-2-2-RELEASE,
netbsd-5-2-1-RELEASE,
netbsd-5-2
Diff to: previous 1.915.2.12: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.12: +6 -2
lines
Pull up the following revisions(s) (requested by liamjfoy in ticket #1797):
lib/libusbhid/usb_hid_usages: revision 1.5 via patch
share/man/man4/Makefile: revision 1.578 via patch
share/man/man4/uts.4: revision 1.1
share/man/man4/wsmouse.4: revision 1.19 via patch
sys/arch/amd64/conf/GENERIC: revision 1.346-1.347 via patch
sys/arch/i386/conf/GENERIC: revision 1.1078 via patch
sys/dev/usb/FILES: revision 1.12 via patch
sys/dev/usb/usbdevices.config: revision 1.12 via patch
sys/dev/usb/files.usb: revision 1.119-1.120 via patch
sys/dev/usb/usbhid.h: revision 1.14 via patch
sys/dev/usb/uts.c: revision 1.1
distrib/sets/lists/man/mi: revision 1.1370 via patch
Add uts(4) driver for USB touchscreens.
Revision 1.1080: download - view: text, markup, annotated - select for diffs
Sun Sep 23 01:05:21 2012 UTC (12 years, 7 months ago) by chs
Branches: MAIN
Diff to: previous 1.1079: preferred, colored
Changes since revision 1.1079: +6 -5
lines
add vmt entry to GENERIC.
standardize commented pfsync and npf entries.
Revision 1.1079: download - view: text, markup, annotated - select for diffs
Sat Sep 1 18:17:50 2012 UTC (12 years, 7 months ago) by jakllsch
Branches: MAIN
Branch point for: tls-maxphys
Diff to: previous 1.1078: preferred, colored
Changes since revision 1.1078: +3 -3
lines
Rename RT2500USB driver to ural(4) as it was originally in OpenBSD,
as ural(4) and ral(4) do not actually share any code.
Enable ural(4) in hpcarm WZERO3 kernel too, as it will now build.
Fixes PR#43520.
Revision 1.1066.2.7: download - view: text, markup, annotated - select for diffs
Wed Aug 15 15:33:00 2012 UTC (12 years, 8 months ago) by sborrill
Branches: netbsd-6
CVS tags: netbsd-6-1-RELEASE,
netbsd-6-1-RC4,
netbsd-6-1-RC3,
netbsd-6-1-RC2,
netbsd-6-1-RC1,
netbsd-6-1-5-RELEASE,
netbsd-6-1-4-RELEASE,
netbsd-6-1-3-RELEASE,
netbsd-6-1-2-RELEASE,
netbsd-6-1-1-RELEASE,
netbsd-6-0-RELEASE,
netbsd-6-0-RC2,
netbsd-6-0-RC1,
netbsd-6-0-6-RELEASE,
netbsd-6-0-5-RELEASE,
netbsd-6-0-4-RELEASE,
netbsd-6-0-3-RELEASE,
netbsd-6-0-2-RELEASE,
netbsd-6-0-1-RELEASE,
matt-nb6-plus-nbase,
matt-nb6-plus-base,
matt-nb6-plus
Branch point for: netbsd-6-1,
netbsd-6-0
Diff to: previous 1.1066.2.6: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.6: +3 -3
lines
Pull up the following revisions(s) (requested by martin in ticket #502):
sys/arch/cobalt/conf/GENERIC: patch
sys/arch/i386/conf/GENERIC: patch
sys/arch/i386/conf/XEN3_DOM0: patch
sys/arch/i386/conf/XEN3_DOMU: patch
sys/arch/mvmeppc/conf/GENERIC: patch
sys/arch/shark/conf/GENERIC: patch
sys/arch/sparc64/conf/GENERIC: patch
sys/arch/sparc64/conf/GENERIC.DEBUG: patch
sys/arch/zaurus/conf/GENERIC: patch
Switch off DIAGNOSTIC and/or DEBUG on release kernels.
Enable DIAGNOSTIC in DEBUG kernels to allow for option
being switched off in GENERIC.
Revision 1.1066.2.6: download - view: text, markup, annotated - select for diffs
Sun Aug 12 18:41:35 2012 UTC (12 years, 8 months ago) by martin
Branches: netbsd-6
Diff to: previous 1.1066.2.5: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.5: +6 -2
lines
Pull up following revision(s) (requested by sborrill in ticket #474):
sys/arch/i386/conf/GENERIC: revision 1.1078
Add uts(4)
Revision 1.1078: download - view: text, markup, annotated - select for diffs
Fri Aug 10 11:32:32 2012 UTC (12 years, 8 months ago) by sborrill
Branches: MAIN
Diff to: previous 1.1077: preferred, colored
Changes since revision 1.1077: +6 -2
lines
Add uts(4)
Revision 1.1077: download - view: text, markup, annotated - select for diffs
Wed Aug 1 04:20:05 2012 UTC (12 years, 8 months ago) by matt
Branches: MAIN
Diff to: previous 1.1076: preferred, colored
Changes since revision 1.1076: +3 -3
lines
Enable FFS_EI (let's be more endian tolerant).
Revision 1.1076: download - view: text, markup, annotated - select for diffs
Mon Jul 30 19:40:52 2012 UTC (12 years, 8 months ago) by degroote
Branches: MAIN
Diff to: previous 1.1075: preferred, colored
Changes since revision 1.1075: +3 -2
lines
Add malo(4) entry in various kernel configuration
Revision 1.1066.2.5: download - view: text, markup, annotated - select for diffs
Fri Jun 15 08:48:46 2012 UTC (12 years, 10 months ago) by sborrill
Branches: netbsd-6
Diff to: previous 1.1066.2.4: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.4: +3 -2
lines
Pull up the following revisions(s) (requested by riz in ticket #343):
sys/dev/usb/files.usb: revision 1.122
sys/dev/usb/if_urtw.c: revision 1.1
sys/dev/usb/if_urtwreg.h: revision 1.1
share/man/man4/Makefile: revision 1.586
share/man/man4/urtw.4: revision 1.1
distrib/sets/lists/man/mi: revision 1.1393
sys/dev/usb/usbdevs: revision 1.617
sys/arch/i386/conf/GENERIC: revision 1.357
sys/arch/amd64/conf/GENERIC: revision 1.1075 via patch
Add urtw(4) driver for Realtek RTL8187/RTL8187B 802.11b/g USB wireless
adapter. From OpenBSD.
Revision 1.1066.2.4: download - view: text, markup, annotated - select for diffs
Thu Jun 14 09:48:46 2012 UTC (12 years, 10 months ago) by sborrill
Branches: netbsd-6
Diff to: previous 1.1066.2.3: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.3: +3 -2
lines
Pull up the following revisions(s) (requested by riz in ticket #326):
distrib/sets/lists/base/mi: 1.989
distrib/sets/lists/man/mi: 1.1385
etc/mtree/NetBSD.dist.base: 1.99
share/man/man4/Makefile: 1.583
share/man/man4/urtwn.4: 1.1
share/man/man4/usb.4: 1.97
sys/arch/amd64/conf/GENERIC: 1.351
sys/arch/i386/conf/GENERIC: 1.1068
sys/dev/usb/files.usb: 1.121
sys/dev/usb/if_urtwn.c: 1.1-1.4
sys/dev/usb/if_urtwn_data.h: 1.1
sys/dev/usb/if_urtwnreg.h: 1.1
sys/dev/usb/if_urtwnvar.h: 1.1
sys/dev/usb/usbdevices.config: 1.13
sys/dev/usb/usbdevs: 1.621 via patch
sys/dev/usb/usbdevs.h: regen
sys/dev/usb/usbdevs_data.h: regen
sys/modules/if_urtwn/Makefile: 1.1
sys/modules/if_urtwn/if_urtwn.ioconf: 1.1
Add support for urtwn(4) wireless. Ported from OpenBSD
Revision 1.1075: download - view: text, markup, annotated - select for diffs
Thu Jun 14 04:23:49 2012 UTC (12 years, 10 months ago) by riz
Branches: MAIN
Diff to: previous 1.1074: preferred, colored
Changes since revision 1.1074: +3 -2
lines
Add urtw(4) to i386/amd64 GENERIC.
Revision 1.1066.2.3: download - view: text, markup, annotated - select for diffs
Tue Jun 12 22:07:07 2012 UTC (12 years, 10 months ago) by riz
Branches: netbsd-6
Diff to: previous 1.1066.2.2: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.2: +2 -3
lines
Remove test changes which accidentally snuck in on the netbsd-6 branch.
Oops.
Revision 1.1066.2.2: download - view: text, markup, annotated - select for diffs
Tue Jun 12 17:47:51 2012 UTC (12 years, 10 months ago) by riz
Branches: netbsd-6
Diff to: previous 1.1066.2.1: preferred, colored; branchpoint 1.1066: preferred, colored
Changes since revision 1.1066.2.1: +4 -3
lines
Pull up following revision(s) (requested by abs in ticket #311):
sys/arch/netwinder/conf/GENERIC: revision 1.112
sys/arch/i386/conf/GENERIC: revision 1.1074
sys/arch/atari/conf/MILAN.in: revision 1.26
sys/arch/zaurus/conf/GENERIC: revision 1.54
sys/arch/shark/conf/GENERIC: revision 1.101
sys/arch/hpcmips/conf/MPC303: revision 1.60
sys/arch/i386/conf/XEN3_DOM0: revision 1.67
sys/arch/evbarm/conf/MPCSA_GENERIC: revision 1.29
sys/arch/vax/conf/GENERIC: revision 1.181
sys/arch/sparc/conf/KRUPS: revision 1.59
sys/arch/evbarm/conf/BEAGLEBOARD: revision 1.27
sys/arch/i386/conf/INSTALL_FLOPPY: revision 1.16
sys/arch/prep/conf/GENERIC: revision 1.163
sys/arch/hpcmips/conf/GENERIC: revision 1.216
sys/arch/sparc/conf/TADPOLE3GX: revision 1.56
sys/arch/shark/conf/INSTALL: revision 1.50
sys/arch/next68k/conf/GENERIC: revision 1.127
sys/arch/evbppc/conf/VIRTEX_GSRD2: revision 1.16
sys/arch/evbppc/conf/VIRTEX_DFC: revision 1.17
sys/arch/evbppc/conf/EXPLORA451: revision 1.48
sys/arch/bebox/conf/INSTALL: revision 1.54
sys/arch/next68k/conf/SLAB: revision 1.46
sys/arch/i386/conf/GENERIC_TINY: revision 1.132
sys/arch/bebox/conf/GENERIC: revision 1.131
sys/arch/amd64/conf/XEN3_DOM0: revision 1.84
sys/arch/amd64/conf/GENERIC: revision 1.356
sys/arch/evbarm/conf/MMNET_GENERIC: revision 1.6
share/man/man4/wscons.4: revision 1.31
sys/arch/hpcmips/conf/TX3912: revision 1.79
sys/arch/evbarm/conf/ARMADILLO9: revision 1.35
sys/arch/hpcsh/conf/GENERIC: revision 1.97
sys/arch/i386/conf/ALL: revision 1.339
sys/arch/hpcmips/conf/TX3922: revision 1.93
sys/arch/cats/conf/INSTALL: revision 1.82
sys/arch/sparc64/conf/GENERIC: revision 1.151
sys/arch/i386/conf/INSTALL_TINY: revision 1.135
sys/arch/evbppc/conf/VIRTEX_GSRD1: revision 1.15
sys/arch/evbarm/conf/TS7200: revision 1.49
sys/arch/hpcmips/conf/VR41XX: revision 1.55
sys/arch/hp700/conf/GENERIC: revision 1.115
sys/arch/cats/conf/GENERIC: revision 1.140
Mention wsconscfg(8) needs WSDISPLAY_COMPAT_USL
If a port is going to have wscons for virtual terminals then it really make=
s
sense to enable WSDISPLAY_COMPAT_USL so the system can switch between the
virtual terminals...
Adjust the WSDISPLAY_COMPAT_USL comment to mention wsconscfg, to at least
give a hint that its not just for third party compat. No functional change.
Revision 1.1074: download - view: text, markup, annotated - select for diffs
Tue Jun 5 08:44:12 2012 UTC (12 years, 10 months ago) by abs
Branches: MAIN
Diff to: previous 1.1073: preferred, colored
Changes since revision 1.1073: +3 -3
lines
Adjust the WSDISPLAY_COMPAT_USL comment to mention wsconscfg, to at least
give a hint that its not just for third party compat. No functional change.
Revision 1.1058.2.5: download - view: text, markup, annotated - select for diffs
Sat Jun 2 11:09:00 2012 UTC (12 years, 10 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1058.2.4: preferred, colored; branchpoint 1.1058: preferred, colored; next MAIN 1.1059: preferred, colored
Changes since revision 1.1058.2.4: +3 -2
lines
sync to latest -current.
Revision 1.1073: download - view: text, markup, annotated - select for diffs
Wed May 30 14:30:34 2012 UTC (12 years, 10 months ago) by nonaka
Branches: MAIN
CVS tags: jmcneill-usbmp-base10
Diff to: previous 1.1072: preferred, colored
Changes since revision 1.1072: +3 -2
lines
Add a driver for Ralink Technology RT2700U/RT2800U/RT3000U USB IEEE
802.11a/b/g/n wireless network devices, ported from OpenBSD by FUKAUMI Naoki,
arranged by me.
Revision 1.1055.2.2: download - view: text, markup, annotated - select for diffs
Wed May 23 10:07:43 2012 UTC (12 years, 11 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1055.2.1: preferred, colored; branchpoint 1.1055: preferred, colored
Changes since revision 1.1055.2.1: +4 -3
lines
sync with head.
Revision 1.1058.2.4: download - view: text, markup, annotated - select for diffs
Sun Apr 29 23:04:40 2012 UTC (12 years, 11 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1058.2.3: preferred, colored; branchpoint 1.1058: preferred, colored
Changes since revision 1.1058.2.3: +9 -5
lines
sync to latest -current.
Revision 1.1066.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 23 16:31:35 2012 UTC (13 years ago) by riz
Branches: netbsd-6
Diff to: previous 1.1066: preferred, colored
Changes since revision 1.1066: +4 -3
lines
Pull up following revision(s) (requested by bouyer in ticket #193):
sys/arch/i386/conf/GENERIC: revision 1.1072
sys/dev/pci/mpii.c: revision 1.1
sys/arch/i386/conf/XEN3_DOM0: revision 1.66
sys/dev/pci/files.pci: revision 1.357
share/man/man4/Makefile: revision 1.584
distrib/sets/lists/man/mi: revision 1.1387
share/man/man4/mpii.4: revision 1.1
sys/arch/amd64/conf/GENERIC: revision 1.354
sys/arch/amd64/conf/XEN3_DOM0: revision 1.83
sys/arch/i386/conf/ALL: revision 1.337
Add mpii(4), a driver for LSI Logic Fusion-MPT Message Passing Interface II
SAS controllers. Ported from OpenBSD.
Revision 1.1072: download - view: text, markup, annotated - select for diffs
Thu Apr 19 17:50:51 2012 UTC (13 years ago) by bouyer
Branches: MAIN
CVS tags: yamt-pagecache-base5,
jmcneill-usbmp-base9
Diff to: previous 1.1071: preferred, colored
Changes since revision 1.1071: +4 -3
lines
Add mpii(4), a driver for LSI Logic Fusion-MPT Message Passing Interface II
SAS controllers. Ported from OpenBSD.
Revision 1.1055.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 17 00:06:27 2012 UTC (13 years ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.1055: preferred, colored
Changes since revision 1.1055: +43 -22
lines
sync with head
Revision 1.1071: download - view: text, markup, annotated - select for diffs
Fri Apr 13 13:11:16 2012 UTC (13 years ago) by cegger
Branches: MAIN
CVS tags: yamt-pagecache-base4
Diff to: previous 1.1070: preferred, colored
Changes since revision 1.1070: +4 -3
lines
Replace amdtempbus with amdnb_miscbus.
This allows us to have independent drivers on the same device (northbridge f3)
each coming with a certain functionality/feature.
This way we do not need to mess with amdtemp(4) to utilize other features.
Revision 1.1070: download - view: text, markup, annotated - select for diffs
Sun Apr 8 20:49:29 2012 UTC (13 years ago) by christos
Branches: MAIN
Diff to: previous 1.1069: preferred, colored
Changes since revision 1.1069: +3 -2
lines
PR/46310: Ryo ONODERA: Add support for cardbus bwi(4)
Revision 1.1069: download - view: text, markup, annotated - select for diffs
Sat Apr 7 05:40:41 2012 UTC (13 years ago) by christos
Branches: MAIN
Diff to: previous 1.1068: preferred, colored
Changes since revision 1.1068: +4 -3
lines
add apple autodiscovery
Revision 1.1058.2.3: download - view: text, markup, annotated - select for diffs
Thu Apr 5 21:33:15 2012 UTC (13 years ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1058.2.2: preferred, colored; branchpoint 1.1058: preferred, colored
Changes since revision 1.1058.2.2: +1 -0
lines
sync to latest -current.
Revision 1.1068: download - view: text, markup, annotated - select for diffs
Sun Mar 25 00:11:16 2012 UTC (13 years, 1 month ago) by nonaka
Branches: MAIN
CVS tags: jmcneill-usbmp-base8
Diff to: previous 1.1067: preferred, colored
Changes since revision 1.1067: +3 -2
lines
Added urtwn(4), a driver for Realtek RTL8188CU/RTL8192CU USB IEEE 802.11b/g/n wireless network devices.
Revision 1.1058.2.2: download - view: text, markup, annotated - select for diffs
Sun Mar 11 01:52:22 2012 UTC (13 years, 1 month ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1058.2.1: preferred, colored; branchpoint 1.1058: preferred, colored
Changes since revision 1.1058.2.1: +2 -3
lines
sync to latest -current
Revision 1.1067: download - view: text, markup, annotated - select for diffs
Sat Mar 10 21:51:53 2012 UTC (13 years, 1 month ago) by joerg
Branches: MAIN
CVS tags: jmcneill-usbmp-base7
Diff to: previous 1.1066: preferred, colored
Changes since revision 1.1066: +2 -3
lines
P1003_1B_SEMAPHORE is no longer optional.
Revision 1.1058.2.1: download - view: text, markup, annotated - select for diffs
Sat Feb 18 07:32:19 2012 UTC (13 years, 2 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.1058: preferred, colored
Changes since revision 1.1058: +26 -10
lines
merge to -current.
Revision 1.915.2.12: download - view: text, markup, annotated - select for diffs
Wed Jan 25 21:18:14 2012 UTC (13 years, 3 months ago) by riz
Branches: netbsd-5
Diff to: previous 1.915.2.11: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.11: +8 -2
lines
Pull up following revision(s) (requested by hannken in ticket #1715):
- Be robust against an invalid timer period value.
sys/dev/ic/hpetreg.h Rev. 1.4
sys/dev/ic/hpet.c Rev. 1.8
- Fix wrong definition of LAPIC_LEVEL_ASSERT / _MASK
sys/arch/x86/include/i82489reg.h Rev. 1.11
- Add virtio driver - speed up disk and network access in virtual environments
sys/arch/i386/conf/GENERIC Rev. 1.1055
sys/arch/i386/conf/ALL Rev. 1.325
sys/arch/amd64/conf/GENERIC Rev. 1.338
sys/dev/pci/files.pci Rev. 1.350
sys/dev/pci/if_vioif.c Rev. 0-1.2
sys/dev/pci/ld_virtio.c Rev. 0-1.4
sys/dev/pci/viomb.c Rev. 0-1.1
sys/dev/pci/virtio.c Rev. 0-1.3
sys/dev/pci/virtioreg.h Rev. 0-1.1
sys/dev/pci/virtiovar.h Rev. 0-1.1
distrib/sets/lists/man/mi Rev. 1.1352 and 1.1358
share/man/man4/Makefile Rev. 1.573 and 1.575
share/man/man4/ld.4 Rev. 1.19
share/man/man4/virtio.4 Rev. 0-1.4
share/man/man4/vioif.4 Rev. 0-1.2
share/man/man4/viomb.4 Rev. 0-1.2
Allow NetBSD to run unmodified under Linux/kvm.
Revision 1.1066: download - view: text, markup, annotated - select for diffs
Sun Jan 22 06:44:29 2012 UTC (13 years, 3 months ago) by christos
Branches: MAIN
CVS tags: netbsd-6-base,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
jmcneill-usbmp-base2
Branch point for: netbsd-6
Diff to: previous 1.1065: preferred, colored
Changes since revision 1.1065: +9 -2
lines
add a tpm driver from bsssd.sourceforge.net
Revision 1.1065: download - view: text, markup, annotated - select for diffs
Mon Jan 16 14:43:09 2012 UTC (13 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1064: preferred, colored
Changes since revision 1.1064: +3 -2
lines
add cir@emdtv
Revision 1.1064: download - view: text, markup, annotated - select for diffs
Sun Jan 15 15:05:06 2012 UTC (13 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1063: preferred, colored
Changes since revision 1.1063: +11 -8
lines
add & enable digital tv capture support
Revision 1.1063: download - view: text, markup, annotated - select for diffs
Sat Jan 14 12:14:28 2012 UTC (13 years, 3 months ago) by tron
Branches: MAIN
Diff to: previous 1.1062: preferred, colored
Changes since revision 1.1062: +3 -3
lines
Use "options<SPC><TAB>CPU_UCODE" to keep the indentation if the option
is commented out.
Revision 1.1062: download - view: text, markup, annotated - select for diffs
Fri Jan 13 16:05:14 2012 UTC (13 years, 3 months ago) by cegger
Branches: MAIN
Diff to: previous 1.1061: preferred, colored
Changes since revision 1.1061: +4 -2
lines
Support CPU microcode loading via cpuctl(8).
Implemented and enabled via CPU_UCODE kernel config option
for x86 and Xen Dom0.
Tested on different AMD machines with different
CPU families.
ok wiz@ for the manpages
ok releng@
ok core@ via releng@
Revision 1.1061: download - view: text, markup, annotated - select for diffs
Sat Dec 31 00:11:21 2011 UTC (13 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.1060: preferred, colored
Changes since revision 1.1060: +5 -2
lines
add uipad
Revision 1.1060: download - view: text, markup, annotated - select for diffs
Sun Dec 18 05:49:28 2011 UTC (13 years, 4 months ago) by dholland
Branches: MAIN
Diff to: previous 1.1059: preferred, colored
Changes since revision 1.1059: +3 -3
lines
WABPL is no longer considered experimental (has not been for some time)
so update its comment in config files.
Revision 1.1059: download - view: text, markup, annotated - select for diffs
Sun Dec 18 02:31:51 2011 UTC (13 years, 4 months ago) by dholland
Branches: MAIN
Diff to: previous 1.1058: preferred, colored
Changes since revision 1.1058: +3 -3
lines
adjust English usage in comment
Revision 1.1058: download - view: text, markup, annotated - select for diffs
Tue Nov 22 21:25:19 2011 UTC (13 years, 5 months ago) by tls
Branches: MAIN
CVS tags: jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base
Branch point for: jmcneill-usbmp
Diff to: previous 1.1057: preferred, colored
Changes since revision 1.1057: +2 -3
lines
The rnd pseudo-device is not really optional, because it is in the same
source file as the entropy-pool code itself. Move it to std. This
will be cleaned up more when I split the sources up as they should be.
This fixes build breaks on several ports. Thanks to Havard Eidnes for
pointing them out.
Revision 1.1057: download - view: text, markup, annotated - select for diffs
Sun Nov 13 12:47:54 2011 UTC (13 years, 5 months ago) by mbalmer
Branches: MAIN
CVS tags: jmcneill-audiomp3-base,
jmcneill-audiomp3
Diff to: previous 1.1056: preferred, colored
Changes since revision 1.1056: +5 -2
lines
Add gpiopwm(4).
Revision 1.1056: download - view: text, markup, annotated - select for diffs
Sun Nov 13 09:41:46 2011 UTC (13 years, 5 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1055: preferred, colored
Changes since revision 1.1055: +10 -10
lines
Enable nsclpcsio and gpio devices.
Revision 1.1055: download - view: text, markup, annotated - select for diffs
Sun Oct 30 12:12:21 2011 UTC (13 years, 5 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.1054: preferred, colored
Changes since revision 1.1054: +8 -2
lines
Import of the virtio driver written by MINOURA Makoto <minoura@netbsd.org>
with minor changes to make it compile an run on -current. This driver
speeds up disk and network access in virtual environments like KVM.
Enabled on i386 and amd64. Tested with a CentOS 5.7 x86_64 host.
See http://ozlabs.org/~rusty/virtio-spec/virtio.pdf for the specification.
Revision 1.1054: download - view: text, markup, annotated - select for diffs
Sun Oct 2 12:19:17 2011 UTC (13 years, 6 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1053: preferred, colored
Changes since revision 1.1053: +4 -3
lines
Document gpioiic flag in a comment.
Revision 1.1053: download - view: text, markup, annotated - select for diffs
Sun Sep 4 12:31:30 2011 UTC (13 years, 7 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1052: preferred, colored
Changes since revision 1.1052: +8 -8
lines
Disable gpio(4) which can now be built and used as modules.
Revision 1.1052: download - view: text, markup, annotated - select for diffs
Tue Aug 30 13:03:17 2011 UTC (13 years, 7 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1051: preferred, colored
Changes since revision 1.1051: +4 -7
lines
Attach gpio* at gpiobus? instead of at individual drivers.
Revision 1.1051: download - view: text, markup, annotated - select for diffs
Tue Aug 30 12:13:25 2011 UTC (13 years, 7 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1050: preferred, colored
Changes since revision 1.1050: +4 -4
lines
revert previous
Revision 1.1050: download - view: text, markup, annotated - select for diffs
Tue Aug 30 08:01:13 2011 UTC (13 years, 7 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1049: preferred, colored
Changes since revision 1.1049: +4 -4
lines
Comment out the legacy bktr(4) from the GENERICs.
Revision 1.925.2.7: download - view: text, markup, annotated - select for diffs
Sat Aug 27 15:37:23 2011 UTC (13 years, 8 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.6: preferred, colored; next MAIN 1.926: preferred, colored
Changes since revision 1.925.2.6: +105 -94
lines
Sync with HEAD. Most notably: uvm/pmap work done by rmind@, and MP Xen
work of cherry@.
No regression observed on suspend/restore.
Revision 1.1049: download - view: text, markup, annotated - select for diffs
Sat Aug 27 09:28:55 2011 UTC (13 years, 8 months ago) by mbalmer
Branches: MAIN
CVS tags: jym-xensuspend-nbase,
jym-xensuspend-base
Diff to: previous 1.1048: preferred, colored
Changes since revision 1.1048: +11 -7
lines
Enable some gpio devices.
Revision 1.1048: download - view: text, markup, annotated - select for diffs
Thu Aug 18 20:55:20 2011 UTC (13 years, 8 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1047: preferred, colored
Changes since revision 1.1047: +3 -3
lines
Attach amdtemp(4) at pchb(4) instead of in place of pchb(4).
Should fix PR#45268.
Revision 1.1047: download - view: text, markup, annotated - select for diffs
Thu Aug 11 07:38:56 2011 UTC (13 years, 8 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.1046: preferred, colored
Changes since revision 1.1046: +4 -2
lines
Add entries for pwdog(4).
Revision 1.1046: download - view: text, markup, annotated - select for diffs
Tue Aug 9 02:52:29 2011 UTC (13 years, 8 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1045: preferred, colored
Changes since revision 1.1045: +2 -5
lines
remove commented out entries for emdtv, auvitek, and dtv
Revision 1.1045: download - view: text, markup, annotated - select for diffs
Mon Aug 8 18:58:18 2011 UTC (13 years, 8 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1044: preferred, colored
Changes since revision 1.1044: +6 -6
lines
remove dtv (available as a module)
Revision 1.1044: download - view: text, markup, annotated - select for diffs
Mon Aug 8 17:02:31 2011 UTC (13 years, 8 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1043: preferred, colored
Changes since revision 1.1043: +3 -2
lines
We have PUFFS, we need putter.
Revision 1.1043: download - view: text, markup, annotated - select for diffs
Mon Aug 8 16:27:07 2011 UTC (13 years, 8 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1042: preferred, colored
Changes since revision 1.1042: +35 -44
lines
Finish reverting modularization of i386 GENERIC.
Revision 1.1042: download - view: text, markup, annotated - select for diffs
Sun Aug 7 10:04:41 2011 UTC (13 years, 8 months ago) by tron
Branches: MAIN
Diff to: previous 1.1041: preferred, colored
Changes since revision 1.1041: +4 -2
lines
Add commented out entries for V7FS and V7FS Endian Independent support.
Revision 1.1041: download - view: text, markup, annotated - select for diffs
Sat Jul 23 21:12:58 2011 UTC (13 years, 9 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1040: preferred, colored
Changes since revision 1.1040: +3 -2
lines
Enable or note aubtfwl(4) wherever ubt(4) is enabled or noted.
Revision 1.1040: download - view: text, markup, annotated - select for diffs
Wed Jul 20 20:29:54 2011 UTC (13 years, 9 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.1039: preferred, colored
Changes since revision 1.1039: +7 -3
lines
Add cxdtv(4) and urndis(4). Also, two slight cosmetic changes.
Revision 1.1039: download - view: text, markup, annotated - select for diffs
Tue Jul 19 21:02:25 2011 UTC (13 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1038: preferred, colored
Changes since revision 1.1038: +6 -2
lines
add irmce
Revision 1.1038: download - view: text, markup, annotated - select for diffs
Wed Jul 13 07:52:48 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1037: preferred, colored
Changes since revision 1.1037: +3 -2
lines
A driver for HP 3D DriverGuard; a LIS3LV02DL-based accelerometer. Tested on
HP NC4400. Like aps(4), this is commented out in the GENERIC kernels.
Revision 1.1037: download - view: text, markup, annotated - select for diffs
Mon Jul 11 18:31:10 2011 UTC (13 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1036: preferred, colored
Changes since revision 1.1036: +3 -2
lines
add emdtv at uhub
Revision 1.1036: download - view: text, markup, annotated - select for diffs
Sat Jul 9 15:02:43 2011 UTC (13 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1035: preferred, colored
Changes since revision 1.1035: +4 -3
lines
add dtv at dtvbus
Revision 1.1035: download - view: text, markup, annotated - select for diffs
Sun Jul 3 10:40:16 2011 UTC (13 years, 9 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.1034: preferred, colored
Changes since revision 1.1034: +4 -3
lines
Add back DIAGNOSTIC option to x86 GENERIC kernels, as discussed on tech-kern.
This will have to be commented out on release branches.
Revision 1.1032.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 23 14:19:13 2011 UTC (13 years, 10 months ago) by cherry
Branches: cherry-xenmp
Diff to: previous 1.1032: preferred, colored; next MAIN 1.1033: preferred, colored
Changes since revision 1.1032: +6 -5
lines
Catchup with rmind-uvmplock merge.
Revision 1.1034: download - view: text, markup, annotated - select for diffs
Tue Jun 21 05:01:17 2011 UTC (13 years, 10 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1033: preferred, colored
Changes since revision 1.1033: +4 -4
lines
By default, enable wmihp(4) instead of hpqlb(4), as it has a better chance
of working with a greater number of HP laptops. Ok cegger@.
Revision 1.1033: download - view: text, markup, annotated - select for diffs
Tue Jun 14 13:59:23 2011 UTC (13 years, 10 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1032: preferred, colored
Changes since revision 1.1032: +4 -3
lines
Try to attach hpet(4) also via a specific HPET table. Fixes PR kern/43702.
Revision 1.1006.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 6 09:05:47 2011 UTC (13 years, 10 months ago) by jruoho
Branches: jruoho-x86intr
Diff to: previous 1.1006: preferred, colored; next MAIN 1.1007: preferred, colored
Changes since revision 1.1006: +79 -82
lines
Sync with HEAD.
Revision 1.974.2.5: download - view: text, markup, annotated - select for diffs
Tue May 31 03:04:03 2011 UTC (13 years, 10 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.974.2.4: preferred, colored; branchpoint 1.974: preferred, colored; next MAIN 1.975: preferred, colored
Changes since revision 1.974.2.4: +44 -48
lines
sync with head
Revision 1.1032: download - view: text, markup, annotated - select for diffs
Sat May 28 13:01:49 2011 UTC (13 years, 11 months ago) by ryo
Branches: MAIN
CVS tags: rmind-uvmplock-nbase,
rmind-uvmplock-base,
cherry-xenmp-base
Branch point for: cherry-xenmp
Diff to: previous 1.1031: preferred, colored
Changes since revision 1.1031: +46 -46
lines
many whitespace cleanup.
confirmed "cvs diff -b" are identical.
Revision 1.925.2.6: download - view: text, markup, annotated - select for diffs
Mon May 2 22:49:55 2011 UTC (13 years, 11 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.5: preferred, colored
Changes since revision 1.925.2.5: +7 -7
lines
Sync with head.
Revision 1.1031: download - view: text, markup, annotated - select for diffs
Tue Apr 26 16:57:40 2011 UTC (14 years ago) by joerg
Branches: MAIN
Diff to: previous 1.1030: preferred, colored
Changes since revision 1.1030: +2 -3
lines
Remove PECOFF/Win32 emulation.
Revision 1.1030: download - view: text, markup, annotated - select for diffs
Tue Apr 26 15:51:22 2011 UTC (14 years ago) by joerg
Branches: MAIN
Diff to: previous 1.1029: preferred, colored
Changes since revision 1.1029: +2 -5
lines
Remove Darwin, MACH and Mach-O support.
Revision 1.974.2.4: download - view: text, markup, annotated - select for diffs
Thu Apr 21 01:41:05 2011 UTC (14 years ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.974.2.3: preferred, colored; branchpoint 1.974: preferred, colored
Changes since revision 1.974.2.3: +7 -2
lines
sync with head
Revision 1.1029: download - view: text, markup, annotated - select for diffs
Mon Apr 4 17:09:39 2011 UTC (14 years ago) by bouyer
Branches: MAIN
Diff to: previous 1.1028: preferred, colored
Changes since revision 1.1028: +5 -2
lines
Add a driver for RDC's vortex86/PMX-1000 SoC PCI/ISA bridge, with support
for the integrated watchdog timer.
Revision 1.1028: download - view: text, markup, annotated - select for diffs
Mon Apr 4 14:33:51 2011 UTC (14 years ago) by bouyer
Branches: MAIN
Diff to: previous 1.1027: preferred, colored
Changes since revision 1.1027: +3 -2
lines
Add rdcide(4), a driver for the IDE controller found in RDC's
vortex86/PMX-1000 system-on-chip.
Revision 1.1027: download - view: text, markup, annotated - select for diffs
Fri Apr 1 12:11:16 2011 UTC (14 years ago) by jruoho
Branches: MAIN
Diff to: previous 1.1026: preferred, colored
Changes since revision 1.1026: +3 -3
lines
Enable acpicpu(4) by default.
Revision 1.925.2.5: download - view: text, markup, annotated - select for diffs
Tue Mar 29 20:42:58 2011 UTC (14 years ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.4: preferred, colored
Changes since revision 1.925.2.4: +147 -109
lines
More sync fixes. And add the mbr_gpt files.
Revision 1.925.2.4: download - view: text, markup, annotated - select for diffs
Mon Mar 28 23:04:38 2011 UTC (14 years, 1 month ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.3: preferred, colored
Changes since revision 1.925.2.3: +71 -54
lines
Sync with HEAD. TODO before merge:
- shortcut for suspend code in sysmon, when powerd(8) is not running.
Borrow ``xs_watch'' thread context?
- bug hunting in xbd + xennet resume. Rings are currently thrashed upon
resume, so current implementation force flush them on suspend. It's not
really needed.
Revision 1.1026: download - view: text, markup, annotated - select for diffs
Sun Mar 6 17:08:25 2011 UTC (14 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.1025: preferred, colored
Changes since revision 1.1025: +4 -3
lines
merge the bouyer-quota2 branch. This adds a new on-disk format
to store disk quota usage and limits, integrated with ffs
metadata. Usage is checked by fsck_ffs (no more quotacheck)
and is covered by the WAPBL journal. Enabled with kernel
option QUOTA2 (added where QUOTA was enabled in kernel config files),
turned on with tunefs(8) on a per-filesystem
basis. mount_mfs(8) can also turn quotas on.
See http://mail-index.netbsd.org/tech-kern/2011/02/19/msg010025.html
for details.
Revision 1.974.2.3: download - view: text, markup, annotated - select for diffs
Sat Mar 5 20:50:37 2011 UTC (14 years, 1 month ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.974.2.2: preferred, colored; branchpoint 1.974: preferred, colored
Changes since revision 1.974.2.2: +69 -50
lines
sync with head
Revision 1.1007.2.4: download - view: text, markup, annotated - select for diffs
Sat Mar 5 15:09:43 2011 UTC (14 years, 1 month ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.1007.2.3: preferred, colored; next MAIN 1.1008: preferred, colored
Changes since revision 1.1007.2.3: +12 -24
lines
Sync with HEAD
Revision 1.1025: download - view: text, markup, annotated - select for diffs
Fri Mar 4 04:48:40 2011 UTC (14 years, 1 month ago) by jruoho
Branches: MAIN
CVS tags: bouyer-quota2-nbase
Diff to: previous 1.1024: preferred, colored
Changes since revision 1.1024: +3 -5
lines
Move INTEL_ONDEMAND_CLOCKMOD -- or odcm(4) -- to the cpufeaturebus.
Revision 1.1024: download - view: text, markup, annotated - select for diffs
Sun Feb 27 17:10:34 2011 UTC (14 years, 1 month ago) by jruoho
Branches: MAIN
Diff to: previous 1.1023: preferred, colored
Changes since revision 1.1023: +3 -3
lines
Move acpicpu(4) from "acpinodebus" to "cpufeaturebus".
Revision 1.1023: download - view: text, markup, annotated - select for diffs
Thu Feb 24 13:58:39 2011 UTC (14 years, 2 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1022: preferred, colored
Changes since revision 1.1022: +3 -5
lines
Move VIA_C7TEMP to the cpufeaturebus.
Revision 1.1022: download - view: text, markup, annotated - select for diffs
Thu Feb 24 10:56:01 2011 UTC (14 years, 2 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1021: preferred, colored
Changes since revision 1.1021: +3 -8
lines
Move PowerNow! to the cpufeaturebus.
Revision 1.1021: download - view: text, markup, annotated - select for diffs
Wed Feb 23 11:43:22 2011 UTC (14 years, 2 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1020: preferred, colored
Changes since revision 1.1020: +6 -11
lines
Move ENHANCED_SPEEDSTEP, or henceforth est(4), to the cpufeaturebus.
Revision 1.1020: download - view: text, markup, annotated - select for diffs
Wed Feb 23 00:45:56 2011 UTC (14 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1019: preferred, colored
Changes since revision 1.1019: +3 -2
lines
add alc@pci
Revision 1.1019: download - view: text, markup, annotated - select for diffs
Sun Feb 20 13:42:45 2011 UTC (14 years, 2 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1018: preferred, colored
Changes since revision 1.1018: +5 -5
lines
Modularize coretemp(4). Ok jmcneill@.
Revision 1.1018: download - view: text, markup, annotated - select for diffs
Sat Feb 19 13:52:27 2011 UTC (14 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1017: preferred, colored
Changes since revision 1.1017: +3 -3
lines
modularize VIA PadLock support
- retire options VIA_PADLOCK, replace with 'padlock0 at cpu0'
- driver supports attach & detach
- support building as a module
Revision 1.1017: download - view: text, markup, annotated - select for diffs
Sat Feb 19 00:13:55 2011 UTC (14 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1016: preferred, colored
Changes since revision 1.1016: +3 -2
lines
add VCONS_DRAW_INTR
Revision 1.1007.2.3: download - view: text, markup, annotated - select for diffs
Thu Feb 17 11:59:44 2011 UTC (14 years, 2 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.1007.2.2: preferred, colored
Changes since revision 1.1007.2.2: +19 -14
lines
Sync with HEAD
Revision 1.1016: download - view: text, markup, annotated - select for diffs
Wed Feb 16 07:30:27 2011 UTC (14 years, 2 months ago) by jruoho
Branches: MAIN
CVS tags: uebayasi-xip-base7,
bouyer-quota2-base
Diff to: previous 1.1015: preferred, colored
Changes since revision 1.1015: +3 -2
lines
Add a skeleton driver for Asus EeePC acpiwmi(4) mappings.
Revision 1.1015: download - view: text, markup, annotated - select for diffs
Tue Feb 15 12:06:22 2011 UTC (14 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1014: preferred, colored
Changes since revision 1.1014: +3 -3
lines
retire azalia from GENERIC
Revision 1.1014: download - view: text, markup, annotated - select for diffs
Mon Feb 14 08:50:39 2011 UTC (14 years, 2 months ago) by hannken
Branches: MAIN
Diff to: previous 1.1013: preferred, colored
Changes since revision 1.1013: +5 -2
lines
Initial implementation of ibmhawk(4) driver for sensors behind the IBM Hawk
on-board Integrated Systems Management Processor found on some eServers.
Tested on an IBM eServer x335.
Revision 1.1013: download - view: text, markup, annotated - select for diffs
Sun Feb 13 04:37:21 2011 UTC (14 years, 2 months ago) by jym
Branches: MAIN
Diff to: previous 1.1012: preferred, colored
Changes since revision 1.1012: +4 -4
lines
Compile FFS and NFS statically (e.g. not modular) for GENERIC. These
file-systems can be critical for mountroot; as kernel cannot have access
to module(7)s without having / mounted first... yes, you see the point.
See http://mail-index.netbsd.org/port-i386/2011/02/11/msg002323.html
XXX Hopefully, /stand does not reside in a separate partition :o
Revision 1.1012: download - view: text, markup, annotated - select for diffs
Sun Feb 13 04:22:41 2011 UTC (14 years, 2 months ago) by jym
Branches: MAIN
Diff to: previous 1.1011: preferred, colored
Changes since revision 1.1011: +3 -2
lines
Add missing PUFFS (commented out).
Revision 1.1011: download - view: text, markup, annotated - select for diffs
Fri Feb 11 01:59:57 2011 UTC (14 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1010: preferred, colored
Changes since revision 1.1010: +11 -11
lines
attach drm hw drivers to 'drm' not 'vga'
Revision 1.1007.2.2: download - view: text, markup, annotated - select for diffs
Tue Feb 8 19:29:35 2011 UTC (14 years, 2 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.1007.2.1: preferred, colored
Changes since revision 1.1007.2.1: +4 -3
lines
Add QUOTA2 where QUOTA is enabled (and QUOTA2 commented out where QUOTA
is commented out)
Revision 1.1007.2.1: download - view: text, markup, annotated - select for diffs
Tue Feb 8 16:19:25 2011 UTC (14 years, 2 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.1007: preferred, colored
Changes since revision 1.1007: +5 -3
lines
Sync with HEAD
Revision 1.1010: download - view: text, markup, annotated - select for diffs
Mon Feb 7 04:05:49 2011 UTC (14 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1009: preferred, colored
Changes since revision 1.1009: +2 -3
lines
options SPLASHSCREEN_PROGRESS is no more
Revision 1.1009: download - view: text, markup, annotated - select for diffs
Wed Jan 26 18:48:12 2011 UTC (14 years, 3 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.1008: preferred, colored
Changes since revision 1.1008: +4 -2
lines
Add a driver for the RDC Semiconductor RDC R6040 10/100 Ethernet controller,
as found in the vortex86 SoCs (http://www.vortex86dx.com).
Ported from freebsd.
Not added to amd64's GENERIC because this CPU is 32bit only.
thanks to DM&P Electronics, Inc for providing documentation and sample
devices for this work.
Revision 1.1008: download - view: text, markup, annotated - select for diffs
Wed Jan 26 00:25:55 2011 UTC (14 years, 3 months ago) by pooka
Branches: MAIN
Diff to: previous 1.1007: preferred, colored
Changes since revision 1.1007: +3 -2
lines
Add bwi from PR kern/40279. There is no know case of testing the
driver on amd64/i386, but if it doesn't work at least we're more
likely to get a PR instead of people wondering about lacking driver
support.
Revision 1.1007: download - view: text, markup, annotated - select for diffs
Mon Jan 17 15:56:03 2011 UTC (14 years, 3 months ago) by jmcneill
Branches: MAIN
Branch point for: bouyer-quota2
Diff to: previous 1.1006: preferred, colored
Changes since revision 1.1006: +3 -2
lines
add acpiwdrt
Revision 1.1006: download - view: text, markup, annotated - select for diffs
Sun Jan 9 15:12:33 2011 UTC (14 years, 3 months ago) by jruoho
Branches: MAIN
CVS tags: jruoho-x86intr-base
Branch point for: jruoho-x86intr
Diff to: previous 1.1005: preferred, colored
Changes since revision 1.1005: +3 -2
lines
Add a dummy-driver for ACPI fans.
Revision 1.1005: download - view: text, markup, annotated - select for diffs
Wed Jan 5 20:08:12 2011 UTC (14 years, 3 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.1004: preferred, colored
Changes since revision 1.1004: +5 -7
lines
Add a driver for ACPI power meters.
Revision 1.1004: download - view: text, markup, annotated - select for diffs
Mon Jan 3 06:07:43 2011 UTC (14 years, 3 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.1003: preferred, colored
Changes since revision 1.1003: +10 -10
lines
Xref module(7) in comments.
Revision 1.1003: download - view: text, markup, annotated - select for diffs
Mon Dec 27 20:45:00 2010 UTC (14 years, 4 months ago) by jmcneill
Branches: MAIN
CVS tags: matt-mips64-premerge-20101231
Diff to: previous 1.1002: preferred, colored
Changes since revision 1.1002: +3 -2
lines
add auvitek at uhub
Revision 1.1002: download - view: text, markup, annotated - select for diffs
Mon Dec 27 15:56:50 2010 UTC (14 years, 4 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.1001: preferred, colored
Changes since revision 1.1001: +3 -2
lines
add 'uaudio* at usbifif?' so uaudio can attach to something other than
a hub
Revision 1.1001: download - view: text, markup, annotated - select for diffs
Sat Nov 27 20:18:46 2010 UTC (14 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.1000: preferred, colored
Changes since revision 1.1000: +3 -2
lines
add ihphy
Revision 1.1000: download - view: text, markup, annotated - select for diffs
Tue Nov 23 11:14:00 2010 UTC (14 years, 5 months ago) by hannken
Branches: MAIN
Diff to: previous 1.999: preferred, colored
Changes since revision 1.999: +3 -3
lines
Remove unused count from pseudo-device md.
Revision 1.915.2.11: download - view: text, markup, annotated - select for diffs
Sun Nov 21 03:05:05 2010 UTC (14 years, 5 months ago) by riz
Branches: netbsd-5
CVS tags: matt-nb5-pq3-base,
matt-nb5-pq3
Diff to: previous 1.915.2.10: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.10: +6 -2
lines
Pull up following revision(s) (requested by plunky in ticket #1407):
sys/dev/bluetooth/btdev.h: revision 1.9
sys/arch/iyonix/conf/GENERIC: revision 1.60
sys/arch/sparc64/conf/GENERIC: revision 1.129
sys/dev/usb/hid.c: revision 1.30
sys/dev/usb/hid.h: revision 1.13
sys/arch/i386/conf/GENERIC: revision 1.983
usr.sbin/btdevctl/print.c: revision 1.10
sys/arch/evbarm/conf/MPCSA_GENERIC: revision 1.16
sys/arch/alpha/conf/GENERIC: revision 1.337
sys/dev/bluetooth/files.bluetooth: revision 1.14
sys/arch/evbarm/conf/GUMSTIX: revision 1.49
sys/dev/usb/usbdevs: revision 1.550
sys/arch/evbppc/conf/OPENBLOCKS266_OPT: revision 1.14
sys/arch/hpcsh/conf/GENERIC: revision 1.91
sys/dev/bluetooth/btmagic.c: revision 1.1
distrib/sets/lists/man/mi: revision 1.1210
sys/arch/amd64/conf/GENERIC: revision 1.279
sys/arch/i386/conf/ALL: revision 1.258
sys/arch/amd64/conf/XEN3_DOM0: revision 1.54
sys/arch/hpcarm/conf/JORNADA720: revision 1.78
sys/dev/usb/hid.c: revision 1.29
share/man/man4/btmagic.4: revision 1.1
hid_get_data() does not work if the size of data is less than
a byte and crosses a byte boundary, and it always returns a
sign-extended value.
fix this by using the algorithm from libusbhid to read bytes,
and provide a hid_get_udata() function to return unsigned data
values.
while here, const args
update DPRINTF to reflect actual function name
add Apple Magic Mouse product-id
regen for Magic Mouse id
allow for vendor-id and product-id properties, passing them
through to child devices
add Magic Mouse driver and manpage btmagic(4)
additionally query the "PnP Information" service record to discover
any USB Forum vendor-id and product-id values and store them in the
property list if found.
add btmagic(4) where other Bluetooth drivers are listed
Revision 1.999: download - view: text, markup, annotated - select for diffs
Sat Nov 13 09:48:55 2010 UTC (14 years, 5 months ago) by jnemeth
Branches: MAIN
CVS tags: uebayasi-xip-base6
Diff to: previous 1.998: preferred, colored
Changes since revision 1.998: +4 -2
lines
Add new et(4)/etphy(4) devices.
Revision 1.963.2.5: download - view: text, markup, annotated - select for diffs
Tue Nov 9 06:03:37 2010 UTC (14 years, 5 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.963.2.4: preferred, colored; branchpoint 1.963: preferred, colored; next MAIN 1.964: preferred, colored
Changes since revision 1.963.2.4: +3 -2
lines
Sync with HEAD.
Revision 1.998: download - view: text, markup, annotated - select for diffs
Sat Nov 6 15:06:29 2010 UTC (14 years, 5 months ago) by jakllsch
Branches: MAIN
CVS tags: uebayasi-xip-base5
Diff to: previous 1.997: preferred, colored
Changes since revision 1.997: +3 -2
lines
Enable schide(4), Intel SCH IDE controller driver from PR#42310.
Revision 1.963.2.4: download - view: text, markup, annotated - select for diffs
Sat Nov 6 08:08:18 2010 UTC (14 years, 5 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.963.2.3: preferred, colored; branchpoint 1.963: preferred, colored
Changes since revision 1.963.2.3: +6 -2
lines
Sync with HEAD.
Revision 1.997: download - view: text, markup, annotated - select for diffs
Fri Nov 5 10:28:21 2010 UTC (14 years, 5 months ago) by gsutre
Branches: MAIN
CVS tags: uebayasi-xip-base4
Diff to: previous 1.996: preferred, colored
Changes since revision 1.996: +4 -2
lines
Merge ACPI Fujitsu Driver. Provides support for hotkeys and other
built-in components through vendor-specific ACPI devices.
ok jruoho@
Revision 1.996: download - view: text, markup, annotated - select for diffs
Wed Nov 3 20:10:00 2010 UTC (14 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.995: preferred, colored
Changes since revision 1.995: +3 -2
lines
add otus
Revision 1.995: download - view: text, markup, annotated - select for diffs
Sun Oct 24 08:54:14 2010 UTC (14 years, 6 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.994: preferred, colored
Changes since revision 1.994: +3 -2
lines
Add acpiwmi(4) mappings for MSI laptops.
XXX: It may be necessary to fix PR # 43659 before this works on all models.
Revision 1.963.2.3: download - view: text, markup, annotated - select for diffs
Fri Oct 22 07:21:19 2010 UTC (14 years, 6 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.963.2.2: preferred, colored; branchpoint 1.963: preferred, colored
Changes since revision 1.963.2.2: +7 -0
lines
Sync with HEAD (-D20101022).
Revision 1.994: download - view: text, markup, annotated - select for diffs
Tue Oct 12 19:10:50 2010 UTC (14 years, 6 months ago) by gsutre
Branches: MAIN
CVS tags: uebayasi-xip-base3
Diff to: previous 1.993: preferred, colored
Changes since revision 1.993: +4 -2
lines
Merge ACPI display driver. Provides generic support for brightness
control and output switching, through ACPI video extensions.
TODO: use wsconsctl(8) instead of sysctl(8) for brightness control.
ok jruoho@
also discussed with cegger@ and jmcneill@
Revision 1.890.2.7: download - view: text, markup, annotated - select for diffs
Sat Oct 9 03:31:46 2010 UTC (14 years, 6 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.6: preferred, colored; branchpoint 1.890: preferred, colored; next MAIN 1.891: preferred, colored
Changes since revision 1.890.2.6: +7 -2
lines
sync with head
Revision 1.993: download - view: text, markup, annotated - select for diffs
Sun Aug 22 18:56:21 2010 UTC (14 years, 8 months ago) by rmind
Branches: MAIN
CVS tags: yamt-nfs-mp-base11
Diff to: previous 1.992: preferred, colored
Changes since revision 1.992: +5 -2
lines
Import NPF - a packet filter. Some features:
- Designed to be fully MP-safe and highly efficient.
- Tables/IP sets (hash or red-black tree) for high performance lookups.
- Stateful filtering and Network Address Port Translation (NAPT).
Framework for application level gateways (ALGs).
- Packet inspection engine called n-code processor - inspired by BPF -
supporting generic RISC-like and specific CISC-like instructions for
common patterns (e.g. IPv4 address matching). See npf_ncode(9) manual.
- Convenient userland utility npfctl(8) with npf.conf(8).
NOTE: This is not yet a fully capable alternative to PF or IPFilter.
Further work (support for binat/rdr, return-rst/return-icmp, common ALGs,
state saving/restoring, logging, etc) is in progress.
Thanks a lot to Matt Thomas for various useful comments and code review.
Aye by: board@
Revision 1.992: download - view: text, markup, annotated - select for diffs
Sat Aug 21 11:55:21 2010 UTC (14 years, 8 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.991: preferred, colored
Changes since revision 1.991: +3 -2
lines
enable viadrm
Revision 1.991: download - view: text, markup, annotated - select for diffs
Sat Aug 21 03:06:37 2010 UTC (14 years, 8 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.990: preferred, colored
Changes since revision 1.990: +3 -2
lines
Add upgt(4), Intersil PrismGT USB 802.11b/g adapter.
Revision 1.963.2.2: download - view: text, markup, annotated - select for diffs
Tue Aug 17 06:44:34 2010 UTC (14 years, 8 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.963.2.1: preferred, colored; branchpoint 1.963: preferred, colored
Changes since revision 1.963.2.1: +31 -3
lines
Sync with HEAD.
Revision 1.890.2.6: download - view: text, markup, annotated - select for diffs
Wed Aug 11 22:52:10 2010 UTC (14 years, 8 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.5: preferred, colored; branchpoint 1.890: preferred, colored
Changes since revision 1.890.2.5: +42 -16
lines
sync with head.
Revision 1.990: download - view: text, markup, annotated - select for diffs
Sun Aug 8 20:04:24 2010 UTC (14 years, 8 months ago) by chs
Branches: MAIN
CVS tags: yamt-nfs-mp-base10,
uebayasi-xip-base2
Diff to: previous 1.989: preferred, colored
Changes since revision 1.989: +6 -2
lines
add more (commented-out) spdmem instances for HP xw-series workstations.
Revision 1.989: download - view: text, markup, annotated - select for diffs
Sat Jul 24 00:45:54 2010 UTC (14 years, 9 months ago) by jym
Branches: MAIN
Diff to: previous 1.988: preferred, colored
Changes since revision 1.988: +3 -2
lines
Welcome PAE inside i386 current.
This patch is inspired by work previously done by Jeremy Morse, ported by me
to -current, merged with the work previously done for port-xen, together with
additionals fixes and improvements.
PAE option is disabled by default in GENERIC (but will be enabled in ALL in
the next few days).
In quick, PAE switches the CPU to a mode where physical addresses become
36 bits (64 GiB). Virtual address space remains at 32 bits (4 GiB). To cope
with the increased size of the physical address, they are manipulated as
64 bits variables by kernel and MMU.
When supported by the CPU, it also allows the use of the NX/XD bit that
provides no-execution right enforcement on a per physical page basis.
Notes:
- reworked locore.S
- introduce cpu_load_pmap(), used to switch pmap for the curcpu. Due to the
different handling of pmap mappings with PAE vs !PAE, Xen vs native, details
are hidden within this function. This helps calling it from assembly,
as some features, like BIOS calls, switch to pmap_kernel before mapping
trampoline code in low memory.
- some changes in bioscall and kvm86_call, to reflect the above.
- the L3 is "pinned" per-CPU, and is only manipulated by a
reduced set of functions within pmap. To track the L3, I added two
elements to struct cpu_info, namely ci_l3_pdirpa (PA of the L3), and
ci_l3_pdir (the L3 VA). Rest of the code considers that it runs "just
like" a normal i386, except that the L2 is 4 pages long (PTP_LEVELS is
still 2).
- similar to the ci_pae_l3_pdir{,pa} variables, amd64's xen_current_user_pgd
becomes an element of cpu_info (slowly paving the way for MP world).
- bootinfo_source struct declaration is modified, to cope with paddr_t size
change with PAE (it is not correct to assume that bs_addr is a paddr_t when
compiled with PAE - it should remain 32 bits). bs_addrs is now a
void * array (in bootloader's code under i386/stand/, the bs_addrs
is a physaddr_t, which is an unsigned long).
- fixes in multiboot code (same reason as bootinfo): paddr_t size
change. I used Elf32_* types, use RELOC() where necessary, and move the
memcpy() functions out of the if/else if (I do not expect sym and str tables
to overlap with ELF).
- 64 bits atomic functions for pmap
- all pmap_pdirpa access are now done through the pmap_pdirpa macro. It
hides the L3/L2 stuff from PAE, as well as the pm_pdirpa change in
struct pmap (it now becomes a PDP_SIZE array, with or without PAE).
- manipulation of recursive mappings ( PDIR_SLOT_{,A}PTEs ) is done via
loops on PDP_SIZE.
See also http://mail-index.netbsd.org/port-i386/2010/07/17/msg002062.html
No objection raised on port-i386@ and port-xen@R for about a week.
XXX kvm(3) will be fixed in another patch to properly handle both PAE and !PAE
kernel dumps (VA => PA macros are slightly different, and need proper 64 bits
PA support in kvm_i386).
XXX Mixing PAE and !PAE modules may lead to unwanted/unexpected results. This
cannot be solved easily, and needs lots of thinking before being declared
safe (paddr_t/bus_addr_t size handling, PD/PT macros abstractions).
Revision 1.988: download - view: text, markup, annotated - select for diffs
Fri Jul 23 00:43:20 2010 UTC (14 years, 9 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.987: preferred, colored
Changes since revision 1.987: +4 -3
lines
Almost entirely rework Intel Firmware Hub random number generator support.
This introduces fwhrng(4) which attaches via ichlpcib(4), replacing
the rnd(4) support in pchb(4).
Revision 1.987: download - view: text, markup, annotated - select for diffs
Sun Jul 18 09:29:12 2010 UTC (14 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.986: preferred, colored
Changes since revision 1.986: +3 -2
lines
Merge a driver for ACPI CPUs with basic support for processor power states,
also known as C-states. The code is modular and provides an easy way to add
the remaining functionality later (namely throttling and P-states).
Remarks:
1. Commented out in the GENERICs; more testing exposure is needed.
2. The C3-state is disabled for the time being because it turns off
timers, among them the local APIC timer. This may not be universally
true on all x86 processors; define ACPICPU_ENABLE_C3 to test.
3. The algorithm used to choose a power state may need tuning. When
evaluating the appropriate state, the implementation uses the
previous sleep time as an indicator. Additional hints would include
for example the system load.
Also bus master activity is evaluated when choosing a state. The
usb(4) stack is notorious for such activity even when unused.
Typically it must be disabled in order to reach the C3-state,
but it may also prevent the use of C2.
4. While no extensive empirical measurements have been carried out, the
power savings are somewhere between 1-2 W with C1 and C2, depending
on the processor, firmware, and load. With C3 even up to 4 W can be
saved. The less something ticks, the more power is saved.
ok jmcneill@, joerg@, and discussed with various people.
Revision 1.974.2.2: download - view: text, markup, annotated - select for diffs
Sat Jul 3 01:19:20 2010 UTC (14 years, 9 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.974.2.1: preferred, colored; branchpoint 1.974: preferred, colored
Changes since revision 1.974.2.1: +14 -2
lines
sync with head
Revision 1.986: download - view: text, markup, annotated - select for diffs
Sat Jun 26 15:17:56 2010 UTC (14 years, 10 months ago) by kefren
Branches: MAIN
Diff to: previous 1.985: preferred, colored
Changes since revision 1.985: +4 -3
lines
Fix build for MPLS import: add options MPLS, changed pseudo-device mpls
to pseudo-device ifmpls
Revision 1.985: download - view: text, markup, annotated - select for diffs
Sat Jun 26 14:36:48 2010 UTC (14 years, 10 months ago) by kefren
Branches: MAIN
Diff to: previous 1.984: preferred, colored
Changes since revision 1.984: +3 -2
lines
add pseudo-device mpls - commented in GENERIC for now
Revision 1.984: download - view: text, markup, annotated - select for diffs
Tue Jun 1 02:40:13 2010 UTC (14 years, 10 months ago) by mrg
Branches: MAIN
Diff to: previous 1.983: preferred, colored
Changes since revision 1.983: +12 -2
lines
enable the drm drivers; they've been tested for ages and have been
enabled on amd64 for some months now. as requested in PR#42936.
Revision 1.974.2.1: download - view: text, markup, annotated - select for diffs
Sun May 30 05:16:53 2010 UTC (14 years, 10 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.974: preferred, colored
Changes since revision 1.974: +22 -15
lines
sync with head
Revision 1.983: download - view: text, markup, annotated - select for diffs
Sat May 22 19:02:08 2010 UTC (14 years, 11 months ago) by plunky
Branches: MAIN
Diff to: previous 1.982: preferred, colored
Changes since revision 1.982: +6 -2
lines
add btmagic(4) where other Bluetooth drivers are listed
Revision 1.982: download - view: text, markup, annotated - select for diffs
Sat May 8 22:16:28 2010 UTC (14 years, 11 months ago) by mrg
Branches: MAIN
Diff to: previous 1.981: preferred, colored
Changes since revision 1.981: +3 -2
lines
enable IPFILTER_COMPAT in all kernels that have ipfilter already.
canonicalise several of the ipf option segments in various files
(this mostly means adding commented out IPFILTER_DEFAULT_BLOCK,
or adding commented or uncommented IPFILTER_LOG or IPFILTER_LOOKUP
option statements.)
i built about 20 of these kernels to check, but not all of them.
Revision 1.981: download - view: text, markup, annotated - select for diffs
Sun May 2 17:24:35 2010 UTC (14 years, 11 months ago) by chs
Branches: MAIN
Diff to: previous 1.980: preferred, colored
Changes since revision 1.980: +7 -3
lines
add alipm and its iic bus.
Revision 1.963.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 30 14:39:28 2010 UTC (14 years, 11 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.963: preferred, colored
Changes since revision 1.963: +33 -17
lines
Sync with HEAD.
Revision 1.915.2.3.4.1: download - view: text, markup, annotated - select for diffs
Wed Apr 21 00:33:50 2010 UTC (15 years ago) by matt
Branches: matt-nb5-mips64
CVS tags: matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-k15
Diff to: previous 1.915.2.3: preferred, colored; next MAIN 1.915.2.4: preferred, colored
Changes since revision 1.915.2.3: +23 -2
lines
sync to netbsd-5
Revision 1.980: download - view: text, markup, annotated - select for diffs
Fri Apr 16 13:48:32 2010 UTC (15 years ago) by pooka
Branches: MAIN
CVS tags: uebayasi-xip-base1
Diff to: previous 1.979: preferred, colored
Changes since revision 1.979: +3 -3
lines
Remove unused count (invariably "4") from pseudo-device fss.
Revision 1.979: download - view: text, markup, annotated - select for diffs
Sat Apr 10 17:55:25 2010 UTC (15 years ago) by jruoho
Branches: MAIN
Diff to: previous 1.978: preferred, colored
Changes since revision 1.978: +4 -8
lines
Move vald(4) to sys/dev/acpi. This is MI and should work also on amd64.
ok jmcneill@
XXX: This is broken: it calls methods with absolute pathnames (almost
guaranteed not to be portable across models), it accesses methods
that are in the domain of other drivers, it walks the namespace on
its own, it contains plenty of magic constants, it does not
integrate with existing KPIs, etc. Summa summarum: this should be
rewritten as a more generic toshiba_acpi(4).
Revision 1.978: download - view: text, markup, annotated - select for diffs
Fri Apr 9 14:02:05 2010 UTC (15 years ago) by ahoka
Branches: MAIN
Diff to: previous 1.977: preferred, colored
Changes since revision 1.977: +2 -5
lines
Remove pad from GENERIC, add to MONOLITH, we have it as a module now.
Revision 1.977: download - view: text, markup, annotated - select for diffs
Thu Apr 8 17:32:30 2010 UTC (15 years ago) by jruoho
Branches: MAIN
Diff to: previous 1.976: preferred, colored
Changes since revision 1.976: +3 -2
lines
Add WMI mappings for HP laptops. Requested by cegger@.
Thanks to apb@ and cegger@ for initial testing.
XXX: This conflicts with hpqlb(4). Someone with the suitable hardware needs
to complete the list of hotkeys before -- and if -- this can replace
hpqlb(4). For now, the driver was left uncommented in the GENERICs.
Revision 1.976: download - view: text, markup, annotated - select for diffs
Thu Apr 8 09:45:17 2010 UTC (15 years ago) by jruoho
Branches: MAIN
Diff to: previous 1.975: preferred, colored
Changes since revision 1.975: +3 -2
lines
Add wmidell(4).
Revision 1.975: download - view: text, markup, annotated - select for diffs
Sat Mar 27 03:04:51 2010 UTC (15 years, 1 month ago) by nonaka
Branches: MAIN
Diff to: previous 1.974: preferred, colored
Changes since revision 1.974: +7 -4
lines
Added sdhc at cardbus support.
Revision 1.890.2.5: download - view: text, markup, annotated - select for diffs
Thu Mar 11 15:02:27 2010 UTC (15 years, 1 month ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.4: preferred, colored; branchpoint 1.890: preferred, colored
Changes since revision 1.890.2.4: +144 -121
lines
sync with head
Revision 1.974: download - view: text, markup, annotated - select for diffs
Mon Mar 8 22:51:52 2010 UTC (15 years, 1 month ago) by hubertf
Branches: MAIN
CVS tags: yamt-nfs-mp-base9
Branch point for: rmind-uvmplock
Diff to: previous 1.973: preferred, colored
Changes since revision 1.973: +3 -2
lines
Add etherip(4), commented out
Revision 1.973: download - view: text, markup, annotated - select for diffs
Sat Mar 6 21:12:04 2010 UTC (15 years, 1 month ago) by plunky
Branches: MAIN
Diff to: previous 1.972: preferred, colored
Changes since revision 1.972: +5 -2
lines
add uhso(4)
Revision 1.972: download - view: text, markup, annotated - select for diffs
Sat Mar 6 04:28:53 2010 UTC (15 years, 1 month ago) by cnst
Branches: MAIN
Diff to: previous 1.971: preferred, colored
Changes since revision 1.971: +2 -3
lines
remove aiboost(4) from GENERICs, since it cannot win in autoconf(9) over aibs(4); ok pgoyette
Revision 1.971: download - view: text, markup, annotated - select for diffs
Mon Feb 22 17:27:04 2010 UTC (15 years, 2 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.970: preferred, colored
Changes since revision 1.970: +6 -2
lines
Forgot to add smscmon here...
Revision 1.970: download - view: text, markup, annotated - select for diffs
Mon Feb 22 05:57:10 2010 UTC (15 years, 2 months ago) by ahoka
Branches: MAIN
Diff to: previous 1.969: preferred, colored
Changes since revision 1.969: +3 -3
lines
Mention splash need genfb or radeonfb
Revision 1.969: download - view: text, markup, annotated - select for diffs
Sun Feb 21 05:16:29 2010 UTC (15 years, 2 months ago) by cnst
Branches: MAIN
Diff to: previous 1.968: preferred, colored
Changes since revision 1.968: +7 -2
lines
New wbsio(4) driver for Winbond Super I/O attachment of lm(4) on any port.
http://mail-index.netbsd.org/tech-kern/2010/02/17/msg007338.html
Reviewed by <pgoyette>, <tech-kern>.
Revision 1.968: download - view: text, markup, annotated - select for diffs
Fri Feb 12 15:51:16 2010 UTC (15 years, 2 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.967: preferred, colored
Changes since revision 1.967: +3 -2
lines
Add PPPOE_SERVER
- disabled (commented out) in GENERIC,
- enabled in ALL
Revision 1.967: download - view: text, markup, annotated - select for diffs
Wed Feb 10 19:54:36 2010 UTC (15 years, 2 months ago) by tonio
Branches: MAIN
Diff to: previous 1.966: preferred, colored
Changes since revision 1.966: +3 -3
lines
Fix typo in TEMPer comment, spotted by Patrick Welche
Revision 1.966: download - view: text, markup, annotated - select for diffs
Tue Feb 9 22:38:32 2010 UTC (15 years, 2 months ago) by tonio
Branches: MAIN
Diff to: previous 1.965: preferred, colored
Changes since revision 1.965: +5 -2
lines
Add TEMPer and TERMPerHUM driver
Revision 1.965: download - view: text, markup, annotated - select for diffs
Tue Feb 9 03:19:50 2010 UTC (15 years, 2 months ago) by cnst
Branches: MAIN
Diff to: previous 1.964: preferred, colored
Changes since revision 1.964: +3 -2
lines
New aibs(4) driver for ASUSTeK AI Booster (ACPI ATK0110) hardware monitor
with limit support.
http://thread.gmane.org/gmane.os.netbsd.devel.kernel/35654
Reviewed by <pgoyette>, <jruoho> and <tech-kern>.
Revision 1.964: download - view: text, markup, annotated - select for diffs
Mon Feb 8 21:45:31 2010 UTC (15 years, 2 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.963: preferred, colored
Changes since revision 1.963: +4 -3
lines
Add flags to all instances of lm(4), add a reference to man page
Revision 1.963: download - view: text, markup, annotated - select for diffs
Sat Feb 6 20:12:32 2010 UTC (15 years, 2 months ago) by pgoyette
Branches: MAIN
CVS tags: uebayasi-xip-base
Branch point for: uebayasi-xip
Diff to: previous 1.962: preferred, colored
Changes since revision 1.962: +3 -2
lines
Add acpismbus enries - commented out!
Revision 1.962: download - view: text, markup, annotated - select for diffs
Sun Jan 31 12:14:45 2010 UTC (15 years, 2 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.961: preferred, colored
Changes since revision 1.961: +2 -3
lines
Remove ACPICA_PEDANTIC. Appears to be no longer in use.
Revision 1.961: download - view: text, markup, annotated - select for diffs
Thu Jan 21 12:02:25 2010 UTC (15 years, 3 months ago) by pooka
Branches: MAIN
Diff to: previous 1.960: preferred, colored
Changes since revision 1.960: +3 -3
lines
remove accidentally committed bit. pointed out by Patrick Welche
Revision 1.960: download - view: text, markup, annotated - select for diffs
Tue Jan 19 22:06:20 2010 UTC (15 years, 3 months ago) by pooka
Branches: MAIN
Diff to: previous 1.959: preferred, colored
Changes since revision 1.959: +3 -3
lines
Redefine bpf linkage through an always present op vector, i.e.
#if NBPFILTER is no longer required in the client. This change
doesn't yet add support for loading bpf as a module, since drivers
can register before bpf is attached. However, callers of bpf can
now be modularized.
Dynamically loadable bpf could probably be done fairly easily with
coordination from the stub driver and the real driver by registering
attachments in the stub before the real driver is loaded and doing
a handoff. ... and I'm not going to ponder the depths of unload
here.
Tested with i386/MONOLITHIC, modified MONOLITHIC without bpf and rump.
Revision 1.959: download - view: text, markup, annotated - select for diffs
Thu Jan 7 18:49:30 2010 UTC (15 years, 3 months ago) by tnn
Branches: MAIN
Diff to: previous 1.958: preferred, colored
Changes since revision 1.958: +2 -6
lines
uhmodem(4) is superseded by u3g(4) and u3ginit(4).
Prepare for uhmodem(4) removal by not building it anymore.
This may fix PR kern/41174.
Revision 1.958: download - view: text, markup, annotated - select for diffs
Thu Jan 7 00:18:47 2010 UTC (15 years, 3 months ago) by martin
Branches: MAIN
Diff to: previous 1.957: preferred, colored
Changes since revision 1.957: +3 -2
lines
Add the u3ginit driver to all configs which have the u3g driver
Revision 1.957: download - view: text, markup, annotated - select for diffs
Sun Jan 3 03:53:34 2010 UTC (15 years, 3 months ago) by dholland
Branches: MAIN
Diff to: previous 1.956: preferred, colored
Changes since revision 1.956: +75 -75
lines
Whitespace. Portions from Igor Sobrado in PR kern/22595.
Deploy <space><tab> where needed so columns don't teleport when
commenting or uncommenting things.
Revision 1.956: download - view: text, markup, annotated - select for diffs
Sun Jan 3 03:50:38 2010 UTC (15 years, 3 months ago) by dholland
Branches: MAIN
Diff to: previous 1.955: preferred, colored
Changes since revision 1.955: +15 -15
lines
Assorted spelling/capitalization fixes from Igor Sobrado in PR kern/22595.
Merged by yours truly as the set of configs has changed quite a bit since
the PR was filed in 2003, and I may have missed some stuff. These changes
should probably be merged into other arches' configs; I'm not going to do
that now though.
Revision 1.955: download - view: text, markup, annotated - select for diffs
Wed Dec 23 01:04:46 2009 UTC (15 years, 4 months ago) by pooka
Branches: MAIN
Diff to: previous 1.954: preferred, colored
Changes since revision 1.954: +2 -4
lines
unifdef -D UGEN_BULK_RA_WB
Default behaviour unchanged, the feature must still be explicitly
enabled for a ugen fd.
Revision 1.954: download - view: text, markup, annotated - select for diffs
Sat Dec 5 20:11:15 2009 UTC (15 years, 4 months ago) by pooka
Branches: MAIN
CVS tags: matt-premerge-20091211
Diff to: previous 1.953: preferred, colored
Changes since revision 1.953: +2 -3
lines
Remove the portalfs kernel file system driver. Replace mount_portal(8)
with a version based on puffs. User functionality remains the same.
Revision 1.953: download - view: text, markup, annotated - select for diffs
Mon Nov 30 16:19:55 2009 UTC (15 years, 4 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.952: preferred, colored
Changes since revision 1.952: +6 -2
lines
Add udl(4) and wsdisplay(4) as its child.
Revision 1.952: download - view: text, markup, annotated - select for diffs
Sat Nov 21 12:15:55 2009 UTC (15 years, 5 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.951: preferred, colored
Changes since revision 1.951: +14 -14
lines
- more options<space><tab>
- capitalize Ethenet
Revision 1.951: download - view: text, markup, annotated - select for diffs
Sat Nov 21 12:09:15 2009 UTC (15 years, 5 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.950: preferred, colored
Changes since revision 1.950: +15 -15
lines
- use options<space><tab>
- remove an extra whitespace
Revision 1.925.2.3: download - view: text, markup, annotated - select for diffs
Sun Nov 1 13:58:19 2009 UTC (15 years, 5 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.2: preferred, colored
Changes since revision 1.925.2.2: +28 -6
lines
Sync with HEAD.
Revision 1.915.2.10: download - view: text, markup, annotated - select for diffs
Wed Oct 28 09:03:42 2009 UTC (15 years, 6 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.915.2.9: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.9: +6 -2
lines
Pull up the following revisions, requested by sborrill in ticket #1114:
share/man/man4/sdhc.4 1.1-1.2
sys/dev/pci/sdhc_pci.c 1.1-1.3
distrib/sets/lists/man/mi patch
share/man/man4/Makefile patch
sys/arch/amd64/conf/GENERIC patch
sys/arch/i386/conf/ALL patch
sys/arch/i386/conf/GENERIC patch
sys/dev/pci/files.pci patch
sys/dev/pci/pcidevs patch
sys/dev/pci/pcidevs.h regen
sys/dev/pci/pcidevs_data.h regen
Add sdhc(4), a driver for SD controllers following the SD Host
Controller Standard Simplified Specification.
Revision 1.915.2.9: download - view: text, markup, annotated - select for diffs
Thu Oct 8 09:47:09 2009 UTC (15 years, 6 months ago) by sborrill
Branches: netbsd-5
Diff to: previous 1.915.2.8: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.8: +7 -2
lines
Pull up the following revisions(s) (requested by jmcneill in ticket #1045):
distrib/sets/lists/man/mi: revision 1.1160
share/man/man4/Makefile: revision 1.499
share/man/man4/wb.4: revision 1.1-1.2
share/man/man4/ld.4: revision 1.17
sys/arch/i386/conf/ALL: revision 1.215-1.216 + patch
sys/arch/i386/conf/GENERIC: revision 1.946-1.947 + patch
sys/arch/amd64/conf/GENERIC: revision 1.254-1.256 + patch
sys/conf/files: revision 1.958
sys/dev/acpi/files.acpi: revision 1.59
sys/dev/acpi/wb_acpi.c: revision 1.1
sys/dev/ic/w83l518d.c: revision 1.1
sys/dev/ic/w83l518d_sdmmc.c: revision 1.1
sys/dev/ic/w83l518d_sdmmc.h: revision 1.1
sys/dev/ic/w83l518dreg.h: revision 1.1
sys/dev/ic/w83l518dvar.h.c: revision 1.1
wb(4): Add a driver for Winbond W83L518D SD/MMC readers.
Revision 1.915.2.8: download - view: text, markup, annotated - select for diffs
Mon Oct 5 11:37:13 2009 UTC (15 years, 6 months ago) by sborrill
Branches: netbsd-5
Diff to: previous 1.915.2.7: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.7: +5 -2
lines
Pull up the following revisions(s) (requested by jmcneill in ticket #1061):
sys/arch/x86/conf/files.x86: revision 1.53
sys/arch/x86/include/cpuvar.h: revision 1.31
sys/arch/x86/x86/identcpu.c: revision 1.17
sys/arch/x86/x86/viac7temp.c: revision 1.1
sys/arch/i386/conf/ALL: revision 1.218
sys/arch/i386/conf/GENERIC: revision 1.949
Add support for VIA C7 temperature sensors (options VIA_C7TEMP) and enable
in i386 GENERIC kernel.
Revision 1.950: download - view: text, markup, annotated - select for diffs
Sat Oct 3 13:37:27 2009 UTC (15 years, 6 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.949: preferred, colored
Changes since revision 1.949: +5 -5
lines
Enable viapcib
Revision 1.949: download - view: text, markup, annotated - select for diffs
Fri Oct 2 18:50:49 2009 UTC (15 years, 6 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.948: preferred, colored
Changes since revision 1.948: +5 -2
lines
Add and enable options VIA_C7TEMP
Revision 1.948: download - view: text, markup, annotated - select for diffs
Fri Oct 2 16:47:52 2009 UTC (15 years, 6 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.947: preferred, colored
Changes since revision 1.947: +3 -2
lines
PR# kern/42139: ACPI WMI: new driver
Import acpiwmi(4) from Jukka Ruohonen. From the PR:
Attached is a driver that implements ACPI WMI API:
http://www.microsoft.com/whdc/system/pnppwr/wmi/wmi-acpi.mspx
The WMI is used to provide a generic interface for OEMs to use certain
platform/laptop-specific additions to the standard ACPI in a somewhat
portable way. These can be hotkeys for additional buttons, different event
handlers (wireless kill switch, lid switch, etc.), and so on. At least HP
and Acer use it by default nowadays.
The benefit of this interface would be portability. For an example, instead
of hpqlb(4) that works only with certain HP models, we could have a generic
HP WMI-driver that should work in theory across all HP laptops. On many new
laptops WMI may also be the only way to access laptop/manufacturer-specific
features.
Revision 1.947: download - view: text, markup, annotated - select for diffs
Wed Sep 30 22:19:00 2009 UTC (15 years, 6 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.946: preferred, colored
Changes since revision 1.946: +3 -2
lines
Need sdmmc* at wb?
Revision 1.946: download - view: text, markup, annotated - select for diffs
Wed Sep 30 20:47:10 2009 UTC (15 years, 6 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.945: preferred, colored
Changes since revision 1.945: +3 -2
lines
add and enable wb(4)
Revision 1.915.2.7: download - view: text, markup, annotated - select for diffs
Sat Sep 26 19:52:09 2009 UTC (15 years, 7 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.915.2.6: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.6: +6 -2
lines
Pull up following revision(s) (requested by jmcneill in ticket #946):
distrib/sets/lists/man/mi: revision 1.1155
doc/CHANGES: revision 1.1285
etc/MAKEDEV.tmpl: revision 1.128
share/man/man4/Makefile: revision 1.498 via patch
share/man/man4/hdaudio.4: revision 1.1-1.3
share/man/man8/MAKEDEV.8: revision 1.36
sys/arch/amd64/conf/GENERIC: revision 1.250-1.251
sys/arch/amd64/conf/XEN3_DOM0: revision 1.44-1.45
sys/arch/i386/conf/ALL: revision 1.206-1.207
sys/arch/i386/conf/GENERIC: revision 1.942-1.943
sys/arch/i386/conf/XEN3_DOM0: patch
sys/conf/majors: revision 1.47 via patch
sys/dev/pci/hdaudio/files.hdaudio: revision 1.1-1.2
sys/dev/pci/hdaudio/hdaudio.c: revision 1.1-1.4
sys/dev/pci/hdaudio/hdaudio_afg.c: revisions 1.1-1.14
sys/dev/pci/hdaudio/hdaudio_mixer.h: revisions 1.1-1.3
sys/dev/pci/hdaudio/hdaudio_pci.c: revisions 1.1-1.2
sys/dev/pci/hdaudio/hdaudioio.h: revisions 1.1-1.2
sys/dev/pci/hdaudio/hdaudioreg.h: revisions 1.1-1.3
sys/dev/pci/hdaudio/hdaudiovar.h: revisions 1.1-1.4
sys/dev/pci/files.pci: revisions 1.319 and 1.322 via patch
hdaudio(4) is a standards-compliant driver for High Definition Audio.
It will replace azalia(4) after testing.
To use, comment out azalia in your kernel configuration and uncomment the
hdaudio and hdafg lines so it reads:
hdaudio* at pci? dev ? function ?
hdafg* at hdaudiobus?
You should also:
cd /dev
sh MAKEDEV audio
Revision 1.945: download - view: text, markup, annotated - select for diffs
Sun Sep 20 01:14:31 2009 UTC (15 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.944: preferred, colored
Changes since revision 1.944: +3 -2
lines
add toshide
Revision 1.890.2.4: download - view: text, markup, annotated - select for diffs
Wed Sep 16 13:37:39 2009 UTC (15 years, 7 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.3: preferred, colored; branchpoint 1.890: preferred, colored
Changes since revision 1.890.2.3: +6 -2
lines
sync with head
Revision 1.915.2.6: download - view: text, markup, annotated - select for diffs
Sun Sep 13 22:11:14 2009 UTC (15 years, 7 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.915.2.5: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.5: +3 -2
lines
Pull up following revision(s) (requested by jmcneill in ticket #943):
sys/arch/i386/conf/ALL: revision 1.186
sys/arch/i386/conf/GENERIC: revision 1.921
add options PMS_ELANTECH_TOUCHPAD
Revision 1.944: download - view: text, markup, annotated - select for diffs
Mon Sep 7 22:59:09 2009 UTC (15 years, 7 months ago) by jmcneill
Branches: MAIN
CVS tags: yamt-nfs-mp-base8
Diff to: previous 1.943: preferred, colored
Changes since revision 1.943: +4 -4
lines
Switch on hdaudio(4)
Revision 1.943: download - view: text, markup, annotated - select for diffs
Mon Sep 7 10:40:54 2009 UTC (15 years, 7 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.942: preferred, colored
Changes since revision 1.942: +4 -4
lines
Refer to hdaudio as 'High Definition Audio', not
'Intel High Definition Audio' as many vendors implement the HD audio spec.
Revision 1.942: download - view: text, markup, annotated - select for diffs
Sun Sep 6 17:25:56 2009 UTC (15 years, 7 months ago) by sborrill
Branches: MAIN
Diff to: previous 1.941: preferred, colored
Changes since revision 1.941: +6 -2
lines
hdaudio(4) is a standards-compliant driver for Intel High Definition Audio.
It will replace azalia(4) after testing.
To use, comment out azalia in your kernel configuration and uncomment the
hdaudio and hdafg lines so it reads:
# Intel High Definition Audio
hdaudio* at pci? dev ? function ?
hdafg* at hdaudiobus?
You should also:
cd /dev
sh MAKEDEV audio
Revision 1.890.2.3: download - view: text, markup, annotated - select for diffs
Wed Aug 19 18:46:18 2009 UTC (15 years, 8 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.2: preferred, colored; branchpoint 1.890: preferred, colored
Changes since revision 1.890.2.2: +18 -4
lines
sync with head.
Revision 1.941: download - view: text, markup, annotated - select for diffs
Sat Aug 15 08:44:35 2009 UTC (15 years, 8 months ago) by mbalmer
Branches: MAIN
CVS tags: yamt-nfs-mp-base7
Diff to: previous 1.940: preferred, colored
Changes since revision 1.940: +9 -2
lines
Add commented entries for keylock support.
Revision 1.940: download - view: text, markup, annotated - select for diffs
Wed Jul 29 11:58:31 2009 UTC (15 years, 8 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.939: preferred, colored
Changes since revision 1.939: +4 -3
lines
Fix (commented out) gpioow usage.
Revision 1.939: download - view: text, markup, annotated - select for diffs
Wed Jul 29 11:55:40 2009 UTC (15 years, 8 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.938: preferred, colored
Changes since revision 1.938: +4 -2
lines
Add commented out entries for gpiosim and gpio at gpiosim.
Revision 1.938: download - view: text, markup, annotated - select for diffs
Mon Jul 27 12:34:13 2009 UTC (15 years, 9 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.937: preferred, colored
Changes since revision 1.937: +3 -2
lines
Support Marvell Hercules-I/II SATA Controllers.
Revision 1.925.2.2: download - view: text, markup, annotated - select for diffs
Thu Jul 23 23:31:35 2009 UTC (15 years, 9 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925.2.1: preferred, colored
Changes since revision 1.925.2.1: +6 -3
lines
Sync with HEAD.
Revision 1.937: download - view: text, markup, annotated - select for diffs
Sun Jul 19 06:28:08 2009 UTC (15 years, 9 months ago) by kiyohara
Branches: MAIN
CVS tags: jymxensuspend-base
Diff to: previous 1.936: preferred, colored
Changes since revision 1.936: +3 -2
lines
Support siisata@cardbus.
It tested on amd64 and i386 only.
Revision 1.936: download - view: text, markup, annotated - select for diffs
Sun Jul 19 02:50:44 2009 UTC (15 years, 9 months ago) by rmind
Branches: MAIN
Diff to: previous 1.935: preferred, colored
Changes since revision 1.935: +4 -3
lines
Make POSIX message queues a kernel module.
Revision 1.935: download - view: text, markup, annotated - select for diffs
Sat Jul 18 16:31:42 2009 UTC (15 years, 9 months ago) by reinoud
Branches: MAIN
Diff to: previous 1.934: preferred, colored
Changes since revision 1.934: +3 -2
lines
Import read-only part of the NiLFS (v2) implementation for NetBSD. It has been
tested with a DEBUG+DIAGNOSTIC+LOCKDEBUG kernel. To summerise NiLFS, i'll
repeat my posting to tech-kern here:
NiLFS stands for New implementation of Logging File System; LFS done
right they claim :) It is at version 2 now and is being developed by NTT, the
Japanese telecom company and recently put into the linux source tree. See
http://www.nilfs.org. The on-disc format is not completely frozen and i expect
at least one minor revision to come in time.
The benefits of NiLFS are build-in fine-grained checkpointing, persistent
snapshots, multiple mounts and very large file and media support. Every
checkpoint can be transformed into a snapshot and v.v. It is said to perform
very well on flash media since it is not overwriting pieces apart from a
incidental update of the superblock, but that might change. It is accompanied
by a cleaner to clean up the segments and recover lost space.
My work is not a port of the linux code; its a new implementation. Porting the
code would be more work since its very linux oriented and never written to be
ported outside linux. The goal is to be fully interchangable. The code is non
intrusive to other parts of the kernel. It is also very light-weight.
The current state of the code is read-only access to both clean and dirty
NiLFS partitions. On mounting a dirty partition it rolls forward the log to
the last checkpoint. Full read-write support is however planned!
Just as the linux code, mount_nilfs allows for the `head' to be mounted
read/write and allows multiple read-only snapshots/checkpoint mounts next to
it.
By allowing the RW mount at a different snapshot for read-write it should be
possible eventually to revert back to a previous state; i.e. try to upgrade a
system and being able to revert to the exact state prior to the upgrade.
Compared to other FS's its pretty light-weight, suitable for embedded use and
on flash media. The read-only code is currently 17kb object code on
NetBSD/i386. I doubt the read-write code will surpass the 50 or 60. Compared
this to FFS being 156kb, UDF being 84 kb and NFS being 130kb. Run-time memory
usage is most likely not very different from other uses though maybe a bit
higher than FFS.
Revision 1.925.2.1: download - view: text, markup, annotated - select for diffs
Wed May 13 17:17:48 2009 UTC (15 years, 11 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.925: preferred, colored
Changes since revision 1.925: +35 -29
lines
Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.890.2.2: download - view: text, markup, annotated - select for diffs
Mon May 4 08:11:15 2009 UTC (15 years, 11 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890.2.1: preferred, colored; branchpoint 1.890: preferred, colored
Changes since revision 1.890.2.1: +105 -70
lines
sync with head.
Revision 1.915.2.5: download - view: text, markup, annotated - select for diffs
Sun May 3 23:45:46 2009 UTC (15 years, 11 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.915.2.4: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.4: +5 -2
lines
Pull up following revision(s) (requested by cegger in ticket #735):
sys/dev/pci/if_age.c: revisions 1.1-1.28
sys/dev/pci/if_agereg.h: revisions 1.1-1.2
sys/dev/pci/if_ale.c: revisions 1.1-1.3
sys/dev/pci/if_alereg.h: revisions 1.1-1.2
sys/dev/pci/files.pci: revisions 1.310-1.313
sys/dev/mii/atphy.c: revisions 1.1-1.5
sys/dev/mii/files.mii: revision 1.42
share/man/man4/age.4: revisions 1.1-1.3
share/man/man4/ale.4: revisions 1.1-1.2
share/man/man4/atphy.4: revisions 1.1-1.2
share/man/man4/Makefile: revisions 1.486, 1.489
distrib/sets/lists/man/mi: revisions 1.1118, 1.1132
sys/arch/i386/conf/GENERIC: revisions 1.928, 1.933
sys/arch/i386/conf/XEN2_DOM0: revisions 1.57, 1.60
sys/arch/amd64/conf/GENERIC: revisions 1.239, 1.241
sys/arch/amd64/conf/XEN3_DOM0: revisions 1.38, 1.42
Add the age(4) and ale(4) drivers for Attansic L1 and Atheros
AR8121/AR8113/AR8114 devices respectively.
Revision 1.915.2.4: download - view: text, markup, annotated - select for diffs
Fri May 1 01:20:42 2009 UTC (15 years, 11 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.915.2.3: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.3: +3 -2
lines
Pull up following revision(s) (requested by jmcneill in ticket #260):
sys/arch/i386/conf/ALL: revision 1.187
sys/arch/i386/conf/GENERIC: revision 1.922
PR# port-i386/40284: add AMD Geode CS5536 audio driver; add gcscaudio(4)
to i386 GENERIC and ALL kernels
Revision 1.914.2.3: download - view: text, markup, annotated - select for diffs
Tue Apr 28 07:34:07 2009 UTC (16 years ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.914.2.2: preferred, colored; branchpoint 1.914: preferred, colored; next MAIN 1.915: preferred, colored
Changes since revision 1.914.2.2: +33 -19
lines
Sync with HEAD.
Revision 1.934: download - view: text, markup, annotated - select for diffs
Tue Apr 21 03:00:29 2009 UTC (16 years ago) by nonaka
Branches: MAIN
CVS tags: yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base
Diff to: previous 1.933: preferred, colored
Changes since revision 1.933: +15 -2
lines
Added SD/MMC support from OpenBSD.
tested on i386, amd64 at current-users ML by pgoyette@.
tested on zaurus by myself.
Revision 1.933: download - view: text, markup, annotated - select for diffs
Mon Apr 20 20:49:21 2009 UTC (16 years ago) by cegger
Branches: MAIN
Diff to: previous 1.932: preferred, colored
Changes since revision 1.932: +3 -2
lines
add ale(4)
Revision 1.932: download - view: text, markup, annotated - select for diffs
Fri Apr 10 23:00:53 2009 UTC (16 years ago) by perry
Branches: MAIN
Diff to: previous 1.931: preferred, colored
Changes since revision 1.931: +3 -2
lines
add commented out LOCKDEBUG
Revision 1.931: download - view: text, markup, annotated - select for diffs
Sun Mar 29 15:45:08 2009 UTC (16 years, 1 month ago) by ad
Branches: MAIN
Diff to: previous 1.930: preferred, colored
Changes since revision 1.930: +3 -3
lines
Unfuck compat some more
Revision 1.930: download - view: text, markup, annotated - select for diffs
Fri Mar 27 21:04:35 2009 UTC (16 years, 1 month ago) by ad
Branches: MAIN
Diff to: previous 1.929: preferred, colored
Changes since revision 1.929: +2 -5
lines
Remove -mtune, we'll let the compiler pick a good default (the current
default sucks).
Revision 1.799.2.18: download - view: text, markup, annotated - select for diffs
Tue Mar 24 21:25:02 2009 UTC (16 years, 1 month ago) by bouyer
Branches: netbsd-4
Diff to: previous 1.799.2.17: preferred, colored; branchpoint 1.799: preferred, colored; next MAIN 1.800: preferred, colored
Changes since revision 1.799.2.17: +3 -2
lines
Pullup the following revisions (requested by msaitoh in ticket #1284):
distrib/sets/lists/base/mi 1.706-707,1.797
distrib/sets/lists/man/mi 1.1006
etc/mtree/NetBSD.dist 1.340
share/man/man4/Makefile 1.432
sys/arch/amd64/conf/GENERIC 1.149 via patch
sys/arch/i386/conf/ALL 1.103
sys/arch/i386/conf/GENERIC 1.832
sys/arch/i386/conf/GENERIC_LAPTOP 1.237
sys/arch/macppc/conf/GENERIC 1.257
sys/arch/sparc64/conf/GENERIC 1.86
sys/dev/usb/usbdevs 1.468,1.479-480 via patch
sys/dev/usb/usbdevs.h regen
sys/dev/usb/usbdevs_data.h regen
sys/dev/microcode/Makefile 1.7
sys/dev/usb/files.usb patch
share/man/man4/zyd.4 1.1 via patch
sys/dev/microcode/zyd/Makefile 1.1-1.2
sys/dev/microcode/zyd/build.c 1.1
sys/dev/microcode/zyd/microcode.h 1.1
sys/dev/microcode/zyd/zd1211-license 1.1
sys/dev/microcode/zyd/zyd-zd1211 1.1
sys/dev/microcode/zyd/zyd-zd1211b 1.1
sys/dev/usb/if_zyd.c patch
sys/dev/usb/if_zydreg.h 1.1-1.2
Add ZyDAS ZD1211/ZD1211B USB IEEE 802.11b/g wireless network device support
Revision 1.929: download - view: text, markup, annotated - select for diffs
Tue Mar 17 20:04:39 2009 UTC (16 years, 1 month ago) by dyoung
Branches: MAIN
Diff to: previous 1.928: preferred, colored
Changes since revision 1.928: +15 -15
lines
Reactivate native compatibility in GENERIC.
Revision 1.928: download - view: text, markup, annotated - select for diffs
Fri Mar 6 09:58:14 2009 UTC (16 years, 1 month ago) by cegger
Branches: MAIN
Diff to: previous 1.927: preferred, colored
Changes since revision 1.927: +4 -2
lines
add age(4) and atphy(4)
Revision 1.914.2.2: download - view: text, markup, annotated - select for diffs
Tue Mar 3 18:28:59 2009 UTC (16 years, 1 month ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.914.2.1: preferred, colored; branchpoint 1.914: preferred, colored
Changes since revision 1.914.2.1: +8 -15
lines
Sync with HEAD.
Revision 1.915.2.3: download - view: text, markup, annotated - select for diffs
Thu Feb 19 20:23:46 2009 UTC (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-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20091211,
matt-nb4-mips64-k7-u2a-k9b
Branch point for: matt-nb5-mips64
Diff to: previous 1.915.2.2: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.2: +6 -2
lines
Apply patch (requested by pooka in ticket #453):
Add puffs and putter to amd64, i386, macppc, and sparc64 GENERIC kernels.
Revision 1.927: download - view: text, markup, annotated - select for diffs
Mon Feb 16 23:40:14 2009 UTC (16 years, 2 months ago) by jmcneill
Branches: MAIN
CVS tags: nick-hppapmap-base2
Diff to: previous 1.926: preferred, colored
Changes since revision 1.926: +3 -3
lines
Fix typo in genfb line
Revision 1.926: download - view: text, markup, annotated - select for diffs
Mon Feb 16 22:43:47 2009 UTC (16 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.925: preferred, colored
Changes since revision 1.925: +4 -12
lines
Add and enable genfb(4), and remove vesafb(4) section.
Revision 1.925: download - view: text, markup, annotated - select for diffs
Sat Feb 7 09:58:10 2009 UTC (16 years, 2 months ago) by mrg
Branches: MAIN
Branch point for: jym-xensuspend
Diff to: previous 1.924: preferred, colored
Changes since revision 1.924: +3 -3
lines
move COMPAT_50 into MONOLITHIC, as pointed out by enami@.
Revision 1.915.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 2 22:12:34 2009 UTC (16 years, 2 months ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-0-RC2
Diff to: previous 1.915.2.1: preferred, colored; branchpoint 1.915: preferred, colored
Changes since revision 1.915.2.1: +5 -5
lines
Pull up following revision(s) (requested by ad in ticket #402):
sys/arch/amd64/conf/GENERIC: revision 1.237
sys/arch/i386/conf/GENERIC: revision 1.924
Enable BUFQ_PRIOCSCAN by default.
Revision 1.924: download - view: text, markup, annotated - select for diffs
Thu Jan 29 21:48:13 2009 UTC (16 years, 2 months ago) by ad
Branches: MAIN
Diff to: previous 1.923: preferred, colored
Changes since revision 1.923: +5 -5
lines
Enable BUFQ_PRIOCSCAN by default.
Revision 1.923: download - view: text, markup, annotated - select for diffs
Sat Jan 24 05:06:06 2009 UTC (16 years, 3 months ago) by mrg
Branches: MAIN
Diff to: previous 1.922: preferred, colored
Changes since revision 1.922: +3 -2
lines
add COMPAT_50 to all the configs with COMPAT_40.
Revision 1.914.2.1: download - view: text, markup, annotated - select for diffs
Mon Jan 19 13:16:15 2009 UTC (16 years, 3 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.914: preferred, colored
Changes since revision 1.914: +63 -59
lines
Sync with HEAD.
Revision 1.881.6.6: download - view: text, markup, annotated - select for diffs
Sat Jan 17 13:28:02 2009 UTC (16 years, 3 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881.6.5: preferred, colored; branchpoint 1.881: preferred, colored; next MAIN 1.882: preferred, colored
Changes since revision 1.881.6.5: +71 -60
lines
Sync with HEAD.
Revision 1.922: download - view: text, markup, annotated - select for diffs
Sun Dec 28 15:18:21 2008 UTC (16 years, 3 months ago) by jmcneill
Branches: MAIN
CVS tags: mjf-devfs2-base
Diff to: previous 1.921: preferred, colored
Changes since revision 1.921: +3 -2
lines
PR# port-i386/40284: add AMD Geode CS5536 audio driver; add gcscaudio(4)
to i386 GENERIC and ALL kernels
Revision 1.921: download - view: text, markup, annotated - select for diffs
Sun Dec 14 00:44:29 2008 UTC (16 years, 4 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.920: preferred, colored
Changes since revision 1.920: +3 -2
lines
add options PMS_ELANTECH_TOUCHPAD
Revision 1.901.2.2: download - view: text, markup, annotated - select for diffs
Sat Dec 13 01:13:13 2008 UTC (16 years, 4 months ago) by haad
Branches: haad-dm
Diff to: previous 1.901.2.1: preferred, colored; branchpoint 1.901: preferred, colored; next MAIN 1.902: preferred, colored
Changes since revision 1.901.2.1: +61 -59
lines
Update haad-dm branch to haad-dm-base2.
Revision 1.920: download - view: text, markup, annotated - select for diffs
Tue Nov 25 02:47:19 2008 UTC (16 years, 5 months ago) by cube
Branches: MAIN
CVS tags: haad-nbase2,
haad-dm-base2,
haad-dm-base,
ad-audiomp2-base,
ad-audiomp2
Diff to: previous 1.919: preferred, colored
Changes since revision 1.919: +4 -4
lines
Don't compile PPP compressors in by default, they'll be auto-loaded. This
saves an incredible 10k of text and data.
Revision 1.919: download - view: text, markup, annotated - select for diffs
Mon Nov 24 11:41:11 2008 UTC (16 years, 5 months ago) by ad
Branches: MAIN
Diff to: previous 1.918: preferred, colored
Changes since revision 1.918: +2 -3
lines
Remove softdep, pass 1. We are focused on improving journalling.
Proposed on tech-kern@.
Revision 1.918: download - view: text, markup, annotated - select for diffs
Fri Nov 21 15:55:59 2008 UTC (16 years, 5 months ago) by ad
Branches: MAIN
Diff to: previous 1.917: preferred, colored
Changes since revision 1.917: +57 -53
lines
Remove the following from i386 GENERIC since they are also provided by
modules. Shrinks the kernel by 1278kB. XXX Need to further investigate
situation with vcoda and nsmb.
- all file systems
- all exec formats
- all compat code
- POSIX AIO
- the NFS server
- accept filters
Revision 1.915.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 18 01:56:58 2008 UTC (16 years, 5 months ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-0-RC1
Diff to: previous 1.915: preferred, colored
Changes since revision 1.915: +3 -2
lines
Apply patch (requested by bouyer in ticket #65):
Add i386-specific COMPAT_30_PTHREAD option (enabled where COMPAT_30
is enabled), which restore binary compatibility with netbsd-3 libpthread.
Revision 1.917: download - view: text, markup, annotated - select for diffs
Wed Nov 12 14:36:31 2008 UTC (16 years, 5 months ago) by ad
Branches: MAIN
Diff to: previous 1.916: preferred, colored
Changes since revision 1.916: +3 -3
lines
Comment out P1003_1B_SEMAPHORE. The ksem module will now be autoloaded from
the file system if POSIX semaphores are used.
Revision 1.916: download - view: text, markup, annotated - select for diffs
Wed Nov 12 12:36:01 2008 UTC (16 years, 5 months ago) by ad
Branches: MAIN
Diff to: previous 1.915: preferred, colored
Changes since revision 1.915: +2 -3
lines
Remove LKMs and switch to the module framework, pass 1.
Proposed on tech-kern@.
Revision 1.915: download - view: text, markup, annotated - select for diffs
Wed Oct 29 11:56:53 2008 UTC (16 years, 5 months ago) by joerg
Branches: MAIN
CVS tags: netbsd-5-base
Branch point for: netbsd-5
Diff to: previous 1.914: preferred, colored
Changes since revision 1.914: +4 -4
lines
Reenable ichlpcib by default. This allows all modern ICH systems to use
the watchdog support out-of-the-box.
It is not clear, if the workaround for ancient revisions with broken
SpeedStep work, so if this breaks a report with PCI dump of the
southbridge is required to blacklist them.
Revision 1.901.2.1: download - view: text, markup, annotated - select for diffs
Sun Oct 19 22:15:48 2008 UTC (16 years, 6 months ago) by haad
Branches: haad-dm
Diff to: previous 1.901: preferred, colored
Changes since revision 1.901: +28 -13
lines
Sync with HEAD.
Revision 1.914: download - view: text, markup, annotated - select for diffs
Sun Oct 19 11:34:31 2008 UTC (16 years, 6 months ago) by joerg
Branches: MAIN
CVS tags: matt-mips64-base2,
haad-dm-base1
Branch point for: nick-hppapmap
Diff to: previous 1.913: preferred, colored
Changes since revision 1.913: +6 -2
lines
Add u3g entries in kernels that have ugensa as well.
Revision 1.913: download - view: text, markup, annotated - select for diffs
Sat Oct 11 21:54:11 2008 UTC (16 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.912: preferred, colored
Changes since revision 1.912: +3 -2
lines
jme(4), a driver for JMicron Technologies JME250 Gigabit Ethernet and
JME260 Fast Ethernet PCI Express controllers.
Written with a lot of cut-n-paste from the FreeBSD jme(4) driver.
No support for jumbo ethernet frames yet (but should come soon).
Thanks to JMicron Technologies for providing me sample boards and
documentation for this work.
Revision 1.894.2.4: download - view: text, markup, annotated - select for diffs
Fri Oct 10 22:29:04 2008 UTC (16 years, 6 months ago) by skrll
Branches: wrstuden-revivesa
Diff to: previous 1.894.2.3: preferred, colored; next MAIN 1.895: preferred, colored
Changes since revision 1.894.2.3: +7 -10
lines
Sync with HEAD.
Revision 1.912: download - view: text, markup, annotated - select for diffs
Tue Oct 7 12:43:32 2008 UTC (16 years, 6 months ago) by pgoyette
Branches: MAIN
CVS tags: wrstuden-revivesa-base-4
Diff to: previous 1.911: preferred, colored
Changes since revision 1.911: +6 -5
lines
Move all platforms to new dbCool driver in preparation for removal of
chip-specific drivers
Revision 1.911: download - view: text, markup, annotated - select for diffs
Tue Oct 7 09:30:04 2008 UTC (16 years, 6 months ago) by rmind
Branches: MAIN
Diff to: previous 1.910: preferred, colored
Changes since revision 1.910: +3 -2
lines
Add a note that SysV IPC parameters could be changed dynamically.
Revision 1.881.6.5: download - view: text, markup, annotated - select for diffs
Sun Oct 5 20:11:26 2008 UTC (16 years, 6 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881.6.4: preferred, colored; branchpoint 1.881: preferred, colored
Changes since revision 1.881.6.4: +0 -5
lines
Sync with HEAD.
Revision 1.910: download - view: text, markup, annotated - select for diffs
Tue Sep 30 16:45:33 2008 UTC (16 years, 6 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.909: preferred, colored
Changes since revision 1.909: +2 -7
lines
Remove esl(4)
Revision 1.881.6.4: download - view: text, markup, annotated - select for diffs
Sun Sep 28 10:39:58 2008 UTC (16 years, 6 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881.6.3: preferred, colored; branchpoint 1.881: preferred, colored
Changes since revision 1.881.6.3: +16 -3
lines
Sync with HEAD.
Revision 1.894.2.3: download - view: text, markup, annotated - select for diffs
Wed Sep 24 16:38:49 2008 UTC (16 years, 7 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.894.2.2: preferred, colored
Changes since revision 1.894.2.2: +4 -2
lines
Merge in changes between wrstuden-revivesa-base-2 and
wrstuden-revivesa-base-3.
Revision 1.894.2.2: download - view: text, markup, annotated - select for diffs
Thu Sep 18 04:33:27 2008 UTC (16 years, 7 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.894.2.1: preferred, colored
Changes since revision 1.894.2.1: +16 -5
lines
Sync with wrstuden-revivesa-base-2.
Revision 1.909: download - view: text, markup, annotated - select for diffs
Tue Sep 9 03:26:42 2008 UTC (16 years, 7 months ago) by ober
Branches: MAIN
CVS tags: wrstuden-revivesa-base-3
Diff to: previous 1.908: preferred, colored
Changes since revision 1.908: +3 -2
lines
Adding iwn(4) to GENERIC
Revision 1.908: download - view: text, markup, annotated - select for diffs
Tue Sep 9 01:19:37 2008 UTC (16 years, 7 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.907: preferred, colored
Changes since revision 1.907: +3 -2
lines
Add uvideo(4)
Revision 1.907: download - view: text, markup, annotated - select for diffs
Sun Sep 7 12:01:25 2008 UTC (16 years, 7 months ago) by tron
Branches: MAIN
CVS tags: wrstuden-revivesa-base-2
Diff to: previous 1.906: preferred, colored
Changes since revision 1.906: +2 -4
lines
Remove references to non-existant kernel option NO_TSC_TIME.
This fixes PR port-i386/39460 by Juan RP.
Revision 1.906: download - view: text, markup, annotated - select for diffs
Sat Sep 6 20:08:01 2008 UTC (16 years, 7 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.905: preferred, colored
Changes since revision 1.905: +8 -2
lines
Enable video(4) and pseye(4)
Revision 1.905: download - view: text, markup, annotated - select for diffs
Thu Aug 21 18:06:18 2008 UTC (16 years, 8 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.904: preferred, colored
Changes since revision 1.904: +3 -3
lines
Enable ipmi(4) by default in GENERIC and related kernels.
Revision 1.904: download - view: text, markup, annotated - select for diffs
Mon Aug 4 03:55:47 2008 UTC (16 years, 8 months ago) by tls
Branches: MAIN
Diff to: previous 1.903: preferred, colored
Changes since revision 1.903: +7 -2
lines
Add accept filters, ported from FreeBSD by Coyote Point Systems. Add inetd
support for specifying an accept filter for a service (mostly as a usage
example, but it can be handy for other things). Manual pages to follow
in a day or so.
OK core@.
Revision 1.903: download - view: text, markup, annotated - select for diffs
Thu Jul 31 14:15:00 2008 UTC (16 years, 8 months ago) by joerg
Branches: MAIN
Diff to: previous 1.902: preferred, colored
Changes since revision 1.902: +3 -2
lines
Include VGA_POST by default in GENERIC and ALL on x86 now that the code
is conditional.
Revision 1.902: download - view: text, markup, annotated - select for diffs
Thu Jul 31 07:41:01 2008 UTC (16 years, 8 months ago) by simonb
Branches: MAIN
Diff to: previous 1.901: preferred, colored
Changes since revision 1.901: +3 -2
lines
Add "options WAPBL" to standard GENERIC/INSTALL type configs.
Revision 1.881.6.3: download - view: text, markup, annotated - select for diffs
Sun Jun 29 09:32:57 2008 UTC (16 years, 9 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881.6.2: preferred, colored; branchpoint 1.881: preferred, colored
Changes since revision 1.881.6.2: +3 -0
lines
Sync with HEAD.
Revision 1.894.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 23 04:30:26 2008 UTC (16 years, 10 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.894: preferred, colored
Changes since revision 1.894: +12 -5
lines
Sync w/ -current. 34 merge conflicts to follow.
Revision 1.900.2.2: download - view: text, markup, annotated - select for diffs
Wed Jun 18 16:32:41 2008 UTC (16 years, 10 months ago) by simonb
Branches: simonb-wapbl
Diff to: previous 1.900.2.1: preferred, colored; branchpoint 1.900: preferred, colored; next MAIN 1.901: preferred, colored
Changes since revision 1.900.2.1: +5 -2
lines
Sync with head.
Revision 1.889.2.3: download - view: text, markup, annotated - select for diffs
Tue Jun 17 09:14:01 2008 UTC (16 years, 10 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.889.2.2: preferred, colored; branchpoint 1.889: preferred, colored; next MAIN 1.890: preferred, colored
Changes since revision 1.889.2.2: +5 -2
lines
sync with head.
Revision 1.901: download - view: text, markup, annotated - select for diffs
Wed Jun 11 20:37:38 2008 UTC (16 years, 10 months ago) by perry
Branches: MAIN
CVS tags: yamt-pf42-base4,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
simonb-wapbl-nbase,
simonb-wapbl-base
Branch point for: haad-dm
Diff to: previous 1.900: preferred, colored
Changes since revision 1.900: +5 -2
lines
Add cmos(4). This should probably be added to amd64 as well.
Revision 1.900.2.1: download - view: text, markup, annotated - select for diffs
Tue Jun 10 14:51:21 2008 UTC (16 years, 10 months ago) by simonb
Branches: simonb-wapbl
Diff to: previous 1.900: preferred, colored
Changes since revision 1.900: +3 -2
lines
Initial commit of Wasabi System's WAPBL (Write Ahead Physical Block
Logging) journaling code. Originally written by Darrin B. Jewell
while at Wasabi and updated to -current by Antti Kantee, Andy Doran,
Greg Oster and Simon Burge.
Still a number of issues - look in doc/BRANCHES for "simonb-wapbl"
for more info.
Revision 1.889.2.2: download - view: text, markup, annotated - select for diffs
Wed Jun 4 02:04:46 2008 UTC (16 years, 10 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.889.2.1: preferred, colored; branchpoint 1.889: preferred, colored
Changes since revision 1.889.2.1: +9 -3
lines
sync with head
Revision 1.799.2.7.2.4: download - view: text, markup, annotated - select for diffs
Tue Jun 3 20:47:14 2008 UTC (16 years, 10 months ago) by skrll
Branches: wrstuden-fixsa
Diff to: previous 1.799.2.7.2.3: preferred, colored; next MAIN 1.799.2.8: preferred, colored
Changes since revision 1.799.2.7.2.3: +4 -2
lines
Sync with netbsd-4.
Revision 1.881.6.2: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:22:13 2008 UTC (16 years, 10 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881.6.1: preferred, colored; branchpoint 1.881: preferred, colored
Changes since revision 1.881.6.1: +24 -18
lines
Sync with HEAD.
Revision 1.900: download - view: text, markup, annotated - select for diffs
Fri May 30 19:51:00 2008 UTC (16 years, 10 months ago) by dyoung
Branches: MAIN
CVS tags: yamt-pf42-base3
Branch point for: simonb-wapbl
Diff to: previous 1.899: preferred, colored
Changes since revision 1.899: +3 -2
lines
Add pci* at elansc? bus ?. Should fix Jasper's PR, port-i386/38800.
Revision 1.899: download - view: text, markup, annotated - select for diffs
Mon May 26 00:25:32 2008 UTC (16 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.898: preferred, colored
Changes since revision 1.898: +5 -2
lines
Add uberry.
Revision 1.898: download - view: text, markup, annotated - select for diffs
Sun May 25 19:05:17 2008 UTC (16 years, 11 months ago) by agc
Branches: MAIN
Diff to: previous 1.897: preferred, colored
Changes since revision 1.897: +3 -3
lines
Re-enable INCLUDE_CONFIG_FILE in the GENERIC kernel config files for
i386, amd64 and usermode - it is necessary for retrieving information
on kernel configuration for running kernels - cf config -x.
Revision 1.897: download - view: text, markup, annotated - select for diffs
Fri May 23 21:17:40 2008 UTC (16 years, 11 months ago) by jnemeth
Branches: MAIN
Diff to: previous 1.896: preferred, colored
Changes since revision 1.896: +3 -2
lines
add siisata(4) -- SiI SteelVine SATA2
Revision 1.896: download - view: text, markup, annotated - select for diffs
Sun May 18 22:05:59 2008 UTC (16 years, 11 months ago) by cegger
Branches: MAIN
CVS tags: hpcarm-cleanup-nbase
Diff to: previous 1.895: preferred, colored
Changes since revision 1.895: +3 -2
lines
acpidalb(4): Driver for PNP0C32 Hotkeys aka "Direct Application Launch Buttons".
"awesome" jmcneill
Revision 1.889.2.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:32:09 2008 UTC (16 years, 11 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.889: preferred, colored
Changes since revision 1.889: +17 -20
lines
sync with head.
Revision 1.890.2.1: download - view: text, markup, annotated - select for diffs
Fri May 16 02:22:32 2008 UTC (16 years, 11 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.890: preferred, colored
Changes since revision 1.890: +14 -20
lines
sync with head.
Revision 1.895: download - view: text, markup, annotated - select for diffs
Tue May 13 13:43:47 2008 UTC (16 years, 11 months ago) by ad
Branches: MAIN
CVS tags: yamt-pf42-base2,
yamt-nfs-mp-base2
Diff to: previous 1.894: preferred, colored
Changes since revision 1.894: +2 -4
lines
PR kern/35296 option PIC_DELAY not use
Revision 1.894: download - view: text, markup, annotated - select for diffs
Mon May 5 14:43:18 2008 UTC (16 years, 11 months ago) by ad
Branches: MAIN
Branch point for: wrstuden-revivesa
Diff to: previous 1.893: preferred, colored
Changes since revision 1.893: +9 -9
lines
The kernel is too large. Reduce size by commenting out eye candy options:
{ACPI,EISA,MII,PCI,USB,MCA}VERBOSE
Also remove INCLUDE_CONFIG_FILE, because it doesn't make sense in GENERIC.
Revision 1.893: download - view: text, markup, annotated - select for diffs
Fri May 2 15:26:38 2008 UTC (16 years, 11 months ago) by ad
Branches: MAIN
Diff to: previous 1.892: preferred, colored
Changes since revision 1.892: +6 -2
lines
- Give x86 BIOS boot the ability to load new style modules and pass them
into the kernel. Based on a patch by jmcneill@, with many fixes and
improvements by me.
- Put MEMORY_DISK_DYNAMIC and MODULAR into the GENERIC kernels, so that
you can load miniroot.kmod from the boot blocks and boot into the
installer!
Revision 1.892: download - view: text, markup, annotated - select for diffs
Thu May 1 20:18:18 2008 UTC (16 years, 11 months ago) by cegger
Branches: MAIN
Diff to: previous 1.891: preferred, colored
Changes since revision 1.891: +3 -2
lines
hpqlb(4): driver for HP Quick Launch buttons - found on HP Pavilion Notebooks
Revision 1.891: download - view: text, markup, annotated - select for diffs
Wed Apr 30 15:29:11 2008 UTC (16 years, 11 months ago) by ad
Branches: MAIN
Diff to: previous 1.890: preferred, colored
Changes since revision 1.890: +2 -11
lines
For PR kern/38537:
- Make MULTIPROCESSOR mandatory on i386.
Installation changes:
- Update installation section of release notes to match reality.
- Rename INSTALL to INSTALL_FLOPPY, retire INSTALL_LARGE.
- Build INSTALL kernel from GENERIC, like on amd64.
- Update boot menu to allow disabling ACPI and/or SMP.
- Remove GENERIC.NOACPI from the installed kernel list.
- TODO: install default boot.cfg in etc.tgz.
- TODO: possibly enable PCI fixup stuff at runtime if ACPI is disabled.
Build changes:
- No longer build ALL, it's for verification, is slow to build and the
build process is already crippled by the number of kernels built.
- No longer build GENERIC.NOACPI.
Revision 1.890: download - view: text, markup, annotated - select for diffs
Tue Apr 22 22:37:14 2008 UTC (17 years ago) by cegger
Branches: MAIN
CVS tags: yamt-nfs-mp-base
Branch point for: yamt-nfs-mp
Diff to: previous 1.889: preferred, colored
Changes since revision 1.889: +5 -2
lines
amdtemp(4): Driver for AMD CPU Temperature Sensors. Adopted from OpenBSD's kate(4).
Changes beyond OpenBSD's driver:
- Improved support for AMD K8
- Added support for AMD Barcelona, AMD Phenom and AMD Griffin
Tested on various single and multi-socket machines.
Review and OK xtreame
Revision 1.799.2.17: download - view: text, markup, annotated - select for diffs
Sat Apr 19 15:57:56 2008 UTC (17 years ago) by bouyer
Branches: netbsd-4
CVS tags: wrstuden-fixsa-newbase,
wrstuden-fixsa-base
Diff to: previous 1.799.2.16: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.16: +3 -2
lines
Pull up following revision(s) (requested by sborrill in ticket #1128):
sys/dev/pci/if_lii.c: revisions 1.1, 1.3 via patch
sys/arch/i386/conf/ALL: revision 1.161 via patch
share/man/man4/lii.4: revision 1.1 via patch
sys/dev/pci/files.pci: revision 1.303 via patch
sys/dev/DEVNAMES: revision 1.238 via patch
sys/arch/i386/conf/GENERIC: revision 1.885 via patch
distrib/sets/lists/man/mi: revisions 1.1062, 1.1063 via patch
sys/arch/i386/conf/XEN2_DOM0: revision 1.43 via patch
share/man/man4/Makefile: revision 1.460 via patch
sys/arch/i386/conf/INSTALL: revision 1.323 via patch
sys/dev/pci/if_liireg.h: revision 1.1 via patch
Add a driver for the Atheros/Attansic L2 Fast-Ethernet chip found on a
series of hardware that includes Asus's famous EeePC.
Revision 1.889: download - view: text, markup, annotated - select for diffs
Fri Apr 11 11:55:18 2008 UTC (17 years ago) by tsutsui
Branches: MAIN
CVS tags: yamt-pf42-baseX,
yamt-pf42-base
Branch point for: yamt-pf42
Diff to: previous 1.888: preferred, colored
Changes since revision 1.888: +3 -3
lines
Please don't leave a debug option in GENERIC.
Revision 1.888: download - view: text, markup, annotated - select for diffs
Wed Apr 9 17:35:17 2008 UTC (17 years ago) by dyoung
Branches: MAIN
Diff to: previous 1.887: preferred, colored
Changes since revision 1.887: +4 -4
lines
Attach elansc at mainbus instead of at pci.
Revision 1.887: download - view: text, markup, annotated - select for diffs
Thu Apr 3 22:51:09 2008 UTC (17 years ago) by xtraeme
Branches: MAIN
Diff to: previous 1.886: preferred, colored
Changes since revision 1.886: +5 -2
lines
Add finsio(4) entry (commented out).
Revision 1.881.6.1: download - view: text, markup, annotated - select for diffs
Thu Apr 3 12:42:17 2008 UTC (17 years ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.881: preferred, colored
Changes since revision 1.881: +5 -3
lines
Sync with HEAD.
Revision 1.886: download - view: text, markup, annotated - select for diffs
Mon Mar 31 15:19:28 2008 UTC (17 years ago) by jmcneill
Branches: MAIN
Diff to: previous 1.885: preferred, colored
Changes since revision 1.885: +3 -2
lines
Enable asus(4)
Revision 1.885: download - view: text, markup, annotated - select for diffs
Sat Mar 29 00:21:01 2008 UTC (17 years, 1 month ago) by cube
Branches: MAIN
Diff to: previous 1.884: preferred, colored
Changes since revision 1.884: +3 -2
lines
Add and enable lii(4).
Revision 1.881.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 24 07:14:58 2008 UTC (17 years, 1 month ago) by keiichi
Branches: keiichi-mipv6
Diff to: previous 1.881: preferred, colored; next MAIN 1.882: preferred, colored
Changes since revision 1.881: +3 -3
lines
sync with head.
Revision 1.844.2.3: download - view: text, markup, annotated - select for diffs
Sun Mar 23 02:04:05 2008 UTC (17 years, 1 month ago) by matt
Branches: matt-armv6
Diff to: previous 1.844.2.2: preferred, colored; next MAIN 1.845: preferred, colored
Changes since revision 1.844.2.2: +13 -6
lines
sync with HEAD
Revision 1.884: download - view: text, markup, annotated - select for diffs
Tue Mar 18 20:48:42 2008 UTC (17 years, 1 month ago) by cube
Branches: MAIN
CVS tags: yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
matt-armv6-nbase,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
ad-socklock-base1
Diff to: previous 1.883: preferred, colored
Changes since revision 1.883: +289 -316
lines
Back out previous, which obviously wasn't meant to get committed.
Revision 1.883: download - view: text, markup, annotated - select for diffs
Tue Mar 18 20:46:35 2008 UTC (17 years, 1 month ago) by cube
Branches: MAIN
Diff to: previous 1.882: preferred, colored
Changes since revision 1.882: +316 -289
lines
Split device_t and softc for ATA devices, as well as wd(4). Other
cosmetic changes where appropriate.
Revision 1.683.2.10: download - view: text, markup, annotated - select for diffs
Mon Mar 17 09:14:20 2008 UTC (17 years, 1 month ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.9: preferred, colored; next MAIN 1.684: preferred, colored
Changes since revision 1.683.2.9: +3 -3
lines
sync with head.
Revision 1.882: download - view: text, markup, annotated - select for diffs
Fri Feb 29 14:42:32 2008 UTC (17 years, 1 month ago) by jmmv
Branches: MAIN
Diff to: previous 1.881: preferred, colored
Changes since revision 1.881: +3 -3
lines
Remove GENERIC.local from the repository
Make all the kernels that currently include their corresponding GENERIC.local
file use the cinclude directive instead of include. This way config(1) will
not complain if the file cannot be found.
After doing this, remove the GENERIC.local files from the repository so that
the user will not see modified files during updates, and local changes to
them cannot end up in the repository by mistake.
Discussed in tech-kern@ earlier this month. No strong objections.
Revision 1.859.2.4: download - view: text, markup, annotated - select for diffs
Mon Feb 18 21:04:37 2008 UTC (17 years, 2 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.859.2.3: preferred, colored; branchpoint 1.859: preferred, colored; next MAIN 1.860: preferred, colored
Changes since revision 1.859.2.3: +36 -12
lines
Sync with HEAD.
Revision 1.683.2.9: download - view: text, markup, annotated - select for diffs
Mon Feb 4 09:22:00 2008 UTC (17 years, 2 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.8: preferred, colored
Changes since revision 1.683.2.8: +7 -3
lines
sync with head.
Revision 1.881: download - view: text, markup, annotated - select for diffs
Wed Jan 30 19:58:19 2008 UTC (17 years, 2 months ago) by ad
Branches: MAIN
CVS tags: nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
hpcarm-cleanup-base
Branch point for: mjf-devfs2,
keiichi-mipv6
Diff to: previous 1.880: preferred, colored
Changes since revision 1.880: +3 -3
lines
Crank maxusers to 64.
Revision 1.867.2.5: download - view: text, markup, annotated - select for diffs
Wed Jan 23 19:27:15 2008 UTC (17 years, 3 months ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.867.2.4: preferred, colored; branchpoint 1.867: preferred, colored; next MAIN 1.868: preferred, colored
Changes since revision 1.867.2.4: +4 -0
lines
Sync with HEAD.
Revision 1.880: download - view: text, markup, annotated - select for diffs
Mon Jan 21 22:12:00 2008 UTC (17 years, 3 months ago) by ichiro
Branches: MAIN
CVS tags: bouyer-xeni386-nbase
Diff to: previous 1.879: preferred, colored
Changes since revision 1.879: +6 -2
lines
enable 'uhmodem'
Revision 1.683.2.8: download - view: text, markup, annotated - select for diffs
Mon Jan 21 09:36:49 2008 UTC (17 years, 3 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.7: preferred, colored
Changes since revision 1.683.2.7: +40 -12
lines
sync with head
Revision 1.867.2.4: download - view: text, markup, annotated - select for diffs
Sat Jan 19 12:14:15 2008 UTC (17 years, 3 months ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.867.2.3: preferred, colored; branchpoint 1.867: preferred, colored
Changes since revision 1.867.2.3: +0 -1
lines
Sync with HEAD
Revision 1.879: download - view: text, markup, annotated - select for diffs
Wed Jan 16 09:37:05 2008 UTC (17 years, 3 months ago) by ad
Branches: MAIN
CVS tags: bouyer-xeni386-base
Diff to: previous 1.878: preferred, colored
Changes since revision 1.878: +2 -3
lines
Remove options MATH_EMULATE.
Revision 1.799.2.16: download - view: text, markup, annotated - select for diffs
Fri Jan 11 17:03:17 2008 UTC (17 years, 3 months ago) by xtraeme
Branches: netbsd-4
Diff to: previous 1.799.2.15: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.15: +1 -0
lines
Pull up following revision(s) (requested by christos in ticket #1037):
sys/dev/pci/arcmsr.c: patch
sys/dev/pci/arcmsrvar.h: patch
sys/dev/pci/pcidevs: patch
sys/dev/pci/files.pci: patch
sys/arch/i386/conf/GENERIC: patch
sys/arch/i386/conf/XEN2_DOM0: patch
sys/arch/i386/conf/INSTALL_LARGE: patch
sys/arch/amd64/conf/GENERIC: patch
sys/arch/amd64/conf/INSTALL: patch
share/man/man4/Makefile: patch
share/man/man4/arcmsr.4: patch
distrib/sets/lists/man/mi: patch
Add the Areca Technology Corporation SATA RAID controller driver, ported
from OpenBSD.
Revision 1.867.2.3: download - view: text, markup, annotated - select for diffs
Thu Jan 10 23:43:18 2008 UTC (17 years, 3 months ago) by bouyer
Branches: bouyer-xeni386
CVS tags: bouyer-xeni386-merge1
Diff to: previous 1.867.2.2: preferred, colored; branchpoint 1.867: preferred, colored
Changes since revision 1.867.2.2: +5 -1
lines
Sync with HEAD
Revision 1.878: download - view: text, markup, annotated - select for diffs
Wed Jan 9 14:28:54 2008 UTC (17 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.877: preferred, colored
Changes since revision 1.877: +7 -3
lines
Add gcscpcib(4).
Revision 1.844.2.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:46:27 2008 UTC (17 years, 3 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.844.2.1: preferred, colored
Changes since revision 1.844.2.1: +44 -28
lines
sync with HEAD
Revision 1.867.2.2: download - view: text, markup, annotated - select for diffs
Tue Jan 8 22:09:52 2008 UTC (17 years, 3 months ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.867.2.1: preferred, colored; branchpoint 1.867: preferred, colored
Changes since revision 1.867.2.1: +5 -5
lines
Sync with HEAD
Revision 1.877: download - view: text, markup, annotated - select for diffs
Mon Jan 7 08:39:03 2008 UTC (17 years, 3 months ago) by martti
Branches: MAIN
CVS tags: matt-armv6-base
Diff to: previous 1.876: preferred, colored
Changes since revision 1.876: +6 -6
lines
Fixed indentation, it should be
option<space><tab>
makeoption<space><tab>
Revision 1.799.2.7.2.3: download - view: text, markup, annotated - select for diffs
Sun Jan 6 05:00:56 2008 UTC (17 years, 3 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.799.2.7.2.2: preferred, colored
Changes since revision 1.799.2.7.2.2: +4 -4
lines
Catch up to netbsd-4.0 release.
Revision 1.876: download - view: text, markup, annotated - select for diffs
Thu Jan 3 07:21:21 2008 UTC (17 years, 3 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.875: preferred, colored
Changes since revision 1.875: +3 -3
lines
Remove white-space.
Revision 1.867.2.1: download - view: text, markup, annotated - select for diffs
Wed Jan 2 21:48:09 2008 UTC (17 years, 3 months ago) by bouyer
Branches: bouyer-xeni386
Diff to: previous 1.867: preferred, colored
Changes since revision 1.867: +26 -5
lines
Sync with HEAD
Revision 1.875: download - view: text, markup, annotated - select for diffs
Mon Dec 31 15:31:56 2007 UTC (17 years, 3 months ago) by ad
Branches: MAIN
Diff to: previous 1.874: preferred, colored
Changes since revision 1.874: +2 -3
lines
Remove systrace. Ok core@.
Revision 1.874: download - view: text, markup, annotated - select for diffs
Sun Dec 30 13:15:22 2007 UTC (17 years, 3 months ago) by joerg
Branches: MAIN
Diff to: previous 1.873: preferred, colored
Changes since revision 1.873: +9 -2
lines
Enable wedge autodiscovery and wedge support for GPT. Both MBR and BSD
disklabel support is *not* enabled, but documented.
Revision 1.873: download - view: text, markup, annotated - select for diffs
Sat Dec 29 06:09:04 2007 UTC (17 years, 4 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.872: preferred, colored
Changes since revision 1.872: +3 -3
lines
Update itesio(4) comments.
Revision 1.859.2.3: download - view: text, markup, annotated - select for diffs
Thu Dec 27 00:43:00 2007 UTC (17 years, 4 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.859.2.2: preferred, colored; branchpoint 1.859: preferred, colored
Changes since revision 1.859.2.2: +11 -3
lines
Sync with HEAD.
Revision 1.872: download - view: text, markup, annotated - select for diffs
Wed Dec 26 23:00:51 2007 UTC (17 years, 4 months ago) by elad
Branches: MAIN
Diff to: previous 1.871: preferred, colored
Changes since revision 1.871: +4 -3
lines
Compile in by default (disabled) PaX ASLR for amd64 and i386.
Revision 1.864.2.2: download - view: text, markup, annotated - select for diffs
Wed Dec 26 21:38:44 2007 UTC (17 years, 4 months ago) by ad
Branches: vmlocking2
Diff to: previous 1.864.2.1: preferred, colored; branchpoint 1.864: preferred, colored; next MAIN 1.865: preferred, colored
Changes since revision 1.864.2.1: +21 -3
lines
Sync with head.
Revision 1.871: download - view: text, markup, annotated - select for diffs
Wed Dec 26 16:28:15 2007 UTC (17 years, 4 months ago) by joerg
Branches: MAIN
CVS tags: vmlocking2-base3
Diff to: previous 1.870: preferred, colored
Changes since revision 1.870: +9 -2
lines
Add PHYSMEM_MAX_ADDR and PHYSMEM_MAX_SIZE options. This limit physical
memory based on overall size (useful for debugging to keep core dumps
small) or maximum address (when using devices with bus dma limits).
Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory
map and can therefore deal with fragmented memory.
Revision 1.870: download - view: text, markup, annotated - select for diffs
Tue Dec 25 01:03:32 2007 UTC (17 years, 4 months ago) by ad
Branches: MAIN
Diff to: previous 1.869: preferred, colored
Changes since revision 1.869: +5 -2
lines
Make SMP the default on i386. For the time being the noacpi kernel does
not have it enabled.
Revision 1.869: download - view: text, markup, annotated - select for diffs
Fri Dec 21 15:20:13 2007 UTC (17 years, 4 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.868: preferred, colored
Changes since revision 1.868: +3 -2
lines
Add thinkpad at acpi
Revision 1.868: download - view: text, markup, annotated - select for diffs
Mon Dec 17 04:36:16 2007 UTC (17 years, 4 months ago) by riz
Branches: MAIN
Diff to: previous 1.867: preferred, colored
Changes since revision 1.867: +5 -2
lines
Add drvctl(4)
Revision 1.866.2.1: download - view: text, markup, annotated - select for diffs
Tue Dec 11 15:20:28 2007 UTC (17 years, 4 months ago) by yamt
Branches: yamt-kmem
Diff to: previous 1.866: preferred, colored; next MAIN 1.867: preferred, colored
Changes since revision 1.866: +7 -3
lines
sync with head.
Revision 1.867: download - view: text, markup, annotated - select for diffs
Sun Dec 9 20:27:46 2007 UTC (17 years, 4 months ago) by jmcneill
Branches: MAIN
CVS tags: yamt-kmem-base3,
yamt-kmem-base2,
cube-autoconf-base,
cube-autoconf
Branch point for: bouyer-xeni386
Diff to: previous 1.866: preferred, colored
Changes since revision 1.866: +7 -3
lines
Merge jmcneill-pm branch.
Revision 1.839.4.14: download - view: text, markup, annotated - select for diffs
Sun Dec 9 19:35:19 2007 UTC (17 years, 4 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.839.4.13: preferred, colored; branchpoint 1.839: preferred, colored; next MAIN 1.840: preferred, colored
Changes since revision 1.839.4.13: +3 -2
lines
Sync with HEAD.
Revision 1.859.2.2: download - view: text, markup, annotated - select for diffs
Sat Dec 8 18:17:06 2007 UTC (17 years, 4 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.859.2.1: preferred, colored; branchpoint 1.859: preferred, colored
Changes since revision 1.859.2.1: +7 -4
lines
Sync with HEAD.
Revision 1.864.2.1: download - view: text, markup, annotated - select for diffs
Sat Dec 8 17:56:22 2007 UTC (17 years, 4 months ago) by ad
Branches: vmlocking2
Diff to: previous 1.864: preferred, colored
Changes since revision 1.864: +3 -2
lines
Sync with head.
Revision 1.683.2.7: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:24:54 2007 UTC (17 years, 4 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.6: preferred, colored
Changes since revision 1.683.2.6: +8 -5
lines
sync with head
Revision 1.866: download - view: text, markup, annotated - select for diffs
Wed Dec 5 00:19:41 2007 UTC (17 years, 4 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-kmem-base,
vmlocking2-base2,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
jmcneill-pm-base
Branch point for: yamt-kmem
Diff to: previous 1.865: preferred, colored
Changes since revision 1.865: +3 -3
lines
arc(4) -> arcmsr(4)
Revision 1.865: download - view: text, markup, annotated - select for diffs
Tue Dec 4 18:53:57 2007 UTC (17 years, 4 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.864: preferred, colored
Changes since revision 1.864: +3 -2
lines
Enable arc(4).
Revision 1.816.2.9: download - view: text, markup, annotated - select for diffs
Mon Dec 3 19:03:22 2007 UTC (17 years, 4 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.8: preferred, colored; next MAIN 1.817: preferred, colored
Changes since revision 1.816.2.8: +2 -8
lines
Sync with HEAD.
Revision 1.816.2.8: download - view: text, markup, annotated - select for diffs
Mon Dec 3 18:36:23 2007 UTC (17 years, 4 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.7: preferred, colored
Changes since revision 1.816.2.7: +25 -28
lines
Sync with HEAD.
Revision 1.839.4.13: download - view: text, markup, annotated - select for diffs
Mon Dec 3 16:14:01 2007 UTC (17 years, 4 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.12: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.12: +4 -2
lines
Sync with HEAD.
Revision 1.864: download - view: text, markup, annotated - select for diffs
Sun Dec 2 05:19:13 2007 UTC (17 years, 4 months ago) by kiyohara
Branches: MAIN
CVS tags: vmlocking2-base1,
vmlocking-nbase
Branch point for: vmlocking2
Diff to: previous 1.863: preferred, colored
Changes since revision 1.863: +4 -2
lines
Add bcsp(4).
Revision 1.839.4.12: download - view: text, markup, annotated - select for diffs
Tue Nov 27 19:35:38 2007 UTC (17 years, 5 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.11: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.11: +4 -4
lines
Sync with HEAD. amd64 Xen support needs testing.
Revision 1.799.2.15: download - view: text, markup, annotated - select for diffs
Mon Nov 26 21:35:47 2007 UTC (17 years, 5 months ago) by xtraeme
Branches: netbsd-4
CVS tags: wrstuden-fixsa-base-1,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-1-RELEASE,
netbsd-4-0
Diff to: previous 1.799.2.14: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.14: +4 -4
lines
Pull up following revision(s) (requested by jnemeth in ticket #998):
sys/arch/amd64/conf/GENERIC: revision 1.176 (patch)
sys/arch/i386/conf/GENERIC: revision 1.863
comment out com*/lpt* at acpi? as they cause these ports to move from
their traditional location and imminent changes in -current will cause
them to move back
Revision 1.852.2.3: download - view: text, markup, annotated - select for diffs
Thu Nov 22 15:18:21 2007 UTC (17 years, 5 months ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.852.2.2: preferred, colored; branchpoint 1.852: preferred, colored; next MAIN 1.853: preferred, colored
Changes since revision 1.852.2.2: +2 -2
lines
Sync with HEAD
Revision 1.863: download - view: text, markup, annotated - select for diffs
Thu Nov 22 14:33:53 2007 UTC (17 years, 5 months ago) by jnemeth
Branches: MAIN
CVS tags: bouyer-xenamd64-base
Diff to: previous 1.862: preferred, colored
Changes since revision 1.862: +4 -4
lines
comment out com*/lpt* at acpi? as they cause these ports to move from
their traditional location and imminent changes in -current will cause
them to move back
Revision 1.839.4.11: download - view: text, markup, annotated - select for diffs
Wed Nov 21 21:53:09 2007 UTC (17 years, 5 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.10: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.10: +3 -18
lines
Sync with HEAD.
Revision 1.859.2.1: download - view: text, markup, annotated - select for diffs
Mon Nov 19 00:46:18 2007 UTC (17 years, 5 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.859: preferred, colored
Changes since revision 1.859: +6 -18
lines
Sync with HEAD.
Revision 1.852.2.2: download - view: text, markup, annotated - select for diffs
Sun Nov 18 19:34:15 2007 UTC (17 years, 5 months ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.852.2.1: preferred, colored; branchpoint 1.852: preferred, colored
Changes since revision 1.852.2.1: +1 -16
lines
Sync with HEAD
Revision 1.862: download - view: text, markup, annotated - select for diffs
Thu Nov 15 12:58:29 2007 UTC (17 years, 5 months ago) by xtraeme
Branches: MAIN
CVS tags: bouyer-xenamd64-base2
Diff to: previous 1.861: preferred, colored
Changes since revision 1.861: +3 -3
lines
Update for it(4) -> itesio(4) rename.
Revision 1.683.2.6: download - view: text, markup, annotated - select for diffs
Thu Nov 15 11:42:47 2007 UTC (17 years, 5 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.5: preferred, colored
Changes since revision 1.683.2.5: +9 -23
lines
sync with head.
Revision 1.839.4.10: download - view: text, markup, annotated - select for diffs
Wed Nov 14 19:04:08 2007 UTC (17 years, 5 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.9: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.9: +5 -2
lines
Sync with HEAD.
Revision 1.861: download - view: text, markup, annotated - select for diffs
Wed Nov 14 17:54:57 2007 UTC (17 years, 5 months ago) by ad
Branches: MAIN
Diff to: previous 1.860: preferred, colored
Changes since revision 1.860: +2 -17
lines
- Remove I486_CPU, I586_CPU, I686_CPU options. They buy us nothing and
clutter the code significantly.
- Remove pccons.
Revision 1.852.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 13 15:58:29 2007 UTC (17 years, 5 months ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.852: preferred, colored
Changes since revision 1.852: +14 -10
lines
Sync with HEAD
Revision 1.860: download - view: text, markup, annotated - select for diffs
Sun Nov 11 17:56:10 2007 UTC (17 years, 5 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.859: preferred, colored
Changes since revision 1.859: +5 -2
lines
Enable pad(4)
Revision 1.844.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:17:10 2007 UTC (17 years, 5 months ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.844: preferred, colored
Changes since revision 1.844: +34 -19
lines
sync with HEAD
Revision 1.839.4.9: download - view: text, markup, annotated - select for diffs
Sun Nov 4 21:02:57 2007 UTC (17 years, 5 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.839.4.8: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.8: +2 -7
lines
Sync with HEAD.
Revision 1.859: download - view: text, markup, annotated - select for diffs
Sun Nov 4 14:34:22 2007 UTC (17 years, 5 months ago) by xtraeme
Branches: MAIN
CVS tags: jmcneill-base
Branch point for: mjf-devfs
Diff to: previous 1.858: preferred, colored
Changes since revision 1.858: +2 -7
lines
Remove System V semaphores and share memory options to set the limits:
SEMMNI, SEMMNS, SEMUME and SHMMAXPGS.
They can be tweaked via sysctl now. Ports that were setting values on
them weren't touched, I only removed the ones that were commented out.
Revision 1.858: download - view: text, markup, annotated - select for diffs
Thu Nov 1 13:54:29 2007 UTC (17 years, 5 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.857: preferred, colored
Changes since revision 1.857: +3 -3
lines
Revert previous, thanks wikipedia :-)
Revision 1.857: download - view: text, markup, annotated - select for diffs
Thu Nov 1 13:48:52 2007 UTC (17 years, 5 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.856: preferred, colored
Changes since revision 1.856: +3 -3
lines
Fix typo "iff" -> "if" reported by leot via freenode@irc.
Revision 1.839.4.8: download - view: text, markup, annotated - select for diffs
Wed Oct 31 23:13:59 2007 UTC (17 years, 5 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.7: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.7: +3 -3
lines
Sync with HEAD.
Revision 1.856: download - view: text, markup, annotated - select for diffs
Tue Oct 30 00:03:50 2007 UTC (17 years, 5 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.855: preferred, colored
Changes since revision 1.855: +3 -3
lines
options<space><tab>FOO
Revision 1.839.4.7: download - view: text, markup, annotated - select for diffs
Mon Oct 29 02:57:20 2007 UTC (17 years, 6 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.6: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.6: +6 -3
lines
Sync with HEAD.
Revision 1.855: download - view: text, markup, annotated - select for diffs
Mon Oct 29 00:47:17 2007 UTC (17 years, 6 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.854: preferred, colored
Changes since revision 1.854: +6 -3
lines
Enable "options INTEL_CORETEMP".
Revision 1.839.4.6: download - view: text, markup, annotated - select for diffs
Sun Oct 28 20:10:37 2007 UTC (17 years, 6 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.5: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.5: +7 -4
lines
Sync with HEAD.
Revision 1.683.2.5: download - view: text, markup, annotated - select for diffs
Sat Oct 27 11:26:22 2007 UTC (17 years, 6 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.4: preferred, colored
Changes since revision 1.683.2.4: +30 -13
lines
sync with head.
Revision 1.854: download - view: text, markup, annotated - select for diffs
Fri Oct 26 22:20:43 2007 UTC (17 years, 6 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.853: preferred, colored
Changes since revision 1.853: +7 -4
lines
- Add amdpcib(4) commented out.
- Comment out piixpcib(4) until the multiple PRs are fixed, this driver
has been broken for long time in some machines.
Revision 1.853: download - view: text, markup, annotated - select for diffs
Wed Oct 17 19:54:42 2007 UTC (17 years, 6 months ago) by garbled
Branches: MAIN
CVS tags: yamt-x86pmap-base4
Diff to: previous 1.852: preferred, colored
Changes since revision 1.852: +2 -2
lines
Merge the ppcoea-renovation branch to HEAD.
This branch was a major cleanup and rototill of many of the various OEA
cpu based PPC ports that focused on sharing as much code as possible
between the various ports to eliminate near-identical copies of files in
every tree. Additionally there is a new PIC system that unifies the
interface to interrupt code for all different OEA ppc arches. The work
for this branch was done by a variety of people, too long to list here.
TODO:
bebox still needs work to complete the transition to -renovation.
ofppc still needs a bunch of work, which I will be looking at.
ev64260 still needs to be renovated
amigappc was not attempted.
NOTES:
pmppc was removed as an arch, and moved to a evbppc target.
Revision 1.661.2.21: download - view: text, markup, annotated - select for diffs
Mon Oct 15 05:09:55 2007 UTC (17 years, 6 months ago) by riz
Branches: netbsd-3
Diff to: previous 1.661.2.20: preferred, colored; branchpoint 1.661: preferred, colored; next MAIN 1.662: preferred, colored
Changes since revision 1.661.2.20: +3 -2
lines
Pull up following revisions via patch (requested by bouyer in ticket #1838):
distrib/sets/lists/man/mi: revision 1.997
sbin/bioctl/strtonum.c: revision 1.1
sys/dev/Makefile: revision 1.25
sys/arch/amd64/conf/GENERIC: revision 1.139
sbin/bioctl/strtonum.h: revision 1.1
sys/dev/bio.c: revision 1.1
sbin/bioctl/bioctl.c: revision 1.1
share/man/man4/bio.4: revision 1.1
sbin/bioctl/bioctl.8: revision 1.1
sys/sys/envsys.h: revision 1.11
sbin/bioctl/bioctl.8: revision 1.3
sbin/bioctl/bioctl.8: revision 1.4
sys/arch/i386/conf/XEN2_DOM0: revision 1.25
distrib/sets/lists/base/mi: revision 1.704
sys/conf/majors: revision 1.34
share/man/man4/Makefile: revision 1.426
etc/MAKEDEV.tmpl: revision 1.86
sys/arch/i386/conf/GENERIC: revision 1.825
distrib/sets/lists/comp/mi: revision 1.1022
sys/conf/files: revision 1.839
usr.sbin/envstat/envstat.c: revision 1.24
sbin/Makefile: revision 1.105
sys/dev/ic/mfi.c: revision 1.4
sys/dev/biovar.h: revision 1.1
sys/dev/ic/mfivar.h: revision 1.4
sbin/bioctl/Makefile: revision 1.1
Fix typo.
Add bio(4) and associated bioctl(8) from OpenBSD, a driver control block
device controllers, and more specifically raid controllers.
Add a new sensor type, ENVSYS_DRIVE, to report drive status. From OpenBSD.
Add bio and sysmon support to mfi(4). This allow userland to query
status for drives and logical volumes attached to a mfi(4) controller. While
there fix some debug printfs in mfi so they compile.
Add bio(4) to amd64 and i386 GENERIC.
Add bio(4) and associated bioctl(8) from OpenBSD, a driver control block
device controllers, and more specifically raid controllers.
Add a new sensor type, ENVSYS_DRIVE, to report drive status. From OpenBSD.
Add bio and sysmon support to mfi(4). This allow userland to query
status for drives and logical volumes attached to a mfi(4) controller. While
there fix some debug printfs in mfi so they compile.
Add bio(4) to amd64 and i386 GENERIC.
Fix Dd argument (use full month names).
Use more markup.
Comment out references to safte(4) and softraid(4), which don't exist in
NetBSD.
Remove trailing whitespace.
Use macros instead of characters for HTML output (replace ">", "<"
with \*[Gt], \*[Lt]).
Sort sections.
Create /dev/bio
Revision 1.816.2.7: download - view: text, markup, annotated - select for diffs
Tue Oct 9 13:37:48 2007 UTC (17 years, 6 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.6: preferred, colored
Changes since revision 1.816.2.6: +31 -14
lines
Sync with head.
Revision 1.851.2.1: download - view: text, markup, annotated - select for diffs
Sat Oct 6 15:34:49 2007 UTC (17 years, 6 months ago) by yamt
Branches: yamt-x86pmap
Diff to: previous 1.851: preferred, colored; next MAIN 1.852: preferred, colored
Changes since revision 1.851: +3 -3
lines
sync with head.
Revision 1.824.2.3: download - view: text, markup, annotated - select for diffs
Wed Oct 3 19:23:35 2007 UTC (17 years, 6 months ago) by garbled
Branches: ppcoea-renovation
Diff to: previous 1.824.2.2: preferred, colored; next MAIN 1.825: preferred, colored
Changes since revision 1.824.2.2: +55 -18
lines
Sync with HEAD
Revision 1.839.4.5: download - view: text, markup, annotated - select for diffs
Tue Oct 2 21:44:08 2007 UTC (17 years, 6 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.4: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.4: +7 -3
lines
Rewrite the ACPI Embedded Controller handler to use pure event driven
operation. On suspend a special flag is set to force explicit polling
as AcpiLeaveSleep accesses the interrupt before GPE handling is
restored. The driver uses a kernel thread to handle GPE queries and
mutex/condvar for synchronisation.
Split the ACPI EC into two drivers, one that is attached directly by
acpi.c for the ECDT driven attachment and the normal acpiec for late
attachment. Share almost all code between this two drivers. If acpiecdt
is attached, acpiec is returning. This was discussed with cube@ and is
the best solution so far.
Revision 1.839.4.4: download - view: text, markup, annotated - select for diffs
Tue Oct 2 18:27:06 2007 UTC (17 years, 6 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.3: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.3: +24 -10
lines
Sync with HEAD.
Revision 1.799.2.7.2.2: download - view: text, markup, annotated - select for diffs
Sun Sep 30 03:39:01 2007 UTC (17 years, 6 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.799.2.7.2.1: preferred, colored
Changes since revision 1.799.2.7.2.1: +5 -2
lines
Catch up on netbsd-4 as of a few days ago.
Revision 1.799.2.14: download - view: text, markup, annotated - select for diffs
Thu Sep 27 22:04:27 2007 UTC (17 years, 7 months ago) by xtraeme
Branches: netbsd-4
CVS tags: netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
matt-nb4-arm-base,
matt-nb4-arm
Diff to: previous 1.799.2.13: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.13: +5 -2
lines
Pull up following revision(s) (requested by mlelstv in ticket #895):
sys/dev/usb/uslsa.c: revision 1.1
sys/dev/usb/uslsa.c: revision 1.2
sys/dev/usb/uslsa.c: revision 1.3
sys/dev/usb/usbdevs: revision 1.466 (via patch)
share/man/man4/uslsa.4: revision 1.1
share/man/man4/Makefile: revision 1.429
sys/arch/i386/conf/GENERIC: revision 1.828
distrib/sets/lists/man/mi: revision 1.1002
sys/dev/usb/files.usb: revision 1.77
sys/arch/i386/conf/ALL: revision 1.99
From PR kern/33496 - add uslsa(4), a CP210x USB-RS232 ucom driver.
Revision 1.852: download - view: text, markup, annotated - select for diffs
Tue Sep 25 17:14:11 2007 UTC (17 years, 7 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-x86pmap-base3,
yamt-x86pmap-base2,
vmlocking-base,
ppcoea-renovation-base
Branch point for: bouyer-xenamd64
Diff to: previous 1.851: preferred, colored
Changes since revision 1.851: +3 -3
lines
Remove two \t at the end of DDB_VERBOSE_HELP, caught by Patrick Welche.
Revision 1.851: download - view: text, markup, annotated - select for diffs
Sat Sep 22 18:51:13 2007 UTC (17 years, 7 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-x86pmap-base
Branch point for: yamt-x86pmap
Diff to: previous 1.850: preferred, colored
Changes since revision 1.850: +3 -3
lines
options<tab><space>OPTION for previous.
Revision 1.850: download - view: text, markup, annotated - select for diffs
Sat Sep 22 18:40:22 2007 UTC (17 years, 7 months ago) by martin
Branches: MAIN
Diff to: previous 1.849: preferred, colored
Changes since revision 1.849: +3 -2
lines
Add a new option DDB_VERBOSE_HELP that adds online help to ddb.
From Adam Hamsik.
Minor modifications by me, all bugs are probably mine.
Revision 1.849: download - view: text, markup, annotated - select for diffs
Tue Sep 11 21:46:53 2007 UTC (17 years, 7 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.848: preferred, colored
Changes since revision 1.848: +5 -2
lines
New aps(4) driver for IBM Thinkpad Active Protection System.
Exports some sensors through the envsys(4) framework available
in some Thinkpad laptops.
Ported by Pierre Pronchery from OpenBSD, via PR port-i386/36852.
Tweaks, LKM and misc improvements by me. Added into i386/GENERIC
commented out.
Revision 1.838.4.3: download - view: text, markup, annotated - select for diffs
Mon Sep 10 10:54:20 2007 UTC (17 years, 7 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.838.4.2: preferred, colored; branchpoint 1.838: preferred, colored; next MAIN 1.839: preferred, colored
Changes since revision 1.838.4.2: +21 -11
lines
Sync with HEAD.
Revision 1.848: download - view: text, markup, annotated - select for diffs
Thu Sep 6 18:09:00 2007 UTC (17 years, 7 months ago) by joerg
Branches: MAIN
CVS tags: nick-csl-alignment-base5
Diff to: previous 1.847: preferred, colored
Changes since revision 1.847: +11 -4
lines
Add some options and drivers only found in GENERIC_LAPTOP:
- add PMS_SYNAPTICS_TOUCHPAD
- add njata at cardbus
- add re at cardbus
- add stuirda at uhub
- add ugensa at uhub
Revision 1.847: download - view: text, markup, annotated - select for diffs
Thu Sep 6 10:24:18 2007 UTC (17 years, 7 months ago) by martti
Branches: MAIN
Diff to: previous 1.846: preferred, colored
Changes since revision 1.846: +8 -8
lines
Fixed indentation (it should be <keyword><space><tab><name><tab><comment>).
Revision 1.846: download - view: text, markup, annotated - select for diffs
Thu Sep 6 00:31:08 2007 UTC (17 years, 7 months ago) by joerg
Branches: MAIN
Diff to: previous 1.845: preferred, colored
Changes since revision 1.845: +3 -3
lines
Enable CGD in GENERIC for amd64 and i386.
Revision 1.839.4.3: download - view: text, markup, annotated - select for diffs
Thu Sep 6 00:06:16 2007 UTC (17 years, 7 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.839.4.2: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.2: +3 -3
lines
Enable cgd by default on amd64 and i386.
Revision 1.845: download - view: text, markup, annotated - select for diffs
Mon Sep 3 17:57:36 2007 UTC (17 years, 7 months ago) by tshiozak
Branches: MAIN
Diff to: previous 1.844: preferred, colored
Changes since revision 1.844: +5 -2
lines
add support for WinChipHead CH341/340 USB-Serial bridge.
Revision 1.839.4.2: download - view: text, markup, annotated - select for diffs
Mon Sep 3 16:47:21 2007 UTC (17 years, 7 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.839.4.1: preferred, colored; branchpoint 1.839: preferred, colored
Changes since revision 1.839.4.1: +15 -5
lines
Sync with HEAD.
Revision 1.683.2.4: download - view: text, markup, annotated - select for diffs
Mon Sep 3 14:26:29 2007 UTC (17 years, 7 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.3: preferred, colored
Changes since revision 1.683.2.3: +105 -52
lines
sync with head.
Revision 1.838.4.2: download - view: text, markup, annotated - select for diffs
Mon Sep 3 10:19:01 2007 UTC (17 years, 7 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.838.4.1: preferred, colored; branchpoint 1.838: preferred, colored
Changes since revision 1.838.4.1: +15 -5
lines
Sync with HEAD.
Revision 1.799.2.7.2.1: download - view: text, markup, annotated - select for diffs
Mon Sep 3 07:03:31 2007 UTC (17 years, 7 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.799.2.7: preferred, colored
Changes since revision 1.799.2.7: +9 -3
lines
Sync w/ NetBSD-4-RC_1
Revision 1.799.2.13: download - view: text, markup, annotated - select for diffs
Fri Aug 31 20:09:27 2007 UTC (17 years, 7 months ago) by pavel
Branches: netbsd-4
CVS tags: netbsd-4-0-RC1
Diff to: previous 1.799.2.12: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.12: +4 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #678):
distrib/sets/lists/man/mi: revision 1.1001
doc/CHANGES: revision 1.853 via patch
share/man/man4/Makefile: revision 1.428
share/man/man4/jmide.4: revision 1.1
sys/arch/amd64/conf/GENERIC: revision 1.143
sys/arch/amd64/conf/INSTALL: revision 1.69
sys/arch/i386/conf/GENERIC: revision 1.827
sys/arch/i386/conf/INSTALL_LARGE: revision 1.2 via patch
sys/arch/i386/conf/XEN2_DOM0: revision 1.26
sys/conf/files: revision 1.844 via patch
sys/dev/ic/ahcisata_core.c: revision 1.1 via patch
sys/dev/ic/ahcisata_core.c: revision 1.3
sys/dev/ic/ahcisatareg.h: revision 1.1
sys/dev/ic/ahcisatavar.h: revision 1.1
sys/dev/pci/ahcisata.c: delete
sys/dev/pci/ahcisatareg.h: delete
sys/dev/pci/ahcisata_pci.c: revision 1.1
sys/dev/pci/files.pci: revision 1.287-1.288
sys/dev/pci/jmide.c: revision 1.1-1.2
sys/dev/pci/jmide_reg.h: revision 1.1
sys/dev/pci/pcidevs: revision 1.878
Add JMicron Technology vendor ID, and their current PCIe SATA/PATA
controllers.
Split the ahcisata driver in pci front-end and bus-independant back-end.
add jmide(4), a driver for the JMicron Technology JMB36x PCIe to SATA II/PATA
controllers. These controllers can be found on add-on PCIe cards, or
on some motherboards to provide the PATA connectivity (e.g. some intel
ICH8-based motherboards).
Thanks to JMicron Technology for providing me documentation and
different sample boards for this work.
Move mapping of AHCI register so that jmide knows if it fails, and avoids
calling ahci_intr() (which would cause a panic).
Try to use the pciide function for SATA drives if attaching ahci fails (this
doesn't seems to work though, it may be BIOS dependant).
Thanks to Gary Duzan for testing multiple pacthes.
We're not ready to handle ATAPI yet so just claim there's no drive to the
upper layer. This should work around a NULL pointer dereference when
an ATAPI device is detected on a AHCI device.
Revision 1.799.2.12: download - view: text, markup, annotated - select for diffs
Wed Aug 29 18:34:16 2007 UTC (17 years, 7 months ago) by liamjfoy
Branches: netbsd-4
Diff to: previous 1.799.2.11: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.11: +3 -2
lines
Pull up following (requested by xtraeme ticket #846):
Import i386/gcscide(4). A driver for the IDE Controller of the
AMD CS5535 Companion device found in the decTOP.
gcscide0 at pci0 dev 15 function 2
gcscide0: National Semiconductor/AMD CS5535 IDE Controller (rev. 0x00)
Supports Ultra DMA mode 4, Pio Mode 4 and MDMA mode 2.
"Go for it" jmcneill@.
Revision 1.661.2.14.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 28 13:54:04 2007 UTC (17 years, 8 months ago) by ghen
Branches: netbsd-3-1
Diff to: previous 1.661.2.14: preferred, colored; next MAIN 1.661.2.15: preferred, colored
Changes since revision 1.661.2.14: +3 -3
lines
Pull up following revision(s) (requested by adrianp in ticket #1826):
sys/arch/hp300/conf/GENERIC: revision 1.141 via patch
sys/arch/amd64/conf/GENERIC: revision 1.154 via patch
sys/arch/cats/conf/GENERIC: revision 1.116 via patch
sys/arch/arc/conf/GENERIC: revision 1.148 via patch
sys/arch/acorn32/conf/GENERIC: revision 1.80 via patch
sys/arch/sparc/conf/GENERIC: revision 1.200 via patch
sys/arch/sparc64/conf/GENERIC: revision 1.88 via patch
sys/arch/atari/conf/GENERIC.in: revision 1.68 via patch
sys/arch/amiga/conf/GENERIC: revision 1.248 via patch
sys/arch/i386/conf/GENERIC.MPACPI: patch
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.239 via patch
sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.66 via patch
sys/arch/i386/conf/GENERIC: revision 1.840 via patch
sys/arch/amiga/conf/GENERIC.in: revision 1.61 via patch
sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.68 via patch
sys/arch/mac68k/conf/GENERIC: revision 1.182 via patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@
Revision 1.661.2.8.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 28 13:52:51 2007 UTC (17 years, 8 months ago) by ghen
Branches: netbsd-3-0
Diff to: previous 1.661.2.8: preferred, colored; next MAIN 1.661.2.9: preferred, colored
Changes since revision 1.661.2.8: +3 -3
lines
Pull up following revision(s) (requested by adrianp in ticket #1826):
sys/arch/hp300/conf/GENERIC: revision 1.141 via patch
sys/arch/amd64/conf/GENERIC: revision 1.154 via patch
sys/arch/cats/conf/GENERIC: revision 1.116 via patch
sys/arch/arc/conf/GENERIC: revision 1.148 via patch
sys/arch/acorn32/conf/GENERIC: revision 1.80 via patch
sys/arch/sparc/conf/GENERIC: revision 1.200 via patch
sys/arch/sparc64/conf/GENERIC: revision 1.88 via patch
sys/arch/atari/conf/GENERIC.in: revision 1.68 via patch
sys/arch/amiga/conf/GENERIC: revision 1.248 via patch
sys/arch/i386/conf/GENERIC.MPACPI: patch
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.239 via patch
sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.66 via patch
sys/arch/i386/conf/GENERIC: revision 1.840 via patch
sys/arch/amiga/conf/GENERIC.in: revision 1.61 via patch
sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.68 via patch
sys/arch/mac68k/conf/GENERIC: revision 1.182 via patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@
Revision 1.661.2.20: download - view: text, markup, annotated - select for diffs
Tue Aug 28 13:49:44 2007 UTC (17 years, 8 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.661.2.19: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.19: +3 -3
lines
Pull up following revision(s) (requested by adrianp in ticket #1826):
sys/arch/hp300/conf/GENERIC: revision 1.141 via patch
sys/arch/amd64/conf/GENERIC: revision 1.154 via patch
sys/arch/cats/conf/GENERIC: revision 1.116 via patch
sys/arch/arc/conf/GENERIC: revision 1.148 via patch
sys/arch/acorn32/conf/GENERIC: revision 1.80 via patch
sys/arch/sparc/conf/GENERIC: revision 1.200 via patch
sys/arch/sparc64/conf/GENERIC: revision 1.88 via patch
sys/arch/atari/conf/GENERIC.in: revision 1.68 via patch
sys/arch/amiga/conf/GENERIC: revision 1.248 via patch
sys/arch/i386/conf/GENERIC.MPACPI: patch
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.239 via patch
sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.66 via patch
sys/arch/i386/conf/GENERIC: revision 1.840 via patch
sys/arch/amiga/conf/GENERIC.in: revision 1.61 via patch
sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.68 via patch
sys/arch/mac68k/conf/GENERIC: revision 1.182 via patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@
Revision 1.844: download - view: text, markup, annotated - select for diffs
Sun Aug 26 17:05:23 2007 UTC (17 years, 8 months ago) by xtraeme
Branches: MAIN
Branch point for: matt-armv6
Diff to: previous 1.843: preferred, colored
Changes since revision 1.843: +4 -4
lines
Modify ichlpcib description, it has timecounter support too.
Revision 1.799.2.11: download - view: text, markup, annotated - select for diffs
Sat Aug 25 09:00:07 2007 UTC (17 years, 8 months ago) by liamjfoy
Branches: netbsd-4
Diff to: previous 1.799.2.10: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.10: +3 -3
lines
Pull up following revision(s) (requested by adrianp in ticket #820):
sys/arch/hp300/conf/GENERIC: revision 1.141
sys/arch/alpha/conf/GENERIC: revision 1.315
sys/arch/amd64/conf/GENERIC: revision 1.154
sys/arch/cats/conf/GENERIC: revision 1.116
sys/arch/arc/conf/GENERIC: revision 1.148
sys/arch/acorn32/conf/GENERIC: revision 1.80
sys/arch/sparc/conf/GENERIC: revision 1.200
sys/arch/sparc64/conf/GENERIC: revision 1.88
sys/arch/atari/conf/GENERIC.in: revision 1.68
sys/arch/amiga/conf/GENERIC: revision 1.248
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.239
sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.66
sys/arch/i386/conf/GENERIC: revision 1.840
sys/arch/amiga/conf/GENERIC.in: revision 1.61
sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.68
sys/arch/mac68k/conf/GENERIC: revision 1.182
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@
Revision 1.843: download - view: text, markup, annotated - select for diffs
Tue Aug 21 02:48:15 2007 UTC (17 years, 8 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.842: preferred, colored
Changes since revision 1.842: +6 -3
lines
Add slhci at pcmcia.
And reorder.
Revision 1.816.2.6: download - view: text, markup, annotated - select for diffs
Mon Aug 20 18:38:07 2007 UTC (17 years, 8 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.5: preferred, colored
Changes since revision 1.816.2.5: +14 -3
lines
Sync with HEAD.
Revision 1.842: download - view: text, markup, annotated - select for diffs
Mon Aug 20 00:54:42 2007 UTC (17 years, 8 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.841: preferred, colored
Changes since revision 1.841: +4 -2
lines
Add btbc(4).
Revision 1.841: download - view: text, markup, annotated - select for diffs
Sat Aug 18 11:35:55 2007 UTC (17 years, 8 months ago) by tnn
Branches: MAIN
Diff to: previous 1.840: preferred, colored
Changes since revision 1.840: +7 -2
lines
Enable spdmem(4) in ALL configuration. Add commented out entries to GENERIC
Revision 1.838.4.1: download - view: text, markup, annotated - select for diffs
Wed Aug 15 13:47:21 2007 UTC (17 years, 8 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.838: preferred, colored
Changes since revision 1.838: +7 -3
lines
Sync with HEAD.
Revision 1.595.2.12: download - view: text, markup, annotated - select for diffs
Sat Aug 11 14:49:07 2007 UTC (17 years, 8 months ago) by bouyer
Branches: netbsd-2-0
Diff to: previous 1.595.2.11: preferred, colored; branchpoint 1.595: preferred, colored; next MAIN 1.596: preferred, colored
Changes since revision 1.595.2.11: +3 -3
lines
Pull up following revision(s) (requested by adrianp in ticket #11356):
sys/arch/acorn32/conf/GENERIC 1.80 via patch
sys/arch/amd64/conf/GENERIC 1.154 via patch
sys/arch/amiga/conf/GENERIC.in 1.61 via patch
sys/arch/arc/conf/GENERIC 1.148 via patch
sys/arch/atari/conf/GENERIC.in 1.68 via patch
sys/arch/cats/conf/GENERIC 1.116 via patch
sys/arch/hp300/conf/GENERIC 1.141 via patch
sys/arch/hp700/conf/GENERIC patch
sys/arch/i386/conf/GENERIC 1.840 via patch
sys/arch/i386/conf/GENERIC_LAPTOP 1.239 via patch
sys/arch/i386/conf/GENERIC.MPACPI patch
sys/arch/mac68k/conf/GENERIC 1.182 via patch
sys/arch/sgimips/conf/GENERIC32_IP2x 1.68 via patch
sys/arch/sgimips/conf/GENERIC32_IP3x 1.66 via patch
sys/arch/sparc/conf/GENERIC 1.200 via patch
sys/arch/sparc64/conf/GENERIC32 patch
sys/arch/xen/conf/GENERIC patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@
Revision 1.595.2.11.2.3: download - view: text, markup, annotated - select for diffs
Sat Aug 11 14:46:21 2007 UTC (17 years, 8 months ago) by bouyer
Branches: netbsd-2
Diff to: previous 1.595.2.11.2.2: preferred, colored; branchpoint 1.595.2.11: preferred, colored; next MAIN 1.595.2.12: preferred, colored
Changes since revision 1.595.2.11.2.2: +3 -3
lines
Pull up following revision(s) (requested by adrianp in ticket #11356):
sys/arch/acorn32/conf/GENERIC 1.80 via patch
sys/arch/amd64/conf/GENERIC 1.154 via patch
sys/arch/amiga/conf/GENERIC.in 1.61 via patch
sys/arch/arc/conf/GENERIC 1.148 via patch
sys/arch/atari/conf/GENERIC.in 1.68 via patch
sys/arch/cats/conf/GENERIC 1.116 via patch
sys/arch/hp300/conf/GENERIC 1.141 via patch
sys/arch/hp700/conf/GENERIC patch
sys/arch/i386/conf/GENERIC 1.840 via patch
sys/arch/i386/conf/GENERIC_LAPTOP 1.239 via patch
sys/arch/i386/conf/GENERIC.MPACPI patch
sys/arch/mac68k/conf/GENERIC 1.182 via patch
sys/arch/sgimips/conf/GENERIC32_IP2x 1.68 via patch
sys/arch/sgimips/conf/GENERIC32_IP3x 1.66 via patch
sys/arch/sparc/conf/GENERIC 1.200 via patch
sys/arch/sparc64/conf/GENERIC32 patch
sys/arch/xen/conf/GENERIC patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@
Revision 1.595.2.11.2.2.2.1: download - view: text, markup, annotated - select for diffs
Sat Aug 11 14:40:08 2007 UTC (17 years, 8 months ago) by bouyer
Branches: netbsd-2-1
Diff to: previous 1.595.2.11.2.2: preferred, colored; next MAIN 1.595.2.11.2.3: preferred, colored
Changes since revision 1.595.2.11.2.2: +3 -3
lines
Pull up following revision(s) (requested by adrianp in ticket #11356):
sys/arch/acorn32/conf/GENERIC 1.80 via patch
sys/arch/amd64/conf/GENERIC 1.154 via patch
sys/arch/amiga/conf/GENERIC.in 1.61 via patch
sys/arch/arc/conf/GENERIC 1.148 via patch
sys/arch/atari/conf/GENERIC.in 1.68 via patch
sys/arch/cats/conf/GENERIC 1.116 via patch
sys/arch/hp300/conf/GENERIC 1.141 via patch
sys/arch/hp700/conf/GENERIC patch
sys/arch/i386/conf/GENERIC 1.840 via patch
sys/arch/i386/conf/GENERIC_LAPTOP 1.239 via patch
sys/arch/i386/conf/GENERIC.MPACPI patch
sys/arch/mac68k/conf/GENERIC 1.182 via patch
sys/arch/sgimips/conf/GENERIC32_IP2x 1.68 via patch
sys/arch/sgimips/conf/GENERIC32_IP3x 1.66 via patch
sys/arch/sparc/conf/GENERIC 1.200 via patch
sys/arch/sparc64/conf/GENERIC32 patch
sys/arch/xen/conf/GENERIC patch
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@
Revision 1.839.4.1: download - view: text, markup, annotated - select for diffs
Thu Aug 9 02:36:54 2007 UTC (17 years, 8 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.839: preferred, colored
Changes since revision 1.839: +3 -3
lines
Sync with HEAD.
Revision 1.838.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 7 18:05:18 2007 UTC (17 years, 8 months ago) by matt
Branches: matt-mips64
Diff to: previous 1.838: preferred, colored; next MAIN 1.839: preferred, colored
Changes since revision 1.838: +7 -3
lines
Sync with HEAD.
Revision 1.840: download - view: text, markup, annotated - select for diffs
Mon Aug 6 21:26:55 2007 UTC (17 years, 8 months ago) by adrianp
Branches: MAIN
CVS tags: matt-mips64-base
Diff to: previous 1.839: preferred, colored
Changes since revision 1.839: +3 -3
lines
Remove iso(4) from GENERIC kernels, as discussed on tech-net@
Ok'ed by core@
Revision 1.839: download - view: text, markup, annotated - select for diffs
Sat Jul 28 11:06:23 2007 UTC (17 years, 9 months ago) by kiyohara
Branches: MAIN
CVS tags: hpcarm-cleanup
Branch point for: jmcneill-pm
Diff to: previous 1.838: preferred, colored
Changes since revision 1.838: +6 -2
lines
Add ichsmb(4).
Revision 1.816.2.5: download - view: text, markup, annotated - select for diffs
Sun Jul 15 13:16:07 2007 UTC (17 years, 9 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.4: preferred, colored
Changes since revision 1.816.2.4: +16 -6
lines
Sync with head.
Revision 1.838: download - view: text, markup, annotated - select for diffs
Sat Jul 14 16:16:17 2007 UTC (17 years, 9 months ago) by kiyohara
Branches: MAIN
CVS tags: nick-csl-alignment-base
Branch point for: nick-csl-alignment,
matt-mips64
Diff to: previous 1.837: preferred, colored
Changes since revision 1.837: +6 -6
lines
Alphabetical reorder.
Revision 1.816.4.1: download - view: text, markup, annotated - select for diffs
Wed Jul 11 19:59:45 2007 UTC (17 years, 9 months ago) by mjf
Branches: mjf-ufs-trans
Diff to: previous 1.816: preferred, colored; next MAIN 1.817: preferred, colored
Changes since revision 1.816: +56 -21
lines
Sync with head.
Revision 1.837: download - view: text, markup, annotated - select for diffs
Wed Jul 11 08:01:50 2007 UTC (17 years, 9 months ago) by kiyohara
Branches: MAIN
CVS tags: mjf-ufs-trans-base
Diff to: previous 1.836: preferred, colored
Changes since revision 1.836: +8 -2
lines
Add nfsmb(4).
Revision 1.836: download - view: text, markup, annotated - select for diffs
Sun Jul 8 03:01:19 2007 UTC (17 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.835: preferred, colored
Changes since revision 1.835: +4 -2
lines
Enable gcscehci(4)
Revision 1.835: download - view: text, markup, annotated - select for diffs
Wed Jun 27 23:12:03 2007 UTC (17 years, 10 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.834: preferred, colored
Changes since revision 1.834: +3 -2
lines
Add gcscide(4).
Revision 1.824.2.2: download - view: text, markup, annotated - select for diffs
Tue Jun 26 18:12:31 2007 UTC (17 years, 10 months ago) by garbled
Branches: ppcoea-renovation
Diff to: previous 1.824.2.1: preferred, colored
Changes since revision 1.824.2.1: +9 -3
lines
Sync with HEAD.
Revision 1.799.2.10: download - view: text, markup, annotated - select for diffs
Thu Jun 21 13:54:11 2007 UTC (17 years, 10 months ago) by liamjfoy
Branches: netbsd-4
Diff to: previous 1.799.2.9: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.9: +3 -2
lines
Pull up following revision(s) (requested by dyoung in ticket #738):
sys/arch/i386/conf/GENERIC: revision 1.800
Add rtw at pci to the GENERIC kernel.
Revision 1.799.2.9: download - view: text, markup, annotated - select for diffs
Tue Jun 19 09:26:30 2007 UTC (17 years, 10 months ago) by liamjfoy
Branches: netbsd-4
Diff to: previous 1.799.2.8: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.8: +3 -2
lines
Pull up following revision(s) (requested by riz in ticket #734):
sys/arch/i386/pci/glxsb.c: revision 1.1
sys/arch/i386/conf/GENERIC: revision 1.833
share/man/man4/man4.i386/glxsb.4: revision 1.1
sys/arch/i386/conf/ALL: revision 1.104
share/man/man4/man4.i386/Makefile: revision 1.66
sys/arch/i386/conf/files.i386: revision 1.309
distrib/sets/lists/man/mi: revision 1.1007
Import driver for the AMD Geode LX AES Security Block, from OpenBSD. The
glxsb(4) driver provides random numbers and AES acceleration.
Add man page for AMD Geode LX AES Security Block driver.
Enable glxsb(4)
Revision 1.834: download - view: text, markup, annotated - select for diffs
Sat Jun 16 12:35:55 2007 UTC (17 years, 10 months ago) by ad
Branches: MAIN
Diff to: previous 1.833: preferred, colored
Changes since revision 1.833: +2 -3
lines
-options I2OVERBOSE.
Revision 1.833: download - view: text, markup, annotated - select for diffs
Fri Jun 15 23:05:29 2007 UTC (17 years, 10 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.832: preferred, colored
Changes since revision 1.832: +3 -2
lines
Enable glxsb(4)
Revision 1.816.2.4: download - view: text, markup, annotated - select for diffs
Sat Jun 9 23:55:06 2007 UTC (17 years, 10 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.3: preferred, colored
Changes since revision 1.816.2.3: +7 -2
lines
Sync with head.
Revision 1.832: download - view: text, markup, annotated - select for diffs
Sat Jun 9 11:34:02 2007 UTC (17 years, 10 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.831: preferred, colored
Changes since revision 1.831: +3 -2
lines
Add zyd(4).
Revision 1.799.2.8: download - view: text, markup, annotated - select for diffs
Tue Jun 5 20:49:58 2007 UTC (17 years, 10 months ago) by bouyer
Branches: netbsd-4
Diff to: previous 1.799.2.7: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.7: +1 -0
lines
Pull up following revision(s) (requested by martin in ticket #699):
sys/arch/hpcmips/conf/GENERIC: revision 1.196
sys/arch/hp700/conf/GENERIC: revision 1.74
sys/arch/i386/conf/GENERIC: revision 1.831
sys/arch/next68k/conf/GENERIC: revision 1.108
sys/arch/alpha/conf/GENERIC: revision 1.313
sys/arch/arc/conf/GENERIC: revision 1.146
sys/arch/cats/conf/GENERIC: revision 1.115
sys/arch/ews4800mips/conf/GENERIC: revision 1.18
sys/arch/landisk/conf/GENERIC: revision 1.8 via patch
sys/arch/sparc64/conf/GENERIC: revision 1.85
sys/arch/pmax/conf/GENERIC: revision 1.152
sys/arch/iyonix/conf/GENERIC: revision 1.38 via patch
sys/arch/amiga/conf/GENERIC: revision 1.245
sys/arch/vax/conf/GENERIC: revision 1.157
sys/arch/prep/conf/GENERIC: revision 1.135
sys/arch/pc532/conf/GENERIC: revision 1.70
sys/arch/sbmips/conf/GENERIC: revision 1.61
sys/arch/mipsco/conf/GENERIC: revision 1.65
sys/arch/cobalt/conf/GENERIC: revision 1.108
sys/arch/ofppc/conf/GENERIC: revision 1.98
sys/arch/amd64/conf/GENERIC: revision 1.148
sys/arch/acorn26/conf/GENERIC: revision 1.50
sys/arch/dreamcast/conf/GENERIC: revision 1.78
sys/arch/mac68k/conf/GENERIC: revision 1.181
sys/arch/hp300/conf/GENERIC: revision 1.139
sys/arch/mmeye/conf/GENERIC: revision 1.88
sys/arch/news68k/conf/GENERIC: revision 1.88
sys/arch/mvme68k/conf/GENERIC: revision 1.71
sys/arch/acorn32/conf/GENERIC: revision 1.79
sys/arch/sparc/conf/GENERIC: revision 1.199
sys/arch/luna68k/conf/GENERIC: revision 1.78
sys/arch/bebox/conf/GENERIC: revision 1.105
sys/arch/macppc/conf/GENERIC: revision 1.256 via patch
sys/arch/x68k/conf/GENERIC: revision 1.134
sys/arch/sun3/conf/GENERIC: revision 1.138
sys/arch/newsmips/conf/GENERIC: revision 1.98
Add pseudo-device agr to all GENERIC kernels where it might make sense
(commented out in some).
Revision 1.831: download - view: text, markup, annotated - select for diffs
Mon Jun 4 08:55:21 2007 UTC (17 years, 10 months ago) by martin
Branches: MAIN
Diff to: previous 1.830: preferred, colored
Changes since revision 1.830: +3 -2
lines
Add pseudo-device agr to all GENERIC kernels where it might make sense
(commented out in some).
Revision 1.830: download - view: text, markup, annotated - select for diffs
Fri Jun 1 14:26:36 2007 UTC (17 years, 10 months ago) by blymn
Branches: MAIN
Diff to: previous 1.829: preferred, colored
Changes since revision 1.829: +5 -2
lines
Add smsc device
Revision 1.829: download - view: text, markup, annotated - select for diffs
Tue May 29 21:37:07 2007 UTC (17 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.828: preferred, colored
Changes since revision 1.828: +3 -2
lines
Add COMPAT_40 for struct ifreq changes.
Revision 1.816.2.3: download - view: text, markup, annotated - select for diffs
Sun May 27 12:27:27 2007 UTC (17 years, 11 months ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.2: preferred, colored
Changes since revision 1.816.2.2: +13 -2
lines
Sync with head.
Revision 1.824.2.1: download - view: text, markup, annotated - select for diffs
Tue May 22 17:26:56 2007 UTC (17 years, 11 months ago) by matt
Branches: ppcoea-renovation
Diff to: previous 1.824: preferred, colored
Changes since revision 1.824: +9 -2
lines
Update to HEAD.
Revision 1.828: download - view: text, markup, annotated - select for diffs
Sun May 20 05:13:17 2007 UTC (17 years, 11 months ago) by dogcow
Branches: MAIN
Diff to: previous 1.827: preferred, colored
Changes since revision 1.827: +5 -2
lines
add uslsa USB-RS232 adapter
Revision 1.808.2.9: download - view: text, markup, annotated - select for diffs
Thu May 17 13:40:56 2007 UTC (17 years, 11 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.8: preferred, colored; next MAIN 1.809: preferred, colored
Changes since revision 1.808.2.8: +5 -2
lines
sync with head.
Revision 1.827: download - view: text, markup, annotated - select for diffs
Tue May 15 17:53:44 2007 UTC (17 years, 11 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-idlelwp-base8
Diff to: previous 1.826: preferred, colored
Changes since revision 1.826: +4 -2
lines
add jmide(4), a driver for the JMicron Technology JMB36x PCIe to SATA II/PATA
controllers. These controllers can be found on add-on PCIe cards, or
on some motherboards to provide the PATA connectivity (e.g. some intel
ICH8-based motherboards).
Thanks to JMicron Technology for providing me documentation and
different sample boards for this work.
Revision 1.799.2.7: download - view: text, markup, annotated - select for diffs
Sun May 13 06:52:51 2007 UTC (17 years, 11 months ago) by pavel
Branches: netbsd-4
Branch point for: wrstuden-fixsa
Diff to: previous 1.799.2.6: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.6: +1 -0
lines
Pull up patch (requested by xtraeme in ticket #633):
sys/arch/amd64/conf/GENERIC: patch
sys/arch/i386/conf/ALL: patch
sys/arch/i386/conf/GENERIC: patch
sys/conf/files: patch
sys/dev/acpi/files.acpi: patch
sys/dev/acpi/ug_acpi.c: patch
sys/dev/ic/ug.c: patch
sys/dev/ic/ugreg.h: patch
sys/dev/ic/ugvar.h: patch
sys/dev/isa/files.isa: patch
sys/dev/isa/ug_isa.c: patch
share/man/man4/ug.4: patch
doc/CHANGES: patch
sys/dev/isa/ug.c: delete
sys/dev/isa/ugvar.h: delete
Add an acpi attachement for the ug hardware monitor driver.
Revision 1.826: download - view: text, markup, annotated - select for diffs
Tue May 8 16:55:54 2007 UTC (17 years, 11 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.825: preferred, colored
Changes since revision 1.825: +3 -2
lines
Add "ug* at acpi?" following the current scheme in the files.
Revision 1.799.2.6: download - view: text, markup, annotated - select for diffs
Tue May 8 10:45:07 2007 UTC (17 years, 11 months ago) by pavel
Branches: netbsd-4
Diff to: previous 1.799.2.5: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.5: +3 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #603):
distrib/sets/lists/base/mi: revision 1.704
distrib/sets/lists/comp/mi: revision 1.1022
distrib/sets/lists/man/mi: revision 1.997
doc/CHANGES: revision 1.839
sbin/Makefile: patch
sbin/bioctl/Makefile: revision 1.1
sbin/bioctl/bioctl.8: revision 1.1
sbin/bioctl/bioctl.c: revision 1.1
sbin/bioctl/strtonum.c: revision 1.1
sbin/bioctl/strtonum.h: revision 1.1
share/man/man4/Makefile: revision 1.426
share/man/man4/bio.4: revision 1.1
sys/arch/amd64/conf/GENERIC: revision 1.139
sys/arch/i386/conf/GENERIC: revision 1.825
sys/arch/i386/conf/XEN2_DOM0: revision 1.25
sys/conf/files: revision 1.839
sys/conf/majors: patch
sys/dev/Makefile: revision 1.25
sys/dev/bio.c: patch
sys/dev/biovar.h: patch
sys/dev/ic/mfi.c: revision 1.4-1.5
sys/dev/ic/mfivar.h: revision 1.4
sys/sys/envsys.h: revision 1.11
usr.sbin/envstat/envstat.c: revision 1.24
Add bio(4) and associated bioctl(8) from OpenBSD, a driver control block
device controllers, and more specifically raid controllers.
Add a new sensor type, ENVSYS_DRIVE, to report drive status. From OpenBSD.
Add bio and sysmon support to mfi(4). This allow userland to query
status for drives and logical volumes attached to a mfi(4) controller. While
there fix some debug printfs in mfi so they compile.
Add bio(4) to amd64 and i386 GENERIC.
note bio(4), envsys(4) DRIVE, and mfi(4) support for both.
tred->sensor is a u_int.
Revision 1.808.2.8: download - view: text, markup, annotated - select for diffs
Mon May 7 10:54:55 2007 UTC (17 years, 11 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.7: preferred, colored
Changes since revision 1.808.2.7: +7 -2
lines
sync with head.
Revision 1.825: download - view: text, markup, annotated - select for diffs
Tue May 1 17:18:54 2007 UTC (17 years, 11 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.824: preferred, colored
Changes since revision 1.824: +3 -2
lines
Add bio(4) and associated bioctl(8) from OpenBSD, a driver control block
device controllers, and more specifically raid controllers.
Add a new sensor type, ENVSYS_DRIVE, to report drive status. From OpenBSD.
Add bio and sysmon support to mfi(4). This allow userland to query
status for drives and logical volumes attached to a mfi(4) controller. While
there fix some debug printfs in mfi so they compile.
Add bio(4) to amd64 and i386 GENERIC.
Revision 1.824: download - view: text, markup, annotated - select for diffs
Thu Apr 26 17:11:36 2007 UTC (18 years ago) by dyoung
Branches: MAIN
Branch point for: ppcoea-renovation
Diff to: previous 1.823: preferred, colored
Changes since revision 1.823: +3 -2
lines
Add ATADEBUG for ease of debugging.
Revision 1.823: download - view: text, markup, annotated - select for diffs
Thu Apr 19 14:34:35 2007 UTC (18 years ago) by xtraeme
Branches: MAIN
Diff to: previous 1.822: preferred, colored
Changes since revision 1.822: +5 -2
lines
ALL: add ug(4).
GENERIC/GENERIC_LAPTOP: add ug(4) commented out.
Revision 1.808.2.7: download - view: text, markup, annotated - select for diffs
Sun Apr 15 16:02:46 2007 UTC (18 years ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.6: preferred, colored
Changes since revision 1.808.2.6: +6 -6
lines
sync with head.
Revision 1.816.2.2: download - view: text, markup, annotated - select for diffs
Tue Apr 10 13:23:01 2007 UTC (18 years ago) by ad
Branches: vmlocking
Diff to: previous 1.816.2.1: preferred, colored
Changes since revision 1.816.2.1: +28 -20
lines
Sync with head.
Revision 1.822: download - view: text, markup, annotated - select for diffs
Thu Apr 5 19:17:41 2007 UTC (18 years ago) by reed
Branches: MAIN
CVS tags: thorpej-atomic-base,
thorpej-atomic
Diff to: previous 1.821: preferred, colored
Changes since revision 1.821: +6 -6
lines
Add some tabs. Move one entry.
No real changes, just making it easier to diff with GENERIC_LAPTOP.
Revision 1.661.2.19: download - view: text, markup, annotated - select for diffs
Sat Mar 31 15:25:33 2007 UTC (18 years ago) by bouyer
Branches: netbsd-3
Diff to: previous 1.661.2.18: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.18: +3 -2
lines
pullup the following revisions (requested by msaitoh in ticket 1681):
sys/dev/pci/if_wm.c 1.104-1.105, 1.116-1.121,
1.127,1.133-1.134 via patch
sys/dev/pci/if_wmreg.h 1.17-1.20
sys/dev/pci/pcidevs patch
sys/dev/mii/igphy.c 1.11
sys/dev/mii/makphy.c 1.20, 1.23
sys/dev/mii/ikphy.c patch
sys/dev/mii/ikphyreg.h patch
sys/dev/mii/miidevs 1.68
sys/dev/mii/files.mii 1.39
sys/arch/i386/conf/GENERIC 1.788-1.789 via patch
sys/arch/i386/conf/GENERIC.MPACPI patch
sys/arch/i386/conf/GENERIC_LAPTOP 1.209 via patch
sys/arch/i386/conf/INSTALL 1.291 via patch
sys/arch/i386/conf/INSTALL_LAPTOP 1.104 via patch
sys/arch/i386/conf/XEN2_DOM0 1.13 via patch
share/man/man4/wm.4 1.14-1.16
Add support for many cards (include PCI-express based chips).
Many bug fixes about auto negotiations (PR#30078, PR#30490,
PR#30906, PR#33429 and PR#35386).
Fix media link issues with fiber-based card (PR#35797).
Revision 1.819.2.1: download - view: text, markup, annotated - select for diffs
Thu Mar 29 19:27:26 2007 UTC (18 years, 1 month ago) by reinoud
Branches: reinoud-bufcleanup
Diff to: previous 1.819: preferred, colored; next MAIN 1.820: preferred, colored
Changes since revision 1.819: +22 -18
lines
Pullup to -current
Revision 1.808.2.6: download - view: text, markup, annotated - select for diffs
Sat Mar 24 14:54:43 2007 UTC (18 years, 1 month ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.5: preferred, colored
Changes since revision 1.808.2.5: +29 -20
lines
sync with head.
Revision 1.799.2.5: download - view: text, markup, annotated - select for diffs
Thu Mar 22 20:00:09 2007 UTC (18 years, 1 month ago) by jdc
Branches: netbsd-4
Diff to: previous 1.799.2.4: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.4: +3 -3
lines
Pull up revision 1.816 (requested by bouyer in ticket #501).
Comment out 'fdc* at acpi?' (it's likely that systems not supporting
fdc0 at isa? don't have a fdc at all). Because of the 'fdc0 at isa?', on
systems supporting ACPI the floppy controller would attach as fdc1. as fd(4)
looks for its type in nvram using the floppy controller index, it's looking for
the wrong controller and the default density isn't set (so /dev/fd0a doens't
work).
Problem analyzed by John Nemeth, thanks !
Revision 1.821: download - view: text, markup, annotated - select for diffs
Thu Mar 22 12:40:06 2007 UTC (18 years, 1 month ago) by gdt
Branches: MAIN
Diff to: previous 1.820: preferred, colored
Changes since revision 1.820: +19 -18
lines
Add apm emulation via acpi.
Enable cardbus attachment for lots of devices. The drivers were
already compiled in via pci attachment, and GENERIC supports cardbus,
so there's no reason not to attach.
With this, GENERIC.MP works well on a Thinkpad T60.
(proposed on port-i386, no objections received)
Revision 1.820: download - view: text, markup, annotated - select for diffs
Tue Mar 20 21:29:28 2007 UTC (18 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.819: preferred, colored
Changes since revision 1.819: +5 -2
lines
ALL: Enable INTEL_ONDEMAND_CLOCKMOD.
GENERIC: Add INTEL_ONDEMAND_CLOCKMOD disabled by default.
Revision 1.819: download - view: text, markup, annotated - select for diffs
Wed Mar 14 12:27:22 2007 UTC (18 years, 1 month ago) by drochner
Branches: MAIN
Branch point for: reinoud-bufcleanup
Diff to: previous 1.818: preferred, colored
Changes since revision 1.818: +4 -4
lines
It doesn't make sense to specify "configuration" and "interface"
locators for uhub because a hub can't have sub-devices.
This might be sanity-checked eventually.
Same for ubt now after the change to device attachment.
Revision 1.818: download - view: text, markup, annotated - select for diffs
Tue Mar 13 23:49:38 2007 UTC (18 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.817: preferred, colored
Changes since revision 1.817: +6 -2
lines
ALL: add unichromefb.
GENERIC: add unichromefb (disabled by default).
GENERIC_LAPTOP: add unichromefb and vesafb (disabled by default).
Revision 1.816.2.1: download - view: text, markup, annotated - select for diffs
Tue Mar 13 16:49:58 2007 UTC (18 years, 1 month ago) by ad
Branches: vmlocking
Diff to: previous 1.816: preferred, colored
Changes since revision 1.816: +3 -2
lines
Sync with head.
Revision 1.817: download - view: text, markup, annotated - select for diffs
Tue Mar 13 04:09:28 2007 UTC (18 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.816: preferred, colored
Changes since revision 1.816: +3 -2
lines
Add aiboost* at acpi, enabled by default on i386/GENERIC and disable
in the other ones (to follow current scheme).
Revision 1.808.2.5: download - view: text, markup, annotated - select for diffs
Mon Mar 12 05:48:19 2007 UTC (18 years, 1 month ago) by rmind
Branches: yamt-idlelwp
Diff to: previous 1.808.2.4: preferred, colored
Changes since revision 1.808.2.4: +30 -26
lines
Sync with HEAD.
Revision 1.799.2.4: download - view: text, markup, annotated - select for diffs
Sat Mar 10 19:23:41 2007 UTC (18 years, 1 month ago) by riz
Branches: netbsd-4
Diff to: previous 1.799.2.3: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.3: +25 -25
lines
Pull up following revision(s) (requested by bouyer in ticket #494):
sys/arch/i386/conf/GENERIC.MP: revision 1.9
distrib/pc532/cdroms/installcd/Makefile: revision 1.1
distrib/macppc/Makefile: revision 1.15
distrib/ofppc/Makefile: revision 1.2
distrib/ibmnws/Makefile: revision 1.2
distrib/acorn32/Makefile: revision 1.18
distrib/x68k/cdroms/installcd/Makefile: revision 1.1
distrib/sparc/Makefile: revision 1.7
distrib/sparc64/cdroms/Makefile: revision 1.1
distrib/hp300/cdroms/Makefile: revision 1.1
distrib/hpcsh/Makefile: revision 1.6
distrib/ofppc/cdroms/installcd/Makefile: revision 1.1
distrib/playstation2/Makefile: revision 1.13
distrib/news68k/cdroms/installcd/Makefile: revision 1.1
distrib/amiga/cdroms/installcd/Makefile: revision 1.1
distrib/hp700/cdroms/installcd/Makefile: revision 1.1
distrib/playstation2/cdroms/Makefile: revision 1.1
distrib/amiga/cdroms/Makefile: revision 1.1
etc/etc.mac68k/Makefile.inc: revision 1.18
distrib/shark/cdroms/installcd/Makefile: revision 1.1
distrib/hpcmips/Makefile: revision 1.28
distrib/hpcmips/cdroms/Makefile: revision 1.1
distrib/amd64/floppies/Makefile: revision 1.3
sys/arch/amd64/conf/INSTALL_ACPI: file removal
distrib/i386/cdroms/Makefile: revision 1.4
distrib/acorn26/cdroms/installcd/Makefile: revision 1.1
distrib/hpcsh/cdroms/Makefile: revision 1.1
distrib/prep/cdroms/Makefile: revision 1.1
distrib/pc532/Makefile: revision 1.4
distrib/acorn32/cdroms/installcd/Makefile: revision 1.1
distrib/sun2/Makefile: revision 1.8
distrib/vax/Makefile: revision 1.17
distrib/sparc64/cdroms/installcd/Makefile: revision 1.1
distrib/pmax/cdroms/Makefile: revision 1.1
distrib/mipsco/cdroms/installcd/Makefile: revision 1.1
distrib/sun3/cdroms/installcd/Makefile: revision 1.1
distrib/vax/cdroms/installcd/Makefile: revision 1.1
distrib/hpcarm/cdroms/installcd/Makefile: revision 1.1
distrib/mvme68k/Makefile: revision 1.4
distrib/mvmeppc/cdroms/Makefile: revision 1.1
distrib/newsmips/Makefile: revision 1.4
sys/arch/i386/conf/GENERIC.MPACPI: file removal
distrib/hpcarm/cdroms/Makefile: revision 1.1
distrib/evbppc/cdroms/Makefile: revision 1.1
sys/arch/i386/conf/INSTALL_LARGE: revision 1.1
distrib/i386/cdroms/installcd/Makefile: revision 1.2
distrib/i386/cdroms/installcd/Makefile: revision 1.3
doc/CHANGES: revision 1.804
distrib/hpcsh/cdroms/installcd/Makefile: revision 1.1
distrib/i386/cdroms/bootcd/Makefile: revision 1.2
distrib/mvmeppc/cdroms/installcd/Makefile: revision 1.1
distrib/i386/cdroms/bootcd/Makefile: revision 1.3
distrib/evbarm/Makefile: revision 1.8
distrib/mvmeppc/Makefile: revision 1.3
distrib/i386/cdroms/bootcd-com/Makefile: revision 1.2
distrib/i386/cdroms/bootcd-com/Makefile: revision 1.3
distrib/macppc/cdroms/installcd/Makefile: revision 1.1
distrib/acorn26/cdroms/Makefile: revision 1.1
distrib/alpha/cdroms/Makefile: revision 1.1
distrib/hp300/cdroms/installcd/Makefile: revision 1.1
distrib/amd64/floppies/bootfloppy/Makefile: revision 1.4
distrib/pmppc/cdroms/installcd/Makefile: revision 1.1
distrib/hp700/Makefile: revision 1.2
distrib/pmppc/Makefile: revision 1.2
distrib/arc/cdroms/Makefile: revision 1.1
sys/arch/amd64/conf/INSTALL: revision 1.66
distrib/sun3/cdroms/Makefile: revision 1.1
distrib/mipsco/Makefile: revision 1.4
distrib/sun3/Makefile: revision 1.9
distrib/vax/cdroms/Makefile: revision 1.1
distrib/pmppc/cdroms/Makefile: revision 1.1
distrib/amd64/cdroms/Makefile.cdrom: revision 1.1
distrib/atari/cdroms/installcd/Makefile: revision 1.1
distrib/evbppc/cdroms/installcd/Makefile: revision 1.1
distrib/newsmips/cdroms/installcd/Makefile: revision 1.1
distrib/pmax/Makefile: revision 1.4
Makefile: revision 1.247
distrib/cats/cdroms/installcd/Makefile: revision 1.1
sys/arch/amd64/conf/GENERIC: revision 1.130
sys/arch/amd64/conf/GENERIC: revision 1.131
distrib/sgimips/cdroms/installcd/Makefile: revision 1.1
distrib/hp700/cdroms/Makefile: revision 1.1
distrib/cats/cdroms/Makefile: revision 1.1
distrib/evbmips/Makefile: revision 1.3
distrib/evbmips/Makefile: revision 1.4
sys/arch/amd64/conf/GENERIC_ACPI: file removal
distrib/ews4800mips/Makefile: revision 1.2
distrib/amd64/cdroms/bootcd-com/Makefile: revision 1.2
distrib/i386/Makefile: revision 1.5
distrib/amd64/cdroms/installcd/Makefile: revision 1.2
distrib/mvme68k/cdroms/installcd/Makefile: revision 1.1
distrib/alpha/cdroms/installcd/Makefile: revision 1.1
etc/etc.amd64/Makefile.inc: revision 1.7
distrib/i386/instkernel/Makefile: revision 1.6
distrib/x68k/cdroms/Makefile: revision 1.1
distrib/i386/cdroms/Makefile.cdrom: revision 1.1
distrib/sandpoint/Makefile: revision 1.4
distrib/i386/cdroms/Makefile.cdrom: revision 1.2
distrib/amiga/Makefile: revision 1.3
distrib/amd64/cdroms/bootcd/Makefile: revision 1.2
distrib/news68k/Makefile: revision 1.4
distrib/amd64/floppies/bootfloppy-com/Makefile: revision 1.5
distrib/news68k/cdroms/Makefile: revision 1.1
distrib/sparc/cdroms/Makefile: revision 1.1
distrib/shark/cdroms/Makefile: revision 1.1
etc/Makefile: revision 1.341
distrib/amd64/instkernel/Makefile: revision 1.2
distrib/sparc64/Makefile: revision 1.7
distrib/dreamcast/cdroms/Makefile: revision 1.1
distrib/shark/Makefile: revision 1.3
distrib/ews4800mips/cdroms/Makefile: revision 1.1
distrib/sun2/cdroms/installcd/Makefile: revision 1.1
distrib/shark/Makefile: revision 1.4
distrib/macppc/cdroms/Makefile: revision 1.1
distrib/mvme68k/cdroms/Makefile: revision 1.1
distrib/sun2/cdroms/Makefile: revision 1.1
distrib/hpcarm/Makefile: revision 1.3
distrib/arc/cdroms/installcd/Makefile: revision 1.1
distrib/hpcmips/cdroms/installcd/Makefile: revision 1.1
distrib/mipsco/cdroms/Makefile: revision 1.1
distrib/Makefile.inc: revision 1.9
distrib/playstation2/cdroms/installcd/Makefile: revision 1.1
distrib/ibmnws/cdroms/installcd/Makefile: revision 1.1
distrib/newsmips/cdroms/Makefile: revision 1.1
distrib/arc/Makefile: revision 1.3
distrib/sparc/cdroms/installcd/Makefile: revision 1.1
distrib/evbmips/cdroms/installcd/Makefile: revision 1.1
distrib/ews4800mips/cdroms/installcd/Makefile: revision 1.1
distrib/prep/Makefile: revision 1.3
distrib/ibmnws/cdroms/Makefile: revision 1.1
distrib/sandpoint/cdroms/Makefile: revision 1.1
distrib/atari/Makefile: revision 1.6
distrib/sgimips/cdroms/Makefile: revision 1.1
distrib/amd64/Makefile: revision 1.4
distrib/atari/cdroms/Makefile: revision 1.1
distrib/x68k/Makefile: revision 1.5
distrib/x68k/Makefile: revision 1.6
distrib/sandpoint/cdroms/installcd/Makefile: revision 1.1
distrib/evbarm/cdroms/Makefile: revision 1.1
distrib/acorn32/cdroms/Makefile: revision 1.1
distrib/cats/Makefile: revision 1.3
distrib/evbmips/cdroms/Makefile: revision 1.1
distrib/pc532/cdroms/Makefile: revision 1.1
distrib/Makefile: revision 1.14
distrib/evbarm/cdroms/installcd/Makefile: revision 1.1
distrib/ofppc/cdroms/Makefile: revision 1.1
distrib/amd64/cdroms/Makefile: revision 1.3
distrib/common/Makefile.bootcd: revision 1.8
distrib/i386/cdroms/bootcd-laptop/Makefile: file removal
sys/arch/i386/conf/GENERIC: revision 1.813
distrib/hp300/Makefile: revision 1.17
sys/arch/i386/conf/GENERIC: revision 1.814
distrib/evbppc/Makefile: revision 1.2
distrib/pmax/cdroms/installcd/Makefile: revision 1.1
etc/etc.i386/Makefile.inc: revision 1.49
distrib/sgimips/Makefile: revision 1.2
distrib/prep/cdroms/installcd/Makefile: revision 1.1
distrib/acorn26/Makefile: revision 1.4
distrib/dreamcast/cdroms/installcd/Makefile: revision 1.1
distrib/alpha/Makefile: revision 1.22
distrib/dreamcast/Makefile: revision 1.2
Missed part of ticket #494 - distrib/i386/cdroms/Makefile.cdrom and
sys/arch/i386/conf/GENERIC:
Improve the use of makefs to build boot CDs, and make it truely MI:
- allow to specify the "instkernel" directory, and allow to put multiple
kernels on the image
- allow to specify the directory where the image will be created
- only use bootxx_cd9660 if it exists
- search for second-stage boot as usr/mdec/boot.${MACHINE} in addition to
usr/mdec/boot
- make 'installboot -e' optional
- use target 'release' or 'iso_image' depending on ${CDRELEASE}
- call some MD targets, which will eventually complete the file list or
make the image bootable
For the benefit of modern hardware, enable ACPI by default in INSTALL and
GENERIC kernels. If ACPI is an issue on your hardware, 'boot -c' and
'disable acpi' should be a workaround. ACPI-enabled kernels works fine
on pre-acpi hardware.
for amd64:
- add ACPI to INSTALL and GENERIC, remove the *_ACPI config files.
- get rid of the bootfloppy-big.fs boot image, and got to a 3-floppy boot
image
for i386:
- introduce INSTALL_LARGE which has ACPI and some devices with big firmware
- move some devices from INSTALL to INSTALL_LARGE
- Boot floppies still use INSTALL, and bootfloppy-big.fs is still there
(for thoses who want to build el-torito floppy emulation boot CD) and use
INSTALL.
For both, drop the 'iso-image' code in etc/ to make the iso bootable, we'll
use something else to build bootable CDs.
Add an iso_image target (iso-image as a target name doesn't play well with
bsd.subdirs.mk) in distrib/makefile, which builds an iso image for $MACHINE
with binary sets, stored in ${RELEASEDIR}/iso. The image is bootable for:
alpha, amd64, cats, i386, pmax, sgimips, sparc, sparc64, sun3, vax.
mac68k/macppc no there yet because of missing feature in makefs.
call iso_image in distrib/ for iso-image in the top Makefile.
Use the new common/Makefile.bootcd to make i386 and amd64 bootable ISO
images. amd64 gets a single kernel; i386 images gets 3 kernels:
- netbsd, copy from netbsd-INSTALL_LARGE.gz, loaded by default
- nbsd-l, copy from netbsd-INSTALL_LAPTOP.gz
- nbsd-i, copy from netbsd-INSTALL.gz for those who want the traditionnal
non-ACPI kernel
- drop the bootcd-laptop image
both gets an installcd image, which is the same as bootcd but with the
binary sets in addition to kernels.
Make iso-image do nothing for all but mac68k, which still
relies on mkisofs to create bootable ISO image. macppc should also be there,
but it seems the code to make an iso bootable never got added in etc.macppc/
Fix typo in subdir name.
Revert local changes that went in accidentally with the "add ACPI" commit.
Note ACPI by default in i386/amd64, and the iso-image changes.
Fix SUBDIR in previous
Remove duplicate ACPIVERBOSE and ACPI_SCANPCI; pointed out by Nicolas Joly.
Correct typo: the directory is named cdroms, not cdrom.
Use nblaptop and nbnoacpi for the alternative kernel names; as suggected by
Alan Barrett. While there factor out the kernels in Makefile.cdrom.
Revision 1.816: download - view: text, markup, annotated - select for diffs
Sat Mar 10 10:54:53 2007 UTC (18 years, 1 month ago) by bouyer
Branches: MAIN
Branch point for: vmlocking,
mjf-ufs-trans
Diff to: previous 1.815: preferred, colored
Changes since revision 1.815: +3 -3
lines
Comment out 'fdc* at acpi?' (it's likely that systems not supporting
fdc0 at isa? don't have a fdc at all). Because of the 'fdc0 at isa?', on
systems supporting ACPI the floppy controller would attach as fdc1. as fd(4)
looks for its type in nvram using the floppy controller index, it's looking for
the wrong controller and the default density isn't set (so /dev/fd0a doens't
work).
Problem analyzed by John Nemeth, thanks !
Revision 1.815: download - view: text, markup, annotated - select for diffs
Thu Mar 8 15:16:04 2007 UTC (18 years, 1 month ago) by njoly
Branches: MAIN
Diff to: previous 1.814: preferred, colored
Changes since revision 1.814: +3 -2
lines
Add hpet support to i386/amd64 kernels.
- `hpet* at acpi?' to kernels that already support ACPI.
- `hpet* at amdpcib?' (commented out) to amd64 GENERIC.
Revision 1.814: download - view: text, markup, annotated - select for diffs
Wed Mar 7 22:23:14 2007 UTC (18 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.813: preferred, colored
Changes since revision 1.813: +4 -6
lines
Remove duplicate ACPIVERBOSE and ACPI_SCANPCI; pointed out by Nicolas Joly.
Revision 1.813: download - view: text, markup, annotated - select for diffs
Tue Mar 6 21:47:46 2007 UTC (18 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.812: preferred, colored
Changes since revision 1.812: +27 -25
lines
For the benefit of modern hardware, enable ACPI by default in INSTALL and
GENERIC kernels. If ACPI is an issue on your hardware, 'boot -c' and
'disable acpi' should be a workaround. ACPI-enabled kernels works fine
on pre-acpi hardware.
for amd64:
- add ACPI to INSTALL and GENERIC, remove the *_ACPI config files.
- get rid of the bootfloppy-big.fs boot image, and got to a 3-floppy boot
image
for i386:
- introduce INSTALL_LARGE which has ACPI and some devices with big firmware
- move some devices from INSTALL to INSTALL_LARGE
- Boot floppies still use INSTALL, and bootfloppy-big.fs is still there
(for thoses who want to build el-torito floppy emulation boot CD) and use
INSTALL.
For both, drop the 'iso-image' code in etc/ to make the iso bootable, we'll
use something else to build bootable CDs.
Revision 1.812: download - view: text, markup, annotated - select for diffs
Tue Mar 6 11:28:46 2007 UTC (18 years, 1 month ago) by dillo
Branches: MAIN
Diff to: previous 1.811: preferred, colored
Changes since revision 1.811: +3 -3
lines
Complete rename of hfsp to hfs, requested by thorpej.
Revision 1.811: download - view: text, markup, annotated - select for diffs
Mon Mar 5 23:30:18 2007 UTC (18 years, 1 month ago) by dillo
Branches: MAIN
Diff to: previous 1.810: preferred, colored
Changes since revision 1.810: +3 -2
lines
Add file-system HFSP (commented out) to GENERIC kernels of ports
on which Mac OS runs.
Revision 1.661.2.18: download - view: text, markup, annotated - select for diffs
Sat Mar 3 23:30:21 2007 UTC (18 years, 1 month ago) by bouyer
Branches: netbsd-3
Diff to: previous 1.661.2.17: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.17: +4 -2
lines
Pull up following revision(s) (requested by tsutsui in ticket #1673):
distrib/sets/lists/man/mi 1.844, 1.871
share/man/man4/Makefile 1.372, 1.379 via patch
share/man/man4/re.4 1.8, 1.9, 1.11, 1.12
share/man/man4/rgephy.4 1.1
share/man/man4/rlphy.4 1.1, 1.2
sys/arch/amd64/conf/GENERIC 1.79, 1.89
sys/arch/amd64/conf/INSTALL 1.45, 1.49
sys/arch/i386/conf/GENERIC 1.717, 1.747
sys/arch/i386/conf/GENERIC_LAPTOP 1.164
sys/arch/i386/conf/INSTALL 1.277, 1.283
sys/arch/i386/conf/INSTALL_LAPTOP 1.96, 1.98
sys/arch/i386/conf/XEN2_DOM0 1.22 via patch
sys/arch/macppc/conf/GENERIC 1.220, 1.246
sys/arch/macppc/conf/INSTALL 1.96, 1.100
sys/dev/cardbus/if_re_cardbus.c 1.10
sys/dev/cardbus/if_rtk_cardbus.c 1.29-1.31
sys/dev/ic/rtl8169.c 1.14, 1.20, 1.24, 1.25, 1.28-1.61, 1.63, 1.64-1.81 via patch
sys/dev/ic/rtl81x9.c 1.52, 1.54-1.63, 1.65, 1.67-1.70
sys/dev/ic/rtl81x9reg.h 1.15-1.26
sys/dev/ic/rtl81x9var.h 1.19, 1.21-1.37
sys/dev/mii/files.mii 1.38
sys/dev/mii/miidevs 1.62, 1.64
sys/dev/mii/rgephy.c 1.10, 1.13-1.16
sys/dev/mii/rlphy.c 1.1, 1.6, 1.7, 1.11 via patch
sys/dev/pci/if_re_pci.c 1.13, 1.15-1.17, 1.19-1.23
sys/dev/pci/if_rtk_pci.c 1.25, 1.28, 1.29, 1.31
sys/dev/pci/pcidevs 1.851, 1.852
on re(4):
- improve stability (I believe ;-)
- add a workaround for hardware ip4csum-tx bug
- support newer chips (8169SB/SC, PCIe based 8168 etc.)
- fix 8139C+ support
- enable hardware VLAN
- misc bus_dma(9) fix (which makes re(4) work on mips ports)
on rtk(4):
- fix kern/31348
- fix possible panic on dreamcast
Revision 1.810: download - view: text, markup, annotated - select for diffs
Thu Mar 1 14:57:38 2007 UTC (18 years, 1 month ago) by kiyohara
Branches: MAIN
Diff to: previous 1.809: preferred, colored
Changes since revision 1.809: +4 -2
lines
Add btuart(4).
Revision 1.808.2.4: download - view: text, markup, annotated - select for diffs
Tue Feb 27 16:51:32 2007 UTC (18 years, 2 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.3: preferred, colored
Changes since revision 1.808.2.3: +5 -2
lines
- sync with head.
- move sched_changepri back to kern_synch.c as it doesn't know PPQ anymore.
Revision 1.683.2.3: download - view: text, markup, annotated - select for diffs
Mon Feb 26 09:06:50 2007 UTC (18 years, 2 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.2: preferred, colored
Changes since revision 1.683.2.2: +14 -6
lines
sync with head.
Revision 1.808.2.3: download - view: text, markup, annotated - select for diffs
Wed Feb 21 11:57:28 2007 UTC (18 years, 2 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.808.2.2: preferred, colored
Changes since revision 1.808.2.2: +2 -5
lines
define SCHED_4BSD in conf/std for now.
Revision 1.808.2.2: download - view: text, markup, annotated - select for diffs
Tue Feb 20 21:48:43 2007 UTC (18 years, 2 months ago) by rmind
Branches: yamt-idlelwp
Diff to: previous 1.808.2.1: preferred, colored
Changes since revision 1.808.2.1: +1426 -0
lines
General Common Scheduler Framework (CSF) patch import. Huge thanks for
Daniel Sieger <dsieger at TechFak.Uni-Bielefeld de> for this work.
Short abstract: Split the dispatcher from the scheduler in order to
make the scheduler more modular. Introduce initial API for other
schedulers' implementations.
Discussed in tech-kern@
OK: yamt@, ad@
Note: further work will go soon.
Revision 1.809: download - view: text, markup, annotated - select for diffs
Sun Feb 18 18:05:52 2007 UTC (18 years, 2 months ago) by dsl
Branches: MAIN
CVS tags: ad-audiomp-base,
ad-audiomp
Diff to: previous 1.808: preferred, colored
Changes since revision 1.808: +5 -2
lines
Add commented out entries for SYSCALL_STATS and SYSCALL_TIMES
Revision 1.808.2.1
Sat Feb 17 00:28:23 2007 UTC (18 years, 2 months ago) by rmind
Branches: yamt-idlelwp
FILE REMOVED
Changes since revision 1.808: +0 -1423
lines
file GENERIC was added on branch yamt-idlelwp on 2007-02-20 21:48:43 +0000
Revision 1.808: download - view: text, markup, annotated - select for diffs
Sat Feb 17 00:28:23 2007 UTC (18 years, 2 months ago) by daniel
Branches: MAIN
Branch point for: yamt-idlelwp
Diff to: previous 1.807: preferred, colored
Changes since revision 1.807: +5 -2
lines
Add an opencrypto provider for the AES xcrypt instructions found on VIA
C5P and later cores (also known as 'ACE', which is part of the VIA PadLock
security engine). Ported from OpenBSD.
Reviewed on tech-crypto and port-i386, no objections to commiting this.
Revision 1.807: download - view: text, markup, annotated - select for diffs
Fri Feb 9 21:55:04 2007 UTC (18 years, 2 months ago) by ad
Branches: MAIN
CVS tags: post-newlock2-merge
Diff to: previous 1.806: preferred, colored
Changes since revision 1.806: +3 -2
lines
Merge newlock2 to head.
Revision 1.779.2.4: download - view: text, markup, annotated - select for diffs
Tue Feb 6 16:55:40 2007 UTC (18 years, 2 months ago) by ad
Branches: newlock2
Diff to: previous 1.779.2.3: preferred, colored; branchpoint 1.779: preferred, colored; next MAIN 1.780: preferred, colored
Changes since revision 1.779.2.3: +9 -3
lines
Fix merge errors.
Revision 1.779.2.3: download - view: text, markup, annotated - select for diffs
Tue Feb 6 15:04:17 2007 UTC (18 years, 2 months ago) by ad
Branches: newlock2
Diff to: previous 1.779.2.2: preferred, colored; branchpoint 1.779: preferred, colored
Changes since revision 1.779.2.2: +3 -2
lines
Add pseudo-device lockstat.
Revision 1.779.2.2: download - view: text, markup, annotated - select for diffs
Thu Feb 1 08:48:00 2007 UTC (18 years, 2 months ago) by ad
Branches: newlock2
Diff to: previous 1.779.2.1: preferred, colored; branchpoint 1.779: preferred, colored
Changes since revision 1.779.2.1: +5 -6
lines
Sync with head.
Revision 1.799.2.3: download - view: text, markup, annotated - select for diffs
Sun Jan 28 20:05:41 2007 UTC (18 years, 2 months ago) by tron
Branches: netbsd-4
Diff to: previous 1.799.2.2: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.2: +1 -1
lines
Pull up following revision(s) (requested by tls in ticket #386):
doc/CHANGES: revision 1.783 via patch
sys/arch/i386/conf/INSTALL_TINY: revision 1.109
sys/arch/i386/conf/INSTALL_XEN2_DOMU: revision 1.11
sys/arch/i386/conf/INSTALL_SMALL: revision 1.132
sys/arch/i386/conf/GENERIC: revision 1.806
sys/arch/amd64/conf/GENERIC: revision 1.125
sys/arch/i386/conf/INSTALL: revision 1.303
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.220
sys/arch/i386/conf/GENERIC_TINY: revision 1.103
sys/arch/i386/conf/INSTALL_LAPTOP: revision 1.114
Remove option COMPAT_386BSD_MBRPART from default kernels. NetBSD has
not used partition ID 0x165 for many, many years, and the presence of
this option in INSTALL kernels can cause overwriting of existing FreeBSD
installations when sysinst writes back the disklabel. Those with very,
very old NetBSD installations may find that they must update their fdisk
partition tables to use partition ID 0x169 for their NetBSD partitions.
This seems like the best of a number of lousy choices for dealing with
this problem. Sysinst should perhaps grow code that asks whether an
existing 0x165 partition should be converted.
~
Revision 1.806: download - view: text, markup, annotated - select for diffs
Wed Jan 24 19:46:26 2007 UTC (18 years, 3 months ago) by tls
Branches: MAIN
CVS tags: newlock2-nbase,
newlock2-base
Diff to: previous 1.805: preferred, colored
Changes since revision 1.805: +3 -3
lines
Remove option COMPAT_386BSD_MBRPART from default kernels. NetBSD has
not used partition ID 0x165 for many, many years, and the presence of
this option in INSTALL kernels can cause overwriting of existing FreeBSD
installations when sysinst writes back the disklabel. Those with very,
very old NetBSD installations may find that they must update their fdisk
partition tables to use partition ID 0x169 for their NetBSD partitions.
This seems like the best of a number of lousy choices for dealing with
this problem. Sysinst should perhaps grow code that asks whether an
existing 0x165 partition should be converted.
~
Revision 1.805: download - view: text, markup, annotated - select for diffs
Sat Jan 20 18:48:17 2007 UTC (18 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.804: preferred, colored
Changes since revision 1.804: +4 -5
lines
viaenv(4) does not need anymore viapm.
Revision 1.804: download - view: text, markup, annotated - select for diffs
Thu Jan 11 05:36:29 2007 UTC (18 years, 3 months ago) by mouse
Branches: MAIN
Diff to: previous 1.803: preferred, colored
Changes since revision 1.803: +4 -2
lines
Hook srt into the rest of the kernel build machinery, so it works to
just uncomment the pseudo-device line (which arguably should go into
other ports' GENERICs too, and at some point may).
OKed by perry.
Revision 1.661.2.17: download - view: text, markup, annotated - select for diffs
Mon Jan 8 16:36:20 2007 UTC (18 years, 3 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.661.2.16: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.16: +3 -0
lines
Pull up following revision(s) (requested by bouyer in ticket #1621):
sys/arch/i386/conf/GENERIC: revision 1.787 via patch
share/man/man4/Makefile: revision 1.407 via patch
distrib/sets/lists/man/mi: revision 1.936 via patch
share/man/man4/ipmi.4: revision 1.1 via patch
sys/arch/i386/i386/bios32.c: revision 1.11 via patch
sys/dev/DEVNAMES: revision 1.221 via patch
sys/arch/x86/x86/ipmi.c: revision 1.1 via patch
sys/arch/i386/i386/mainbus.c: revision 1.65 via patch
sys/arch/x86/include/smbiosvar.h: revision 1.1 via patch
sys/arch/x86/include/ipmivar.h: revision 1.1 via patch
sys/arch/x86/conf/files.x86: revision 1.20 via patch
sys/arch/i386/conf/files.i386: revision 1.293 via patch
Add ipmi(4) driver, from OpenBSD. This requires SMBios support, so add
SMBios detection and mapping to bios32.c, also from OpenBSD (for now this
is only compiled in if ipmi(4) is configured). The sensors and watchdog are
accessible though envsys(4).
Works on i386; some work is needed on amd64 to access the BIOS. It would
eventually work on Xen if the SMBios is accessible (to be tested).
Add manpage for new ipmi driver.
Claim ipmi.
Revision 1.683.2.2: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:46:04 2006 UTC (18 years, 3 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683.2.1: preferred, colored
Changes since revision 1.683.2.1: +64 -35
lines
sync with head.
Revision 1.661.2.16: download - view: text, markup, annotated - select for diffs
Sat Dec 23 16:43:18 2006 UTC (18 years, 4 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.661.2.15: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.15: +1 -0
lines
Pull up following revision(s) (requested by bouyer in ticket #1609):
sys/arch/i386/conf/INSTALL: revision 1.298
sys/arch/i386/conf/GENERIC: revision 1.802
sys/dev/pci/files.pci: revision 1.274
sys/arch/amd64/conf/GENERIC: revision 1.122
sys/dev/pci/mfi_pci.c: revision 1.1 via patch
distrib/sets/lists/man/mi: revision 1.958
sys/arch/amd64/conf/INSTALL: revision 1.61
sys/dev/ic/mfireg.h: revision 1.1
share/man/man4/Makefile: revision 1.416 via patch
sys/dev/ic/mfi.c: revision 1.1
sys/arch/i386/conf/XEN2_DOM0: revision 1.19
sys/dev/ic/mfivar.h: revision 1.1
sys/conf/files: revision 1.821
share/man/man4/mfi.4: revision 1.1
share/man/man4/mfi.4: revision 1.2
sys/dev/pci/pcidevs via patch
Add mfi(4), a driver for LSI Logic & Dell MegaRAID SAS RAID controller.
Ported from OpenBSD, tested on i386 and amd64.
Punctuation issues.
Revision 1.661.2.15: download - view: text, markup, annotated - select for diffs
Sat Dec 23 14:43:45 2006 UTC (18 years, 4 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.661.2.14: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.14: +3 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #1608):
sys/arch/i386/conf/INSTALL: revision 1.299 via patch
sys/arch/i386/conf/XEN2_DOM0: revision 1.20 via patch
sys/arch/i386/conf/GENERIC: revision 1.803 via patch
sys/dev/pci/files.pci: revision 1.275 via patch
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.218 via patch
sys/arch/amd64/conf/GENERIC: revision 1.123 via patch
sys/dev/pci/if_bnx.c: revision 1.1 via patch
share/man/man4/bnx.4: revision 1.1-1.2 via patch
distrib/sets/lists/man/mi: revision 1.959 via patch
sys/arch/amd64/conf/INSTALL: revision 1.62 via patch
sys/dev/microcode/bnx/bnxfw.h: revision 1.1-1.2 via patch
sys/dev/pci/if_bnxreg.h: revision 1.1 via patch
share/man/man4/Makefile: revision 1.417 via patch
sys/arch/i386/conf/INSTALL_LAPTOP: revision 1.112 via patch
Add bnx(4), a driver for Broadcom NetXtreme II 10/100/1000 Ethernet device.
Ported from OpenBSD by cube@, with some bus_dma fixes by me.
Tested on i386 and amd64.
Add a NetBSD RCS tag.
Nx -> Ox; remove trailing whitespace.
Revision 1.799.2.2: download - view: text, markup, annotated - select for diffs
Thu Dec 21 13:44:00 2006 UTC (18 years, 4 months ago) by tron
Branches: netbsd-4
Diff to: previous 1.799.2.1: preferred, colored; branchpoint 1.799: preferred, colored
Changes since revision 1.799.2.1: +1 -0
lines
Pull up following revision(s) (requested by bouyer in ticket #287):
sys/arch/i386/conf/INSTALL: revision 1.299
sys/arch/i386/conf/XEN2_DOM0: revision 1.20
sys/arch/i386/conf/GENERIC: revision 1.803
sys/dev/pci/files.pci: revision 1.275
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.218
sys/arch/amd64/conf/GENERIC: revision 1.123
sys/dev/pci/if_bnx.c: revision 1.1
share/man/man4/bnx.4: revision 1.1
distrib/sets/lists/man/mi: revision 1.959
sys/arch/amd64/conf/INSTALL: revision 1.62
sys/dev/microcode/bnx/bnxfw.h: revision 1.1
sys/arch/i386/conf/ALL: revision 1.76
sys/dev/pci/if_bnxreg.h: revision 1.1
share/man/man4/Makefile: revision 1.417
sys/arch/i386/conf/INSTALL_LAPTOP: revision 1.112
Add bnx(4), a driver for Broadcom NetXtreme II 10/100/1000 Ethernet device.
Ported from OpenBSD by cube@, with some bus_dma fixes by me.
Tested on i386 and amd64.
Revision 1.799.2.1: download - view: text, markup, annotated - select for diffs
Thu Dec 21 12:46:20 2006 UTC (18 years, 4 months ago) by tron
Branches: netbsd-4
Diff to: previous 1.799: preferred, colored
Changes since revision 1.799: +3 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #286):
sys/arch/i386/conf/INSTALL: revision 1.298
sys/arch/i386/conf/GENERIC: revision 1.802
sys/dev/pci/files.pci: revision 1.274
sys/arch/amd64/conf/GENERIC: revision 1.122
sys/dev/pci/mfi_pci.c: revision 1.1
distrib/sets/lists/man/mi: revision 1.958
sys/arch/amd64/conf/INSTALL: revision 1.61
sys/arch/i386/conf/ALL: revision 1.75
sys/dev/ic/mfireg.h: revision 1.1
share/man/man4/Makefile: revision 1.416
sys/dev/ic/mfi.c: revision 1.1
sys/arch/i386/conf/XEN2_DOM0: revision 1.19
sys/dev/ic/mfivar.h: revision 1.1
sys/conf/files: revision 1.821
share/man/man4/mfi.4: revision 1.1
Add mfi(4), a driver for LSI Logic & Dell MegaRAID SAS RAID controller.
Ported from OpenBSD, tested on i386 and amd64.
Revision 1.781.2.3: download - view: text, markup, annotated - select for diffs
Mon Dec 18 11:42:04 2006 UTC (18 years, 4 months ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.781.2.2: preferred, colored; branchpoint 1.781: preferred, colored; next MAIN 1.782: preferred, colored
Changes since revision 1.781.2.2: +4 -3
lines
sync with head.
Revision 1.803: download - view: text, markup, annotated - select for diffs
Sun Dec 17 23:02:06 2006 UTC (18 years, 4 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-splraiseipl-base5,
yamt-splraiseipl-base4
Diff to: previous 1.802: preferred, colored
Changes since revision 1.802: +3 -2
lines
Add bnx(4), a driver for Broadcom NetXtreme II 10/100/1000 Ethernet device.
Ported from OpenBSD by cube@, with some bus_dma fixes by me.
Tested on i386 and amd64.
Revision 1.802: download - view: text, markup, annotated - select for diffs
Sun Dec 17 22:57:15 2006 UTC (18 years, 4 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.801: preferred, colored
Changes since revision 1.801: +3 -2
lines
Add mfi(4), a driver for LSI Logic & Dell MegaRAID SAS RAID controller.
Ported from OpenBSD, tested on i386 and amd64.
Revision 1.801: download - view: text, markup, annotated - select for diffs
Mon Dec 11 15:24:28 2006 UTC (18 years, 4 months ago) by yamt
Branches: MAIN
Diff to: previous 1.800: preferred, colored
Changes since revision 1.800: +2 -3
lines
- remove a static configuration, FILEASSOC_NHOOKS. do it dynamically instead.
- make fileassoc_t a pointer and remove FILEASSOC_INVAL.
- clean up kern_fileassoc.c. unify duplicated code.
- unexport fileassoc_init using RUN_ONCE(9).
- plug memory leaks in fileassoc_file_delete and fileassoc_table_delete.
- always call callbacks, regardless of the value of the associated data.
ok'ed by elad.
Revision 1.781.2.2: download - view: text, markup, annotated - select for diffs
Sun Dec 10 07:16:02 2006 UTC (18 years, 4 months ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.781.2.1: preferred, colored; branchpoint 1.781: preferred, colored
Changes since revision 1.781.2.1: +22 -18
lines
sync with head.
Revision 1.800: download - view: text, markup, annotated - select for diffs
Mon Dec 4 01:32:37 2006 UTC (18 years, 4 months ago) by dyoung
Branches: MAIN
CVS tags: yamt-splraiseipl-base3
Diff to: previous 1.799: preferred, colored
Changes since revision 1.799: +3 -2
lines
Add rtw at pci to the GENERIC kernel.
Revision 1.799: download - view: text, markup, annotated - select for diffs
Thu Nov 30 21:01:16 2006 UTC (18 years, 4 months ago) by bouyer
Branches: MAIN
CVS tags: netbsd-4-base
Branch point for: netbsd-4
Diff to: previous 1.798: preferred, colored
Changes since revision 1.798: +3 -2
lines
Add ahcisata(4), a driver for AHCI 1.0 and 1.1 controllers. Tested on the sata
ports of a Intel 63xxESB chipset. Does not support NCQ yet.
Revision 1.798: download - view: text, markup, annotated - select for diffs
Tue Nov 28 16:15:36 2006 UTC (18 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.797: preferred, colored
Changes since revision 1.797: +3 -3
lines
s/COPTS/CPUFLAGS/
s/-O2 //
Revision 1.779.2.1: download - view: text, markup, annotated - select for diffs
Sat Nov 18 21:29:18 2006 UTC (18 years, 5 months ago) by ad
Branches: newlock2
Diff to: previous 1.779: preferred, colored
Changes since revision 1.779: +36 -23
lines
Sync with head.
Revision 1.797: download - view: text, markup, annotated - select for diffs
Fri Nov 17 22:18:22 2006 UTC (18 years, 5 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.796: preferred, colored
Changes since revision 1.796: +3 -3
lines
COPTS should have -O2 otherwise we'll get no generic optimization.
XXX: I prefer CPUFLAGS, but there isn't any conclusion yet.
Revision 1.796: download - view: text, markup, annotated - select for diffs
Sat Nov 11 19:00:16 2006 UTC (18 years, 5 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.795: preferred, colored
Changes since revision 1.795: +3 -3
lines
Enable TMPFS by default. OK'ed by core@.
I'm leaving those platforms with few users and those whose machines are
not very powerful untouched per uwe@'s suggestion. The port masters or
the real users of those ports are better suited to make the decision of
enabling it.
Revision 1.795: download - view: text, markup, annotated - select for diffs
Sat Nov 11 18:47:10 2006 UTC (18 years, 5 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.794: preferred, colored
Changes since revision 1.794: +3 -3
lines
Remove tmpfs's experimental status. OK'ed by core@.
Revision 1.794: download - view: text, markup, annotated - select for diffs
Wed Nov 1 19:33:41 2006 UTC (18 years, 5 months ago) by tls
Branches: MAIN
Diff to: previous 1.793: preferred, colored
Changes since revision 1.793: +7 -4
lines
Change GENERIC, GENERIC.MP, GENERIC.MPACPI, GENERIC_LAPTOP, INSTALL,
INSTALL.MP, INSTALL_LAPTOP, and DISKLESS kernels so that they are
smaller and faster by removing support for actual i386 CPUs (which
lack write protection in supervisor mode, which requires a costly
workaround) and math coprocessor emulation. Coprocessor emulation
is retained in the LAPTOP kernels, but not in the others. Where
it is known that a configuration cannot be run with particular CPUs
(i486 in *MP kernels) remove that support as well. Compile all
kernels with appropriate architecture and tuning flags (reduces
size, makes things faster). Those requiring support for machines
with i386 CPU or lacking coprocessor can use the *SMALL or *TINY
kernels.
Revision 1.793: download - view: text, markup, annotated - select for diffs
Tue Oct 31 22:21:16 2006 UTC (18 years, 5 months ago) by joerg
Branches: MAIN
Diff to: previous 1.792: preferred, colored
Changes since revision 1.792: +3 -2
lines
Add rum(4) for newer USB Ralink devices. Obtained from OpenBSD.
Special thanks to Sepherosa Ziehau for helping debugging USB issues.
Hook up rum(4) for i386 config files.
Revision 1.792: download - view: text, markup, annotated - select for diffs
Fri Oct 27 17:37:44 2006 UTC (18 years, 6 months ago) by perry
Branches: MAIN
Diff to: previous 1.791: preferred, colored
Changes since revision 1.791: +6 -6
lines
fix a bit of trailing whitespace, and do the space tab dance for a
couple of options so that they work well when commented out
Revision 1.791: download - view: text, markup, annotated - select for diffs
Thu Oct 26 11:48:38 2006 UTC (18 years, 6 months ago) by elad
Branches: MAIN
Diff to: previous 1.790: preferred, colored
Changes since revision 1.790: +10 -10
lines
Compile in Veriexec by default on some popular archs (amd64, i386, sparc64)
so it's more accessible and less of a hassle to put to use. Also enable
fileassoc(9) by default as a result, which for itself may open the door for
a lot of cool stuff. (stay tuned. :)
I recommend port masters of other archs to consider doing the same.
Personally I don't know which ports are considered more of a legacy than
in-production, so I'm leaving it for someone else for now...
No objections on tech-kern.
Revision 1.790: download - view: text, markup, annotated - select for diffs
Wed Oct 25 13:56:15 2006 UTC (18 years, 6 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.789: preferred, colored
Changes since revision 1.789: +2 -3
lines
Remove the usage of Multiboot's "a.out kludge" to tell the boot loader to
reserve some more space for the BSS section than the binary says. This
trick was used to leave room after the kernel's image to copy the symbol
table following the format required by ksyms_init. (It was also used to
workaround a bug in the physical address fields of the binary, but this has
been long fixed.) Yes, the MULTIBOOT_SYMTAB_SPACE option goes away; yay!
Instead, copy the required data after the kernel in a way that avoids having
to reserve space and use the new ksyms_init_explicit function to avoid the
need to construct a minimal ELF image.
Fixes ksyms when using an "unpatched" GRUB (one that does not contain the
fix to honour the "a.out kludge" for ELF images, even when present) -- i.e.
ddb and lkms. As a side effect, the new code is much clearer to read and
digest.
Closes PR port-i386/32865.
Revision 1.789: download - view: text, markup, annotated - select for diffs
Sun Oct 22 16:26:27 2006 UTC (18 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.788: preferred, colored
Changes since revision 1.788: +2 -3
lines
Don't add ikphy twice; pointed out by Patrick Welche
Revision 1.781.2.1: download - view: text, markup, annotated - select for diffs
Sun Oct 22 06:04:43 2006 UTC (18 years, 6 months ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.781: preferred, colored
Changes since revision 1.781: +12 -4
lines
sync with head
Revision 1.788: download - view: text, markup, annotated - select for diffs
Sat Oct 21 14:10:33 2006 UTC (18 years, 6 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-splraiseipl-base2
Diff to: previous 1.787: preferred, colored
Changes since revision 1.787: +4 -2
lines
Add support for the Intel 80003 Gigabit Ethernet controller (found e.g. in
newer server chipsets) to wm(4), from the FreeBSD em(4) driver.
While there, add a few other Intel Ethernet controller that should work as
is.
Properly update the RX error and TX collision counters.
Add ikphy(4), a driver for the Intel i82563 Kumeran 10/100/1000 Ethernet PHYs
Revision 1.787: download - view: text, markup, annotated - select for diffs
Sun Oct 1 18:37:54 2006 UTC (18 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.786: preferred, colored
Changes since revision 1.786: +5 -2
lines
Add ipmi(4) driver, from OpenBSD. This requires SMBios support, so add
SMBios detection and mapping to bios32.c, also from OpenBSD (for now this
is only compiled in if ipmi(4) is configured). The sensors and watchdog are
accessible though envsys(4).
Works on i386; some work is needed on amd64 to access the BIOS. It would
eventually work on Xen if the SMBios is accessible (to be tested).
Revision 1.786: download - view: text, markup, annotated - select for diffs
Sun Oct 1 09:53:08 2006 UTC (18 years, 6 months ago) by itohy
Branches: MAIN
Diff to: previous 1.785: preferred, colored
Changes since revision 1.785: +3 -3
lines
Use ATA timing, instead of busmaster wait, for adding waits.
Use default wait value 0x01.
Revision 1.785: download - view: text, markup, annotated - select for diffs
Wed Sep 27 23:58:50 2006 UTC (18 years, 7 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.784: preferred, colored
Changes since revision 1.784: +3 -2
lines
Add (commented out) option WSKBD_USONLY
Revision 1.784: download - view: text, markup, annotated - select for diffs
Tue Sep 26 14:30:26 2006 UTC (18 years, 7 months ago) by elad
Branches: MAIN
Diff to: previous 1.783: preferred, colored
Changes since revision 1.783: +3 -3
lines
Oops! forgot "options" in previous commit. Pointed out by freza@, thanks!
Revision 1.783: download - view: text, markup, annotated - select for diffs
Tue Sep 26 14:08:19 2006 UTC (18 years, 7 months ago) by elad
Branches: MAIN
Diff to: previous 1.782: preferred, colored
Changes since revision 1.782: +4 -2
lines
Make PaX mprotect(2) restrictions more accessible.
On amd64, sparc64, i386, and alpha, they will be compiled in and disabled
by default. That means that to use them you either enable the "global"
knob with sysctl, or use paxctl(1) to enable it on a per-program basis.
On sparc and macppc just include a commentd out line in the GENERIC kernel.
Revision 1.772.2.4: download - view: text, markup, annotated - select for diffs
Sat Sep 23 23:46:02 2006 UTC (18 years, 7 months ago) by snj
Branches: abandoned-netbsd-4
Diff to: previous 1.772.2.3: preferred, colored; branchpoint 1.772: preferred, colored; next MAIN 1.773: preferred, colored
Changes since revision 1.772.2.3: +1 -1
lines
Pull up following revision(s) (requested by jmmv in ticket #180):
sys/arch/i386/conf/XEN2_DOM0: revision 1.8
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.207
sys/arch/i386/conf/GENERIC: revision 1.782
Fix definition of some options to be 'options<space><tab>' for consistency.
Revision 1.782: download - view: text, markup, annotated - select for diffs
Tue Sep 19 13:58:55 2006 UTC (18 years, 7 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.781: preferred, colored
Changes since revision 1.781: +3 -3
lines
Fix definition of some options to be 'options<space><tab>' for consistency.
Revision 1.772.2.3: download - view: text, markup, annotated - select for diffs
Fri Sep 15 11:58:46 2006 UTC (18 years, 7 months ago) by tron
Branches: abandoned-netbsd-4
Diff to: previous 1.772.2.2: preferred, colored; branchpoint 1.772: preferred, colored
Changes since revision 1.772.2.2: +4 -2
lines
Pull up following revision(s) (requested by riz in ticket #153):
sys/arch/amd64/conf/INSTALL: revision 1.56
sys/arch/amd64/conf/GENERIC: revision 1.107
sys/arch/i386/conf/XEN2_DOM0: revision 1.7
sys/arch/i386/conf/INSTALL: revision 1.289
sys/arch/i386/conf/GENERIC: revision 1.780
Add msk and mskc.
Revision 1.772.2.2: download - view: text, markup, annotated - select for diffs
Thu Sep 14 21:16:33 2006 UTC (18 years, 7 months ago) by riz
Branches: abandoned-netbsd-4
Diff to: previous 1.772.2.1: preferred, colored; branchpoint 1.772: preferred, colored
Changes since revision 1.772.2.1: +7 -6
lines
Pull up following revision(s) (requested by plunky in ticket #161):
sys/dev/bluetooth/btdev.h: revision 1.4
distrib/sets/lists/comp/mi: revision 1.922
usr.sbin/postinstall/postinstall: revision 1.25
sys/netbt/hci_unit.c: revision 1.3
sys/netbt/hci_ioctl.c: revision 1.4
usr.sbin/sdpd/profile.c: revision 1.2
usr.sbin/btdevctl/btdevctl.c: revision 1.2
share/man/man4/Makefile: revision 1.405
distrib/sets/lists/man/mi: revision 1.930
distrib/sets/lists/etc/mi: revision 1.176
usr.sbin/sdpd/profile.c: revision 1.3
usr.sbin/btdevctl/btdevctl.c: revision 1.3
etc/MAKEDEV.tmpl: revision 1.62
distrib/sets/lists/base/mi: revision 1.650
usr.sbin/btdevctl/btdevctl.h: revision 1.2
usr.bin/sdpquery/sdpquery.1: revision 1.4
sys/netbt/rfcomm_session.c: revision 1.2
usr.sbin/btdevctl/btdevctl.8: revision 1.3
usr.bin/sdpquery/search.c: revision 1.2
usr.sbin/sdpd/Makefile: revision 1.2
sys/dev/bluetooth/Makefile: revision 1.3
usr.sbin/btdevctl/cfg.c: file removal
sys/netbt/files.netbt: revision 1.4
usr.sbin/btdevctl/sdp.c: revision 1.1
sys/dev/bluetooth/bthidev.c: revision 1.3
etc/bluetooth/Makefile: revision 1.3
sys/dev/pcmcia/files.pcmcia: revision 1.51
sys/dev/bluetooth/bthidev.c: revision 1.4
sys/dev/bluetooth/bthidev.h: revision 1.3
usr.sbin/btdevctl/dev.c: file removal
sys/dev/bluetooth/files.bluetooth: revision 1.10
sys/arch/i386/conf/GENERIC: revision 1.777
share/man/man4/ubt.4: revision 1.6
share/man/man4/bthub.4: revision 1.3
sys/netbt/hci.h: revision 1.5
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.202
lib/libsdp/sdp.h: revision 1.2
usr.sbin/btdevctl/print.c: revision 1.1
share/man/man4/bthidev.4: revision 1.5
share/man/man4/btdev.4: file removal
usr.sbin/btdevctl/print.c: revision 1.2
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.205
usr.sbin/btdevctl/Makefile: revision 1.2
sys/dev/usb/files.usb: revision 1.70
sys/netbt/l2cap_signal.c: revision 1.2
sys/netbt/hci_link.c: revision 1.4
sys/dev/bluetooth/bthub.c: revision 1.3
share/man/man4/btsco.4: revision 1.5
sys/netbt/hci_link.c: revision 1.5
share/man/man4/btdev.4: revision 1.4
sys/dev/bluetooth/btkbd.c: revision 1.3
sys/dev/bluetooth/btdev.c: file removal
sys/netbt/hci_event.c: revision 1.2
sys/dev/bluetooth/btsco.h: revision 1.2
etc/mtree/special: revision 1.101
sys/dev/bluetooth/btsco.c: revision 1.3
sys/conf/majors: revision 1.27
usr.sbin/sdpd/hf.c: revision 1.1
sys/dev/bluetooth/btsco.c: revision 1.4
share/man/man5/rc.conf.5: revision 1.107
sys/dev/bluetooth/btdev.c: revision 1.2
etc/rc.d/btdevctl: revision 1.2
usr.sbin/btdevctl/db.c: revision 1.1
etc/rc.d/btdevctl: revision 1.3
etc/bluetooth/btdevctl.conf: revision 1.1
usr.sbin/btdevctl/hid.c: file removal
sys/arch/i386/conf/GENERIC: revision 1.781
sys/dev/bluetooth/btdev.h: revision 1.3
Make btdev default count explicit
Fix typo in variable name
update to bluetooth device attachment:
remove pseudo-device btdev(4) and inherent limitations
add bthub(4) which autoconfigures at bluetooth controllers as they
are enabled. bluetooth devices now attach here.
btdevctl(8) and its cache is updated to handle new semantics
etc/rc.d/btdevctl is updated to configure devices from a list
in /etc/bluetooth/btdevctl.conf
also include service name in dictionary being sent to kernel.
(this is not used just yet, but it might be in the future and it will
be easier if we dont have to provide code to handle its absence)
clarify the CAVEAT section somewhat
Add service discovery support for the Handsfree profile
Replace static 'FreeBSD' string with operating system name gleaned
from uname(3)
Halt the callout on detach
btsco.c:
- sco_getopt(..., SO_SCO_MTU, ...) expects the address of a uint16_t,
not an int. So change sc_mtu's type to uint16_t.
- Try a little harder to ensure btsco_round_blocksize() does not
return zero. Prevents a subsequent panic in audio_init_ringbuffer().
from scw@
Endian issues:
hci_event.c:
- Convert memo->response.clock_offset to host-endian.
hci_ioctl.c:
- printf format tweak (size_t)
hci_link.c:
- Convert memo->response.clock_offset from host-endian.
- Tweak a DIAGNOSTIC message.
l2cap_signal.c:
- In l2cap_recv_config_req(), rp->scid is little-endian so make sure
we convert from host-endian.
from scw@
hci_link.c:
- In hci_link_free(), do not unlink items from a LIST queue within
a LIST_FOREACH() iterator.
rfcomm_session.c:
- In rfcomm_session_recv_mcc_nsc(), do not unlink items from a LIST
queue within a LIST_FOREACH() iterator.
from scw@
guard against a possible situation where the list of l2cap channels is changed
when the bluetooth code is not expecting it to be. During a disconnect, we can
detach the channel that is being disconnected, but its not really safe to detach
any others.
Print explicit 64-bit types using the format macros from int_fmtio.h.
Unbreaks the build for our LP64 ports, where "long long" typically is
not 64 bits.
Revision 1.731.2.8: download - view: text, markup, annotated - select for diffs
Thu Sep 14 12:31:10 2006 UTC (18 years, 7 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.7: preferred, colored; branchpoint 1.731: preferred, colored; next MAIN 1.732: preferred, colored
Changes since revision 1.731.2.7: +12 -6
lines
sync with head.
Revision 1.781: download - view: text, markup, annotated - select for diffs
Sun Sep 10 15:45:56 2006 UTC (18 years, 7 months ago) by plunky
Branches: MAIN
CVS tags: yamt-splraiseipl-base,
yamt-pdpolicy-base9
Branch point for: yamt-splraiseipl
Diff to: previous 1.780: preferred, colored
Changes since revision 1.780: +7 -6
lines
update to bluetooth device attachment:
remove pseudo-device btdev(4) and inherent limitations
add bthub(4) which autoconfigures at bluetooth controllers as they
are enabled. bluetooth devices now attach here.
btdevctl(8) and its cache is updated to handle new semantics
etc/rc.d/btdevctl is updated to configure devices from a list
in /etc/bluetooth/btdevctl.conf
Revision 1.780: download - view: text, markup, annotated - select for diffs
Sun Sep 10 02:28:33 2006 UTC (18 years, 7 months ago) by riz
Branches: MAIN
Diff to: previous 1.779: preferred, colored
Changes since revision 1.779: +4 -2
lines
Add msk and mskc.
Revision 1.721.2.1: download - view: text, markup, annotated - select for diffs
Sat Sep 9 02:39:53 2006 UTC (18 years, 7 months ago) by rpaulo
Branches: rpaulo-netinet-merge-pcb
Diff to: previous 1.721: preferred, colored; next MAIN 1.722: preferred, colored
Changes since revision 1.721: +127 -42
lines
sync with head
Revision 1.779: download - view: text, markup, annotated - select for diffs
Thu Sep 7 14:23:44 2006 UTC (18 years, 7 months ago) by itohy
Branches: MAIN
CVS tags: rpaulo-netinet-merge-pcb-base
Branch point for: newlock2
Diff to: previous 1.778: preferred, colored
Changes since revision 1.778: +5 -2
lines
Add njata* at cardbus?
Revision 1.731.2.7: download - view: text, markup, annotated - select for diffs
Sun Sep 3 15:22:58 2006 UTC (18 years, 7 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.6: preferred, colored; branchpoint 1.731: preferred, colored
Changes since revision 1.731.2.6: +10 -10
lines
sync with head.
Revision 1.778: download - view: text, markup, annotated - select for diffs
Sat Aug 26 20:26:45 2006 UTC (18 years, 8 months ago) by christos
Branches: MAIN
CVS tags: yamt-pdpolicy-base8
Diff to: previous 1.777: preferred, colored
Changes since revision 1.777: +3 -5
lines
PR/34283: Gene ENonymous: Add IPFILTER_LOOKUP to the default kernel options
Also remove CCITT,NS,NIP
Revision 1.777: download - view: text, markup, annotated - select for diffs
Sun Aug 20 07:06:57 2006 UTC (18 years, 8 months ago) by plunky
Branches: MAIN
Diff to: previous 1.776: preferred, colored
Changes since revision 1.776: +3 -3
lines
Make btdev default count explicit
Revision 1.772.2.1: download - view: text, markup, annotated - select for diffs
Mon Aug 14 13:41:26 2006 UTC (18 years, 8 months ago) by tron
Branches: abandoned-netbsd-4
Diff to: previous 1.772: preferred, colored
Changes since revision 1.772: +3 -3
lines
Pull up following revision(s) (requested by elad in ticket #17):
sys/arch/sparc/conf/KRUPS: revision 1.38
sys/arch/i386/conf/XEN2_DOMU: revision 1.2
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.197
sys/arch/sgimips/conf/GENERIC32_IP2x: revision 1.53
sys/arch/evbsh5/conf/SIMULATOR: revision 1.12
sys/arch/sparc/conf/MRCOFFEE: revision 1.17
sys/arch/next68k/conf/GENERIC: revision 1.104
sys/arch/i386/conf/VIRTUALPC: revision 1.44
sys/arch/ews4800mips/conf/GENERIC: revision 1.11
sys/arch/evbsh5/conf/CAYMAN: revision 1.23
sys/arch/arc/conf/GENERIC: revision 1.141
sys/arch/amd64/conf/GENERIC: revision 1.103
sys/arch/sun3/conf/GENERIC3X: revision 1.90
sys/arch/evbarm/conf/HDL_G: revision 1.3
sys/arch/sun2/conf/GENERIC: revision 1.57
sys/arch/news68k/conf/GENERIC_TINY: revision 1.51
sys/arch/evbppc/conf/EXPLORA451: revision 1.27
sys/arch/amiga/conf/GENERIC.in: revision 1.54
sys/arch/mac68k/conf/GENERIC: revision 1.174
sys/arch/acorn26/conf/GENERIC: revision 1.45
sys/arch/shark/conf/GENERIC: revision 1.64
sys/arch/cesfic/conf/GENERIC: revision 1.44
sys/arch/mvme68k/conf/GENERIC: revision 1.68
sys/arch/i386/conf/XEN2_DOM0: revision 1.4
sys/arch/atari/conf/GENERIC.in: revision 1.63
sys/arch/amiga/conf/GENERIC: revision 1.240
sys/arch/i386/conf/LAMB: revision 1.65
sys/arch/i386/conf/GENERIC: revision 1.773
sys/arch/acorn32/conf/EB7500ATX: revision 1.26
sys/arch/x68k/conf/GENERIC: revision 1.128
sys/arch/vax/conf/GENERIC: revision 1.153
sys/arch/atari/conf/ATARITT: revision 1.81
sys/arch/mipsco/conf/GENERIC: revision 1.60
sys/arch/cobalt/conf/GENERIC: revision 1.101
sys/arch/evbarm/conf/ARMADILLO9: revision 1.13
sys/arch/ofppc/conf/GENERIC: revision 1.93
sys/arch/atari/conf/MILAN-PCIIDE: revision 1.51
sys/arch/arc/conf/RPC44: revision 1.26
sys/arch/sparc64/conf/GENERIC: revision 1.59
sys/arch/i386/conf/XEN3_DOMU: revision 1.2
sys/arch/hp700/conf/GENERIC: revision 1.68
sys/arch/atari/conf/MILAN-ISAIDE: revision 1.47
sys/arch/macppc/conf/GENERIC: revision 1.231
sys/arch/dreamcast/conf/GENERIC: revision 1.72
sys/arch/news68k/conf/GENERIC: revision 1.80
sys/arch/hp300/conf/GENERIC: revision 1.133
sys/arch/mmeye/conf/GENERIC: revision 1.82
sys/arch/macppc/conf/MAMBO: revision 1.2
sys/arch/cats/conf/GENERIC: revision 1.107
sys/arch/atari/conf/FALCON: revision 1.79
sys/arch/acorn32/conf/GENERIC: revision 1.71
sys/arch/sparc/conf/GENERIC: revision 1.190
sys/arch/news68k/conf/LIBERO: revision 1.40
sys/arch/amiga/conf/DRACO: revision 1.114
sys/arch/cobalt/conf/INSTALL: revision 1.23
sys/arch/luna68k/conf/GENERIC: revision 1.73
sys/arch/bebox/conf/GENERIC: revision 1.100
sys/arch/pmax/conf/GENERIC: revision 1.147
sys/arch/amiga/conf/WSCONS: revision 1.52
sys/arch/macppc/conf/POWERMAC_G5: revision 1.2
sys/arch/alpha/conf/ALPHA: revision 1.218
sys/arch/sun3/conf/GENERIC: revision 1.133
sys/arch/prep/conf/GENERIC: revision 1.124
sys/arch/alpha/conf/GENERIC: revision 1.291
sys/arch/atari/conf/HADES: revision 1.71
sys/arch/newsmips/conf/GENERIC: revision 1.93
sys/arch/netwinder/conf/GENERIC: revision 1.82
sys/arch/hpcmips/conf/GENERIC: revision 1.190
sys/arch/amiga/conf/AMIGA: revision 1.98
sys/arch/sbmips/conf/GENERIC: revision 1.54
sys/arch/pc532/conf/GENERIC: revision 1.64
sys/arch/sgimips/conf/GENERIC32_IP3x: revision 1.53
Disable SYSTRACE by default on all kernels (discussed with core)
Revision 1.776: download - view: text, markup, annotated - select for diffs
Mon Aug 14 09:34:43 2006 UTC (18 years, 8 months ago) by itohy
Branches: MAIN
Diff to: previous 1.775: preferred, colored
Changes since revision 1.775: +5 -4
lines
ACPI frontend for Yamaha OPL3-SA[23].
Derived from PR kern/33991 by jasper at pointless dot net.
Revision 1.775: download - view: text, markup, annotated - select for diffs
Mon Aug 14 06:22:34 2006 UTC (18 years, 8 months ago) by skrll
Branches: MAIN
Diff to: previous 1.774: preferred, colored
Changes since revision 1.774: +3 -3
lines
s/adpater/adapter/
Prompted by PR/34195
Revision 1.774: download - view: text, markup, annotated - select for diffs
Sun Aug 13 02:27:32 2006 UTC (18 years, 8 months ago) by simonb
Branches: MAIN
Diff to: previous 1.773: preferred, colored
Changes since revision 1.773: +3 -2
lines
Add wpi@pci.
Revision 1.773: download - view: text, markup, annotated - select for diffs
Sat Aug 12 15:29:53 2006 UTC (18 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.772: preferred, colored
Changes since revision 1.772: +3 -3
lines
Disable SYSTRACE by default on all kernels (discussed with core)
Revision 1.731.2.6: download - view: text, markup, annotated - select for diffs
Fri Aug 11 15:41:53 2006 UTC (18 years, 8 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.5: preferred, colored; branchpoint 1.731: preferred, colored
Changes since revision 1.731.2.5: +28 -18
lines
sync with head
Revision 1.772: download - view: text, markup, annotated - select for diffs
Mon Aug 7 21:33:49 2006 UTC (18 years, 8 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-pdpolicy-base7,
abandoned-netbsd-4-base
Branch point for: abandoned-netbsd-4
Diff to: previous 1.771: preferred, colored
Changes since revision 1.771: +6 -3
lines
Enable POWERNOW_K8, now that it's working.
Revision 1.771: download - view: text, markup, annotated - select for diffs
Thu Aug 3 00:19:21 2006 UTC (18 years, 8 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.770: preferred, colored
Changes since revision 1.770: +3 -2
lines
Add commented-out "joy* at eap?" & point people at eap.4 before enabling.
Per discussion with drochner@
Revision 1.770: download - view: text, markup, annotated - select for diffs
Wed Aug 2 16:24:29 2006 UTC (18 years, 8 months ago) by reed
Branches: MAIN
Diff to: previous 1.769: preferred, colored
Changes since revision 1.769: +6 -6
lines
Fix comment, removed some periods at end of a couple comments (not all),
and alphabetize "ral" before "re".
This will make it easier to diff with GENERIC_LAPTOP.
No real changes.
Revision 1.769: download - view: text, markup, annotated - select for diffs
Mon Jul 31 23:29:54 2006 UTC (18 years, 8 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.768: preferred, colored
Changes since revision 1.768: +3 -2
lines
spc(4) can also attach to pcmcia(4), as was already in hpcmips/GENERIC
for quite some time. Add it to all systems that have pcmcia SCSI.
Pointed out by Björn Johannesson <rherdware@yahoo.com> in private mail,
OK'd by matt@
Revision 1.768: download - view: text, markup, annotated - select for diffs
Mon Jul 31 22:23:09 2006 UTC (18 years, 8 months ago) by wiz
Branches: MAIN
Diff to: previous 1.767: preferred, colored
Changes since revision 1.767: +4 -4
lines
Sort twa before twe.
Revision 1.661.2.14: download - view: text, markup, annotated - select for diffs
Mon Jul 31 12:35:22 2006 UTC (18 years, 8 months ago) by tron
Branches: netbsd-3
CVS tags: netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE
Branch point for: netbsd-3-1
Diff to: previous 1.661.2.13: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.13: +4 -2
lines
Apply patch (requested by bouyer in ticket #1441):
Pullup the twa(4) driver for the 3ware Apache RAID controllers.
Matching revisions in current:
share/man/man4/twa.4 1.1
sys/dev/pci/ld_twa.c 1.2
sys/dev/pci/twa.c 1.9
sys/dev/pci/twaio.h 1.3
sys/dev/pci/twareg.h 1.5
sys/dev/pci/twavar.h 1.5
Revision 1.767: download - view: text, markup, annotated - select for diffs
Sun Jul 30 17:53:50 2006 UTC (18 years, 8 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.766: preferred, colored
Changes since revision 1.766: +4 -2
lines
Add twa(4) and ld at twa where it makes sense.
Revision 1.766: download - view: text, markup, annotated - select for diffs
Wed Jul 26 15:34:39 2006 UTC (18 years, 9 months ago) by elad
Branches: MAIN
Diff to: previous 1.765: preferred, colored
Changes since revision 1.765: +3 -6
lines
deprecate "options VERIFIED_EXEC"
veriexec pseudo-device doesn't need a count anymore too
XXX: port masters should propagate this to their ports
Revision 1.765: download - view: text, markup, annotated - select for diffs
Wed Jul 26 10:43:02 2006 UTC (18 years, 9 months ago) by tron
Branches: MAIN
Diff to: previous 1.764: preferred, colored
Changes since revision 1.764: +3 -3
lines
Bluetooth fixes by Iain Hibbert:
Remove bthset(4) device and add btsco(4) in its place. This is an
improved version which is not just for headsets, as it can receive
incoming connections (eg for Hands Free Profile). Update bthset(1)
control utlitiy to relate to new device.
Revision 1.764: download - view: text, markup, annotated - select for diffs
Wed Jul 26 10:31:00 2006 UTC (18 years, 9 months ago) by tron
Branches: MAIN
Diff to: previous 1.763: preferred, colored
Changes since revision 1.763: +6 -6
lines
Bluetooth fixes by Iain Hibbert:
Change the way in which bluetooth devices attach to system. The
new way is for devices to attach directly to a btdevN device via
its own control file /dev/btdevN.
- bthub(4) is replaced by btdev(4).
- /dev/bthubctl is replaced by /dev/btdevN.
- configuration now uses proplib(3) property lists.
- btcontrol(8) updated to use new API, and now uses private
- XML config file /var/db/btdev.xml.
Revision 1.763: download - view: text, markup, annotated - select for diffs
Mon Jul 24 14:24:48 2006 UTC (18 years, 9 months ago) by gdt
Branches: MAIN
Diff to: previous 1.762: preferred, colored
Changes since revision 1.762: +4 -2
lines
Add UGEN_BULK_RA_WB, which allows users of ugen(4) to request read
ahead and write behind, improving performance for the Universal
Software Radio Peripheral (USRP) used with GNU Radio.
Enable UGEN_BULK_RA_WB in GENERIC and GENERIC_LAPTOP; behavior is
unchanged unless the new ioctl is called.
This code was written by Joanne Mikkelson under funding from DARPA's
ACERT program.
ok'd by christos@, tested by Berndt Josef Wulf
Revision 1.762: download - view: text, markup, annotated - select for diffs
Sat Jul 15 07:55:20 2006 UTC (18 years, 9 months ago) by elad
Branches: MAIN
Diff to: previous 1.761: preferred, colored
Changes since revision 1.761: +5 -2
lines
add (commented out) fileassoc(9) kernel options on some popular archs.
Revision 1.755.2.1: download - view: text, markup, annotated - select for diffs
Thu Jul 13 17:48:52 2006 UTC (18 years, 9 months ago) by gdamore
Branches: gdamore-uart
Diff to: previous 1.755: preferred, colored; next MAIN 1.756: preferred, colored
Changes since revision 1.755: +35 -8
lines
Merge from HEAD.
Revision 1.761: download - view: text, markup, annotated - select for diffs
Wed Jul 12 18:45:51 2006 UTC (18 years, 9 months ago) by perry
Branches: MAIN
Diff to: previous 1.760: preferred, colored
Changes since revision 1.760: +4 -2
lines
Note that people should not be using UFS_DIRHASH.
Revision 1.760: download - view: text, markup, annotated - select for diffs
Tue Jul 4 00:30:22 2006 UTC (18 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.759: preferred, colored
Changes since revision 1.759: +3 -5
lines
Apply fvdl's acpi pci interrupt configuration code.
- MPACPI is no more.
- MPACPI_SCANPCI -> ACPI_SCANPCI
Revision 1.759: download - view: text, markup, annotated - select for diffs
Wed Jun 28 15:19:28 2006 UTC (18 years, 10 months ago) by liamjfoy
Branches: MAIN
Diff to: previous 1.758: preferred, colored
Changes since revision 1.758: +3 -2
lines
Add CARP to GENERIC kernel configs. CARP is not enabled by default.
ok: christos
Revision 1.731.2.5: download - view: text, markup, annotated - select for diffs
Mon Jun 26 12:44:38 2006 UTC (18 years, 10 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.4: preferred, colored; branchpoint 1.731: preferred, colored
Changes since revision 1.731.2.4: +35 -8
lines
sync with head.
Revision 1.752.2.2: download - view: text, markup, annotated - select for diffs
Thu Jun 22 03:39:47 2006 UTC (18 years, 10 months ago) by chap
Branches: chap-midi
Diff to: previous 1.752.2.1: preferred, colored; branchpoint 1.752: preferred, colored; next MAIN 1.753: preferred, colored
Changes since revision 1.752.2.1: +28 -2
lines
Complete a sync sys/ with head.
Revision 1.683.2.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 14:52:09 2006 UTC (18 years, 10 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.683: preferred, colored
Changes since revision 1.683: +169 -70
lines
sync with head.
Revision 1.758: download - view: text, markup, annotated - select for diffs
Mon Jun 19 15:44:44 2006 UTC (18 years, 10 months ago) by gdamore
Branches: MAIN
CVS tags: yamt-pdpolicy-base6,
chap-midi-nbase,
chap-midi-base
Diff to: previous 1.757: preferred, colored
Changes since revision 1.757: +28 -2
lines
Initial import of bluetooth stack on behalf of Iain Hibbert. (plunky@,
NetBSD Foundation Membership still pending.) This stack was written by
Iain under sponsorship from Itronix Inc.
The stack includes support for rfcomm networking (networking via your
bluetooth enabled cell phone), hid devices (keyboards/mice), and headsets.
Drivers for both PCMCIA and USB bluetooth controllers are included.
Revision 1.752.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 19 03:44:03 2006 UTC (18 years, 10 months ago) by chap
Branches: chap-midi
Diff to: previous 1.752: preferred, colored
Changes since revision 1.752: +9 -8
lines
Sync with head.
Revision 1.757: download - view: text, markup, annotated - select for diffs
Fri Jun 16 22:13:35 2006 UTC (18 years, 10 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.756: preferred, colored
Changes since revision 1.756: +4 -4
lines
Enable the piixpcib(4) device driver by default. This enabled speedstep as
well as sufficient powerhooks to resume from ACPI S3 suspend.
Revision 1.756: download - view: text, markup, annotated - select for diffs
Fri Jun 16 06:41:13 2006 UTC (18 years, 10 months ago) by simonb
Branches: MAIN
Diff to: previous 1.755: preferred, colored
Changes since revision 1.755: +3 -3
lines
Move ksyms to the "miscellaneous pseudo-devices" - it's not a wscons
thing.
Revision 1.755: download - view: text, markup, annotated - select for diffs
Tue Jun 13 17:17:15 2006 UTC (18 years, 10 months ago) by perry
Branches: MAIN
CVS tags: gdamore-uart-base
Branch point for: gdamore-uart
Diff to: previous 1.754: preferred, colored
Changes since revision 1.754: +4 -4
lines
edit a couple of new items so that they fit on a line and do the tab
to space dance so that they can be cleanly commented out.
Revision 1.754: download - view: text, markup, annotated - select for diffs
Wed Jun 7 22:37:57 2006 UTC (18 years, 10 months ago) by kardel
Branches: MAIN
Diff to: previous 1.753: preferred, colored
Changes since revision 1.753: +5 -4
lines
convert to timecounters (from branch simonb-timecounters)
Revision 1.723.2.4: download - view: text, markup, annotated - select for diffs
Wed Jun 7 15:49:38 2006 UTC (18 years, 10 months ago) by kardel
Branches: simonb-timecounters
Diff to: previous 1.723.2.3: preferred, colored; next MAIN 1.724: preferred, colored
Changes since revision 1.723.2.3: +3 -3
lines
Sync with head.
Revision 1.753: download - view: text, markup, annotated - select for diffs
Sun Jun 4 15:48:08 2006 UTC (18 years, 10 months ago) by perry
Branches: MAIN
CVS tags: simonb-timecounters-base
Diff to: previous 1.752: preferred, colored
Changes since revision 1.752: +3 -3
lines
convert a tab to a space so commenting out of piixpm is cleaner
Revision 1.723.2.3: download - view: text, markup, annotated - select for diffs
Thu Jun 1 22:34:33 2006 UTC (18 years, 10 months ago) by kardel
Branches: simonb-timecounters
CVS tags: simonb-timcounters-final
Diff to: previous 1.723.2.2: preferred, colored
Changes since revision 1.723.2.2: +13 -3
lines
Sync with head.
Revision 1.733.2.3: download - view: text, markup, annotated - select for diffs
Wed May 24 15:47:57 2006 UTC (18 years, 11 months ago) by tron
Branches: peter-altq
Diff to: previous 1.733.2.2: preferred, colored; branchpoint 1.733: preferred, colored; next MAIN 1.734: preferred, colored
Changes since revision 1.733.2.2: +29 -13
lines
Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.
Revision 1.731.2.4: download - view: text, markup, annotated - select for diffs
Wed May 24 10:56:51 2006 UTC (18 years, 11 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.3: preferred, colored; branchpoint 1.731: preferred, colored
Changes since revision 1.731.2.3: +21 -14
lines
sync with head.
Revision 1.661.2.13: download - view: text, markup, annotated - select for diffs
Sat May 20 12:25:39 2006 UTC (18 years, 11 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.661.2.12: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.12: +2 -0
lines
Pull up following revision(s) (requested by riz in ticket #1331):
sys/arch/i386/conf/GENERIC: revision 1.701
sys/arch/i386/pci/geodereg.h: revision 1.1
sys/arch/i386/conf/files.i386: revision 1.270
sys/arch/i386/pci/geode.c: revision 1.1
Add a driver for the watchdog timer on the AMD Geode SC1100.
Revision 1.752: download - view: text, markup, annotated - select for diffs
Sun May 14 21:55:11 2006 UTC (18 years, 11 months ago) by elad
Branches: MAIN
CVS tags: yamt-pdpolicy-base5
Branch point for: chap-midi
Diff to: previous 1.751: preferred, colored
Changes since revision 1.751: +2 -2
lines
integrate kauth.
Revision 1.751: download - view: text, markup, annotated - select for diffs
Sat May 13 09:02:18 2006 UTC (18 years, 11 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.750: preferred, colored
Changes since revision 1.750: +6 -3
lines
Driver for iTE IT87xxF and compatibles hardware monitor. Add
commented out entries on GENERIC and GENERIC_LAPTOP.
Adapted from OpenBSD.
Revision 1.732.2.2: download - view: text, markup, annotated - select for diffs
Thu May 11 23:26:20 2006 UTC (18 years, 11 months ago) by elad
Branches: elad-kernelauth
Diff to: previous 1.732.2.1: preferred, colored; next MAIN 1.733: preferred, colored
Changes since revision 1.732.2.1: +15 -9
lines
sync with head
Revision 1.750: download - view: text, markup, annotated - select for diffs
Sun May 7 01:38:54 2006 UTC (18 years, 11 months ago) by jmcneill
Branches: MAIN
CVS tags: elad-kernelauth-base
Diff to: previous 1.749: preferred, colored
Changes since revision 1.749: +6 -2
lines
Add piixpm
Revision 1.749: download - view: text, markup, annotated - select for diffs
Sat May 6 15:49:38 2006 UTC (18 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.748: preferred, colored
Changes since revision 1.748: +4 -2
lines
Add piixpcib(4), commented out.
Revision 1.748: download - view: text, markup, annotated - select for diffs
Thu May 4 19:09:41 2006 UTC (18 years, 11 months ago) by rpaulo
Branches: MAIN
Diff to: previous 1.747: preferred, colored
Changes since revision 1.747: +3 -2
lines
PR 33421: add ral at cardbus. From Pierrick Brossin.
Revision 1.661.2.12: download - view: text, markup, annotated - select for diffs
Thu May 4 12:12:08 2006 UTC (18 years, 11 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.661.2.11: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.11: +1 -0
lines
Pull up following revision(s) (requested by jonathan in ticket #1298):
share/man/man4/pciide.4: revision 1.60
share/man/man4/Makefile: revision 1.376 via patch
sys/dev/pci/svwsata.c: revision 1.1
sys/dev/pci/files.pci: revision 1.243
sys/arch/i386/conf/INSTALL: revision 1.281
sys/dev/pci/pcidevs: revision 1.771 via patch
sys/dev/pci/pciidevar.h: revision 1.33
sys/arch/i386/conf/XEN0: revision 1.34
sys/arch/i386/conf/GENERIC: revision 1.732
sys/dev/pci/pciide_svwsata_reg.h: revision 1.1
Add svwsata(4), a driver for Serverworks K2 SATA controllers. From
OpenBSD via Joerg Sonnenberger.
Revision 1.723.2.2: download - view: text, markup, annotated - select for diffs
Sat Apr 22 11:37:32 2006 UTC (19 years ago) by simonb
Branches: simonb-timecounters
Diff to: previous 1.723.2.1: preferred, colored
Changes since revision 1.723.2.1: +54 -23
lines
Sync with head.
Revision 1.747: download - view: text, markup, annotated - select for diffs
Thu Apr 20 15:58:52 2006 UTC (19 years ago) by perry
Branches: MAIN
Diff to: previous 1.746: preferred, colored
Changes since revision 1.746: +5 -5
lines
some rewording and reformatting to fit some lines in 80 colums,
especially when commented out.
Revision 1.661.2.11: download - view: text, markup, annotated - select for diffs
Thu Apr 20 14:30:29 2006 UTC (19 years ago) by tron
Branches: netbsd-3
Diff to: previous 1.661.2.10: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.10: +1 -0
lines
Pull up following revision(s) (requested by martti in ticket #1258):
sys/arch/i386/conf/INSTALL: revision 1.284
sys/arch/i386/conf/GENERIC: revision 1.741
sys/arch/amd64/conf/GENERIC: revision 1.91
sys/arch/i386/conf/INSTALL_SMALL: revision 1.125
sys/arch/amd64/conf/INSTALL: revision 1.50
sys/arch/i386/conf/INSTALL_TINY: revision 1.102
Added ciss(4). Tested by Joseph Dacuma on HP DL-380 G3 with Smart Array 5i.
Revision 1.661.2.10: download - view: text, markup, annotated - select for diffs
Thu Apr 20 03:17:32 2006 UTC (19 years ago) by snj
Branches: netbsd-3
Diff to: previous 1.661.2.9: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.9: +1 -0
lines
Pull up following revision(s) (requested by tron in ticket #1266):
sys/arch/amd64/conf/GENERIC: revision 1.88
sys/arch/i386/conf/INSTALL: revision 1.282
sys/arch/amd64/conf/INSTALL: revision 1.48
sys/arch/i386/conf/XEN0: revision 1.35
sys/arch/i386/conf/GENERIC: revision 1.733
add nfe.
Revision 1.746: download - view: text, markup, annotated - select for diffs
Wed Apr 19 10:31:44 2006 UTC (19 years ago) by drochner
Branches: MAIN
Diff to: previous 1.745: preferred, colored
Changes since revision 1.745: +3 -3
lines
adjust comments for the new location of wskbdmap_mfii.c,
addresses PR kern/33290 by henry nelson
Revision 1.732.2.1: download - view: text, markup, annotated - select for diffs
Wed Apr 19 02:32:44 2006 UTC (19 years ago) by elad
Branches: elad-kernelauth
Diff to: previous 1.732: preferred, colored
Changes since revision 1.732: +22 -7
lines
sync with head - hopefully this will work
Revision 1.745: download - view: text, markup, annotated - select for diffs
Tue Apr 18 17:03:18 2006 UTC (19 years ago) by xtraeme
Branches: MAIN
Diff to: previous 1.744: preferred, colored
Changes since revision 1.744: +3 -3
lines
options<space><tab>FOO
Revision 1.744: download - view: text, markup, annotated - select for diffs
Tue Apr 18 16:49:19 2006 UTC (19 years ago) by rittera
Branches: MAIN
Diff to: previous 1.743: preferred, colored
Changes since revision 1.743: +3 -4
lines
A number of minor changes for NDIS. (OK'd by phil)
1. Removed the makeoptions line from arch/i386/conf/GENERIC. Now
ndis_driver_data.h is simply copied into the kernel build directory instead
of editing the config file to specify its location.
2. Uncommented lines in files.i386 and files.pci related to NDIS. NDIS will
not be compiled into the kernel unless the two lines are uncommented from
GENERIC (I checked using nm), so there is no reason for this to be commented
out.
3. Added ndiscvt to usr.sbin/Makefile.
Revision 1.743: download - view: text, markup, annotated - select for diffs
Sat Apr 15 17:48:23 2006 UTC (19 years ago) by jmmv
Branches: MAIN
Diff to: previous 1.742: preferred, colored
Changes since revision 1.742: +2 -6
lines
Remove the getwschar and putwschar accessops from wsdisplay drivers as
requested by uwe@. These were wrong because they were receiving an
emulcookie yet they were accessops (thus having to receive an accesscookie).
Instead, just handle the WSDISPLAYIO_{GET,PUT}WSCHAR ioctls from the
driver's ioctl accessop.
As this reduces the amount of code needed to handle these operations to
two small functions in each driver, remove the WSDISPLAY_CHARFUNCS kernel
option.
Reviewed by, at least, uwe@ and macallan@. No objections in tech-kern@.
Revision 1.742: download - view: text, markup, annotated - select for diffs
Thu Apr 13 00:30:19 2006 UTC (19 years ago) by christos
Branches: MAIN
Diff to: previous 1.741: preferred, colored
Changes since revision 1.741: +3 -2
lines
Fix the MPU attachment on Aztech 1020 that has a separate mpu pnp device
instead of having the mpu in io[1]. From doomwarriorx at gmail dot com.
Revision 1.741: download - view: text, markup, annotated - select for diffs
Wed Apr 12 03:41:51 2006 UTC (19 years ago) by martti
Branches: MAIN
Diff to: previous 1.740: preferred, colored
Changes since revision 1.740: +3 -2
lines
Added ciss(4). Tested by Joseph Dacuma on HP DL-380 G3 with Smart Array 5i.
Revision 1.731.2.3: download - view: text, markup, annotated - select for diffs
Tue Apr 11 11:53:27 2006 UTC (19 years ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.2: preferred, colored; branchpoint 1.731: preferred, colored
Changes since revision 1.731.2.2: +11 -2
lines
sync with head
Revision 1.740: download - view: text, markup, annotated - select for diffs
Fri Apr 7 18:55:22 2006 UTC (19 years ago) by riz
Branches: MAIN
CVS tags: yamt-pdpolicy-base4
Diff to: previous 1.739: preferred, colored
Changes since revision 1.739: +8 -2
lines
Dallas Semiconductor 1-Wire bus support, from OpenBSD. Currently includes
gpioow(4), attaching a bit-banging driver via a GPIO pin. Also,
owtemp(4) which supports some of the 1-Wire temperature sensors, including
the DS18b20 and DS1920 - temperatures are returned via the envsys(4)
framework.
Original drivers by Alexander Yurchenko (grange@openbsd), with envsys(4)
support and a fix to the 1-wire search algorithm (for discovering
devices on the bus) by me.
As discussed on tech-kern earlier this week.
Revision 1.739: download - view: text, markup, annotated - select for diffs
Mon Apr 3 16:08:49 2006 UTC (19 years ago) by scw
Branches: MAIN
Diff to: previous 1.738: preferred, colored
Changes since revision 1.738: +5 -2
lines
Add utoppy* at uhub?
Revision 1.731.2.2: download - view: text, markup, annotated - select for diffs
Sat Apr 1 12:06:18 2006 UTC (19 years ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731.2.1: preferred, colored; branchpoint 1.731: preferred, colored
Changes since revision 1.731.2.1: +10 -3
lines
sync with head.
Revision 1.733.2.2: download - view: text, markup, annotated - select for diffs
Fri Mar 31 09:45:02 2006 UTC (19 years ago) by tron
Branches: peter-altq
Diff to: previous 1.733.2.1: preferred, colored; branchpoint 1.733: preferred, colored
Changes since revision 1.733.2.1: +6 -3
lines
Merge 2006-03-31 NetBSD-current into the "peter-altq" branch.
Revision 1.738: download - view: text, markup, annotated - select for diffs
Fri Mar 31 00:03:57 2006 UTC (19 years ago) by rittera
Branches: MAIN
CVS tags: yamt-pdpolicy-base3
Diff to: previous 1.737: preferred, colored
Changes since revision 1.737: +5 -2
lines
Updated to the latest NDIS code. I added commented out lines in the files
arch/i386/conf/GENERIC, arch/i386/conf/files.i386 and dev/pci/files.pci which
can simply be uncommented to compile NDIS into the kernel. I'll write some
documentation on this soon.
Note that NDIS is still somewhat experimental. It is currently tested and
functions relatively well on on two cards:
1. Dell (Broadcom) TrueMobile 1400 Dual Band WLAN Mini-PCI
2. Intel EtherExpress Pro/100
Revision 1.737: download - view: text, markup, annotated - select for diffs
Tue Mar 28 20:58:40 2006 UTC (19 years, 1 month ago) by pavel
Branches: MAIN
Diff to: previous 1.736: preferred, colored
Changes since revision 1.736: +3 -3
lines
Add stf to all kernel configs which have INET6 and gif, except the INSTALL
ones and those for specific machines of developers. PR 32304.
OK'ed by rpaulo.
N.B. stf is a cloning device, so it still must be enabled by
"ifconfig stf0 create".
Revision 1.733.2.1: download - view: text, markup, annotated - select for diffs
Tue Mar 28 09:47:16 2006 UTC (19 years, 1 month ago) by tron
Branches: peter-altq
Diff to: previous 1.733: preferred, colored
Changes since revision 1.733: +6 -2
lines
Merge 2006-03-28 NetBSD-current into the "peter-altq" branch.
Revision 1.736: download - view: text, markup, annotated - select for diffs
Sat Mar 25 17:44:29 2006 UTC (19 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.735: preferred, colored
Changes since revision 1.735: +3 -2
lines
Enable rgephy(4).
Revision 1.735: download - view: text, markup, annotated - select for diffs
Fri Mar 17 12:25:01 2006 UTC (19 years, 1 month ago) by jmcneill
Branches: MAIN
Diff to: previous 1.734: preferred, colored
Changes since revision 1.734: +3 -2
lines
Add 'iic* at viapcib?', commented out.
Revision 1.734: download - view: text, markup, annotated - select for diffs
Fri Mar 17 12:22:14 2006 UTC (19 years, 1 month ago) by jmcneill
Branches: MAIN
Diff to: previous 1.733: preferred, colored
Changes since revision 1.733: +4 -2
lines
Add (commented out) definitions of viapcib attachments.
Revision 1.731.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 13 09:06:53 2006 UTC (19 years, 1 month ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.731: preferred, colored
Changes since revision 1.731: +4 -2
lines
sync with head.
Revision 1.733: download - view: text, markup, annotated - select for diffs
Sun Mar 12 22:57:01 2006 UTC (19 years, 1 month ago) by chs
Branches: MAIN
CVS tags: yamt-pdpolicy-base2,
peter-altq-base
Branch point for: peter-altq
Diff to: previous 1.732: preferred, colored
Changes since revision 1.732: +3 -2
lines
add nfe.
Revision 1.732: download - view: text, markup, annotated - select for diffs
Mon Mar 6 18:35:24 2006 UTC (19 years, 1 month ago) by bouyer
Branches: MAIN
Branch point for: elad-kernelauth
Diff to: previous 1.731: preferred, colored
Changes since revision 1.731: +3 -2
lines
Add svwsata(4), a driver for Serverworks K2 SATA controllers. From
OpenBSD via Joerg Sonnenberger.
Revision 1.714.2.4: download - view: text, markup, annotated - select for diffs
Wed Mar 1 09:27:54 2006 UTC (19 years, 1 month ago) by yamt
Branches: yamt-uio_vmspace
Diff to: previous 1.714.2.3: preferred, colored; next MAIN 1.715: preferred, colored
Changes since revision 1.714.2.3: +22 -6
lines
sync with head.
Revision 1.723.2.1: download - view: text, markup, annotated - select for diffs
Tue Feb 28 20:25:08 2006 UTC (19 years, 1 month ago) by kardel
Branches: simonb-timecounters
Diff to: previous 1.723: preferred, colored
Changes since revision 1.723: +5 -4
lines
Move watchdog timer support code out of geode.c in to its
own file, leaving geode.c to just set up GDB mappings.
Add support for CGB high resolution counter as a time counter.
Revision 1.731: download - view: text, markup, annotated - select for diffs
Sat Feb 25 01:33:15 2006 UTC (19 years, 2 months ago) by christos
Branches: MAIN
CVS tags: yamt-uio_vmspace-base5,
yamt-pdpolicy-base
Branch point for: yamt-pdpolicy
Diff to: previous 1.730: preferred, colored
Changes since revision 1.730: +2 -6
lines
remove vinum
Revision 1.730: download - view: text, markup, annotated - select for diffs
Fri Feb 24 10:20:32 2006 UTC (19 years, 2 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.729: preferred, colored
Changes since revision 1.729: +4 -4
lines
Repeat previous for SPLASHSCREEN* options.
Revision 1.729: download - view: text, markup, annotated - select for diffs
Fri Feb 24 10:05:41 2006 UTC (19 years, 2 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.728: preferred, colored
Changes since revision 1.728: +8 -8
lines
Use 'options<space><tab>' in the recently added vesafb stuff so that
uncommenting those lines leaves them properly aligned.
Revision 1.661.2.9: download - view: text, markup, annotated - select for diffs
Mon Feb 20 23:09:01 2006 UTC (19 years, 2 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.661.2.8: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.8: +9 -2
lines
Pull up following revision(s) (requested by tls in ticket #1180):
sys/arch/amd64/conf/GENERIC: revision 1.87
sys/arch/i386/conf/GENERIC: revision 1.727
Add amdpm -- without this, we're throwing away a good hardware random
number source on a huge set of machines. Also, now that amdpm has
support for the SMBus controller, add (commented-out, since we don't
always know what address the sensors are at) iic at amdpm and adt7463c
at iic, which is the configuration used on the Tyan S2881 and S2882-D
server boards. This should work in either 64-bit or 32-bit mode; it's
been tested in 64-bit mode. Addresses PR kern/32463 submitted by
Anil Gopinath.
Revision 1.728: download - view: text, markup, annotated - select for diffs
Sun Feb 19 21:41:18 2006 UTC (19 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.727: preferred, colored
Changes since revision 1.727: +4 -3
lines
Add screenblanking support. Not enabled by default, as in some cases it
might cause the system to hang. Where it does work, it works well. Enabled
by setting options VESAFB_PM.
Tested on ATI Radeon M9 (failed), NeoMagic 256AV (passed).
Revision 1.727: download - view: text, markup, annotated - select for diffs
Sun Feb 19 02:55:21 2006 UTC (19 years, 2 months ago) by tls
Branches: MAIN
Diff to: previous 1.726: preferred, colored
Changes since revision 1.726: +9 -2
lines
Add amdpm -- without this, we're throwing away a good hardware random
number source on a huge set of machines. Also, now that amdpm has
support for the SMBus controller, add (commented-out, since we don't
always know what address the sensors are at) iic at amdpm and adt7463c
at iic, which is the configuration used on the Tyan S2881 and S2882-D
server boards. This should work in either 64-bit or 32-bit mode; it's
been tested in 64-bit mode. Addresses PR kern/32463 submitted by
Anil Gopinath.
Revision 1.726: download - view: text, markup, annotated - select for diffs
Sat Feb 18 19:15:19 2006 UTC (19 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.725: preferred, colored
Changes since revision 1.725: +14 -2
lines
Document vesafb and splash screen configuration options. Both are disabled
by default.
Revision 1.714.2.3: download - view: text, markup, annotated - select for diffs
Sat Feb 18 15:38:35 2006 UTC (19 years, 2 months ago) by yamt
Branches: yamt-uio_vmspace
Diff to: previous 1.714.2.2: preferred, colored
Changes since revision 1.714.2.2: +16 -12
lines
sync with head.
Revision 1.725: download - view: text, markup, annotated - select for diffs
Sun Feb 5 05:01:55 2006 UTC (19 years, 2 months ago) by cube
Branches: MAIN
Diff to: previous 1.724: preferred, colored
Changes since revision 1.724: +11 -11
lines
Remove 'count' argument for pseudo-devices that ignore it
(vnd, bpfilter, ppp, gif, gre, tun, sl, strip, faith, stf).
Revision 1.724: download - view: text, markup, annotated - select for diffs
Sat Feb 4 03:09:40 2006 UTC (19 years, 2 months ago) by rpaulo
Branches: MAIN
Diff to: previous 1.723: preferred, colored
Changes since revision 1.723: +3 -3
lines
bpfilter doesn't accept count anymore.
Revision 1.723: download - view: text, markup, annotated - select for diffs
Fri Feb 3 11:08:23 2006 UTC (19 years, 2 months ago) by jmmv
Branches: MAIN
Branch point for: simonb-timecounters
Diff to: previous 1.722: preferred, colored
Changes since revision 1.722: +5 -2
lines
Implement support for 'The Multiboot Specification' so that i386 kernels
can be booted directly from Multiboot-compliant boot loaders (e.g. GRUB).
See the added multiboot(8) manual page for more information.
No objections in tech-kern@; only positive comments.
Revision 1.722: download - view: text, markup, annotated - select for diffs
Thu Feb 2 21:32:09 2006 UTC (19 years, 2 months ago) by reinoud
Branches: MAIN
Diff to: previous 1.721: preferred, colored
Changes since revision 1.721: +3 -2
lines
Add commented out UDF file-system entry in all GENERIC configurations.
Revision 1.714.2.2: download - view: text, markup, annotated - select for diffs
Wed Feb 1 14:51:28 2006 UTC (19 years, 2 months ago) by yamt
Branches: yamt-uio_vmspace
Diff to: previous 1.714.2.1: preferred, colored
Changes since revision 1.714.2.1: +5 -4
lines
sync with head.
Revision 1.721: download - view: text, markup, annotated - select for diffs
Tue Jan 31 16:42:09 2006 UTC (19 years, 2 months ago) by xtraeme
Branches: MAIN
Branch point for: rpaulo-netinet-merge-pcb
Diff to: previous 1.720: preferred, colored
Changes since revision 1.720: +4 -3
lines
GENERIC: add ral(4) at uhub.
GENERIC_LAPTOP: add ral(4) at cardbus/pci/uhub.
XEN0: add ral(4) at pci/uhub.
Revision 1.720: download - view: text, markup, annotated - select for diffs
Tue Jan 31 09:31:01 2006 UTC (19 years, 2 months ago) by kochi
Branches: MAIN
Diff to: previous 1.719: preferred, colored
Changes since revision 1.719: +2 -3
lines
remove ACPI_DISABLE_ON_POWEROFF option, which was there just for
compatibility of our old driver behavior, which is not necessary.
Revision 1.719: download - view: text, markup, annotated - select for diffs
Sun Jan 29 11:32:01 2006 UTC (19 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.718: preferred, colored
Changes since revision 1.718: +3 -2
lines
Add more cardbus USB controllers.
Revision 1.714.2.1: download - view: text, markup, annotated - select for diffs
Sun Jan 15 10:02:37 2006 UTC (19 years, 3 months ago) by yamt
Branches: yamt-uio_vmspace
Diff to: previous 1.714: preferred, colored
Changes since revision 1.714: +7 -2
lines
sync with head.
Revision 1.718: download - view: text, markup, annotated - select for diffs
Thu Jan 5 10:24:11 2006 UTC (19 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.717: preferred, colored
Changes since revision 1.717: +3 -3
lines
Comment out "options POWERNOW_K7" until the problems are resolved.
Revision 1.717: download - view: text, markup, annotated - select for diffs
Wed Jan 4 23:40:45 2006 UTC (19 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.716: preferred, colored
Changes since revision 1.716: +3 -2
lines
Enable rlphy(4).
Revision 1.716: download - view: text, markup, annotated - select for diffs
Wed Jan 4 20:44:26 2006 UTC (19 years, 3 months ago) by dsl
Branches: MAIN
Diff to: previous 1.715: preferred, colored
Changes since revision 1.715: +3 -2
lines
add ral* at pci? - They exist....
Revision 1.715: download - view: text, markup, annotated - select for diffs
Sat Dec 31 17:55:55 2005 UTC (19 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.714: preferred, colored
Changes since revision 1.714: +5 -2
lines
AMD PowerNow K7 driver written by Martin Vegiard via PR port-i386/26239.
Enabled by default on GENERIC and GENERIC_LAPTOP.
Imported 1 year later... but it's here finally.
Revision 1.714: download - view: text, markup, annotated - select for diffs
Tue Dec 20 05:35:28 2005 UTC (19 years, 4 months ago) by thorpej
Branches: MAIN
Branch point for: yamt-uio_vmspace
Diff to: previous 1.713: preferred, colored
Changes since revision 1.713: +2 -3
lines
Remove the tablet line discipline.
Revision 1.564.2.22: download - view: text, markup, annotated - select for diffs
Sun Dec 11 10:28:18 2005 UTC (19 years, 4 months ago) by christos
Branches: ktrace-lwp
Diff to: previous 1.564.2.21: preferred, colored; next MAIN 1.565: preferred, colored
Changes since revision 1.564.2.21: +25 -21
lines
Sync with head.
Revision 1.713: download - view: text, markup, annotated - select for diffs
Sun Dec 11 02:11:50 2005 UTC (19 years, 4 months ago) by christos
Branches: MAIN
CVS tags: ktrace-lwp-base
Diff to: previous 1.712: preferred, colored
Changes since revision 1.712: +5 -2
lines
Add a small device to control brightness on the Sony VAIOs.
Revision 1.712: download - view: text, markup, annotated - select for diffs
Sat Dec 10 11:32:14 2005 UTC (19 years, 4 months ago) by elad
Branches: MAIN
Diff to: previous 1.711: preferred, colored
Changes since revision 1.711: +2 -19
lines
Apparently the i386 GENERIC kernel config already have some Veriexec
options and pseudo-device scattered in the file; remove duplicates.
Pointed out by xtraeme@, thanks. :)
Revision 1.711: download - view: text, markup, annotated - select for diffs
Fri Dec 9 23:34:02 2005 UTC (19 years, 4 months ago) by elad
Branches: MAIN
Diff to: previous 1.710: preferred, colored
Changes since revision 1.710: +20 -3
lines
Add (commented out) Veriexec options and pseudo-device to GENERIC kernels,
and remove the i386 GENERIC_VERIEXEC config.
Revision 1.710: download - view: text, markup, annotated - select for diffs
Wed Dec 7 09:10:14 2005 UTC (19 years, 4 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.709: preferred, colored
Changes since revision 1.709: +3 -3
lines
Adjust comments for options FFS_NO_SNAPSHOT.
XXX: This option should be mentioned in options(4).
Revision 1.706.6.1: download - view: text, markup, annotated - select for diffs
Tue Nov 29 21:22:58 2005 UTC (19 years, 4 months ago) by yamt
Branches: yamt-readahead
Diff to: previous 1.706: preferred, colored; next MAIN 1.707: preferred, colored
Changes since revision 1.706: +4 -3
lines
sync with head.
Revision 1.709: download - view: text, markup, annotated - select for diffs
Fri Nov 25 16:41:31 2005 UTC (19 years, 5 months ago) by thorpej
Branches: MAIN
CVS tags: yamt-readahead-base3
Diff to: previous 1.708: preferred, colored
Changes since revision 1.708: +3 -3
lines
swcr -> swcrypto
Revision 1.708: download - view: text, markup, annotated - select for diffs
Fri Nov 25 16:35:11 2005 UTC (19 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.707: preferred, colored
Changes since revision 1.707: +3 -3
lines
"pseudo-device crypto" really refers to the /dev/crypto API to the
opencrypto framework, not the framework itself. Update the comment
accordingly.
Revision 1.707: download - view: text, markup, annotated - select for diffs
Fri Nov 25 16:30:23 2005 UTC (19 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.706: preferred, colored
Changes since revision 1.706: +3 -2
lines
Add "pseudo-device swcr" (commented out if "pseudo-device crypto" is also
commented out).
Revision 1.564.2.21: download - view: text, markup, annotated - select for diffs
Thu Nov 10 13:56:32 2005 UTC (19 years, 5 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.20: preferred, colored
Changes since revision 1.564.2.20: +87 -37
lines
Sync with HEAD. Here we go again...
Revision 1.661.2.8: download - view: text, markup, annotated - select for diffs
Fri Oct 28 20:12:42 2005 UTC (19 years, 6 months ago) by jmc
Branches: netbsd-3
CVS tags: netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE
Branch point for: netbsd-3-0
Diff to: previous 1.661.2.7: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.7: +4 -3
lines
Pullup (requested by chs in ticket #912)
Fix txp cards so this compiles and enable in GENERIC.
Revision 1.491.4.8: download - view: text, markup, annotated - select for diffs
Wed Oct 26 22:16:26 2005 UTC (19 years, 6 months ago) by jmc
Branches: netbsd-1-6
Diff to: previous 1.491.4.7: preferred, colored; branchpoint 1.491: preferred, colored; next MAIN 1.492: preferred, colored
Changes since revision 1.491.4.7: +6 -2
lines
Pullup (via patch) requested in ticket #5754 by itohy
Provide a backport for ukyopon(4) and pullup umodem(4) updates.
Revision 1.706: download - view: text, markup, annotated - select for diffs
Fri Oct 7 15:59:49 2005 UTC (19 years, 6 months ago) by riz
Branches: MAIN
CVS tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
yamt-vop,
yamt-readahead-pervnode,
yamt-readahead-perfile,
yamt-readahead-base2,
yamt-readahead-base,
thorpej-vnode-attr-base,
thorpej-vnode-attr
Branch point for: yamt-readahead
Diff to: previous 1.705: preferred, colored
Changes since revision 1.705: +3 -2
lines
Add support for the gpio(4) framework to the elansc(4) system controller.
From Alexander Yurchenko (grange@openbsd), via OpenBSD.
Approved by jmcneill.
Revision 1.705: download - view: text, markup, annotated - select for diffs
Fri Oct 7 08:18:13 2005 UTC (19 years, 6 months ago) by abs
Branches: MAIN
Diff to: previous 1.704: preferred, colored
Changes since revision 1.704: +3 -3
lines
At least ASUS also put the ITE8712F at 0xc00 - noted by Juan RP
Revision 1.704: download - view: text, markup, annotated - select for diffs
Tue Sep 27 02:57:47 2005 UTC (19 years, 7 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.703: preferred, colored
Changes since revision 1.703: +3 -2
lines
Add (commented out) definition of gpio attachment to nsclpcsio
Revision 1.703: download - view: text, markup, annotated - select for diffs
Tue Sep 27 02:57:02 2005 UTC (19 years, 7 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.702: preferred, colored
Changes since revision 1.702: +3 -2
lines
Add (commented out) definition of isa at gscpcib
Revision 1.702: download - view: text, markup, annotated - select for diffs
Tue Sep 27 02:47:42 2005 UTC (19 years, 7 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.701: preferred, colored
Changes since revision 1.701: +6 -2
lines
Add (commented out) definitions for gscpcib and the equivalent gpio
attachment.
Revision 1.701: download - view: text, markup, annotated - select for diffs
Thu Sep 22 07:09:35 2005 UTC (19 years, 7 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.700: preferred, colored
Changes since revision 1.700: +4 -2
lines
Add a driver for the watchdog timer on the AMD Geode SC1100.
Revision 1.661.2.7: download - view: text, markup, annotated - select for diffs
Thu Sep 15 23:33:43 2005 UTC (19 years, 7 months ago) by snj
Branches: netbsd-3
Diff to: previous 1.661.2.6: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.6: +4 -2
lines
Pull up following revision(s) (requested by tron in ticket #786):
sys/arch/amd64/conf/GENERIC: revision 1.71
sys/arch/i386/conf/GENERIC.MPACPI: revision 1.46
sys/arch/i386/conf/GENERIC: revision 1.700
Add 10 Gigabit Ethernet drivers dge(4) and xge(4).
Revision 1.700: download - view: text, markup, annotated - select for diffs
Wed Sep 14 08:22:24 2005 UTC (19 years, 7 months ago) by tron
Branches: MAIN
Diff to: previous 1.699: preferred, colored
Changes since revision 1.699: +4 -2
lines
Add 10 Gigabit Ethernet drivers dge(4) and xge(4).
Revision 1.699: download - view: text, markup, annotated - select for diffs
Sat Sep 10 19:20:49 2005 UTC (19 years, 7 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.698: preferred, colored
Changes since revision 1.698: +3 -2
lines
Initial addition of tmpfs, an efficient memory file-system. This project
was developed as part of Google's Summer of Code 2005 program. This
change adds the kernel code, the mount_tmpfs utility, a regression test
suite and does all other related changes to integrate these.
The file-system is still *experimental*. Therefore, it is disabled by
default in all kernels. However, as typically done, a commented-out
entry is added in them to ease its setup.
Note that I haven't commited the required mountd(8) changes to be able
to export tmpfs file-systems because NFS support is still very unstable
and because, before enabling it, I'd like to do some other changes.
OK'ed by my project mentor, William Studenmund (wrstuden@).
Revision 1.698: download - view: text, markup, annotated - select for diffs
Fri Sep 9 16:26:19 2005 UTC (19 years, 7 months ago) by drochner
Branches: MAIN
Diff to: previous 1.697: preferred, colored
Changes since revision 1.697: +16 -16
lines
remove "dev" locators from cardbus device definitions, it doesn't
make sense technically and might be removed
Revision 1.697: download - view: text, markup, annotated - select for diffs
Tue Sep 6 02:03:52 2005 UTC (19 years, 7 months ago) by dogcow
Branches: MAIN
Diff to: previous 1.696: preferred, colored
Changes since revision 1.696: +3 -2
lines
after discussion with dyoung, add rtw* at cardbus
Revision 1.696: download - view: text, markup, annotated - select for diffs
Fri Aug 19 05:19:50 2005 UTC (19 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.695: preferred, colored
Changes since revision 1.695: +3 -3
lines
Enable ptyfs by default on the non-install and non small/tiny/ramdisk kernels
Revision 1.695: download - view: text, markup, annotated - select for diffs
Fri Aug 19 02:03:51 2005 UTC (19 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.694: preferred, colored
Changes since revision 1.694: +3 -2
lines
64 bit inode changes.
Revision 1.694: download - view: text, markup, annotated - select for diffs
Thu Aug 18 15:57:00 2005 UTC (19 years, 8 months ago) by perry
Branches: MAIN
Diff to: previous 1.693: preferred, colored
Changes since revision 1.693: +3 -3
lines
change a tab to a space tab in front of UFS_DIRHASH
Revision 1.661.2.6: download - view: text, markup, annotated - select for diffs
Sun Aug 14 21:13:40 2005 UTC (19 years, 8 months ago) by riz
Branches: netbsd-3
Diff to: previous 1.661.2.5: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.5: +3 -2
lines
Pull up revision 1.688 (requested by hubertf in ticket #625):
Add support for reading cloop2 compressed filesystem images,
enable by putting VND_COMPRESSION into kernel config file.
Written by Cliff Wright, polished up slightly by me.
Revision 1.693: download - view: text, markup, annotated - select for diffs
Fri Aug 5 09:23:16 2005 UTC (19 years, 8 months ago) by skrll
Branches: MAIN
Diff to: previous 1.692: preferred, colored
Changes since revision 1.692: +5 -2
lines
Add (commented out) ucycom to various kernel configs.
Revision 1.692: download - view: text, markup, annotated - select for diffs
Sun Jul 31 04:04:32 2005 UTC (19 years, 8 months ago) by yamt
Branches: MAIN
Diff to: previous 1.691: preferred, colored
Changes since revision 1.691: +2 -4
lines
revert "defflag VMSWAP" changes for now.
there seems to be far more people who don't want to edit
their kernel config files than i thought.
Revision 1.691: download - view: text, markup, annotated - select for diffs
Sat Jul 30 06:35:36 2005 UTC (19 years, 9 months ago) by yamt
Branches: MAIN
Diff to: previous 1.690: preferred, colored
Changes since revision 1.690: +4 -2
lines
add "options VMSWAP" to non INSTALL kernels.
Revision 1.690: download - view: text, markup, annotated - select for diffs
Fri Jul 29 14:57:30 2005 UTC (19 years, 9 months ago) by elad
Branches: MAIN
Diff to: previous 1.689: preferred, colored
Changes since revision 1.689: +2 -5
lines
VERIFIED_EXEC_DEUBG{,_VERBOSE} is obsolete.
XXX: Too bad we can't have some MI config file. :)
Revision 1.595.2.11.2.2: download - view: text, markup, annotated - select for diffs
Thu Jul 21 19:27:58 2005 UTC (19 years, 9 months ago) by riz
Branches: netbsd-2
CVS tags: netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1
Branch point for: netbsd-2-1
Diff to: previous 1.595.2.11.2.1: preferred, colored; branchpoint 1.595.2.11: preferred, colored
Changes since revision 1.595.2.11.2.1: +6 -2
lines
Pull up revision 1.666 (requested by itohy in ticket #1430):
Add ukyopon(4).
Revision 1.661.2.5: download - view: text, markup, annotated - select for diffs
Mon Jul 18 21:12:51 2005 UTC (19 years, 9 months ago) by riz
Branches: netbsd-3
Diff to: previous 1.661.2.4: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.4: +3 -2
lines
Pull up revision 1.684 (requested by tron in ticket #566):
Add (commented out) IPSEC_NAT_T option.
Revision 1.689: download - view: text, markup, annotated - select for diffs
Mon Jul 18 12:02:21 2005 UTC (19 years, 9 months ago) by augustss
Branches: MAIN
Diff to: previous 1.688: preferred, colored
Changes since revision 1.688: +7 -2
lines
Add uipaq driver.
Revision 1.688: download - view: text, markup, annotated - select for diffs
Sun Jul 17 00:08:28 2005 UTC (19 years, 9 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.687: preferred, colored
Changes since revision 1.687: +3 -2
lines
Add support for reading cloop2 compressed filesystem image,
enable by putting VND_COMPRESSION into kernel config file.
Written by Cliff Wright, polished up slightly by me.
Revision 1.687: download - view: text, markup, annotated - select for diffs
Sat Jul 16 23:20:00 2005 UTC (19 years, 9 months ago) by wiz
Branches: MAIN
Diff to: previous 1.686: preferred, colored
Changes since revision 1.686: +2 -3
lines
Remove duplicate IPSEC_NAT_T line introduced in previous.
Revision 1.686: download - view: text, markup, annotated - select for diffs
Sat Jul 16 22:54:34 2005 UTC (19 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.685: preferred, colored
Changes since revision 1.685: +4 -3
lines
Say what sbp is.
Revision 1.685: download - view: text, markup, annotated - select for diffs
Mon Jul 11 15:37:04 2005 UTC (19 years, 9 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.684: preferred, colored
Changes since revision 1.684: +7 -10
lines
ieee1394 import from FreeBSD.
Revision 1.684: download - view: text, markup, annotated - select for diffs
Thu Jul 7 17:05:47 2005 UTC (19 years, 9 months ago) by tron
Branches: MAIN
Diff to: previous 1.683: preferred, colored
Changes since revision 1.683: +3 -2
lines
Add (commented out) IPSEC_NAT_T option.
Revision 1.683: download - view: text, markup, annotated - select for diffs
Sun Jul 3 19:23:29 2005 UTC (19 years, 9 months ago) by cube
Branches: MAIN
Branch point for: yamt-lazymbuf
Diff to: previous 1.682: preferred, colored
Changes since revision 1.682: +2 -3
lines
Remove 'scsibus* at umass?'. It shouldn't be needed, as umass correctly
defines the scsi attribute. So if a device doesn't work without that
attachment, it means there is a bug elsewhere we have to fix.
Revision 1.661.2.4: download - view: text, markup, annotated - select for diffs
Sat Jul 2 16:35:18 2005 UTC (19 years, 9 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.661.2.3: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.3: +3 -2
lines
Pull up revision 1.678 (requested by kent in ticket #494):
add "azalia at pci"
Revision 1.682: download - view: text, markup, annotated - select for diffs
Sat Jul 2 11:19:23 2005 UTC (19 years, 9 months ago) by rpaulo
Branches: MAIN
Diff to: previous 1.681: preferred, colored
Changes since revision 1.681: +3 -3
lines
Uncomment WSDISPLAY_SCROLLSUPPORT. A lot of people ask for this feature
and it doesn't make much sens to recompile just to have scrolling support.
Ok'ed by Christos Zoulas and Hubert Feyrer.
Revision 1.681: download - view: text, markup, annotated - select for diffs
Tue Jun 28 09:08:04 2005 UTC (19 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.680: preferred, colored
Changes since revision 1.680: +2 -4
lines
pss(4) was removed, remove it from kernel configs too.
Revision 1.680: download - view: text, markup, annotated - select for diffs
Sat Jun 25 12:05:17 2005 UTC (19 years, 10 months ago) by rpaulo
Branches: MAIN
Diff to: previous 1.679: preferred, colored
Changes since revision 1.679: +3 -2
lines
Add file-system PTYFS (commented out) so that people know its existence.
Ok'ed by Christos Zoulas and Hubert Feyrer.
Revision 1.679: download - view: text, markup, annotated - select for diffs
Tue Jun 21 08:19:25 2005 UTC (19 years, 10 months ago) by sekiya
Branches: MAIN
Diff to: previous 1.678: preferred, colored
Changes since revision 1.678: +8 -6
lines
Rework the configuration scheme for PCI fixups:
* bus enumeration fixups are not PCIBIOS-specific, interrupt fixups are done
by both PCIBIOS and ACPI. The redundancy is very redundant. Therefore,
rename PCIBIOS_*_FIXUP to PCI_*_FIXUP, use PCI_INTR_FIXUP in place of
ACPI_PCI_FIXUP, and change code refences to match.
* move the fixup defines from opt_pcibios.h to opt_pcifixup.h to reflect
the above.
* fix up the PCI bus numbering in mainbus_attach(), right after we detect the
configuration mode. This probably renders the fixup in pcibios.c
redundant -- but it should be harmless.
These changes make cardbus work in ACPI-only machines, when PCI_BUS_FIXUP
and PCI_INTR_FIXUP are defined.
Revision 1.678: download - view: text, markup, annotated - select for diffs
Tue Jun 21 02:23:13 2005 UTC (19 years, 10 months ago) by kent
Branches: MAIN
Diff to: previous 1.677: preferred, colored
Changes since revision 1.677: +3 -2
lines
add "azalia at pci"
Revision 1.677: download - view: text, markup, annotated - select for diffs
Sun Jun 19 00:23:43 2005 UTC (19 years, 10 months ago) by chs
Branches: MAIN
Diff to: previous 1.676: preferred, colored
Changes since revision 1.676: +3 -3
lines
uncomment hme, add more missing NICs.
Revision 1.676: download - view: text, markup, annotated - select for diffs
Sat Jun 18 17:34:18 2005 UTC (19 years, 10 months ago) by chs
Branches: MAIN
Diff to: previous 1.675: preferred, colored
Changes since revision 1.675: +4 -4
lines
alphabetize.
Revision 1.675: download - view: text, markup, annotated - select for diffs
Sat Jun 18 16:12:19 2005 UTC (19 years, 10 months ago) by chs
Branches: MAIN
Diff to: previous 1.674: preferred, colored
Changes since revision 1.674: +8 -7
lines
add txp. uncomment the firewire stuff.
Revision 1.661.2.3: download - view: text, markup, annotated - select for diffs
Fri Jun 10 15:05:46 2005 UTC (19 years, 10 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.661.2.2: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.2: +3 -3
lines
Pull up revision 1.672 (requested by elad in ticket #389):
Change pseudo-device name from "verifiedexec" to "veriexec", as it appears
in majors.i386.
Revision 1.661.2.2: download - view: text, markup, annotated - select for diffs
Fri Jun 10 14:49:03 2005 UTC (19 years, 10 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.661.2.1: preferred, colored; branchpoint 1.661: preferred, colored
Changes since revision 1.661.2.1: +20 -0
lines
Pull up revision 1.667 (requested by elad in ticket #389):
Rototill of the verified exec functionality.
* We now use hash tables instead of a list to store the in kernel
fingerprints.
* Fingerprint methods handling has been made more flexible, it is now
even simpler to add new methods.
* the loader no longer passes in magic numbers representing the
fingerprint method so veriexecctl is not longer kernel specific.
* fingerprint methods can be tailored out using options in the kernel
config file.
* more fingerprint methods added - rmd160, sha256/384/512
* veriexecctl can now report the fingerprint methods supported by the
running kernel.
* regularised the naming of some portions of veriexec.
Revision 1.674: download - view: text, markup, annotated - select for diffs
Thu Jun 9 14:43:30 2005 UTC (19 years, 10 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.673: preferred, colored
Changes since revision 1.673: +4 -3
lines
- Rename options NEW_BUFQ_STRATEGY -> options BUFQ_READPRIO.
(still commented out)
- Add (also commented out) options BUFQ_PRIOCSCAN.
Suggested by perry and soda on tech-kern.
Please refer options(4) for details for these options.
Revision 1.673: download - view: text, markup, annotated - select for diffs
Tue May 17 17:20:41 2005 UTC (19 years, 11 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.672: preferred, colored
Changes since revision 1.672: +4 -4
lines
Fix comments:
Comments in kernel config files start with #, and are not enclosed in /* */
Noted by Patrick Welche <prlw1@newn.cam.ac.uk> on current-users@
Revision 1.672: download - view: text, markup, annotated - select for diffs
Fri May 6 04:42:24 2005 UTC (19 years, 11 months ago) by elad
Branches: MAIN
Diff to: previous 1.671: preferred, colored
Changes since revision 1.671: +3 -3
lines
Change pseudo-device name from "verifiedexec" to "veriexec", as it appears
in majors.i386.
Revision 1.671: download - view: text, markup, annotated - select for diffs
Wed May 4 02:40:55 2005 UTC (19 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.670: preferred, colored
Changes since revision 1.670: +4 -2
lines
Mention PCKBD_CNATTACH_MAY_FAIL, but don't define it.
Revision 1.670: download - view: text, markup, annotated - select for diffs
Wed May 4 01:55:24 2005 UTC (19 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.669: preferred, colored
Changes since revision 1.669: +3 -2
lines
Mention WSKBD_EVENT_AUTOREPEAT.
XXX All the WS options need to be added to options(4).
Revision 1.669: download - view: text, markup, annotated - select for diffs
Fri Apr 29 16:58:39 2005 UTC (20 years ago) by augustss
Branches: MAIN
Diff to: previous 1.668: preferred, colored
Changes since revision 1.668: +4 -3
lines
Mention UKBD_LAYOUT, which corresponds to PCKBD_LAYOUT for the ukbd driver.
Revision 1.649.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 29 11:28:11 2005 UTC (20 years ago) by kent
Branches: kent-audio2
Diff to: previous 1.649: preferred, colored; next MAIN 1.650: preferred, colored
Changes since revision 1.649: +41 -2
lines
sync with -current
Revision 1.668: download - view: text, markup, annotated - select for diffs
Tue Apr 26 12:13:33 2005 UTC (20 years ago) by augustss
Branches: MAIN
CVS tags: kent-audio2-base
Diff to: previous 1.667: preferred, colored
Changes since revision 1.667: +3 -3
lines
Alphabetize.
Revision 1.667: download - view: text, markup, annotated - select for diffs
Wed Apr 20 13:44:45 2005 UTC (20 years ago) by blymn
Branches: MAIN
Diff to: previous 1.666: preferred, colored
Changes since revision 1.666: +22 -2
lines
Rototill of the verified exec functionality.
* We now use hash tables instead of a list to store the in kernel
fingerprints.
* Fingerprint methods handling has been made more flexible, it is now
even simpler to add new methods.
* the loader no longer passes in magic numbers representing the
fingerprint method so veriexecctl is not longer kernel specific.
* fingerprint methods can be tailored out using options in the kernel
config file.
* more fingerprint methods added - rmd160, sha256/384/512
* veriexecctl can now report the fingerprint methods supported by the
running kernel.
* regularised the naming of some portions of veriexec.
Revision 1.661.2.1: download - view: text, markup, annotated - select for diffs
Sun Apr 17 11:44:31 2005 UTC (20 years ago) by tron
Branches: netbsd-3
Diff to: previous 1.661: preferred, colored
Changes since revision 1.661: +6 -2
lines
Pull up revision 1.666 (requested by itohy in ticket #160):
Add ukyopon(4).
Revision 1.666: download - view: text, markup, annotated - select for diffs
Fri Apr 15 17:27:21 2005 UTC (20 years ago) by itohy
Branches: MAIN
Diff to: previous 1.665: preferred, colored
Changes since revision 1.665: +6 -2
lines
Add ukyopon(4).
Revision 1.665: download - view: text, markup, annotated - select for diffs
Sun Apr 10 23:02:01 2005 UTC (20 years ago) by perry
Branches: MAIN
Diff to: previous 1.664: preferred, colored
Changes since revision 1.664: +3 -3
lines
change a set of spaces to " \t"
Revision 1.664: download - view: text, markup, annotated - select for diffs
Sun Apr 3 11:39:07 2005 UTC (20 years ago) by jdolecek
Branches: MAIN
Diff to: previous 1.663: preferred, colored
Changes since revision 1.663: +3 -2
lines
add tra* at mca?
Revision 1.595.2.11.2.1: download - view: text, markup, annotated - select for diffs
Sat Apr 2 21:30:30 2005 UTC (20 years ago) by he
Branches: netbsd-2
Diff to: previous 1.595.2.11: preferred, colored
Changes since revision 1.595.2.11: +1 -0
lines
Pull up revision 1.641 (requested by bouyer in ticket #1019):
Add pdcsata(4), a driver for the Promise SATA150 (aka PDC203xx) series of
controllers.
Revision 1.564.2.20: download - view: text, markup, annotated - select for diffs
Fri Apr 1 14:27:38 2005 UTC (20 years ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.19: preferred, colored
Changes since revision 1.564.2.19: +5 -2
lines
Sync with HEAD.
Revision 1.652.2.3: download - view: text, markup, annotated - select for diffs
Sat Mar 26 18:19:17 2005 UTC (20 years, 1 month ago) by yamt
Branches: yamt-km
Diff to: previous 1.652.2.2: preferred, colored; branchpoint 1.652: preferred, colored; next MAIN 1.653: preferred, colored
Changes since revision 1.652.2.2: +5 -2
lines
sync with head.
Revision 1.663: download - view: text, markup, annotated - select for diffs
Fri Mar 25 23:28:44 2005 UTC (20 years, 1 month ago) by cube
Branches: MAIN
CVS tags: yamt-km-base4
Diff to: previous 1.662: preferred, colored
Changes since revision 1.662: +4 -2
lines
Add attimer(4) configurations everywhere pcppi(4) exists, with the
following rule:
If a pcppi device is enabled for an attachment, enable an attimer for the
same attachement, otherwise comment it.
Revision 1.662: download - view: text, markup, annotated - select for diffs
Mon Mar 21 14:15:27 2005 UTC (20 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.661: preferred, colored
Changes since revision 1.661: +3 -2
lines
Add "pcppi* at acpi?" commented out.
Revision 1.652.2.2: download - view: text, markup, annotated - select for diffs
Sat Mar 19 08:33:01 2005 UTC (20 years, 1 month ago) by yamt
Branches: yamt-km
Diff to: previous 1.652.2.1: preferred, colored; branchpoint 1.652: preferred, colored
Changes since revision 1.652.2.1: +5 -4
lines
sync with head. xen and whitespace. xen part is not finished.
Revision 1.564.2.19: download - view: text, markup, annotated - select for diffs
Fri Mar 4 16:38:37 2005 UTC (20 years, 1 month ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.18: preferred, colored
Changes since revision 1.564.2.18: +5 -3
lines
Sync with HEAD.
Hi Perry!
Revision 1.661: download - view: text, markup, annotated - select for diffs
Thu Mar 3 23:02:01 2005 UTC (20 years, 1 month ago) by tron
Branches: MAIN
CVS tags: yamt-km-base3,
netbsd-3-base
Branch point for: netbsd-3
Diff to: previous 1.660: preferred, colored
Changes since revision 1.660: +0 -1
lines
Backout last commit because an entry for atu(4) already existed.
Problem noted by FUKAUMI Naoki on current-users mailing list.
Revision 1.660: download - view: text, markup, annotated - select for diffs
Tue Mar 1 02:31:25 2005 UTC (20 years, 1 month ago) by itojun
Branches: MAIN
Diff to: previous 1.659: preferred, colored
Changes since revision 1.659: +3 -2
lines
add atu ether driver on usb
Revision 1.659: download - view: text, markup, annotated - select for diffs
Sun Feb 20 18:39:41 2005 UTC (20 years, 2 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.658: preferred, colored
Changes since revision 1.658: +4 -2
lines
add vge(4), ciphy(4)
Revision 1.658: download - view: text, markup, annotated - select for diffs
Fri Feb 18 21:05:52 2005 UTC (20 years, 2 months ago) by dsl
Branches: MAIN
Diff to: previous 1.657: preferred, colored
Changes since revision 1.657: +3 -3
lines
Invert FFS_SNAPSHOT to FFS_NO_SNAPSHOT
Revision 1.564.2.18: download - view: text, markup, annotated - select for diffs
Thu Feb 17 07:10:36 2005 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.17: preferred, colored
Changes since revision 1.564.2.17: +2 -3
lines
Sync with HEAD.
Revision 1.564.2.17: download - view: text, markup, annotated - select for diffs
Tue Feb 15 21:32:41 2005 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.16: preferred, colored
Changes since revision 1.564.2.16: +5 -2
lines
Sync with HEAD.
Revision 1.657: download - view: text, markup, annotated - select for diffs
Tue Feb 15 21:07:37 2005 UTC (20 years, 2 months ago) by jwise
Branches: MAIN
Diff to: previous 1.656: preferred, colored
Changes since revision 1.656: +2 -3
lines
FFS_SNAPSHOT does not need to be here _twice_, once on, once off. Obviously,
we keep the one that's on, so as not to change meaning.
Revision 1.652.2.1: download - view: text, markup, annotated - select for diffs
Sat Feb 12 18:17:33 2005 UTC (20 years, 2 months ago) by yamt
Branches: yamt-km
Diff to: previous 1.652: preferred, colored
Changes since revision 1.652: +7 -2
lines
sync with head.
Revision 1.656: download - view: text, markup, annotated - select for diffs
Sat Feb 12 13:07:27 2005 UTC (20 years, 2 months ago) by jdolecek
Branches: MAIN
CVS tags: yamt-km-base2
Diff to: previous 1.655: preferred, colored
Changes since revision 1.655: +3 -2
lines
add npx* at pnpbios? (commented out)
Revision 1.655: download - view: text, markup, annotated - select for diffs
Fri Feb 11 08:25:54 2005 UTC (20 years, 2 months ago) by dsl
Branches: MAIN
Diff to: previous 1.654: preferred, colored
Changes since revision 1.654: +4 -2
lines
Add 'option FFS_SNAPSHOT' to most of the config files.
Commented out for kernels that appear to hace space constraints.
Revision 1.564.2.16: download - view: text, markup, annotated - select for diffs
Fri Feb 4 11:44:20 2005 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.15: preferred, colored
Changes since revision 1.564.2.15: +4 -2
lines
Sync with HEAD.
Revision 1.654: download - view: text, markup, annotated - select for diffs
Mon Jan 31 16:54:34 2005 UTC (20 years, 2 months ago) by hannken
Branches: MAIN
Diff to: previous 1.653: preferred, colored
Changes since revision 1.653: +3 -2
lines
Add file system snapshots to kernel configs.
- Ffs internal snapshots get compiled in unconditionally.
- File system snapshot device fss(4) added to all kernel configs that
have a disk. Device is commented out on all non-GENERIC kernels.
Reviewed by: Jason Thorpe <thorpej@netbsd.org>
Revision 1.653: download - view: text, markup, annotated - select for diffs
Fri Jan 28 03:19:50 2005 UTC (20 years, 3 months ago) by rumble
Branches: MAIN
Diff to: previous 1.652: preferred, colored
Changes since revision 1.652: +3 -2
lines
Sprinkle options UFS_DIRHASH on GENERIC kernels. It's presently
commented out and labeled experimental pending further review and
testing.
Revision 1.564.2.15: download - view: text, markup, annotated - select for diffs
Mon Jan 24 08:34:12 2005 UTC (20 years, 3 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.14: preferred, colored
Changes since revision 1.564.2.14: +7 -2
lines
Sync with HEAD.
Revision 1.652: download - view: text, markup, annotated - select for diffs
Mon Jan 24 03:02:45 2005 UTC (20 years, 3 months ago) by joff
Branches: MAIN
CVS tags: yamt-km-base
Branch point for: yamt-km
Diff to: previous 1.651: preferred, colored
Changes since revision 1.651: +5 -2
lines
Add atu(4) 802.11b USB driver
Revision 1.651: download - view: text, markup, annotated - select for diffs
Tue Jan 18 10:28:00 2005 UTC (20 years, 3 months ago) by scw
Branches: MAIN
Diff to: previous 1.650: preferred, colored
Changes since revision 1.650: +3 -2
lines
Add "options PMS_SYNAPTICS_TOUCHPAD", commented out in all but GENERIC_LAPTOP.
Revision 1.564.2.14: download - view: text, markup, annotated - select for diffs
Mon Jan 17 19:29:28 2005 UTC (20 years, 3 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.13: preferred, colored
Changes since revision 1.564.2.13: +5 -3
lines
Sync with HEAD.
Revision 1.650: download - view: text, markup, annotated - select for diffs
Mon Jan 17 15:28:51 2005 UTC (20 years, 3 months ago) by cube
Branches: MAIN
Diff to: previous 1.649: preferred, colored
Changes since revision 1.649: +3 -2
lines
Add tap(4) support to a random^Wcarefully chosen set of kernel configs.
All those kernels have a line for both tun and bridge, and if either is
commented out, tap is commented out also. With the exception of i386's
GENERIC_TINY.
XXX: we _need_ some way of making this more simple.
Revision 1.649: download - view: text, markup, annotated - select for diffs
Wed Jan 12 00:18:16 2005 UTC (20 years, 3 months ago) by reinoud
Branches: MAIN
Branch point for: kent-audio2
Diff to: previous 1.648: preferred, colored
Changes since revision 1.648: +3 -2
lines
Add auixp(4) driver for the architectures that are known to have the ATI
IXP chipset.
Revision 1.648: download - view: text, markup, annotated - select for diffs
Tue Jan 11 18:43:42 2005 UTC (20 years, 3 months ago) by skrll
Branches: MAIN
Diff to: previous 1.647: preferred, colored
Changes since revision 1.647: +3 -2
lines
Add iwi(4).
Revision 1.647: download - view: text, markup, annotated - select for diffs
Fri Jan 7 01:31:14 2005 UTC (20 years, 3 months ago) by perry
Branches: MAIN
CVS tags: kent-audio1-beforemerge
Diff to: previous 1.646: preferred, colored
Changes since revision 1.646: +3 -3
lines
space-then-tab ixpide so it comments out nicely.
Revision 1.564.2.13: download - view: text, markup, annotated - select for diffs
Sat Dec 18 09:31:03 2004 UTC (20 years, 4 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.12: preferred, colored
Changes since revision 1.564.2.12: +6 -2
lines
Sync with HEAD.
Revision 1.646: download - view: text, markup, annotated - select for diffs
Mon Dec 6 19:28:12 2004 UTC (20 years, 4 months ago) by cube
Branches: MAIN
CVS tags: kent-audio1-base,
kent-audio1
Diff to: previous 1.645: preferred, colored
Changes since revision 1.645: +3 -2
lines
Add ixpide(4).
Revision 1.645: download - view: text, markup, annotated - select for diffs
Thu Dec 2 14:33:31 2004 UTC (20 years, 4 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.644: preferred, colored
Changes since revision 1.644: +3 -2
lines
Add ACPI joy(4) attachment, based on lpt_acpi.c by jmcneill@,
reviewed and ok'ed by cube@ and martin@.
Revision 1.644: download - view: text, markup, annotated - select for diffs
Thu Dec 2 09:50:42 2004 UTC (20 years, 4 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.643: preferred, colored
Changes since revision 1.643: +3 -2
lines
Add ACPI mpu(4) attachment, based on lpt_acpi.c by jmcneill@,
reviewed by christos@, cube@ and martin@.
While here, remove a printf() in mpu_attach() (ic/mpu.c) to remove
an empty line in some frontends (mpu_isa.c, etc).
Revision 1.643: download - view: text, markup, annotated - select for diffs
Wed Dec 1 22:27:46 2004 UTC (20 years, 4 months ago) by grant
Branches: MAIN
Diff to: previous 1.642: preferred, colored
Changes since revision 1.642: +3 -2
lines
add iteide(4) driver for ITE8212-based IDE controllers. from
OpenBSD, ported to NetBSD by me.
ok'd by bouyer@, thorpej@.
Revision 1.564.2.12: download - view: text, markup, annotated - select for diffs
Mon Nov 29 07:24:04 2004 UTC (20 years, 4 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.11: preferred, colored
Changes since revision 1.564.2.11: +4 -3
lines
Sync with HEAD.
Revision 1.642: download - view: text, markup, annotated - select for diffs
Thu Nov 25 16:13:34 2004 UTC (20 years, 5 months ago) by kim
Branches: MAIN
Diff to: previous 1.641: preferred, colored
Changes since revision 1.641: +3 -3
lines
Whitespace police.
Revision 1.641: download - view: text, markup, annotated - select for diffs
Wed Nov 24 20:49:21 2004 UTC (20 years, 5 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.640: preferred, colored
Changes since revision 1.640: +3 -2
lines
pdcsata(4), a driver for the Promise SATA150 (aka PDC203xx) serie of
controllers. Tested with a PDC20375 (2 SATA, one PATA) controller on sparc64.
Added to all kernel config file which had pdcide(4).
Revision 1.564.2.11: download - view: text, markup, annotated - select for diffs
Sun Nov 14 08:15:16 2004 UTC (20 years, 5 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.10: preferred, colored
Changes since revision 1.564.2.10: +4 -3
lines
Sync with HEAD.
Revision 1.491.4.7: download - view: text, markup, annotated - select for diffs
Thu Nov 11 23:29:54 2004 UTC (20 years, 5 months ago) by he
Branches: netbsd-1-6
Diff to: previous 1.491.4.6: preferred, colored; branchpoint 1.491: preferred, colored
Changes since revision 1.491.4.6: +5 -2
lines
Pull up revision 1.629 (via patch, requested by itohy in ticket #1741):
Add support for the Workbit NinjaSCSI-32 PCI/Cardbus
SCSI driver, njs(4).
Revision 1.640: download - view: text, markup, annotated - select for diffs
Wed Nov 10 17:54:05 2004 UTC (20 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.639: preferred, colored
Changes since revision 1.639: +2 -3
lines
Add COMPAT_BSDPTY to the rest of the config files.
Revision 1.639: download - view: text, markup, annotated - select for diffs
Wed Nov 10 17:25:21 2004 UTC (20 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.638: preferred, colored
Changes since revision 1.638: +4 -2
lines
Add COMPAT_BSDPTY on all the kernels that have COMPAT options.
Revision 1.564.2.10: download - view: text, markup, annotated - select for diffs
Wed Nov 3 16:40:13 2004 UTC (20 years, 5 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.9: preferred, colored
Changes since revision 1.564.2.9: +4 -4
lines
Don't enable DIAGNOSTIC or DEBUG.
Revision 1.564.2.9: download - view: text, markup, annotated - select for diffs
Tue Nov 2 07:50:34 2004 UTC (20 years, 5 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.8: preferred, colored
Changes since revision 1.564.2.8: +8 -4
lines
Sync with HEAD.
Revision 1.638: download - view: text, markup, annotated - select for diffs
Mon Nov 1 23:20:42 2004 UTC (20 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.637: preferred, colored
Changes since revision 1.637: +3 -3
lines
Grammar fix in comment.
Revision 1.637: download - view: text, markup, annotated - select for diffs
Tue Oct 26 19:52:23 2004 UTC (20 years, 6 months ago) by perry
Branches: MAIN
Diff to: previous 1.636: preferred, colored
Changes since revision 1.636: +3 -3
lines
replace a tab with a space so commenting out auacer is more
aesthetically acceptable.
Revision 1.636: download - view: text, markup, annotated - select for diffs
Sat Oct 23 14:00:51 2004 UTC (20 years, 6 months ago) by augustss
Branches: MAIN
Diff to: previous 1.635: preferred, colored
Changes since revision 1.635: +3 -3
lines
s/uax/axe/
Revision 1.635: download - view: text, markup, annotated - select for diffs
Fri Oct 22 13:10:20 2004 UTC (20 years, 6 months ago) by augustss
Branches: MAIN
Diff to: previous 1.634: preferred, colored
Changes since revision 1.634: +3 -2
lines
Add cdce(4).
Revision 1.634: download - view: text, markup, annotated - select for diffs
Thu Oct 21 17:12:41 2004 UTC (20 years, 6 months ago) by augustss
Branches: MAIN
Diff to: previous 1.633: preferred, colored
Changes since revision 1.633: +5 -2
lines
Add a gross hack to route the ECHI interrupt on the Sharp MM20.
You can read the long and sad story about the BIOS in a comment.
Revision 1.564.2.8: download - view: text, markup, annotated - select for diffs
Tue Oct 19 15:56:35 2004 UTC (20 years, 6 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.7: preferred, colored
Changes since revision 1.564.2.7: +4 -2
lines
Sync with HEAD
Revision 1.633: download - view: text, markup, annotated - select for diffs
Tue Oct 19 05:44:25 2004 UTC (20 years, 6 months ago) by lukem
Branches: MAIN
Diff to: previous 1.632: preferred, colored
Changes since revision 1.632: +3 -2
lines
enable ipw* (Intel PRO/Wireless 2100). (requested by hubertf)
Revision 1.632: download - view: text, markup, annotated - select for diffs
Sun Oct 10 16:39:36 2004 UTC (20 years, 6 months ago) by augustss
Branches: MAIN
Diff to: previous 1.631: preferred, colored
Changes since revision 1.631: +3 -2
lines
Add auacer.
Revision 1.564.2.7: download - view: text, markup, annotated - select for diffs
Tue Sep 21 13:16:35 2004 UTC (20 years, 7 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.6: preferred, colored
Changes since revision 1.564.2.6: +2 -2
lines
Fix the sync with head I botched.
Revision 1.564.2.6: download - view: text, markup, annotated - select for diffs
Sat Sep 18 14:35:22 2004 UTC (20 years, 7 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.5: preferred, colored
Changes since revision 1.564.2.5: +7 -6
lines
Sync with HEAD.
Revision 1.631: download - view: text, markup, annotated - select for diffs
Wed Sep 8 11:38:22 2004 UTC (20 years, 7 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.630: preferred, colored
Changes since revision 1.630: +4 -4
lines
Set valid values for the (commented out) WS_DEFAULT_COLATTR and
WS_DEFAULT_MONOATTR options. This way, if a user blindly uncomments
them, he will not get a build failure. Addresses PR kern/26503.
Revision 1.630: download - view: text, markup, annotated - select for diffs
Sat Sep 4 23:29:48 2004 UTC (20 years, 7 months ago) by manu
Branches: MAIN
Diff to: previous 1.629: preferred, colored
Changes since revision 1.629: +3 -2
lines
IPv4 PIM support, based on a submission from Pavlin Radoslavov posted on
tech-net@
Revision 1.564.2.5: download - view: text, markup, annotated - select for diffs
Fri Sep 3 12:44:47 2004 UTC (20 years, 7 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.4: preferred, colored
Changes since revision 1.564.2.4: +6 -4
lines
Sync with HEAD
Revision 1.595.2.11: download - view: text, markup, annotated - select for diffs
Mon Aug 30 09:52:37 2004 UTC (20 years, 7 months ago) by tron
Branches: netbsd-2-0
CVS tags: netbsd-2-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE
Branch point for: netbsd-2
Diff to: previous 1.595.2.10: preferred, colored; branchpoint 1.595: preferred, colored
Changes since revision 1.595.2.10: +2 -0
lines
Pull up revision 1.629 (requested by itohy in ticket #800):
Add njs to some generic config files (I tested on i386 and sparc64).
Revision 1.629: download - view: text, markup, annotated - select for diffs
Thu Aug 26 14:33:01 2004 UTC (20 years, 8 months ago) by itohy
Branches: MAIN
Diff to: previous 1.628: preferred, colored
Changes since revision 1.628: +4 -2
lines
Add njs to some generic config files (I tested on i386 and sparc64).
Revision 1.564.2.4: download - view: text, markup, annotated - select for diffs
Thu Aug 12 11:41:11 2004 UTC (20 years, 8 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.3: preferred, colored
Changes since revision 1.564.2.3: +6 -4
lines
Sync with HEAD.
Revision 1.628: download - view: text, markup, annotated - select for diffs
Tue Aug 10 20:50:11 2004 UTC (20 years, 8 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.627: preferred, colored
Changes since revision 1.627: +3 -2
lines
+cs@pcmcia
Revision 1.627: download - view: text, markup, annotated - select for diffs
Sun Aug 8 08:57:09 2004 UTC (20 years, 8 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.626: preferred, colored
Changes since revision 1.626: +5 -4
lines
xi -> xirc,com,xi
Revision 1.564.2.3: download - view: text, markup, annotated - select for diffs
Thu Aug 5 20:23:05 2004 UTC (20 years, 8 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.2: preferred, colored
Changes since revision 1.564.2.2: +8 -8
lines
Fix some merge mistakes.
Revision 1.564.2.2: download - view: text, markup, annotated - select for diffs
Tue Aug 3 10:35:47 2004 UTC (20 years, 8 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.564.2.1: preferred, colored
Changes since revision 1.564.2.1: +240 -148
lines
Sync with HEAD
Revision 1.626: download - view: text, markup, annotated - select for diffs
Sat Jul 31 17:35:19 2004 UTC (20 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.625: preferred, colored
Changes since revision 1.625: +4 -3
lines
update the comment for ichlpcib to include SpeedStep.
Revision 1.625: download - view: text, markup, annotated - select for diffs
Thu Jul 29 22:29:35 2004 UTC (20 years, 9 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.624: preferred, colored
Changes since revision 1.624: +5 -2
lines
Implement border color customization in wscons(4), only available for vga(4)
at the moment.
This includes the addition of two new wsdisplay ioctls, WSDISPLAY_{G,S}BORDER,
one to get the actual color and one to set it, respectively. Possible colors
match those defined by ANSI (and listed in wsdisplayvar.h).
It also adds two accessops to the underlying graphics device, getborder and
setborder, which mach their ioctl counterparts.
Two kernel options are added: WSDISPLAY_CUSTOM_BORDER, which enables the
ioctls described above (to customize the border color from userland after
boot), and WSDISPLAY_BORDER_COLOR, which sets the color at boot time.
The former is enabled by default on the GENERIC kernel, but not on INSTALL
(among others). The later is always commented out, leaving the usual black
border as a default.
wsconsctl is modified to allow accessing this value easily. For example,
'wsconsctl -d -w border=blue'.
Revision 1.624: download - view: text, markup, annotated - select for diffs
Wed Jul 28 12:34:02 2004 UTC (20 years, 9 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.623: preferred, colored
Changes since revision 1.623: +10 -3
lines
Implement support to dynamically change wscons console and kernel colors.
Two new ioctls are added to the wsdisplay device, named WSDISPLAY_GMSGATTRS
and WSDISPLAY_SMSGATTRS, used to retrieve the actual values and set them,
respectively (the name, if you are wondering, comes from "message attributes").
A new emulop is added to the underlying display driver (only vga, for now)
which sets the new attribute for the whole screen, without having to clear
it. This is optional, which means that this also works with other drivers
that don't have this new operation.
Five new kernel options have been added, although only documented in
i386 kernels (for now):
- WSDISPLAY_CUSTOM_OUTPUT, which enables the ioctls described above to
change the colors dynamically from userland. This is enabled by default
in the GENERIC kernel (as well as others) but disabled on all INSTALL*
kernels (as this feature is useless there).
- WS_DEFAULT_COLATTR, WS_DEFAULT_MONOATTR, WS_DEFAULT_BG and WS_DEFAULT_FG,
which specify the default colors for the console at boot time. These have
the same meaning as the (already existing) WS_KERNEL_* variables.
wsconsctl is modified to add msg.default.{attrs,bg,fg} and
msg.kernel.{attrs,bg,fg} to the display part, so that colors can be changed
after boot.
Tested on NetBSD/i386 with vga (and vga in mono mode), and on NetBSD/mac68k.
No objections in tech-kern@.
Revision 1.595.2.10: download - view: text, markup, annotated - select for diffs
Fri Jul 23 23:33:20 2004 UTC (20 years, 9 months ago) by he
Branches: netbsd-2-0
Diff to: previous 1.595.2.9: preferred, colored; branchpoint 1.595: preferred, colored
Changes since revision 1.595.2.9: +2 -3
lines
Pull up revision 1.623 (requested by tron in ticket #702):
Enable ehci(4) by default.
Revision 1.623: download - view: text, markup, annotated - select for diffs
Mon Jul 19 14:23:59 2004 UTC (20 years, 9 months ago) by tron
Branches: MAIN
Diff to: previous 1.622: preferred, colored
Changes since revision 1.622: +4 -5
lines
Enable ehci(4) by default.
Revision 1.595.2.9: download - view: text, markup, annotated - select for diffs
Thu Jul 15 20:19:45 2004 UTC (20 years, 9 months ago) by he
Branches: netbsd-2-0
Diff to: previous 1.595.2.8: preferred, colored; branchpoint 1.595: preferred, colored
Changes since revision 1.595.2.8: +1 -0
lines
Pull up revision 1.622 (requested by atatat in ticket #663):
Add "options SYSCTL_INCLUDE_DESCR" to a lot of configurations,
but commented out in most of them.
Revision 1.622: download - view: text, markup, annotated - select for diffs
Thu Jul 15 03:53:47 2004 UTC (20 years, 9 months ago) by atatat
Branches: MAIN
Diff to: previous 1.621: preferred, colored
Changes since revision 1.621: +3 -2
lines
Add "options SYSCTL_INCLUDE_DESCR" to a lot of configs, but commented
out in most of them.
Revision 1.595.2.8: download - view: text, markup, annotated - select for diffs
Wed Jul 14 09:05:52 2004 UTC (20 years, 9 months ago) by tron
Branches: netbsd-2-0
Diff to: previous 1.595.2.7: preferred, colored; branchpoint 1.595: preferred, colored
Changes since revision 1.595.2.7: +1 -0
lines
Pull up revision 1.620 (requested by bouyer in ticket #644):
Add geodeide(4), a driver for the AMD Geode CS5530A IDE controller.
Tested by Ian Zagorskih (ianzag at megasignal.com).
Revision 1.595.2.7: download - view: text, markup, annotated - select for diffs
Tue Jul 13 09:27:14 2004 UTC (20 years, 9 months ago) by tron
Branches: netbsd-2-0
Diff to: previous 1.595.2.6: preferred, colored; branchpoint 1.595: preferred, colored
Changes since revision 1.595.2.6: +3 -2
lines
Pull up revision 1.615 (requested by he in ticket #641):
Add re; Realtek GbE.
Revision 1.621: download - view: text, markup, annotated - select for diffs
Sat Jul 10 18:51:01 2004 UTC (20 years, 9 months ago) by cube
Branches: MAIN
Diff to: previous 1.620: preferred, colored
Changes since revision 1.620: +3 -2
lines
Add an option to allow any user to write to machdep.est.frequency.target,
which is very handy on a laptop to control EST through another program that
you don't necessarily want to run as root (in my case, gkrellm).
The option's name is EST_FREQ_USERWRITE, and is disabled by default.
Revision 1.595.2.6: download - view: text, markup, annotated - select for diffs
Sat Jul 10 03:57:27 2004 UTC (20 years, 9 months ago) by grant
Branches: netbsd-2-0
Diff to: previous 1.595.2.5: preferred, colored; branchpoint 1.595: preferred, colored
Changes since revision 1.595.2.5: +2 -3
lines
Pull up revision 1.618 (requested by abs in ticket #608):
Remove accidently added UMASS_DEBUG.
Revision 1.620: download - view: text, markup, annotated - select for diffs
Fri Jul 9 18:38:40 2004 UTC (20 years, 9 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.619: preferred, colored
Changes since revision 1.619: +3 -2
lines
Add geodeide(4), a driver for the AMD Geode CS5530A IDE controller.
Tested by Ian Zagorskih (ianzag at megasignal.com).
Revision 1.619: download - view: text, markup, annotated - select for diffs
Tue Jul 6 22:53:36 2004 UTC (20 years, 9 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.618: preferred, colored
Changes since revision 1.618: +2 -5
lines
Remove XSERVER and XSERVER_DDB from all config files. wscons does not use
these, and pccons is rapidly heading for the guillotine.
Revision 1.618: download - view: text, markup, annotated - select for diffs
Mon Jul 5 22:30:38 2004 UTC (20 years, 9 months ago) by abs
Branches: MAIN
Diff to: previous 1.617: preferred, colored
Changes since revision 1.617: +2 -3
lines
Remove accidently added UMASS_DEBUG. Thanks to kimmo for spotting.
Revision 1.595.2.5: download - view: text, markup, annotated - select for diffs
Wed Jun 30 21:08:45 2004 UTC (20 years, 9 months ago) by jdc
Branches: netbsd-2-0
Diff to: previous 1.595.2.4: preferred, colored; branchpoint 1.595: preferred, colored
Changes since revision 1.595.2.4: +16 -2
lines
Pull up revision 1.616 (requested by abs in ticket #567).
Add (commented out) ALTQ options to all GENERIC-like files
Revision 1.617: download - view: text, markup, annotated - select for diffs
Tue Jun 29 04:51:29 2004 UTC (20 years, 10 months ago) by itojun
Branches: MAIN
Diff to: previous 1.616: preferred, colored
Changes since revision 1.616: +3 -3
lines
s/options\t\t/options \t/. (whether UMASS_DEBUG is appropriate for everyone's
GENERIC is a different issue. i'm not sure)
Revision 1.616: download - view: text, markup, annotated - select for diffs
Sat Jun 26 07:32:06 2004 UTC (20 years, 10 months ago) by abs
Branches: MAIN
Diff to: previous 1.615: preferred, colored
Changes since revision 1.615: +16 -2
lines
Add (commented out) ALTQ options to all GENERIC-like files
Revision 1.615: download - view: text, markup, annotated - select for diffs
Tue Jun 22 15:18:33 2004 UTC (20 years, 10 months ago) by toshii
Branches: MAIN
Diff to: previous 1.614: preferred, colored
Changes since revision 1.614: +3 -2
lines
Add re; Realtek GbE.
Revision 1.614: download - view: text, markup, annotated - select for diffs
Tue Jun 22 14:09:50 2004 UTC (20 years, 10 months ago) by itojun
Branches: MAIN
Diff to: previous 1.613: preferred, colored
Changes since revision 1.613: +4 -2
lines
have pf and pflog pseudo-device (commented out).
reviewed by matt, perry, christos
Revision 1.613: download - view: text, markup, annotated - select for diffs
Fri Jun 18 15:04:39 2004 UTC (20 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.612: preferred, colored
Changes since revision 1.612: +2 -3
lines
ptm is now mandatory, depends on pty, and can be disabled with -DNO_DEV_PTM
Revision 1.595.2.4: download - view: text, markup, annotated - select for diffs
Mon Jun 14 03:18:51 2004 UTC (20 years, 10 months ago) by jmc
Branches: netbsd-2-0
Diff to: previous 1.595.2.3: preferred, colored; branchpoint 1.595: preferred, colored
Changes since revision 1.595.2.3: +3 -2
lines
Pullup patch (requested by kochi in ticket #463)
Add ACPI_DISABLE_ON_POWEROFF option. PR#24869
Revision 1.612: download - view: text, markup, annotated - select for diffs
Mon Jun 14 01:28:00 2004 UTC (20 years, 10 months ago) by lukem
Branches: MAIN
Diff to: previous 1.611: preferred, colored
Changes since revision 1.611: +3 -3
lines
Use "options<SPACE><TAB>".
(`egrep -l '(^|[^e])options<TAB>'` is your friend...)
Revision 1.611: download - view: text, markup, annotated - select for diffs
Tue Jun 8 12:46:11 2004 UTC (20 years, 10 months ago) by kochi
Branches: MAIN
Diff to: previous 1.610: preferred, colored
Changes since revision 1.610: +3 -3
lines
Fix typo:
ACPI = Advanced *Configuration* and Power Interface
Revision 1.610: download - view: text, markup, annotated - select for diffs
Mon Jun 7 15:33:52 2004 UTC (20 years, 10 months ago) by kochi
Branches: MAIN
Diff to: previous 1.609: preferred, colored
Changes since revision 1.609: +3 -2
lines
Add ACPI_DISABLE_ON_POWEROFF option.
Revision 1.595.2.3: download - view: text, markup, annotated - select for diffs
Mon Jun 7 09:45:49 2004 UTC (20 years, 10 months ago) by tron
Branches: netbsd-2-0
Diff to: previous 1.595.2.2: preferred, colored; branchpoint 1.595: preferred, colored
Changes since revision 1.595.2.2: +2 -0
lines
Pull up revision 1.608 (requested by recht in ticket #451):
PR/19925: David Ferlier: Add scrolling support to wscons
Revision 1.609: download - view: text, markup, annotated - select for diffs
Tue Jun 1 16:29:36 2004 UTC (20 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.608: preferred, colored
Changes since revision 1.608: +3 -3
lines
Use SPC-TAB after the word "options".
Revision 1.608: download - view: text, markup, annotated - select for diffs
Fri May 28 21:44:51 2004 UTC (20 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.607: preferred, colored
Changes since revision 1.607: +4 -2
lines
PR/19925: David Ferlier: Add scrolling support to wscons
Revision 1.607: download - view: text, markup, annotated - select for diffs
Thu May 27 02:57:24 2004 UTC (20 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.606: preferred, colored
Changes since revision 1.606: +3 -2
lines
Add ptm device.
Revision 1.606: download - view: text, markup, annotated - select for diffs
Mon May 24 23:50:11 2004 UTC (20 years, 11 months ago) by tsarna
Branches: MAIN
Diff to: previous 1.605: preferred, colored
Changes since revision 1.605: +6 -2
lines
add uep driver
Revision 1.605: download - view: text, markup, annotated - select for diffs
Sat May 22 03:16:26 2004 UTC (20 years, 11 months ago) by grant
Branches: MAIN
Diff to: previous 1.604: preferred, colored
Changes since revision 1.604: +4 -3
lines
add `scsibus* at umass?' so usb mass storage devices which attach to
sd@scsibus can be used out of the box.
whitespace tweak for wd* at umass?
Revision 1.604: download - view: text, markup, annotated - select for diffs
Fri May 21 03:30:40 2004 UTC (20 years, 11 months ago) by atatat
Branches: MAIN
Diff to: previous 1.603: preferred, colored
Changes since revision 1.603: +4 -4
lines
Whitespace nits
Revision 1.603: download - view: text, markup, annotated - select for diffs
Tue May 11 23:07:35 2004 UTC (20 years, 11 months ago) by wiz
Branches: MAIN
Diff to: previous 1.602: preferred, colored
Changes since revision 1.602: +7 -2
lines
Add commented out entries for ioat* and nsclpcsio*;
from Sergey Svishchev in private mail.
Revision 1.595.2.2: download - view: text, markup, annotated - select for diffs
Wed May 5 15:30:00 2004 UTC (20 years, 11 months ago) by tron
Branches: netbsd-2-0
Diff to: previous 1.595.2.1: preferred, colored; branchpoint 1.595: preferred, colored
Changes since revision 1.595.2.1: +3 -3
lines
Pull up revision 1.602 (requested by gendalia in ticket #244):
Uncomment 'wd* at umass?' in GENERIC, add to GENERIC_LAPTOP.
supports the ISD's ATA protocol over Bulk-Only, used with the Archos studio
and Archos Jukebox products, among others.
Revision 1.602: download - view: text, markup, annotated - select for diffs
Fri Apr 30 17:41:19 2004 UTC (20 years, 11 months ago) by gendalia
Branches: MAIN
Diff to: previous 1.601: preferred, colored
Changes since revision 1.601: +3 -3
lines
Uncomment 'wd* at umass?' in GENERIC, add to GENERIC_LAPTOP.
supports the ISD's ATA protocol over Bulk-Only, used with the Archos studio
and Archos Jukebox products, among others.
Revision 1.601: download - view: text, markup, annotated - select for diffs
Fri Apr 30 15:55:10 2004 UTC (20 years, 11 months ago) by fredb
Branches: MAIN
Diff to: previous 1.600: preferred, colored
Changes since revision 1.600: +4 -4
lines
- - "options" should be followed by <SPACE><TAB>.
- - restore "options COMPAT_20", no doubt commented out by mistake.
Revision 1.595.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 30 03:41:59 2004 UTC (20 years, 11 months ago) by jmc
Branches: netbsd-2-0
Diff to: previous 1.595: preferred, colored
Changes since revision 1.595: +4 -4
lines
Pullup patch (requested by minoura in ticket #233)
Comment out ichlpcib.
Revision 1.600: download - view: text, markup, annotated - select for diffs
Fri Apr 30 02:47:16 2004 UTC (20 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.599: preferred, colored
Changes since revision 1.599: +6 -3
lines
Add and document PCIBIOS_LIBRETTO_FIXUP
Revision 1.599: download - view: text, markup, annotated - select for diffs
Fri Apr 30 02:08:17 2004 UTC (20 years, 11 months ago) by lukem
Branches: MAIN
Diff to: previous 1.598: preferred, colored
Changes since revision 1.598: +5 -2
lines
add ENHANCED_SPEEDSTEP
Revision 1.598: download - view: text, markup, annotated - select for diffs
Thu Apr 29 11:54:24 2004 UTC (21 years ago) by minoura
Branches: MAIN
Diff to: previous 1.597: preferred, colored
Changes since revision 1.597: +4 -4
lines
Comment out ichlpcib.
There are at least 2 reports that it freezes upon startup.
http://mail-index.netbsd.org/current-users/2004/04/19/0016.html
Revision 1.597: download - view: text, markup, annotated - select for diffs
Wed Apr 21 01:05:35 2004 UTC (21 years ago) by christos
Branches: MAIN
Diff to: previous 1.596: preferred, colored
Changes since revision 1.596: +3 -2
lines
Replace the statfs() family of system calls with statvfs().
Retain binary compatibility.
Revision 1.596: download - view: text, markup, annotated - select for diffs
Wed Apr 7 13:13:59 2004 UTC (21 years ago) by augustss
Branches: MAIN
Diff to: previous 1.595: preferred, colored
Changes since revision 1.595: +4 -4
lines
Put ichlpcib in alphabetical order.
Revision 1.595: download - view: text, markup, annotated - select for diffs
Sun Mar 14 08:09:42 2004 UTC (21 years, 1 month ago) by minoura
Branches: MAIN
CVS tags: netbsd-2-0-base
Branch point for: netbsd-2-0
Diff to: previous 1.594: preferred, colored
Changes since revision 1.594: +4 -2
lines
Add ichlpcib.
Revision 1.594: download - view: text, markup, annotated - select for diffs
Wed Feb 25 18:56:26 2004 UTC (21 years, 2 months ago) by perry
Branches: MAIN
Diff to: previous 1.593: preferred, colored
Changes since revision 1.593: +3 -3
lines
fix another whitespace nit
Revision 1.593: download - view: text, markup, annotated - select for diffs
Wed Feb 25 18:50:01 2004 UTC (21 years, 2 months ago) by perry
Branches: MAIN
Diff to: previous 1.592: preferred, colored
Changes since revision 1.592: +22 -22
lines
juggle tabs and spaces so comments don't nuke line lengths as badly
Revision 1.592: download - view: text, markup, annotated - select for diffs
Fri Jan 16 17:02:05 2004 UTC (21 years, 3 months ago) by perry
Branches: MAIN
Diff to: previous 1.591: preferred, colored
Changes since revision 1.591: +3 -3
lines
Make the warning on NEW_BUFQ_STRATEGY much milder -- I've upgraded it
to "Likely stable". I'm not going to make it the default unilaterally
but I really think it should be.
Revision 1.591: download - view: text, markup, annotated - select for diffs
Fri Jan 9 18:31:25 2004 UTC (21 years, 3 months ago) by perry
Branches: MAIN
Diff to: previous 1.590: preferred, colored
Changes since revision 1.590: +5 -5
lines
nuke trailing spaces.
Revision 1.590: download - view: text, markup, annotated - select for diffs
Wed Dec 31 16:44:26 2003 UTC (21 years, 3 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.589: preferred, colored
Changes since revision 1.589: +3 -3
lines
Split opencrypto configuration into an attribute, usable by inkernel
clients, and a pseudo-device for userspace access.
The attribute is named `opencrypto'. The pseudo-device is renamed to
"crypto", which has a dependency on "opencrypto". The sys/conf/majors
entry and pseudo-device attach entrypoint are updated to match the
new pseudo-device name.
Fast IPsec (sys/netipsec/files.ipsec) now lists a dependency on the
"opencrypto" attribute. Drivers for crypto accelerators (ubsec,
hifn775x) also pull in opencrypto, as providers of opencrypto transforms.
Revision 1.589: download - view: text, markup, annotated - select for diffs
Tue Dec 30 18:09:50 2003 UTC (21 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.588: preferred, colored
Changes since revision 1.588: +3 -3
lines
Alphabetize IDE controllers
Revision 1.588: download - view: text, markup, annotated - select for diffs
Tue Dec 23 10:11:42 2003 UTC (21 years, 4 months ago) by kochi
Branches: MAIN
Diff to: previous 1.587: preferred, colored
Changes since revision 1.587: +3 -2
lines
add ACPICA_PEDANTIC option.
Revision 1.587: download - view: text, markup, annotated - select for diffs
Wed Dec 17 09:18:45 2003 UTC (21 years, 4 months ago) by tls
Branches: MAIN
Diff to: previous 1.586: preferred, colored
Changes since revision 1.586: +4 -4
lines
Add "sk" driver for SysKonnect/Marvell GigE cards.
Revision 1.586: download - view: text, markup, annotated - select for diffs
Sun Dec 14 09:54:01 2003 UTC (21 years, 4 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.585: preferred, colored
Changes since revision 1.585: +4 -2
lines
Add ath(4) for Atheros 802.11a/b/g cards.
Revision 1.585: download - view: text, markup, annotated - select for diffs
Sun Dec 14 01:32:02 2003 UTC (21 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.584: preferred, colored
Changes since revision 1.584: +3 -2
lines
Split the Intel i31244 SATA controller ("Artisea") driver out of piixide
into its own driver (artsata).
Revision 1.584: download - view: text, markup, annotated - select for diffs
Sat Dec 13 23:13:41 2003 UTC (21 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.583: preferred, colored
Changes since revision 1.583: +3 -2
lines
Split out the Silicon Image SATALink support into its own driver,
"satalink".
Revision 1.583: download - view: text, markup, annotated - select for diffs
Thu Nov 20 13:32:41 2003 UTC (21 years, 5 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.582: preferred, colored
Changes since revision 1.582: +4 -2
lines
Add (commented out) and document NO_TSC_TIME.
Revision 1.582: download - view: text, markup, annotated - select for diffs
Tue Nov 18 23:07:37 2003 UTC (21 years, 5 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.581: preferred, colored
Changes since revision 1.581: +11 -2
lines
Add opencrypto and drivers for PCI cryptographic accelerators --
hifn (Hifn 7751), ubsec (Broadcom 582x) -- to i386 GENERIC kernel.
Revision 1.581: download - view: text, markup, annotated - select for diffs
Wed Nov 5 07:51:12 2003 UTC (21 years, 5 months ago) by tron
Branches: MAIN
Diff to: previous 1.580: preferred, colored
Changes since revision 1.580: +3 -3
lines
Update comment for wm(4) attachment because the driver supports more
than the Intel 82543 and 82544.
Revision 1.580: download - view: text, markup, annotated - select for diffs
Tue Nov 4 23:38:41 2003 UTC (21 years, 5 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.579: preferred, colored
Changes since revision 1.579: +3 -2
lines
Add and enable igphy.
Revision 1.579: download - view: text, markup, annotated - select for diffs
Tue Nov 4 16:57:57 2003 UTC (21 years, 5 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.578: preferred, colored
Changes since revision 1.578: +3 -2
lines
Re-add ServerWorks IDE support, as "rccide". Note: this is untested, as I no
longer have a ServerWorks-based motherboard.
Revision 1.578: download - view: text, markup, annotated - select for diffs
Fri Oct 31 06:49:58 2003 UTC (21 years, 5 months ago) by nisimura
Branches: MAIN
Diff to: previous 1.577: preferred, colored
Changes since revision 1.577: +3 -2
lines
Added stpcide(4) driver for STMicroelectronics STPC IDE controllers.
Revision 1.577: download - view: text, markup, annotated - select for diffs
Sat Oct 18 08:12:07 2003 UTC (21 years, 6 months ago) by lukem
Branches: MAIN
Diff to: previous 1.576: preferred, colored
Changes since revision 1.576: +5 -16
lines
Use one 'atabus* at ata?' instead of multiple 'atabus* at FOOide? channel ?'
Revision 1.576: download - view: text, markup, annotated - select for diffs
Mon Oct 13 05:45:59 2003 UTC (21 years, 6 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.575: preferred, colored
Changes since revision 1.575: +4 -2
lines
Add atw (ADMtek ADM8211 802.11).
Revision 1.575: download - view: text, markup, annotated - select for diffs
Fri Oct 10 04:50:07 2003 UTC (21 years, 6 months ago) by grog
Branches: MAIN
Diff to: previous 1.574: preferred, colored
Changes since revision 1.574: +6 -2
lines
Add config info for Vinum
Revision 1.574: download - view: text, markup, annotated - select for diffs
Wed Oct 8 12:08:38 2003 UTC (21 years, 6 months ago) by augustss
Branches: MAIN
Diff to: previous 1.573: preferred, colored
Changes since revision 1.573: +3 -3
lines
Alphabetize.
Revision 1.573: download - view: text, markup, annotated - select for diffs
Wed Oct 8 11:55:43 2003 UTC (21 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.572: preferred, colored
Changes since revision 1.572: +25 -3
lines
Add new per-chip pciide drivers.
Revision 1.572: download - view: text, markup, annotated - select for diffs
Wed Oct 8 11:10:04 2003 UTC (21 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.571: preferred, colored
Changes since revision 1.571: +6 -4
lines
Add atabus
Revision 1.491.4.6: download - view: text, markup, annotated - select for diffs
Sun Oct 5 11:49:20 2003 UTC (21 years, 6 months ago) by tron
Branches: netbsd-1-6
CVS tags: netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002
Diff to: previous 1.491.4.5: preferred, colored; branchpoint 1.491: preferred, colored
Changes since revision 1.491.4.5: +3 -2
lines
Pull up revision 1.571 (requested by mrg in ticket #1486):
enable broadcom BCM4401 (bce) driver (as found on recent dell laptops)
Revision 1.571: download - view: text, markup, annotated - select for diffs
Sat Sep 27 13:16:16 2003 UTC (21 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.570: preferred, colored
Changes since revision 1.570: +3 -2
lines
enable broadcom BCM4401 (bce) driver (as found on recent dell laptops)
Revision 1.491.4.5: download - view: text, markup, annotated - select for diffs
Wed Sep 10 16:55:33 2003 UTC (21 years, 7 months ago) by grant
Branches: netbsd-1-6
Diff to: previous 1.491.4.4: preferred, colored; branchpoint 1.491: preferred, colored
Changes since revision 1.491.4.4: +3 -3
lines
Apply patch (requested by jmmv in ticket #1389):
enable USERCONF in all kernels where it's enabled in -current.
Revision 1.570: download - view: text, markup, annotated - select for diffs
Sat Sep 6 22:39:23 2003 UTC (21 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.569: preferred, colored
Changes since revision 1.569: +3 -2
lines
Add COMPAT_16
Revision 1.569: download - view: text, markup, annotated - select for diffs
Tue Aug 26 21:12:48 2003 UTC (21 years, 8 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.568: preferred, colored
Changes since revision 1.568: +4 -2
lines
add commented out entries for skc/sk SysKonnect SK9821 driver
Revision 1.568: download - view: text, markup, annotated - select for diffs
Fri Aug 22 05:14:00 2003 UTC (21 years, 8 months ago) by itojun
Branches: MAIN
Diff to: previous 1.567: preferred, colored
Changes since revision 1.567: +3 -2
lines
add udav*
Revision 1.567: download - view: text, markup, annotated - select for diffs
Thu Aug 7 12:06:15 2003 UTC (21 years, 8 months ago) by soren
Branches: MAIN
Diff to: previous 1.566: preferred, colored
Changes since revision 1.566: +3 -3
lines
Enable ahd(4) by default. There are some problems with higher speeds /
packetized mode, but those can be disabled in the Adaptec BIOS setup.
Revision 1.566: download - view: text, markup, annotated - select for diffs
Wed Aug 6 12:32:07 2003 UTC (21 years, 8 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.565: preferred, colored
Changes since revision 1.565: +3 -2
lines
Add esiop at pci to GENERIC which already have siop at pci.
esiop has been tested enouth now.
esiop not added to INSTALL kernels because of possible space constraint.
siop should be able to drive all adapters supported by esiop.
Revision 1.565: download - view: text, markup, annotated - select for diffs
Sun Jul 6 04:03:21 2003 UTC (21 years, 9 months ago) by kochi
Branches: MAIN
Diff to: previous 1.564: preferred, colored
Changes since revision 1.564: +3 -3
lines
o cleanup usage of ACPI_ACTIVATE_DEV/ACPI_PCI_FIXUP
o delete usage of ENABLE_DEBUGGER
As ACPI_ACTIVATE_DEV/ACPI_PCI_FIXUP are defflag'ed in files.acpi,
these options don't have to have a value.
Revision 1.564.2.1: download - view: text, markup, annotated - select for diffs
Wed Jul 2 15:25:20 2003 UTC (21 years, 9 months ago) by darrenr
Branches: ktrace-lwp
Diff to: previous 1.564: preferred, colored
Changes since revision 1.564: +122 -122
lines
Apply the aborted ktrace-lwp changes to a specific branch. This is just for
others to review, I'm concerned that patch fuziness may have resulted in some
errant code being generated but I'll look at that later by comparing the diff
from the base to the branch with the file I attempt to apply to it. This will,
at the very least, put the changes in a better context for others to review
them and attempt to tinker with removing passing of 'struct lwp' through
the kernel.
Revision 1.564: download - view: text, markup, annotated - select for diffs
Sun Jun 29 22:28:23 2003 UTC (21 years, 10 months ago) by fvdl
Branches: MAIN
Branch point for: ktrace-lwp
Diff to: previous 1.563: preferred, colored
Changes since revision 1.563: +0 -0
lines
Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.
Revision 1.563: download - view: text, markup, annotated - select for diffs
Sat Jun 28 15:34:41 2003 UTC (21 years, 10 months ago) by darrenr
Branches: MAIN
Diff to: previous 1.562: preferred, colored
Changes since revision 1.562: +120 -120
lines
Revert out an accidental commit.
Revision 1.562: download - view: text, markup, annotated - select for diffs
Sat Jun 28 14:20:53 2003 UTC (21 years, 10 months ago) by darrenr
Branches: MAIN
Diff to: previous 1.561: preferred, colored
Changes since revision 1.561: +122 -122
lines
Pass lwp pointers throughtout the kernel, as required, so that the lwpid can
be inserted into ktrace records. The general change has been to replace
"struct proc *" with "struct lwp *" in various function prototypes, pass
the lwp through and use l_proc to get the process pointer when needed.
Bump the kernel rev up to 1.6V
Revision 1.561: download - view: text, markup, annotated - select for diffs
Thu May 29 20:22:28 2003 UTC (21 years, 11 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.560: preferred, colored
Changes since revision 1.560: +4 -2
lines
Add the options MPBIOS_SCANPCI and MPACPI_SCANPCI to configure PCI roots
with the MPBIOS/ACPI bus information, by walking through the buses, and
descending down every bus that hasn't been marked configured yet.
Revision 1.560: download - view: text, markup, annotated - select for diffs
Thu May 15 13:13:23 2003 UTC (21 years, 11 months ago) by wiz
Branches: MAIN
Diff to: previous 1.559: preferred, colored
Changes since revision 1.559: +2 -7
lines
Remove last traces of obsolete olms and omms drivers.
Ok'd by drochner and fvdl.
Revision 1.559: download - view: text, markup, annotated - select for diffs
Sun May 4 16:16:18 2003 UTC (21 years, 11 months ago) by ad
Branches: MAIN
Diff to: previous 1.558: preferred, colored
Changes since revision 1.558: +4 -2
lines
Enable the amr driver.
Revision 1.558: download - view: text, markup, annotated - select for diffs
Sat Apr 26 14:10:11 2003 UTC (22 years ago) by ragge
Branches: MAIN
Diff to: previous 1.557: preferred, colored
Changes since revision 1.557: +3 -2
lines
Add pseudo-device ksyms.
Revision 1.557: download - view: text, markup, annotated - select for diffs
Mon Apr 21 00:17:46 2003 UTC (22 years ago) by fvdl
Branches: MAIN
Diff to: previous 1.556: preferred, colored
Changes since revision 1.556: +3 -2
lines
Add commented-out ahd driver.
Revision 1.556: download - view: text, markup, annotated - select for diffs
Wed Apr 16 23:39:02 2003 UTC (22 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.555: preferred, colored
Changes since revision 1.555: +3 -2
lines
Add mpt(4).
Revision 1.555: download - view: text, markup, annotated - select for diffs
Wed Apr 16 23:36:22 2003 UTC (22 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.554: preferred, colored
Changes since revision 1.554: +3 -3
lines
Fix a typo.
Revision 1.554: download - view: text, markup, annotated - select for diffs
Thu Apr 10 22:06:57 2003 UTC (22 years ago) by christos
Branches: MAIN
Diff to: previous 1.553: preferred, colored
Changes since revision 1.553: +2 -3
lines
Bye Bye UCONSOLE
Revision 1.553: download - view: text, markup, annotated - select for diffs
Tue Apr 8 18:58:20 2003 UTC (22 years ago) by abs
Branches: MAIN
Diff to: previous 1.552: preferred, colored
Changes since revision 1.552: +11 -11
lines
Note that BSDI binaries require COMPAT_12, COMPAT_13, and COMPAT_43.
Addresses PR/3553, PR/6872, and PR/8029. Does not address PR/7262
Also add some missing COMPAT_15 entries.
Revision 1.552: download - view: text, markup, annotated - select for diffs
Sat Apr 5 18:41:19 2003 UTC (22 years ago) by perry
Branches: MAIN
Diff to: previous 1.551: preferred, colored
Changes since revision 1.551: +3 -2
lines
Add gentbi* PHYs
I noted in reading the log for PR kern/20988 that they were missing
XXX I'm not sure I got the name in the comment right, but if I don't
XXX do this who will?
Revision 1.551: download - view: text, markup, annotated - select for diffs
Tue Mar 25 19:37:12 2003 UTC (22 years, 1 month ago) by jmmv
Branches: MAIN
Diff to: previous 1.550: preferred, colored
Changes since revision 1.550: +9 -2
lines
Implement the beep on halt feature. When enabled, it makes the kernel beep
the computer speaker when it's completely safe to power down the machine
(after the "The operating system has halted." message). This is useful for
headless machines.
The feature is only enabled if the BEEP_ONHALT option is defined (disabled by default). It can be tuned through the BEEP_ONHALT_{COUNT,PERIOD,PITCH} options.
Closes my own PR kern/18792.
Revision 1.550: download - view: text, markup, annotated - select for diffs
Sat Mar 15 19:34:17 2003 UTC (22 years, 1 month ago) by jmmv
Branches: MAIN
Diff to: previous 1.549: preferred, colored
Changes since revision 1.549: +3 -2
lines
Note the DDB_ONPANIC option (commented out). Closes my own PR port-i386/17649.
Revision 1.549: download - view: text, markup, annotated - select for diffs
Wed Mar 5 10:27:59 2003 UTC (22 years, 1 month ago) by grant
Branches: MAIN
Diff to: previous 1.548: preferred, colored
Changes since revision 1.548: +5 -3
lines
fix some comments
Revision 1.548: download - view: text, markup, annotated - select for diffs
Thu Feb 27 19:22:41 2003 UTC (22 years, 2 months ago) by perseant
Branches: MAIN
Diff to: previous 1.547: preferred, colored
Changes since revision 1.547: +3 -2
lines
Make BRIDGE_IPF an option, and document it. Add it (commented) to GENERIC.
Let brconfig tell whether the bridge is using the ipfilter hook, or not.
Revision 1.547: download - view: text, markup, annotated - select for diffs
Tue Feb 18 20:13:03 2003 UTC (22 years, 2 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.546: preferred, colored
Changes since revision 1.546: +6 -2
lines
add file-system SMBFS and pseudo-device nsmb, uncommented, marked as
experimental
Revision 1.546: download - view: text, markup, annotated - select for diffs
Sun Feb 16 17:35:15 2003 UTC (22 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.545: preferred, colored
Changes since revision 1.545: +3 -2
lines
Add uax(4) (and url(4) in some cases).
Revision 1.491.4.4: download - view: text, markup, annotated - select for diffs
Tue Jan 28 06:28:20 2003 UTC (22 years, 3 months ago) by jmc
Branches: netbsd-1-6
CVS tags: netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001
Diff to: previous 1.491.4.3: preferred, colored; branchpoint 1.491: preferred, colored
Changes since revision 1.491.4.3: +1 -0
lines
Pullup revisions 1.496-1.497 (requested by fvdl in ticket #1126)
Pullup support for bge device. (Broadcom Gigabit Ethernet)
Revision 1.545: download - view: text, markup, annotated - select for diffs
Mon Jan 27 22:31:12 2003 UTC (22 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.544: preferred, colored
Changes since revision 1.544: +6 -2
lines
Add the "ataraid" pseudo-device and the "ld" instances that attach
to it.
Revision 1.544: download - view: text, markup, annotated - select for diffs
Tue Jan 21 02:44:15 2003 UTC (22 years, 3 months ago) by itojun
Branches: MAIN
Diff to: previous 1.543: preferred, colored
Changes since revision 1.543: +3 -3
lines
s/options^I^I/options ^I/
Revision 1.543: download - view: text, markup, annotated - select for diffs
Mon Jan 20 20:08:30 2003 UTC (22 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.542: preferred, colored
Changes since revision 1.542: +3 -2
lines
add support for p1003.1b semaphores. From FreeBSD
Revision 1.542: download - view: text, markup, annotated - select for diffs
Sun Jan 19 10:42:06 2003 UTC (22 years, 3 months ago) by tron
Branches: MAIN
Diff to: previous 1.541: preferred, colored
Changes since revision 1.541: +3 -3
lines
Correct indentation error for "COMPAT_OSSAUDIO" option.
Revision 1.541: download - view: text, markup, annotated - select for diffs
Sat Jan 18 22:33:29 2003 UTC (22 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.540: preferred, colored
Changes since revision 1.540: +7 -3
lines
add COMPAT_OSSAUDIO [for lkms that need it]. XXX: wish for /dev/ksyms
Revision 1.400.2.24: download - view: text, markup, annotated - select for diffs
Wed Jan 8 16:58:22 2003 UTC (22 years, 3 months ago) by thorpej
Branches: nathanw_sa
CVS tags: nathanw_sa_end
Diff to: previous 1.400.2.23: preferred, colored; next MAIN 1.401: preferred, colored
Changes since revision 1.400.2.23: +5 -5
lines
Sync with HEAD.
Revision 1.540: download - view: text, markup, annotated - select for diffs
Wed Jan 8 13:41:17 2003 UTC (22 years, 3 months ago) by tron
Branches: MAIN
CVS tags: nathanw_sa_before_merge,
nathanw_sa_base
Diff to: previous 1.539: preferred, colored
Changes since revision 1.539: +3 -3
lines
Fix indendation problem in entry for "pckbc* at acpi?".
Revision 1.539: download - view: text, markup, annotated - select for diffs
Wed Jan 8 13:20:26 2003 UTC (22 years, 3 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.538: preferred, colored
Changes since revision 1.538: +4 -4
lines
DUMMY_NOPS is gone, replace it with an inverted, less confusing option:
PIC_DELAY. To be used on very old machines.
Revision 1.400.2.23: download - view: text, markup, annotated - select for diffs
Tue Jan 7 21:11:35 2003 UTC (22 years, 3 months ago) by thorpej
Branches: nathanw_sa
Diff to: previous 1.400.2.22: preferred, colored
Changes since revision 1.400.2.22: +34 -3
lines
Sync with HEAD.
Revision 1.538: download - view: text, markup, annotated - select for diffs
Tue Jan 7 18:55:36 2003 UTC (22 years, 3 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.537: preferred, colored
Changes since revision 1.537: +7 -2
lines
Add MPACPI option (commented out). Add MPBIOS option by default, it is
needed now to do MP BIOS MP configuration.
Revision 1.537: download - view: text, markup, annotated - select for diffs
Tue Jan 7 03:19:38 2003 UTC (22 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.536: preferred, colored
Changes since revision 1.536: +18 -18
lines
*soren* remember <SPACE><TAB> in config files :-)
Space-Tab-ify ACPI examples.
Revision 1.536: download - view: text, markup, annotated - select for diffs
Sun Jan 5 22:31:13 2003 UTC (22 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.535: preferred, colored
Changes since revision 1.535: +3 -2
lines
add ACPIVERBOSE [commented out]
Revision 1.535: download - view: text, markup, annotated - select for diffs
Sun Jan 5 21:44:32 2003 UTC (22 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.534: preferred, colored
Changes since revision 1.534: +28 -3
lines
Document all known ACPI devices and options (disabled by default).
Revision 1.400.2.22: download - view: text, markup, annotated - select for diffs
Fri Jan 3 16:48:18 2003 UTC (22 years, 3 months ago) by thorpej
Branches: nathanw_sa
Diff to: previous 1.400.2.21: preferred, colored
Changes since revision 1.400.2.21: +3 -2
lines
Sync with HEAD.
Revision 1.534: download - view: text, markup, annotated - select for diffs
Thu Jan 2 12:36:51 2003 UTC (22 years, 3 months ago) by tron
Branches: MAIN
CVS tags: fvdl_fs64_base
Diff to: previous 1.533: preferred, colored
Changes since revision 1.533: +2 -1
lines
Add commented out entry for acpi(4).
Revision 1.400.2.21: download - view: text, markup, annotated - select for diffs
Sun Dec 29 19:29:08 2002 UTC (22 years, 4 months ago) by thorpej
Branches: nathanw_sa
Diff to: previous 1.400.2.20: preferred, colored
Changes since revision 1.400.2.20: +3 -3
lines
Sync with HEAD.
Revision 1.533: download - view: text, markup, annotated - select for diffs
Thu Dec 26 08:21:56 2002 UTC (22 years, 4 months ago) by junyoung
Branches: MAIN
Diff to: previous 1.532: preferred, colored
Changes since revision 1.532: +3 -3
lines
#<space>comment...
Pointed out by collver1 via PR#18468.
Revision 1.400.2.20: download - view: text, markup, annotated - select for diffs
Wed Dec 11 06:00:49 2002 UTC (22 years, 4 months ago) by thorpej
Branches: nathanw_sa
Diff to: previous 1.400.2.19: preferred, colored
Changes since revision 1.400.2.19: +23 -12
lines
Sync with HEAD.
Revision 1.532: download - view: text, markup, annotated - select for diffs
Mon Dec 9 16:24:39 2002 UTC (22 years, 4 months ago) by david
Branches: MAIN
CVS tags: gmcgarry_ucred_base,
gmcgarry_ucred,
gmcgarry_ctxsw_base,
gmcgarry_ctxsw
Diff to: previous 1.531: preferred, colored
Changes since revision 1.531: +3 -3
lines
Restore the cardbus config line. Cardslot is upset with pcmcia only.
Revision 1.531: download - view: text, markup, annotated - select for diffs
Mon Dec 9 15:50:57 2002 UTC (22 years, 4 months ago) by perry
Branches: MAIN
Diff to: previous 1.530: preferred, colored
Changes since revision 1.530: +5 -6
lines
comment out/comment/move p64h2apic line.
Revision 1.530: download - view: text, markup, annotated - select for diffs
Mon Dec 9 02:38:13 2002 UTC (22 years, 4 months ago) by david
Branches: MAIN
Diff to: previous 1.529: preferred, colored
Changes since revision 1.529: +3 -3
lines
Don't want cardbus here, since there are no devices on it.
Thanks to Krister Walfridsson for mentioning it.
Revision 1.529: download - view: text, markup, annotated - select for diffs
Sat Dec 7 07:26:51 2002 UTC (22 years, 4 months ago) by jmc
Branches: MAIN
Diff to: previous 1.528: preferred, colored
Changes since revision 1.528: +4 -4
lines
Rename the commented out fwscsi -> sbpscsi (names changed once code was
committed)
Revision 1.528: download - view: text, markup, annotated - select for diffs
Thu Dec 5 09:32:22 2002 UTC (22 years, 4 months ago) by ichiro
Branches: MAIN
Diff to: previous 1.527: preferred, colored
Changes since revision 1.527: +12 -0
lines
add IEEE1394 configuration(Comment out)
Revision 1.527: download - view: text, markup, annotated - select for diffs
Wed Dec 4 23:44:12 2002 UTC (22 years, 4 months ago) by david
Branches: MAIN
Diff to: previous 1.526: preferred, colored
Changes since revision 1.526: +6 -6
lines
Include cbb, and its cardslot and pcmcia children. Needed by some wi cards.
Revision 1.526: download - view: text, markup, annotated - select for diffs
Fri Nov 22 12:21:02 2002 UTC (22 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.525: preferred, colored
Changes since revision 1.525: +3 -3
lines
Fix typo (responsiness -> responsiveness).
Revision 1.525: download - view: text, markup, annotated - select for diffs
Thu Nov 14 22:37:18 2002 UTC (22 years, 5 months ago) by atatat
Branches: MAIN
Diff to: previous 1.524: preferred, colored
Changes since revision 1.524: +2 -3
lines
Remove t4dw at pci, since we don't have any description or code for a
device with that name. Addresses PR port-i386/19040.
Revision 1.524: download - view: text, markup, annotated - select for diffs
Wed Nov 13 20:00:04 2002 UTC (22 years, 5 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.523: preferred, colored
Changes since revision 1.523: +4 -5
lines
enable raidframe again, it apparently works fine even w/ MP now
blessed by Frank
Revision 1.523: download - view: text, markup, annotated - select for diffs
Wed Nov 13 19:20:24 2002 UTC (22 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.522: preferred, colored
Changes since revision 1.522: +4 -2
lines
add COMPAT_DARWIN
Revision 1.400.2.19: download - view: text, markup, annotated - select for diffs
Mon Nov 11 21:58:50 2002 UTC (22 years, 5 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.18: preferred, colored
Changes since revision 1.400.2.18: +9 -1
lines
Catch up to -current
Revision 1.522: download - view: text, markup, annotated - select for diffs
Thu Nov 7 21:56:56 2002 UTC (22 years, 5 months ago) by martin
Branches: MAIN
Diff to: previous 1.521: preferred, colored
Changes since revision 1.521: +3 -2
lines
Add a driver for the Myson Technology MTD803 3-in-1 Fast Ethernet Controller,
provided by Peter Bex in PR 18675.
Revision 1.521: download - view: text, markup, annotated - select for diffs
Sun Oct 27 10:28:39 2002 UTC (22 years, 6 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.520: preferred, colored
Changes since revision 1.520: +4 -3
lines
Add fmv* at isapnp? for FMV-183.
Revision 1.520: download - view: text, markup, annotated - select for diffs
Thu Oct 24 18:22:53 2002 UTC (22 years, 6 months ago) by junyoung
Branches: MAIN
Diff to: previous 1.519: preferred, colored
Changes since revision 1.519: +4 -2
lines
Add commented-out machfb attachment.
Revision 1.491.4.3: download - view: text, markup, annotated - select for diffs
Thu Oct 24 09:34:22 2002 UTC (22 years, 6 months ago) by lukem
Branches: netbsd-1-6
Diff to: previous 1.491.4.2: preferred, colored; branchpoint 1.491: preferred, colored
Changes since revision 1.491.4.2: +1 -0
lines
Pull up upgrade to IPfilter 3.4.29 (requested by martti in ticket #905).
Affected files & revisions:
dist/ipf/HISTORY 1.14
dist/ipf/fils.c 1.17-1.21
dist/ipf/ipf.c 1.11-1.13
dist/ipf/ipfs.c 1.8-1.10
dist/ipf/ipft_ef.c 1.6-1.7
dist/ipf/ipft_td.c 1.6-1.7
dist/ipf/ipft_tx.c 1.7-1.8
dist/ipf/ipmon.c 1.12-1.17
dist/ipf/ipnat.c 1.11-1.12
dist/ipf/ipsend/ip_var.h 1.2
dist/ipf/ipsend/ipsend.c 1.8
dist/ipf/ipsend/iptests.c 1.5
dist/ipf/ipt.c 1.8-1.10
dist/ipf/kmem.c 1.8-1.10
dist/ipf/man/ipf.4 1.10
dist/ipf/man/ipf.5 1.8
dist/ipf/man/ipftest.1 1.3
dist/ipf/man/ipmon.8 1.10
dist/ipf/man/ipnat.5 1.9-1.10
dist/ipf/man/ipnat.8 1.4
dist/ipf/misc.c 1.7
dist/ipf/natparse.c 1.10
dist/ipf/parse.c 1.13
dist/ipf/printnat.c 1.8-1.10
dist/ipf/relay.c 1.5-1.6
dist/ipf/rules/example.9 1.2
etc/rc.d/ipnat 1.8
regress/sys/kern/ipf/Makefile 1.3-1.4
regress/sys/kern/ipf/dotest6 1.2
regress/sys/kern/ipf/expected/f13 1.1.1.2
regress/sys/kern/ipf/expected/i12 1.1.1.1
regress/sys/kern/ipf/expected/ni3 1.1.1.1
regress/sys/kern/ipf/expected/ni5 1.2
regress/sys/kern/ipf/input/f13 1.1.1.2
regress/sys/kern/ipf/input/ipv6.1 1.1.1.1
regress/sys/kern/ipf/input/ni3 1.1.1.1
regress/sys/kern/ipf/regress/i12 1.1.1.1
regress/sys/kern/ipf/regress/ipv6.1 1.1.1.1
regress/sys/kern/ipf/regress/ni3.ipf 1.1.1.1
regress/sys/kern/ipf/regress/ni3.nat 1.1.1.1
sys/arch/alpha/conf/ALPHA 1.169,1.171
sys/arch/amiga/conf/GENERIC 1.185-1.186
sys/arch/arc/conf/GENERIC 1.71-1.72
sys/arch/atari/conf/GENERIC.in 1.24-1.25
sys/arch/cats/conf/GENERIC 1.31-1.32
sys/arch/cobalt/conf/GENERIC 1.34-1.35
sys/arch/hp300/conf/GENERIC 1.83-1.84
sys/arch/i386/conf/CARDBUS 1.66-1.67
sys/arch/i386/conf/GENERIC 1.510,1.512
sys/arch/i386/conf/GENERIC_LAPTOP 1.58-1.59
sys/arch/i386/conf/GENERIC_PS2TINY 1.19-1.20
sys/arch/i386/conf/GENERIC_TINY 1.47-1.48
sys/arch/luna68k/conf/GENERIC 1.33-1.33
sys/arch/mac68k/conf/GENERIC 1.130-1.131
sys/arch/mac68k/conf/GENERICSBC 1.21-1.22
sys/arch/mac68k/conf/SMALLRAM 1.4-1.5
sys/arch/macppc/conf/GENERIC 1.142-1.143
sys/arch/mipsco/conf/GENERIC 1.21-1.22
sys/arch/mmeye/conf/GENERIC 1.44-1.45
sys/arch/news68k/conf/GENERIC 1.36-1.37
sys/arch/news68k/conf/GENERIC_TINY 1.18-1.19
sys/arch/newsmips/conf/GENERIC 1.50-1.51
sys/arch/ofppc/conf/GENERIC 1.56-1.57
sys/arch/pmax/conf/GENERIC 1.103-1.104
sys/arch/prep/conf/GENERIC 1.55-1.56
sys/arch/sbmips/conf/GENERIC 1.11-1.12
sys/arch/sgimips/conf/GENERIC 1.7-1.8
sys/arch/sparc/conf/GENERIC 1.138-1.139
sys/arch/sparc64/conf/GENERIC32 1.46-1.47
sys/arch/vax/conf/GENERIC 1.102-1.103
sys/arch/x68k/conf/ALL 1.55-1.56
sys/arch/x68k/conf/GENERIC 1.80-1.81
sys/lkm/netinet/if_ipl/mln_ipl.c 1.29
sys/netinet/fil.c 1.57-1.58
sys/netinet/ip_auth.c 1.29-1.30
sys/netinet/ip_compat.h 1.30-1.31
sys/netinet/ip_fil.c 1.81-1.86
sys/netinet/ip_fil.h 1.46-1.49
sys/netinet/ip_frag.c 1.33-1.34
sys/netinet/ip_frag.h 1.18
sys/netinet/ip_ftp_pxy.c 1.25-1.26
sys/netinet/ip_h323_pxy.c 1.5-1.6
sys/netinet/ip_log.c 1.22-1.23
sys/netinet/ip_nat.c 1.51-1.53
sys/netinet/ip_nat.h 1.27
sys/netinet/ip_netbios_pxy.c 1.4
sys/netinet/ip_proxy.c 1.35-1.36
sys/netinet/ip_proxy.h 1.18
sys/netinet/ip_state.c 1.41-1.42
sys/netinet/ip_state.h 1.23
sys/netinet/ipl.h 1.14
Revision 1.519: download - view: text, markup, annotated - select for diffs
Fri Oct 18 15:11:11 2002 UTC (22 years, 6 months ago) by junyoung
Branches: MAIN
CVS tags: kqueue-beforemerge,
kqueue-aftermerge
Diff to: previous 1.518: preferred, colored
Changes since revision 1.518: +6 -2
lines
Add NEW_BUFQ_STRATEGY (disabled by default).
Revision 1.400.2.18: download - view: text, markup, annotated - select for diffs
Fri Oct 18 02:37:27 2002 UTC (22 years, 6 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.17: preferred, colored
Changes since revision 1.400.2.17: +24 -5
lines
Catch up to -current.
Revision 1.518: download - view: text, markup, annotated - select for diffs
Tue Oct 15 18:20:58 2002 UTC (22 years, 6 months ago) by junyoung
Branches: MAIN
Diff to: previous 1.517: preferred, colored
Changes since revision 1.517: +4 -2
lines
Add (commented out) VGA_RASTERCONSOLE.
Revision 1.410.2.8: download - view: text, markup, annotated - select for diffs
Thu Oct 10 18:33:09 2002 UTC (22 years, 6 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.410.2.7: preferred, colored; next MAIN 1.411: preferred, colored
Changes since revision 1.410.2.7: +44 -74
lines
sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work
Revision 1.517: download - view: text, markup, annotated - select for diffs
Tue Oct 8 13:09:05 2002 UTC (22 years, 6 months ago) by augustss
Branches: MAIN
Diff to: previous 1.516: preferred, colored
Changes since revision 1.516: +5 -2
lines
Add ubsa attachment.
Revision 1.516: download - view: text, markup, annotated - select for diffs
Sat Oct 5 16:02:39 2002 UTC (22 years, 6 months ago) by elric
Branches: MAIN
Diff to: previous 1.515: preferred, colored
Changes since revision 1.515: +3 -2
lines
add [commented out] cgd's to generic kernel configs.
Revision 1.515: download - view: text, markup, annotated - select for diffs
Fri Oct 4 16:24:47 2002 UTC (22 years, 6 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.514: preferred, colored
Changes since revision 1.514: +3 -2
lines
Add le* at isapnp?
Revision 1.514: download - view: text, markup, annotated - select for diffs
Fri Oct 4 03:17:00 2002 UTC (22 years, 6 months ago) by itojun
Branches: MAIN
Diff to: previous 1.513: preferred, colored
Changes since revision 1.513: +3 -3
lines
whitespace
Revision 1.513: download - view: text, markup, annotated - select for diffs
Tue Oct 1 12:56:39 2002 UTC (22 years, 6 months ago) by fvdl
Branches: MAIN
CVS tags: kqueue-base
Diff to: previous 1.512: preferred, colored
Changes since revision 1.512: +17 -6
lines
Merge Bill Sommerfeld's i386 MP branch. This code has some known
caveats, but works quite well in a lot of MP cases, and all
UP cases that I have tested. Parts of this will hopefully be
reworked in the not-too-distant future.
Revision 1.512: download - view: text, markup, annotated - select for diffs
Wed Sep 25 11:49:51 2002 UTC (22 years, 7 months ago) by martti
Branches: MAIN
Diff to: previous 1.511: preferred, colored
Changes since revision 1.511: +3 -3
lines
Add one space between "#option" and "<tab>IPFILTER_DEFAULT_BLOCK"
Revision 1.511: download - view: text, markup, annotated - select for diffs
Sat Sep 21 15:24:29 2002 UTC (22 years, 7 months ago) by perry
Branches: MAIN
Diff to: previous 1.510: preferred, colored
Changes since revision 1.510: +3 -3
lines
change a tab to a space so commenting elansc isn't as ugly
Revision 1.510: download - view: text, markup, annotated - select for diffs
Fri Sep 20 10:39:52 2002 UTC (22 years, 7 months ago) by martti
Branches: MAIN
Diff to: previous 1.509: preferred, colored
Changes since revision 1.509: +3 -2
lines
Added (commented out) IPFILTER_DEFAULT_BLOCK.
Revision 1.509: download - view: text, markup, annotated - select for diffs
Wed Sep 18 02:44:00 2002 UTC (22 years, 7 months ago) by lukem
Branches: MAIN
Diff to: previous 1.508: preferred, colored
Changes since revision 1.508: +3 -3
lines
enable USERCONF by default; it's small and extremely useful to have available.
Revision 1.400.2.17: download - view: text, markup, annotated - select for diffs
Tue Sep 17 21:14:57 2002 UTC (22 years, 7 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.16: preferred, colored
Changes since revision 1.400.2.16: +2 -2
lines
Catch up to -current.
Revision 1.508: download - view: text, markup, annotated - select for diffs
Tue Sep 3 18:55:47 2002 UTC (22 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.507: preferred, colored
Changes since revision 1.507: +4 -4
lines
Replace mr with gtp device.
Revision 1.491.2.4: download - view: text, markup, annotated - select for diffs
Sat Aug 31 13:44:49 2002 UTC (22 years, 7 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.491.2.3: preferred, colored; branchpoint 1.491: preferred, colored; next MAIN 1.492: preferred, colored
Changes since revision 1.491.2.3: +12 -5
lines
catch up with -current.
Revision 1.300.2.31: download - view: text, markup, annotated - select for diffs
Mon Aug 19 01:22:17 2002 UTC (22 years, 8 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.30: preferred, colored; next MAIN 1.301: preferred, colored
Changes since revision 1.300.2.30: +19 -7
lines
merged with -current as of today.
rearranged gdt init to deal with KVM86 changes; however, KVM86 has no
chance of working yet; good thing it's not part of GENERIC
Revision 1.400.2.16: download - view: text, markup, annotated - select for diffs
Tue Aug 13 02:18:17 2002 UTC (22 years, 8 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.15: preferred, colored
Changes since revision 1.400.2.15: +9 -2
lines
Catch up to -current.
Revision 1.507: download - view: text, markup, annotated - select for diffs
Mon Aug 12 03:28:52 2002 UTC (22 years, 8 months ago) by thorpej
Branches: MAIN
CVS tags: sommerfeld_i386mpnext,
sommerfeld_i386mpbase_1,
gehenna-devsw-base
Diff to: previous 1.506: preferred, colored
Changes since revision 1.506: +5 -2
lines
Add elansc* at pci? (AMD Elan SC520 System Controller).
Revision 1.506: download - view: text, markup, annotated - select for diffs
Sun Aug 11 13:50:45 2002 UTC (22 years, 8 months ago) by isaki
Branches: MAIN
Diff to: previous 1.505: preferred, colored
Changes since revision 1.505: +4 -4
lines
Commented out slhci. it's experimental yet.
Revision 1.505: download - view: text, markup, annotated - select for diffs
Sun Aug 11 13:26:28 2002 UTC (22 years, 8 months ago) by isaki
Branches: MAIN
Diff to: previous 1.504: preferred, colored
Changes since revision 1.504: +6 -2
lines
Add slhci0, ScanLogic SL811HS/T USB Host Contoller.
Revision 1.504: download - view: text, markup, annotated - select for diffs
Tue Aug 6 12:09:42 2002 UTC (22 years, 8 months ago) by grant
Branches: MAIN
Diff to: previous 1.503: preferred, colored
Changes since revision 1.503: +3 -3
lines
add X note comment for INSECURE option.
addresses port-i386/17853 from hclsmith@yahoo.ca.
Revision 1.503: download - view: text, markup, annotated - select for diffs
Fri Aug 2 05:26:45 2002 UTC (22 years, 8 months ago) by ichiro
Branches: MAIN
Diff to: previous 1.502: preferred, colored
Changes since revision 1.502: +3 -3
lines
chenge comment for wi(4)
- add vender Intersil
Revision 1.491.4.2: download - view: text, markup, annotated - select for diffs
Thu Aug 1 04:22:39 2002 UTC (22 years, 8 months ago) by lukem
Branches: netbsd-1-6
CVS tags: netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1
Diff to: previous 1.491.4.1: preferred, colored; branchpoint 1.491: preferred, colored
Changes since revision 1.491.4.1: +1 -0
lines
Pull up revision 1.494 (requested by lukem in ticket #312):
Enable "pseudo-device clockctl" in all kernels, except
installation related kernels (INSTALL* and RAMDISK*).
This enables rc.conf(5) $ntpd_chroot to be used "out of the box"
Revision 1.400.2.15: download - view: text, markup, annotated - select for diffs
Thu Aug 1 02:41:53 2002 UTC (22 years, 8 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.14: preferred, colored
Changes since revision 1.400.2.14: +14 -65
lines
Catch up to -current.
Revision 1.502: download - view: text, markup, annotated - select for diffs
Mon Jul 22 11:06:00 2002 UTC (22 years, 9 months ago) by wiz
Branches: MAIN
Diff to: previous 1.501: preferred, colored
Changes since revision 1.501: +3 -3
lines
Sync (commented out) SHMMAXPGS value with vmparam.h.
Closes port-i386/12708 by Patrick Welche.
Revision 1.491.2.3: download - view: text, markup, annotated - select for diffs
Tue Jul 16 08:29:11 2002 UTC (22 years, 9 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.491.2.2: preferred, colored; branchpoint 1.491: preferred, colored
Changes since revision 1.491.2.2: +15 -66
lines
catch up with -current.
Revision 1.491.2.2: download - view: text, markup, annotated - select for diffs
Sun Jul 14 17:47:51 2002 UTC (22 years, 9 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.491.2.1: preferred, colored; branchpoint 1.491: preferred, colored
Changes since revision 1.491.2.1: +5 -2
lines
catch up with -current.
Revision 1.501: download - view: text, markup, annotated - select for diffs
Wed Jul 10 08:37:40 2002 UTC (22 years, 9 months ago) by itojun
Branches: MAIN
Diff to: previous 1.500: preferred, colored
Changes since revision 1.500: +3 -4
lines
whitespace
Revision 1.500: download - view: text, markup, annotated - select for diffs
Mon Jul 1 13:19:05 2002 UTC (22 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.499: preferred, colored
Changes since revision 1.499: +6 -2
lines
Add example use of WSDISPLAY_CHARFUNCS, from Julio Merino
Revision 1.499: download - view: text, markup, annotated - select for diffs
Thu Jun 27 06:34:23 2002 UTC (22 years, 10 months ago) by junyoung
Branches: MAIN
Diff to: previous 1.498: preferred, colored
Changes since revision 1.498: +4 -2
lines
Add VGA_CONSOLE_ATI_BROKEN_FONTSEL (disabled by default).
Revision 1.300.2.30: download - view: text, markup, annotated - select for diffs
Tue Jun 25 15:44:45 2002 UTC (22 years, 10 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.29: preferred, colored
Changes since revision 1.300.2.29: +17 -64
lines
Resynch with -current.
Revision 1.498: download - view: text, markup, annotated - select for diffs
Tue Jun 25 03:12:06 2002 UTC (22 years, 10 months ago) by lukem
Branches: MAIN
Diff to: previous 1.497: preferred, colored
Changes since revision 1.497: +6 -63
lines
- replace all "scsibus* at XXXX" with a single "scsibus* at scsi?"
- replace all "atapibus* at XXXX" with a single "atapibus* at atapi?"
- replace all "audio* at XXXX" with a single "audio* at audiobus?"
- replace all "midi* at XXXX" (except "midi* at pcppi?") with a single
"midi* at midibus?"
Revision 1.410.2.7: download - view: text, markup, annotated - select for diffs
Sun Jun 23 17:37:17 2002 UTC (22 years, 10 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.410.2.6: preferred, colored
Changes since revision 1.410.2.6: +29 -22
lines
catch up with -current on kqueue branch
Revision 1.497: download - view: text, markup, annotated - select for diffs
Sat Jun 22 23:13:37 2002 UTC (22 years, 10 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.496: preferred, colored
Changes since revision 1.496: +3 -2
lines
Add bge@pci attachment.
Revision 1.400.2.14: download - view: text, markup, annotated - select for diffs
Thu Jun 20 03:39:02 2002 UTC (22 years, 10 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.13: preferred, colored
Changes since revision 1.400.2.13: +18 -12
lines
Catch up to -current.
Revision 1.496: download - view: text, markup, annotated - select for diffs
Tue Jun 18 03:06:58 2002 UTC (22 years, 10 months ago) by itojun
Branches: MAIN
Diff to: previous 1.495: preferred, colored
Changes since revision 1.495: +3 -3
lines
s/options\t\t/options \t/
Revision 1.495: download - view: text, markup, annotated - select for diffs
Mon Jun 17 16:33:06 2002 UTC (22 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.494: preferred, colored
Changes since revision 1.494: +3 -2
lines
MD systrace gluons.
Revision 1.494: download - view: text, markup, annotated - select for diffs
Mon Jun 17 05:14:12 2002 UTC (22 years, 10 months ago) by lukem
Branches: MAIN
Diff to: previous 1.493: preferred, colored
Changes since revision 1.493: +3 -2
lines
Enable "pseudo-device clockctl" in all kernels, except
installation related kernels (INSTALL* and RAMDISK*).
This enables rc.conf(5) $ntpd_chroot to be used "out of the box"
Revision 1.491.4.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 17:14:20 2002 UTC (22 years, 10 months ago) by tv
Branches: netbsd-1-6
Diff to: previous 1.491: preferred, colored
Changes since revision 1.491: +3 -2
lines
Pull up revision 1.493 (requested by gmcgarry in ticket #230):
Include PERFCTRS to match MTRR option. Now pmc(1) does something useful.
Revision 1.493: download - view: text, markup, annotated - select for diffs
Thu Jun 6 21:16:48 2002 UTC (22 years, 10 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.492: preferred, colored
Changes since revision 1.492: +3 -2
lines
Include PERFCTRS to match MTRR option. Now pmc(1) does something useful.
Revision 1.491.2.1: download - view: text, markup, annotated - select for diffs
Thu May 30 15:33:19 2002 UTC (22 years, 11 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.491: preferred, colored
Changes since revision 1.491: +3 -3
lines
Catch up with -current.
Revision 1.492: download - view: text, markup, annotated - select for diffs
Sat May 25 17:05:33 2002 UTC (22 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.491: preferred, colored
Changes since revision 1.491: +3 -3
lines
Add explanation for PMS_DISABLE_POWERHOOKS, as requested by hubertf.
Revision 1.300.2.29: download - view: text, markup, annotated - select for diffs
Fri May 3 19:12:54 2002 UTC (22 years, 11 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
CVS tags: i386mp_plus16_stable
Diff to: previous 1.300.2.28: preferred, colored
Changes since revision 1.300.2.28: +4 -4
lines
Add cpu* at mainbus? or equivalent to all configs.
Revision 1.300.2.28: download - view: text, markup, annotated - select for diffs
Sat Apr 27 20:24:44 2002 UTC (23 years ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.27: preferred, colored
Changes since revision 1.300.2.27: +28 -21
lines
Merge with current as of today
Revision 1.491: download - view: text, markup, annotated - select for diffs
Fri Apr 26 02:05:10 2002 UTC (23 years ago) by ad
Branches: MAIN
CVS tags: netbsd-1-6-base
Branch point for: netbsd-1-6,
gehenna-devsw
Diff to: previous 1.490: preferred, colored
Changes since revision 1.490: +5 -3
lines
Add a driver for Adaptec FSA RAID controllers, as often found in Dell
servers. Based on the FreeBSD/OpenBSD versions.
Revision 1.490: download - view: text, markup, annotated - select for diffs
Thu Apr 25 15:22:44 2002 UTC (23 years ago) by wiz
Branches: MAIN
Diff to: previous 1.489: preferred, colored
Changes since revision 1.489: +3 -3
lines
Another options<TAB> -> options<SP><TAB>, noted by Patrick Welche.
Revision 1.489: download - view: text, markup, annotated - select for diffs
Thu Apr 25 15:06:28 2002 UTC (23 years ago) by atatat
Branches: MAIN
Diff to: previous 1.488: preferred, colored
Changes since revision 1.488: +4 -2
lines
Add the INCLUDE_CONFIG_FILE option to all config files. In config
files that are generic (ie, GENERIC, GENERICSBC, GENERIC32, ALL, or
ALPHA), it is uncommented.
Revision 1.488: download - view: text, markup, annotated - select for diffs
Thu Apr 25 00:54:54 2002 UTC (23 years ago) by kleink
Branches: MAIN
Diff to: previous 1.487: preferred, colored
Changes since revision 1.487: +3 -2
lines
Attach joy* at eso?.
Revision 1.487: download - view: text, markup, annotated - select for diffs
Mon Apr 22 21:05:22 2002 UTC (23 years ago) by ad
Branches: MAIN
Diff to: previous 1.486: preferred, colored
Changes since revision 1.486: +7 -2
lines
Add a driver for ICP-Vortex GDT and Intel Storage RAID controllers. Parts
taken from OpenBSD. Test hardware kindly provided by Intel. This still needs
management bits, and doesn't support older controllers, but that shouldn't
be hard to fix.
Revision 1.486: download - view: text, markup, annotated - select for diffs
Thu Apr 18 12:54:13 2002 UTC (23 years ago) by wiz
Branches: MAIN
Diff to: previous 1.485: preferred, colored
Changes since revision 1.485: +2 -5
lines
Remove opms(4) and its device, /dev/pms0, from the i386 port, because
it has been obsoleted by pms(4).
Reviewed by fvdl and christos.
Revision 1.485: download - view: text, markup, annotated - select for diffs
Thu Apr 18 12:06:11 2002 UTC (23 years ago) by bouyer
Branches: MAIN
Diff to: previous 1.484: preferred, colored
Changes since revision 1.484: +3 -2
lines
Add (commented out) options SIOP_SYMLED
Revision 1.484: download - view: text, markup, annotated - select for diffs
Wed Apr 17 02:22:49 2002 UTC (23 years ago) by mycroft
Branches: MAIN
Diff to: previous 1.483: preferred, colored
Changes since revision 1.483: +3 -8
lines
Switch from de to tlp by default.
Revision 1.400.2.13: download - view: text, markup, annotated - select for diffs
Wed Apr 17 00:03:14 2002 UTC (23 years ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.12: preferred, colored
Changes since revision 1.400.2.12: +5 -7
lines
Catch up to -current.
Revision 1.483: download - view: text, markup, annotated - select for diffs
Mon Apr 15 15:00:18 2002 UTC (23 years ago) by mycroft
Branches: MAIN
Diff to: previous 1.482: preferred, colored
Changes since revision 1.482: +3 -2
lines
Add wm.
Revision 1.482: download - view: text, markup, annotated - select for diffs
Sun Apr 14 01:42:52 2002 UTC (23 years ago) by mycroft
Branches: MAIN
Diff to: previous 1.481: preferred, colored
Changes since revision 1.481: +3 -6
lines
The functionality of pmsi has been implemented in pms, so it's time for pmsi
to go back where it came from.
Revision 1.481: download - view: text, markup, annotated - select for diffs
Fri Apr 12 17:58:17 2002 UTC (23 years ago) by mycroft
Branches: MAIN
Diff to: previous 1.480: preferred, colored
Changes since revision 1.480: +3 -3
lines
Enable AGP GART support by default.
Revision 1.480: download - view: text, markup, annotated - select for diffs
Fri Apr 12 08:11:01 2002 UTC (23 years ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.479: preferred, colored
Changes since revision 1.479: +3 -2
lines
Add commented-out USERCONF option. Mainly useful for install media
and can be optionally enabled based on miniroot and ramdisk size
requirements.
Revision 1.479: download - view: text, markup, annotated - select for diffs
Tue Apr 2 20:48:01 2002 UTC (23 years ago) by augustss
Branches: MAIN
Diff to: previous 1.478: preferred, colored
Changes since revision 1.478: +3 -3
lines
Alphabetize.
Revision 1.400.2.12: download - view: text, markup, annotated - select for diffs
Mon Apr 1 07:40:36 2002 UTC (23 years ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.11: preferred, colored
Changes since revision 1.400.2.11: +11 -8
lines
Catch up to -current.
(CVS: It's not just a program. It's an adventure!)
Revision 1.478: download - view: text, markup, annotated - select for diffs
Fri Mar 29 02:25:21 2002 UTC (23 years, 1 month ago) by itojun
Branches: MAIN
Diff to: previous 1.477: preferred, colored
Changes since revision 1.477: +3 -3
lines
re-enable urlphy
Revision 1.477: download - view: text, markup, annotated - select for diffs
Fri Mar 29 01:31:28 2002 UTC (23 years, 1 month ago) by itojun
Branches: MAIN
Diff to: previous 1.476: preferred, colored
Changes since revision 1.476: +3 -3
lines
urlphy is not known to config(8). need a fix somewhere else.
Revision 1.476: download - view: text, markup, annotated - select for diffs
Thu Mar 28 21:13:20 2002 UTC (23 years, 1 month ago) by ichiro
Branches: MAIN
Diff to: previous 1.475: preferred, colored
Changes since revision 1.475: +4 -2
lines
add Realtek RTL8150L USB ethernet driver
url* at uhub? port ?
urlphy* at mii? phy ?
Revision 1.475: download - view: text, markup, annotated - select for diffs
Tue Mar 19 15:10:21 2002 UTC (23 years, 1 month ago) by augustss
Branches: MAIN
CVS tags: eeh-devprop-base,
eeh-devprop
Diff to: previous 1.474: preferred, colored
Changes since revision 1.474: +9 -7
lines
Add uvscom driver. Untested.
Revision 1.410.2.6: download - view: text, markup, annotated - select for diffs
Sat Mar 16 15:58:11 2002 UTC (23 years, 1 month ago) by jdolecek
Branches: kqueue
Diff to: previous 1.410.2.5: preferred, colored
Changes since revision 1.410.2.5: +6 -4
lines
Catch up with -current.
Revision 1.474: download - view: text, markup, annotated - select for diffs
Mon Mar 4 13:24:10 2002 UTC (23 years, 1 month ago) by sommerfeld
Branches: MAIN
CVS tags: newlock-base,
newlock
Diff to: previous 1.473: preferred, colored
Changes since revision 1.473: +2 -3
lines
The "gif*" tunnelling interface does everything ipip does.
Move usage example from ipip.4 to gif.4
Excise ipip and stitch up the scars.
Revision 1.400.2.11: download - view: text, markup, annotated - select for diffs
Thu Feb 28 04:10:12 2002 UTC (23 years, 2 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.10: preferred, colored
Changes since revision 1.400.2.10: +20 -6
lines
Catch up to -current.
Revision 1.473: download - view: text, markup, annotated - select for diffs
Wed Feb 27 00:31:12 2002 UTC (23 years, 2 months ago) by jmcneill
Branches: MAIN
CVS tags: ifpoll-base
Diff to: previous 1.472: preferred, colored
Changes since revision 1.472: +4 -2
lines
Add options (commented out) for disabling power hooks on the pms and pmsi
PS/2 mouse drivers.
Revision 1.300.2.27: download - view: text, markup, annotated - select for diffs
Sun Feb 24 01:58:56 2002 UTC (23 years, 2 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.26: preferred, colored
Changes since revision 1.300.2.26: +3 -3
lines
Initialize gdt on boot cpu earlier in boot instead of in gdt_init().
Put apm back in GENERIC and APM_NO_IDLE in GENERIC.MP.
Subsystems which install gdt entries during autoconf no longer explode.
(Do *not* expect full apm functionality on multiprocessors).
Revision 1.300.2.26: download - view: text, markup, annotated - select for diffs
Sun Feb 24 00:17:42 2002 UTC (23 years, 2 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.25: preferred, colored
Changes since revision 1.300.2.25: +14 -12
lines
Resynch with mainline.
Revision 1.410.2.5: download - view: text, markup, annotated - select for diffs
Mon Feb 11 20:08:20 2002 UTC (23 years, 2 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.410.2.4: preferred, colored
Changes since revision 1.410.2.4: +16 -6
lines
Sync w/ -current.
Revision 1.472: download - view: text, markup, annotated - select for diffs
Sun Feb 10 17:36:57 2002 UTC (23 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.471: preferred, colored
Changes since revision 1.471: +3 -3
lines
Update description for icsphy.
Revision 1.471: download - view: text, markup, annotated - select for diffs
Fri Feb 8 01:47:59 2002 UTC (23 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.470: preferred, colored
Changes since revision 1.470: +3 -2
lines
Add another pcic at isa attachment. This enables the top PCMCIA slot on
my AST Ascentia 910N, and closes port-i386/11797
Revision 1.470: download - view: text, markup, annotated - select for diffs
Wed Feb 6 19:58:02 2002 UTC (23 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.469: preferred, colored
Changes since revision 1.469: +3 -3
lines
Another <tab> -> <sp><tab> noted by Patrick Welche.
Revision 1.469: download - view: text, markup, annotated - select for diffs
Fri Feb 1 15:17:04 2002 UTC (23 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.468: preferred, colored
Changes since revision 1.468: +10 -10
lines
Do '<sp><tab>' instead of '<tab>' for some RAID options.
Noted by Patrick Welche in private mail.
Revision 1.300.2.25: download - view: text, markup, annotated - select for diffs
Mon Jan 28 04:21:35 2002 UTC (23 years, 3 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.24: preferred, colored
Changes since revision 1.300.2.24: +57 -8
lines
Yet Another mergeup with -current.
Revision 1.468: download - view: text, markup, annotated - select for diffs
Mon Jan 28 01:23:32 2002 UTC (23 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.467: preferred, colored
Changes since revision 1.467: +3 -3
lines
Keep adv in alphabetical order.
Revision 1.467: download - view: text, markup, annotated - select for diffs
Sun Jan 27 13:23:18 2002 UTC (23 years, 3 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.466: preferred, colored
Changes since revision 1.466: +4 -2
lines
add options PIPE_SOCKETPAIR to individual kernel configs
the option is commented out on everything but kernels I was able
to recognize as INSTALL-like or ones for small memory machines
Revision 1.354.2.19: download - view: text, markup, annotated - select for diffs
Thu Jan 24 22:37:37 2002 UTC (23 years, 3 months ago) by he
Branches: netbsd-1-5
CVS tags: netbsd-1-5-PATCH003
Diff to: previous 1.354.2.18: preferred, colored; branchpoint 1.354: preferred, colored; next MAIN 1.355: preferred, colored
Changes since revision 1.354.2.18: +4 -2
lines
Pull up revision 1.461 (requested by he):
Add driver for the ESS Allegro-1 / Maestro-3 audio hardware.
Revision 1.354.2.18: download - view: text, markup, annotated - select for diffs
Sat Jan 19 21:56:32 2002 UTC (23 years, 3 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.354.2.17: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.17: +4 -2
lines
Pull up revision 1.432 (via patch, requested by he):
Add driver for Creative Labs SBLive! EMU10000 and (probably) PCI512.
Fixes PR#15260.
Revision 1.466: download - view: text, markup, annotated - select for diffs
Sat Jan 19 18:45:10 2002 UTC (23 years, 3 months ago) by oster
Branches: MAIN
Diff to: previous 1.465: preferred, colored
Changes since revision 1.465: +12 -4
lines
Add new RF_* options for RAIDframe bits that are no longer built by default.
While we're here, enable RAIDframe (and RAID_AUTOCONFIG) by default for
architectures that I'm comfortable can deal with it being on by default.
Also: bump the number of 'raid' devices from 4 to 8, since 4 seems to
be insufficient in practise.
Revision 1.465: download - view: text, markup, annotated - select for diffs
Thu Jan 17 16:06:49 2002 UTC (23 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.464: preferred, colored
Changes since revision 1.464: +3 -3
lines
Alphabetize audio attachment.
Revision 1.400.2.10: download - view: text, markup, annotated - select for diffs
Fri Jan 11 23:38:27 2002 UTC (23 years, 3 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.9: preferred, colored
Changes since revision 1.400.2.9: +16 -8
lines
More catchup.
Revision 1.410.2.4: download - view: text, markup, annotated - select for diffs
Thu Jan 10 19:44:25 2002 UTC (23 years, 3 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.410.2.3: preferred, colored
Changes since revision 1.410.2.3: +124 -30
lines
Sync kqueue branch with -current.
Revision 1.464: download - view: text, markup, annotated - select for diffs
Tue Jan 8 04:36:51 2002 UTC (23 years, 3 months ago) by itojun
Branches: MAIN
Diff to: previous 1.463: preferred, colored
Changes since revision 1.463: +5 -5
lines
pss is broken (for now?)
Revision 1.400.2.9: download - view: text, markup, annotated - select for diffs
Tue Jan 8 00:25:10 2002 UTC (23 years, 3 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.8: preferred, colored
Changes since revision 1.400.2.8: +94 -22
lines
Catch up to -current.
Revision 1.463: download - view: text, markup, annotated - select for diffs
Mon Jan 7 19:34:25 2002 UTC (23 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.462: preferred, colored
Changes since revision 1.462: +3 -3
lines
Re-enable radio at bktr.
Revision 1.462: download - view: text, markup, annotated - select for diffs
Mon Jan 7 12:12:55 2002 UTC (23 years, 3 months ago) by tron
Branches: MAIN
Diff to: previous 1.461: preferred, colored
Changes since revision 1.461: +3 -3
lines
Disable broken radio(4) support for bktr(4). The configuration code doesn't
even check if the TV card has a radio tuner.
Revision 1.461: download - view: text, markup, annotated - select for diffs
Sun Jan 6 16:07:06 2002 UTC (23 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.460: preferred, colored
Changes since revision 1.460: +4 -2
lines
Add entries for the 'esa at pci' audio driver.
Revision 1.460: download - view: text, markup, annotated - select for diffs
Sun Jan 6 02:45:52 2002 UTC (23 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.459: preferred, colored
Changes since revision 1.459: +3 -2
lines
Add radio attachment to bktr.
Revision 1.459: download - view: text, markup, annotated - select for diffs
Fri Jan 4 21:04:42 2002 UTC (23 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.458: preferred, colored
Changes since revision 1.458: +4 -4
lines
Uncomment udsbr (it works).
Revision 1.458: download - view: text, markup, annotated - select for diffs
Thu Jan 3 18:56:40 2002 UTC (23 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.457: preferred, colored
Changes since revision 1.457: +8 -3
lines
Add ustir.
Revision 1.457: download - view: text, markup, annotated - select for diffs
Wed Jan 2 04:08:41 2002 UTC (23 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.456: preferred, colored
Changes since revision 1.456: +9 -4
lines
Use the right I/O addresses for the ISA radio cards.
Revision 1.456: download - view: text, markup, annotated - select for diffs
Wed Jan 2 03:23:07 2002 UTC (23 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.455: preferred, colored
Changes since revision 1.455: +6 -2
lines
Add (commented out) udsbr.
Revision 1.455: download - view: text, markup, annotated - select for diffs
Tue Jan 1 22:15:43 2002 UTC (23 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.454: preferred, colored
Changes since revision 1.454: +3 -3
lines
Make mr pci attachment conform.
Revision 1.454: download - view: text, markup, annotated - select for diffs
Tue Jan 1 21:54:21 2002 UTC (23 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.453: preferred, colored
Changes since revision 1.453: +20 -2
lines
Add (commented out) radio card support. From OpenBSD.
Revision 1.453: download - view: text, markup, annotated - select for diffs
Tue Jan 1 16:52:23 2002 UTC (23 years, 3 months ago) by hpeyerl
Branches: MAIN
Diff to: previous 1.452: preferred, colored
Changes since revision 1.452: +5 -2
lines
Add entry for PC Weasel/PCI.
Revision 1.300.2.24: download - view: text, markup, annotated - select for diffs
Sat Dec 29 23:21:18 2001 UTC (23 years, 4 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.23: preferred, colored
Changes since revision 1.300.2.23: +3 -2
lines
whitespace tweak.
Revision 1.300.2.23: download - view: text, markup, annotated - select for diffs
Sat Dec 29 21:09:03 2001 UTC (23 years, 4 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.22: preferred, colored
Changes since revision 1.300.2.22: +77 -22
lines
Yet another mergeup.
New work:
- Frank van der Linden's tlb shootdown fix.
Mainline functionality merged:
- IrDA
- Kernel RCSID's
- Transmeta CPU support
- ACPI
- XMM register access through procfs
Revision 1.452: download - view: text, markup, annotated - select for diffs
Fri Dec 28 17:37:03 2001 UTC (23 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.451: preferred, colored
Changes since revision 1.451: +9 -6
lines
Update for new uhidev device attachment.
Revision 1.451: download - view: text, markup, annotated - select for diffs
Fri Dec 28 12:21:56 2001 UTC (23 years, 4 months ago) by martin
Branches: MAIN
Diff to: previous 1.450: preferred, colored
Changes since revision 1.450: +3 -2
lines
Add PPPoE to all generic kernels that should be able to use it.
XXX TODO: do this for INSTALL kernels too, add sysinst support and make the
XXX needed binaries available on the ramdisk root fs.
Revision 1.450: download - view: text, markup, annotated - select for diffs
Mon Dec 24 13:47:13 2001 UTC (23 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.449: preferred, colored
Changes since revision 1.449: +3 -2
lines
Add (commented out) wd at umass (for ISD adapters).
Revision 1.449: download - view: text, markup, annotated - select for diffs
Fri Dec 14 16:24:52 2001 UTC (23 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.448: preferred, colored
Changes since revision 1.448: +4 -4
lines
Uncomment uirda since it woks now.
Revision 1.448: download - view: text, markup, annotated - select for diffs
Fri Dec 14 05:34:48 2001 UTC (23 years, 4 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.447: preferred, colored
Changes since revision 1.447: +19 -4
lines
Add a blurb to the top of all GENERIC files. This serves three purposes:
- to clarify some terminology
- to clarify the intention of the GENERIC file
- to cross-reference some useful man pages
Revision 1.447: download - view: text, markup, annotated - select for diffs
Wed Dec 12 15:32:13 2001 UTC (23 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.446: preferred, colored
Changes since revision 1.446: +6 -2
lines
Add (commented out) uirda.
Revision 1.354.2.17: download - view: text, markup, annotated - select for diffs
Sun Dec 9 19:14:43 2001 UTC (23 years, 4 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.354.2.16: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.16: +3 -2
lines
Apply patch (requested by ad):
Add driver for DPT/Adaptec I2O RAID management interface.
Revision 1.446: download - view: text, markup, annotated - select for diffs
Thu Dec 6 16:51:31 2001 UTC (23 years, 4 months ago) by soren
Branches: MAIN
Diff to: previous 1.445: preferred, colored
Changes since revision 1.445: +4 -3
lines
options space tab.
Revision 1.445: download - view: text, markup, annotated - select for diffs
Thu Dec 6 16:35:09 2001 UTC (23 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.444: preferred, colored
Changes since revision 1.444: +5 -5
lines
Uncomment IrDA devices since they seem to work now.
Revision 1.444: download - view: text, markup, annotated - select for diffs
Wed Dec 5 16:48:03 2001 UTC (23 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.443: preferred, colored
Changes since revision 1.443: +3 -2
lines
Add (commented out) irframetty.
Revision 1.443: download - view: text, markup, annotated - select for diffs
Sun Dec 2 16:37:24 2001 UTC (23 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.442: preferred, colored
Changes since revision 1.442: +8 -2
lines
Add (commented out) oboe IrDA driver.
Revision 1.442: download - view: text, markup, annotated - select for diffs
Sat Dec 1 00:09:07 2001 UTC (23 years, 4 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.441: preferred, colored
Changes since revision 1.441: +3 -2
lines
Add st at atapibus, now that it works.
Revision 1.441: download - view: text, markup, annotated - select for diffs
Wed Nov 21 17:11:02 2001 UTC (23 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.440: preferred, colored
Changes since revision 1.440: +6 -2
lines
Add a commented out ehci driver (for the adventurous).
Revision 1.440: download - view: text, markup, annotated - select for diffs
Tue Nov 20 12:56:29 2001 UTC (23 years, 5 months ago) by lukem
Branches: MAIN
Diff to: previous 1.439: preferred, colored
Changes since revision 1.439: +13 -13
lines
cleanup:
options SPACE TAB
makeoptions TAB
psuedo-device TAB
remove trailing whitespace
replace multiple spaces -> tabs
options "FOO" -> options FOO
options "FOO=bar" -> options FOO=bar
options "FOO=\"bar\"" -> options FOO="\"bar\""
Revision 1.439: download - view: text, markup, annotated - select for diffs
Tue Nov 20 08:43:24 2001 UTC (23 years, 5 months ago) by lukem
Branches: MAIN
Diff to: previous 1.438: preferred, colored
Changes since revision 1.438: +3 -3
lines
- pull in opt_kgdb.h where necessary
- replace opt_kgdb_machdep.h with opt_kgdb.h
- defparam opt_kgdb.h:
KGDB_DEV KGDB_DEVNAME KGDB_DEVADDR KGDB_DEVRATE KGDB_DEVMODE
- move from opt_ddbparam.h to opt_ddb.h:
DDB_FROMCONSOLE DDB_ONPANIC DDB_HISTORY_SIZE DDB_BREAK_CHAR SYMTAB_SPACE
- replace KGDBDEV with KGDB_DEV
- replace KGDBADDR with KGDB_DEVADDR
- replace KGDBMODE with KGDB_DEVMODE
- replace KGDBRATE with KGDB_DEVRATE
- use `9600' instead of `0x2580' for 9600 baud rate
- use correct quotes for options KGDB_DEVNAME="\"com\""
- use correct quotes for options KGDB_DEV="17*256+0"
- remove unnecessary dependancy on Makefile for kgdb_stub.o
- minor whitespace cleanup
Revision 1.438: download - view: text, markup, annotated - select for diffs
Sun Nov 18 03:24:38 2001 UTC (23 years, 5 months ago) by someya
Branches: MAIN
Diff to: previous 1.437: preferred, colored
Changes since revision 1.437: +5 -2
lines
add autri (Trident 4DWAVE based AC'97 audio)
Revision 1.437: download - view: text, markup, annotated - select for diffs
Fri Nov 16 13:46:31 2001 UTC (23 years, 5 months ago) by junyoung
Branches: MAIN
Diff to: previous 1.436: preferred, colored
Changes since revision 1.436: +6 -4
lines
Add pseudo-device wsfont, which is necessary to make wsfontload(8)
work.
Revision 1.400.2.8: download - view: text, markup, annotated - select for diffs
Wed Nov 14 19:12:42 2001 UTC (23 years, 5 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.7: preferred, colored
Changes since revision 1.400.2.7: +8 -3
lines
Catch up to -current.
Revision 1.436: download - view: text, markup, annotated - select for diffs
Tue Nov 13 17:54:51 2001 UTC (23 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.435: preferred, colored
Changes since revision 1.435: +3 -3
lines
The wsmux pseudo device does not need a count anymore.
Revision 1.432.2.1: download - view: text, markup, annotated - select for diffs
Mon Nov 12 21:17:01 2001 UTC (23 years, 5 months ago) by thorpej
Branches: thorpej-mips-cache
Diff to: previous 1.432: preferred, colored; next MAIN 1.433: preferred, colored
Changes since revision 1.432: +7 -2
lines
Sync the thorpej-mips-cache branch with -current.
Revision 1.435: download - view: text, markup, annotated - select for diffs
Sun Nov 4 09:00:39 2001 UTC (23 years, 5 months ago) by yamt
Branches: MAIN
CVS tags: thorpej-mips-cache-base
Diff to: previous 1.434: preferred, colored
Changes since revision 1.434: +3 -2
lines
add adv@cardbus.
(commented out if ahc@cardbus is commented out.)
Revision 1.434: download - view: text, markup, annotated - select for diffs
Sun Nov 4 07:39:41 2001 UTC (23 years, 5 months ago) by itohy
Branches: MAIN
Diff to: previous 1.433: preferred, colored
Changes since revision 1.433: +4 -2
lines
Add mpu at cmpci and opl at cmpci attachment.
I always test it on alpha, and add cmpci entries to alpha config files.
Revision 1.433: download - view: text, markup, annotated - select for diffs
Sat Nov 3 17:08:56 2001 UTC (23 years, 5 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.432: preferred, colored
Changes since revision 1.432: +4 -2
lines
Add trm at pci.
Revision 1.354.2.16: download - view: text, markup, annotated - select for diffs
Thu Oct 25 18:05:28 2001 UTC (23 years, 6 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.354.2.15: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.15: +17 -4
lines
Apply patch (requested by ad):
Add Mylex DACC960, CAC-EISA, and I2O block/SCSI drivers.
Revision 1.400.2.7: download - view: text, markup, annotated - select for diffs
Mon Oct 22 20:41:11 2001 UTC (23 years, 6 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.6: preferred, colored
Changes since revision 1.400.2.6: +6 -3
lines
Catch up to -current.
Revision 1.432: download - view: text, markup, annotated - select for diffs
Wed Oct 17 18:41:20 2001 UTC (23 years, 6 months ago) by jdolecek
Branches: MAIN
Branch point for: thorpej-mips-cache
Diff to: previous 1.431: preferred, colored
Changes since revision 1.431: +4 -2
lines
add emuxki (Creative Labs SBLive!)
Revision 1.431: download - view: text, markup, annotated - select for diffs
Sat Oct 13 15:06:12 2001 UTC (23 years, 6 months ago) by ichiro
Branches: MAIN
Diff to: previous 1.430: preferred, colored
Changes since revision 1.430: +3 -2
lines
add entry Intersil Mini-PCI(802.11b)
wi* at pci?
Revision 1.422.2.3: download - view: text, markup, annotated - select for diffs
Thu Oct 11 00:01:44 2001 UTC (23 years, 6 months ago) by fvdl
Branches: thorpej-devvp
Diff to: previous 1.422.2.2: preferred, colored; branchpoint 1.422: preferred, colored; next MAIN 1.423: preferred, colored
Changes since revision 1.422.2.2: +3 -3
lines
Catch up with -current. Fix some bogons in the sparc64 kbd/ms
attach code. cd18xx conversion provided by mrg.
Revision 1.400.2.6: download - view: text, markup, annotated - select for diffs
Mon Oct 8 20:10:44 2001 UTC (23 years, 6 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.5: preferred, colored
Changes since revision 1.400.2.5: +7 -2
lines
Catch up to -current.
Revision 1.430: download - view: text, markup, annotated - select for diffs
Thu Oct 4 15:51:32 2001 UTC (23 years, 6 months ago) by augustss
Branches: MAIN
CVS tags: thorpej-devvp-base3
Diff to: previous 1.429: preferred, colored
Changes since revision 1.429: +3 -3
lines
Alphabetize PHYs.
Revision 1.422.2.2: download - view: text, markup, annotated - select for diffs
Mon Oct 1 12:39:33 2001 UTC (23 years, 6 months ago) by fvdl
Branches: thorpej-devvp
Diff to: previous 1.422.2.1: preferred, colored; branchpoint 1.422: preferred, colored
Changes since revision 1.422.2.1: +971 -0
lines
Catch up with -current.
Revision 1.429: download - view: text, markup, annotated - select for diffs
Sun Sep 30 00:56:51 2001 UTC (23 years, 7 months ago) by hubertf
Branches: MAIN
CVS tags: thorpej-devvp-base2
Diff to: previous 1.428: preferred, colored
Changes since revision 1.428: +4 -4
lines
esl is off by default, so switch off audio@esl and opl@esl too.
Revision 1.428: download - view: text, markup, annotated - select for diffs
Sat Sep 29 18:47:07 2001 UTC (23 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.427: preferred, colored
Changes since revision 1.427: +7 -2
lines
Add the esl driver.
Revision 1.400.2.5: download - view: text, markup, annotated - select for diffs
Wed Sep 26 19:54:43 2001 UTC (23 years, 7 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.4: preferred, colored
Changes since revision 1.400.2.4: +3 -2
lines
Catch up to -current.
Again.
Revision 1.300.2.22: download - view: text, markup, annotated - select for diffs
Sat Sep 22 23:00:55 2001 UTC (23 years, 7 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.21: preferred, colored
Changes since revision 1.300.2.21: +21 -15
lines
Merge branch with current, post ubcperf, MTRR, etc., etc.,
with the recent fifo_putpages fix to the trunk, GENERIC.MPDEBUG config
boots multiuser on my BP6.
Revision 1.427: download - view: text, markup, annotated - select for diffs
Fri Sep 21 23:44:21 2001 UTC (23 years, 7 months ago) by ad
Branches: MAIN
Diff to: previous 1.426: preferred, colored
Changes since revision 1.426: +3 -2
lines
Add `dpti', which is an I2O vendor extension implementing the DPT/Adaptec
control interface. This makes it possible to run the Linux versions of
dptmgr, raidutil, dptelog and other tools under NetBSD.
Revision 1.400.2.4: download - view: text, markup, annotated - select for diffs
Fri Sep 21 22:35:00 2001 UTC (23 years, 7 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.3: preferred, colored
Changes since revision 1.400.2.3: +34 -16
lines
Catch up to -current.
Revision 1.426: download - view: text, markup, annotated - select for diffs
Fri Sep 14 21:44:21 2001 UTC (23 years, 7 months ago) by nathanw
Branches: MAIN
CVS tags: pre-chs-ubcperf,
post-chs-ubcperf
Diff to: previous 1.425: preferred, colored
Changes since revision 1.425: +7 -7
lines
Change all instances of "[e]isa* at foo?" to "[e]isa0 at foo?".
This prevents attaching multiple [E]ISA buses, which we don't support
(Is there any such thing to support? I'm skeptical) and avoids the
"panic: isaattach: ISA bus already seen" that occurs on some laptops
with docking stations and EISA boxes. Since there is only one [E]ISA bus,
logically, the ISA device probe will still find devices on the
docking station.
This does not address the problem of inserting or removing the docking station
at runtime.
Relevant PRs: kern/6544, port-i386/10392, kern/11627, kern/13557,
install/13865.
Revision 1.410.2.3: download - view: text, markup, annotated - select for diffs
Thu Sep 13 01:13:43 2001 UTC (23 years, 7 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.410.2.2: preferred, colored
Changes since revision 1.410.2.2: +29 -11
lines
Update the kqueue branch to HEAD.
Revision 1.425: download - view: text, markup, annotated - select for diffs
Mon Sep 10 10:19:12 2001 UTC (23 years, 7 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.424: preferred, colored
Changes since revision 1.424: +3 -3
lines
Oops, didn't mean to enable agp by default yet.
Revision 1.424: download - view: text, markup, annotated - select for diffs
Mon Sep 10 10:18:37 2001 UTC (23 years, 7 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.423: preferred, colored
Changes since revision 1.423: +4 -2
lines
Add agp* at pchb?
Revision 1.423: download - view: text, markup, annotated - select for diffs
Mon Sep 10 10:17:29 2001 UTC (23 years, 7 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.422: preferred, colored
Changes since revision 1.422: +4 -2
lines
Add MTRR option.
Revision 1.422.2.1
Fri Sep 7 00:18:27 2001 UTC (23 years, 7 months ago) by fvdl
Branches: thorpej-devvp
FILE REMOVED
Changes since revision 1.422: +0 -961
lines
file GENERIC was added on branch thorpej-devvp on 2001-10-01 12:39:33 +0000
Revision 1.422: download - view: text, markup, annotated - select for diffs
Fri Sep 7 00:18:27 2001 UTC (23 years, 7 months ago) by lukem
Branches: MAIN
CVS tags: thorpej-devvp-base
Branch point for: thorpej-devvp
Diff to: previous 1.421: preferred, colored
Changes since revision 1.421: +9 -9
lines
use options SPACE TAB
Revision 1.421: download - view: text, markup, annotated - select for diffs
Thu Sep 6 13:29:29 2001 UTC (23 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.420: preferred, colored
Changes since revision 1.420: +4 -3
lines
Comment out tr at pcmcia.
Revision 1.300.2.21: download - view: text, markup, annotated - select for diffs
Mon Sep 3 19:48:06 2001 UTC (23 years, 7 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.20: preferred, colored
Changes since revision 1.300.2.20: +43 -5
lines
Merge with -current once more.
Revision 1.420: download - view: text, markup, annotated - select for diffs
Sat Sep 1 21:52:27 2001 UTC (23 years, 7 months ago) by atatat
Branches: MAIN
Diff to: previous 1.419: preferred, colored
Changes since revision 1.419: +4 -3
lines
Add bridge pseudo devices to GENERIC configs
Revision 1.419: download - view: text, markup, annotated - select for diffs
Mon Aug 27 22:25:42 2001 UTC (23 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.418: preferred, colored
Changes since revision 1.418: +3 -3
lines
Comment out the hme driver; it's not totally MI yet.
Revision 1.418: download - view: text, markup, annotated - select for diffs
Mon Aug 27 22:23:47 2001 UTC (23 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.417: preferred, colored
Changes since revision 1.417: +8 -3
lines
Add some missing network drivers.
Revision 1.417: download - view: text, markup, annotated - select for diffs
Mon Aug 27 12:08:00 2001 UTC (23 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.416: preferred, colored
Changes since revision 1.416: +9 -2
lines
Add 7 new PHYs.
Revision 1.410.2.2: download - view: text, markup, annotated - select for diffs
Sat Aug 25 06:15:23 2001 UTC (23 years, 8 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.410.2.1: preferred, colored
Changes since revision 1.410.2.1: +6 -6
lines
Merge Aug 24 -current into the kqueue branch.
Revision 1.400.2.3: download - view: text, markup, annotated - select for diffs
Fri Aug 24 00:08:26 2001 UTC (23 years, 8 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.2: preferred, colored
Changes since revision 1.400.2.2: +37 -9
lines
Catch up with -current.
Revision 1.416: download - view: text, markup, annotated - select for diffs
Wed Aug 22 15:28:57 2001 UTC (23 years, 8 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.415: preferred, colored
Changes since revision 1.415: +3 -3
lines
90x[B] -> 90x[BC]
Revision 1.415: download - view: text, markup, annotated - select for diffs
Tue Aug 14 13:15:45 2001 UTC (23 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.414: preferred, colored
Changes since revision 1.414: +5 -5
lines
Alphabetize two items. Fix one whitespace glitch.
Revision 1.410.2.1: download - view: text, markup, annotated - select for diffs
Fri Aug 3 04:11:39 2001 UTC (23 years, 8 months ago) by lukem
Branches: kqueue
Diff to: previous 1.410: preferred, colored
Changes since revision 1.410: +30 -3
lines
update to -current
Revision 1.414: download - view: text, markup, annotated - select for diffs
Mon Jul 30 19:59:05 2001 UTC (23 years, 9 months ago) by ad
Branches: MAIN
Diff to: previous 1.413: preferred, colored
Changes since revision 1.413: +5 -3
lines
Add a driver for Mylex AcceleRAID and eXtremeRAID controllers with v6
firmware. Based off the FreeBSD driver, and re-worked by tls, erh and I.
Revision 1.413: download - view: text, markup, annotated - select for diffs
Mon Jul 30 18:03:54 2001 UTC (23 years, 9 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.412: preferred, colored
Changes since revision 1.412: +24 -2
lines
add MCA stuff, for IBM PS/2
Revision 1.412: download - view: text, markup, annotated - select for diffs
Sat Jul 21 13:22:05 2001 UTC (23 years, 9 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.411: preferred, colored
Changes since revision 1.411: +3 -2
lines
add pcmb\*
Revision 1.300.2.20: download - view: text, markup, annotated - select for diffs
Thu Jul 19 08:57:25 2001 UTC (23 years, 9 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.19: preferred, colored
Changes since revision 1.300.2.19: +6 -7
lines
catch up with -current
Revision 1.411: download - view: text, markup, annotated - select for diffs
Sat Jul 14 02:00:39 2001 UTC (23 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.410: preferred, colored
Changes since revision 1.410: +4 -2
lines
Add COMPAT_MACH and EXEC_MACHO. Code works enough to start running a binary,
but we need to implement a few mach traps before the dynamic linker actually
works.
Revision 1.410: download - view: text, markup, annotated - select for diffs
Sun Jul 8 16:32:18 2001 UTC (23 years, 9 months ago) by abs
Branches: MAIN
Branch point for: kqueue
Diff to: previous 1.409: preferred, colored
Changes since revision 1.409: +4 -5
lines
Standardise TCP_COMPAT_42 as commented out, grouped with other COMPAT options,
and with the comment '4.2BSD TCP/IP bug compat. Not recommended'
Add commented out 'TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG'
(All hail amiga and atari which make some attempt to automate the
multiplicity of config files...)
Revision 1.409: download - view: text, markup, annotated - select for diffs
Sat Jul 7 17:09:48 2001 UTC (23 years, 9 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.408: preferred, colored
Changes since revision 1.408: +2 -4
lines
Remove (commented out) ncr* at pci? lines.
Revision 1.300.2.19: download - view: text, markup, annotated - select for diffs
Wed Jul 4 20:11:12 2001 UTC (23 years, 9 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.18: preferred, colored
Changes since revision 1.300.2.18: +6 -2
lines
Catch up with -current
Revision 1.408: download - view: text, markup, annotated - select for diffs
Wed Jun 27 13:40:12 2001 UTC (23 years, 10 months ago) by darcy
Branches: MAIN
Diff to: previous 1.407: preferred, colored
Changes since revision 1.407: +6 -2
lines
Added the commented lines with the defaults for the system values associated
with System V semaphores.
Revision 1.300.2.18: download - view: text, markup, annotated - select for diffs
Sun Jun 24 19:29:49 2001 UTC (23 years, 10 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.17: preferred, colored
Changes since revision 1.300.2.17: +6 -3
lines
Merge up with -current.
Revision 1.400.2.2: download - view: text, markup, annotated - select for diffs
Thu Jun 21 19:25:12 2001 UTC (23 years, 10 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400.2.1: preferred, colored
Changes since revision 1.400.2.1: +12 -6
lines
Catch up to -current.
Revision 1.407: download - view: text, markup, annotated - select for diffs
Mon Jun 18 22:45:54 2001 UTC (23 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.406: preferred, colored
Changes since revision 1.406: +6 -3
lines
Add gsip(4), gphyter(4), and sf(4) drivers.
Revision 1.300.2.17: download - view: text, markup, annotated - select for diffs
Mon Jun 18 03:33:27 2001 UTC (23 years, 10 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.16: preferred, colored
Changes since revision 1.300.2.16: +4 -2
lines
checkpoint merge-in-progress from mainline.
Revision 1.406: download - view: text, markup, annotated - select for diffs
Sun Jun 3 13:46:58 2001 UTC (23 years, 10 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.405: preferred, colored
Changes since revision 1.405: +4 -2
lines
Add iha at pci .
Revision 1.300.2.16: download - view: text, markup, annotated - select for diffs
Sun May 13 00:48:52 2001 UTC (23 years, 11 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.15: preferred, colored
Changes since revision 1.300.2.15: +3 -3
lines
Merge up with -current
Revision 1.405: download - view: text, markup, annotated - select for diffs
Thu May 10 22:12:38 2001 UTC (23 years, 11 months ago) by tron
Branches: MAIN
Diff to: previous 1.404: preferred, colored
Changes since revision 1.404: +3 -3
lines
Fix typo: Pnp -> PnP
Revision 1.300.2.15: download - view: text, markup, annotated - select for diffs
Mon May 7 17:07:21 2001 UTC (23 years, 11 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.14: preferred, colored
Changes since revision 1.300.2.14: +4 -3
lines
yet another merge-up
Revision 1.404: download - view: text, markup, annotated - select for diffs
Sun May 6 19:55:01 2001 UTC (23 years, 11 months ago) by ad
Branches: MAIN
Diff to: previous 1.403: preferred, colored
Changes since revision 1.403: +4 -3
lines
Add an (untested) EISA front-end for the `mlx' driver.
Revision 1.354.2.15: download - view: text, markup, annotated - select for diffs
Sun May 6 15:18:54 2001 UTC (23 years, 11 months ago) by he
Branches: netbsd-1-5
CVS tags: netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001
Diff to: previous 1.354.2.14: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.14: +5 -2
lines
Pull up revision 1.393 (requested by he):
Add clct(4) driver.
Revision 1.354.2.14: download - view: text, markup, annotated - select for diffs
Sun May 6 14:44:50 2001 UTC (23 years, 11 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.354.2.13: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.13: +2 -0
lines
Apply patch (requested by sommerfeld):
Add a driver for the NeoMagic 256 AC'97 chip.
Revision 1.354.2.13: download - view: text, markup, annotated - select for diffs
Thu May 3 20:58:33 2001 UTC (23 years, 11 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.354.2.12: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.12: +2 -0
lines
Pull up revision 1.389 (requested by skrll):
Add a driver for the ESS Technology Maestro-1/2/2E AC97 audio chips,
ES1968 and ES1978.
Revision 1.354.2.12: download - view: text, markup, annotated - select for diffs
Tue May 1 15:49:02 2001 UTC (23 years, 11 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.354.2.11: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.11: +3 -2
lines
Pull up revision 1.386 (requested by he):
Add pseudo-device vlan.
Make sure "rnd is EXPERIMENTAL" comment is removed.
Revision 1.354.2.11: download - view: text, markup, annotated - select for diffs
Tue May 1 11:49:38 2001 UTC (23 years, 11 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.354.2.10: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.10: +6 -2
lines
Pull up revision 1.402 (requested by minoura):
Add Yamaha YMF724/740/744/745-based sound driver and
its subordinates.
Revision 1.300.2.14: download - view: text, markup, annotated - select for diffs
Mon Apr 30 16:23:08 2001 UTC (24 years ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.13: preferred, colored
Changes since revision 1.300.2.13: +21 -5
lines
Merge sommerfeld_i386mp_1 branch with -current as of today.
GENERIC.MP kernel boots and runs multiuser on my ABIT BP6
Revision 1.354.2.10: download - view: text, markup, annotated - select for diffs
Wed Apr 25 08:55:50 2001 UTC (24 years ago) by he
Branches: netbsd-1-5
Diff to: previous 1.354.2.9: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.9: +3 -3
lines
Pull up revision 1.403 (requested by fvdl):
Not all DIAGNOSTIC checks are all that cheap, so disable that
option in meant-for-production kernels. Introduces GENERIC_DIAGNOSTIC.
Revision 1.264.2.14: download - view: text, markup, annotated - select for diffs
Mon Apr 23 15:30:27 2001 UTC (24 years ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.13: preferred, colored; next MAIN 1.265: preferred, colored
Changes since revision 1.264.2.13: +7 -10
lines
Kill unwanted differences with HEAD
Revision 1.264.2.13: download - view: text, markup, annotated - select for diffs
Mon Apr 23 09:41:45 2001 UTC (24 years ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.12: preferred, colored
Changes since revision 1.264.2.12: +3 -3
lines
Sync with HEAD.
Revision 1.403: download - view: text, markup, annotated - select for diffs
Sat Apr 21 20:49:14 2001 UTC (24 years ago) by fvdl
Branches: MAIN
CVS tags: thorpej_scsipi_nbase,
thorpej_scsipi_beforemerge,
thorpej_scsipi_base
Diff to: previous 1.402: preferred, colored
Changes since revision 1.402: +3 -3
lines
Move the DIAGNOSTIC option to a seperate config file, it's too expensive
to be in GENERIC (which should be a kernel ready for production use).
Revision 1.264.2.12: download - view: text, markup, annotated - select for diffs
Sat Apr 21 17:53:49 2001 UTC (24 years ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.11: preferred, colored
Changes since revision 1.264.2.11: +9 -2
lines
Sync with HEAD
Revision 1.400.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 9 01:53:26 2001 UTC (24 years ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.400: preferred, colored
Changes since revision 1.400: +9 -2
lines
Catch up with -current.
Revision 1.264.2.11: download - view: text, markup, annotated - select for diffs
Mon Apr 2 16:28:22 2001 UTC (24 years ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.10: preferred, colored
Changes since revision 1.264.2.10: +6 -6
lines
ahc compiles now, and it works on sparc64 so I can't see why it wouldn't
work on something else :)
Revision 1.402: download - view: text, markup, annotated - select for diffs
Fri Mar 30 14:47:49 2001 UTC (24 years, 1 month ago) by minoura
Branches: MAIN
Diff to: previous 1.401: preferred, colored
Changes since revision 1.401: +6 -2
lines
Add yds at pci and children.
Alpha and i386 are the only tested ports.
Revision 1.401: download - view: text, markup, annotated - select for diffs
Wed Mar 28 18:45:07 2001 UTC (24 years, 1 month ago) by ichiro
Branches: MAIN
Diff to: previous 1.400: preferred, colored
Changes since revision 1.400: +5 -2
lines
support umct USB-serial device
Revision 1.264.2.10: download - view: text, markup, annotated - select for diffs
Tue Mar 27 13:08:52 2001 UTC (24 years, 1 month ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.9: preferred, colored
Changes since revision 1.264.2.9: +10 -10
lines
isp & bha compiles now. Only ahc left.
Revision 1.264.2.9: download - view: text, markup, annotated - select for diffs
Fri Mar 23 11:32:51 2001 UTC (24 years, 1 month ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.8: preferred, colored
Changes since revision 1.264.2.8: +6 -6
lines
Comment out drivers that don't compile yet.
Revision 1.264.2.8: download - view: text, markup, annotated - select for diffs
Sun Feb 11 19:10:50 2001 UTC (24 years, 2 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.7: preferred, colored
Changes since revision 1.264.2.7: +21 -6
lines
Sync with HEAD.
Revision 1.400: download - view: text, markup, annotated - select for diffs
Sun Feb 4 17:36:03 2001 UTC (24 years, 2 months ago) by perry
Branches: MAIN
Branch point for: nathanw_sa
Diff to: previous 1.399: preferred, colored
Changes since revision 1.399: +4 -4
lines
keep joystick lines together
Revision 1.399: download - view: text, markup, annotated - select for diffs
Sun Feb 4 17:05:15 2001 UTC (24 years, 2 months ago) by ad
Branches: MAIN
Diff to: previous 1.398: preferred, colored
Changes since revision 1.398: +6 -4
lines
Add a driver for the Mylex DAC960 family (including DEC SWXCR).
Revision 1.398: download - view: text, markup, annotated - select for diffs
Fri Feb 2 10:53:48 2001 UTC (24 years, 2 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.397: preferred, colored
Changes since revision 1.397: +3 -2
lines
Add COMPAT_15
Revision 1.397: download - view: text, markup, annotated - select for diffs
Tue Jan 30 23:32:35 2001 UTC (24 years, 2 months ago) by tshiozak
Branches: MAIN
Diff to: previous 1.396: preferred, colored
Changes since revision 1.396: +6 -2
lines
add umidi.
Revision 1.396: download - view: text, markup, annotated - select for diffs
Sun Jan 28 00:50:23 2001 UTC (24 years, 3 months ago) by nathanw
Branches: MAIN
Diff to: previous 1.395: preferred, colored
Changes since revision 1.395: +4 -2
lines
Add joy at pnpbios.
Revision 1.300.2.13: download - view: text, markup, annotated - select for diffs
Tue Jan 23 06:34:53 2001 UTC (24 years, 3 months ago) by thorpej
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.12: preferred, colored
Changes since revision 1.300.2.12: +21 -6
lines
Sync with the trunk.
Revision 1.395: download - view: text, markup, annotated - select for diffs
Tue Jan 23 01:44:38 2001 UTC (24 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.394: preferred, colored
Changes since revision 1.394: +4 -4
lines
Uncomment the uftdi driver.
Revision 1.394: download - view: text, markup, annotated - select for diffs
Tue Jan 23 01:27:23 2001 UTC (24 years, 3 months ago) by ichiro
Branches: MAIN
Diff to: previous 1.393: preferred, colored
Changes since revision 1.393: +5 -2
lines
add I/O DATA USB-RSAQ2 serial adapter
uplcom* at uhub? port ?
ucom* at uplcom? portno ?
Revision 1.393: download - view: text, markup, annotated - select for diffs
Mon Jan 22 01:39:05 2001 UTC (24 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.392: preferred, colored
Changes since revision 1.392: +5 -2
lines
Add clct(4) driver.
Revision 1.264.2.7: download - view: text, markup, annotated - select for diffs
Thu Jan 18 09:22:33 2001 UTC (24 years, 3 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.6: preferred, colored
Changes since revision 1.264.2.6: +21 -12
lines
Sync with head (for UBC+NFS fixes, mostly).
Revision 1.392: download - view: text, markup, annotated - select for diffs
Tue Jan 16 03:38:23 2001 UTC (24 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.391: preferred, colored
Changes since revision 1.391: +5 -2
lines
Add uyap.
Revision 1.391: download - view: text, markup, annotated - select for diffs
Thu Jan 11 06:03:21 2001 UTC (24 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.390: preferred, colored
Changes since revision 1.390: +6 -2
lines
Add usscanner.
Revision 1.390: download - view: text, markup, annotated - select for diffs
Tue Jan 9 00:40:53 2001 UTC (24 years, 3 months ago) by lukem
Branches: MAIN
Diff to: previous 1.389: preferred, colored
Changes since revision 1.389: +4 -4
lines
sort auich in respect to auvia
Revision 1.389: download - view: text, markup, annotated - select for diffs
Mon Jan 8 20:48:11 2001 UTC (24 years, 3 months ago) by rh
Branches: MAIN
Diff to: previous 1.388: preferred, colored
Changes since revision 1.388: +4 -2
lines
Add and enable the esm PCI audio driver
Revision 1.300.2.12: download - view: text, markup, annotated - select for diffs
Sun Jan 7 22:12:38 2001 UTC (24 years, 3 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.11: preferred, colored
Changes since revision 1.300.2.11: +41 -17
lines
Snapshot of merge-in-progress with -current.
[Not expected to build]. Catch up with the last N months worth of
changes to -current.
Revision 1.300.2.11: download - view: text, markup, annotated - select for diffs
Sun Jan 7 19:36:48 2001 UTC (24 years, 3 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.10: preferred, colored
Changes since revision 1.300.2.10: +6 -6
lines
Comment out the mismatched COMPAT_* for now
Revision 1.264.2.6: download - view: text, markup, annotated - select for diffs
Fri Jan 5 17:34:28 2001 UTC (24 years, 3 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.5: preferred, colored
Changes since revision 1.264.2.5: +3 -0
lines
Sync with HEAD
Revision 1.300.2.10: download - view: text, markup, annotated - select for diffs
Fri Dec 29 21:38:40 2000 UTC (24 years, 4 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.9: preferred, colored
Changes since revision 1.300.2.9: +6 -3
lines
Catch up to the raid shuffle.
Revision 1.388: download - view: text, markup, annotated - select for diffs
Fri Dec 22 16:35:51 2000 UTC (24 years, 4 months ago) by tv
Branches: MAIN
Diff to: previous 1.387: preferred, colored
Changes since revision 1.387: +3 -3
lines
Undo 1.385; put wss0 back in GENERIC.
Just like any ISA device, if you don't have the device at the configured IRQ,
you could lose if something else decides it wants that IRQ. wss is not
a special case.
Revision 1.387: download - view: text, markup, annotated - select for diffs
Wed Dec 20 10:44:29 2000 UTC (24 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.386: preferred, colored
Changes since revision 1.386: +3 -3
lines
Put 'an* at isapnp?' in alphabetical order.
Revision 1.386: download - view: text, markup, annotated - select for diffs
Tue Dec 19 10:34:11 2000 UTC (24 years, 4 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.385: preferred, colored
Changes since revision 1.385: +3 -2
lines
Add peudo-device vlan
Revision 1.385: download - view: text, markup, annotated - select for diffs
Sun Dec 17 22:53:52 2000 UTC (24 years, 4 months ago) by jmc
Branches: MAIN
Diff to: previous 1.384: preferred, colored
Changes since revision 1.384: +3 -3
lines
Comment out the isa wss driver.
GENERIC is the kernel used on new installs and too many things overlap the
resources (irq mostly) the default isa version may be using which causes
panics on reboot.
Revision 1.384: download - view: text, markup, annotated - select for diffs
Sun Dec 17 20:35:45 2000 UTC (24 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.383: preferred, colored
Changes since revision 1.383: +3 -2
lines
Add an at isapnp.
Revision 1.383: download - view: text, markup, annotated - select for diffs
Thu Dec 14 04:11:26 2000 UTC (24 years, 4 months ago) by onoe
Branches: MAIN
Diff to: previous 1.382: preferred, colored
Changes since revision 1.382: +3 -2
lines
Add PCI version of Aironet, not tested at all.
ISA/ISApnp version won't come since I don't know about isa...
Revision 1.264.2.5: download - view: text, markup, annotated - select for diffs
Wed Dec 13 15:49:24 2000 UTC (24 years, 4 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.4: preferred, colored
Changes since revision 1.264.2.4: +1 -0
lines
Sync with HEAD (for UBC fixes).
Revision 1.354.2.9: download - view: text, markup, annotated - select for diffs
Tue Dec 12 21:28:24 2000 UTC (24 years, 4 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.354.2.8: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.8: +3 -2
lines
Pull up revision 1.382 (requested by he):
Add a driver for an(4), Aironet and Cisco wireless pcmcia cards.
Revision 1.382: download - view: text, markup, annotated - select for diffs
Mon Dec 11 23:16:51 2000 UTC (24 years, 4 months ago) by onoe
Branches: MAIN
Diff to: previous 1.381: preferred, colored
Changes since revision 1.381: +3 -2
lines
Port 'an' driver for Aironet PC4500/PC4800 IEEE802.11 card from FreeBSD.
This is very adhoc work for IETF meeting.
- Since it seems that 'an' and 'wi' have similar hardware, low level
functions should be shared.
- There are PCI/ISA cards of Aironet but not supported yet.
- The wiconfig interface is changed so that wiconfig cannot be used.
- 'ancontrol' of FreeBSD is not ported.
- Only infrastructure mode is tested.
- WEP is not supported.
Though I only have an Aironet card, Cisco card should be expected to work.
Revision 1.264.2.4: download - view: text, markup, annotated - select for diffs
Fri Dec 8 09:26:33 2000 UTC (24 years, 4 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.3: preferred, colored
Changes since revision 1.264.2.3: +7 -3
lines
Sync with HEAD.
Revision 1.381: download - view: text, markup, annotated - select for diffs
Tue Nov 28 19:44:07 2000 UTC (24 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.380: preferred, colored
Changes since revision 1.380: +3 -3
lines
Put neo* in alphabetical position.
Revision 1.380: download - view: text, markup, annotated - select for diffs
Tue Nov 28 05:18:42 2000 UTC (24 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.379: preferred, colored
Changes since revision 1.379: +6 -2
lines
Add auich(4) and neo(4).
Revision 1.379: download - view: text, markup, annotated - select for diffs
Sun Nov 26 17:44:09 2000 UTC (24 years, 5 months ago) by ad
Branches: MAIN
Diff to: previous 1.378: preferred, colored
Changes since revision 1.378: +5 -5
lines
lsu -> ld, by popular request.
Revision 1.264.2.3: download - view: text, markup, annotated - select for diffs
Wed Nov 22 16:00:15 2000 UTC (24 years, 5 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.2: preferred, colored
Changes since revision 1.264.2.2: +15 -2
lines
Sync with HEAD.
Revision 1.264.2.2: download - view: text, markup, annotated - select for diffs
Mon Nov 20 20:09:15 2000 UTC (24 years, 5 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.264.2.1: preferred, colored
Changes since revision 1.264.2.1: +225 -49
lines
Update thorpej_scsipi to -current as of a month ago
A i386 GENERIC kernel compiles without the siop, ahc and bha drivers
(will be updated later). i386 IDE/ATAPI and ncr work, as well as
sparc/esp_sbus. alpha should work as well (untested yet).
siop, ahc and bha will be updated once I've updated the branch to current
-current, as well as machine-dependant code.
Revision 1.378: download - view: text, markup, annotated - select for diffs
Mon Nov 20 19:53:43 2000 UTC (24 years, 5 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.377: preferred, colored
Changes since revision 1.377: +4 -2
lines
add moxa0 at isa entry, marked as experimental
This was not added also to other config files primarily because the
driver is not properly tested yet; this entry is primarily meant as an example
for those brave souls who want to try moxa.
Revision 1.300.2.9: download - view: text, markup, annotated - select for diffs
Sat Nov 18 23:25:50 2000 UTC (24 years, 5 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.8: preferred, colored
Changes since revision 1.300.2.8: +3 -3
lines
Catch up to -current
Revision 1.377: download - view: text, markup, annotated - select for diffs
Tue Nov 14 19:52:05 2000 UTC (24 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.376: preferred, colored
Changes since revision 1.376: +8 -3
lines
Add uscanner.
Revision 1.376: download - view: text, markup, annotated - select for diffs
Wed Nov 8 21:47:25 2000 UTC (24 years, 5 months ago) by ad
Branches: MAIN
Diff to: previous 1.375: preferred, colored
Changes since revision 1.375: +3 -3
lines
Sort.
Revision 1.375: download - view: text, markup, annotated - select for diffs
Wed Nov 8 19:50:07 2000 UTC (24 years, 5 months ago) by ad
Branches: MAIN
Diff to: previous 1.374: preferred, colored
Changes since revision 1.374: +8 -2
lines
Add I2O stuff.
Revision 1.374: download - view: text, markup, annotated - select for diffs
Thu Oct 19 14:32:20 2000 UTC (24 years, 6 months ago) by ad
Branches: MAIN
Diff to: previous 1.373: preferred, colored
Changes since revision 1.373: +5 -3
lines
- ca -> lsu
- Hook in twe.
Revision 1.373: download - view: text, markup, annotated - select for diffs
Sun Oct 15 10:08:00 2000 UTC (24 years, 6 months ago) by minoura
Branches: MAIN
Diff to: previous 1.372: preferred, colored
Changes since revision 1.372: +3 -3
lines
WSCONS_DEFAULT_TYPE is obsolete; use VGA_CONSOLE_SCREENTYPE instead.
Revision 1.372: download - view: text, markup, annotated - select for diffs
Tue Sep 26 11:51:14 2000 UTC (24 years, 7 months ago) by ad
Branches: MAIN
Diff to: previous 1.371: preferred, colored
Changes since revision 1.371: +6 -4
lines
cac* at eisa? reported as working.
Revision 1.371: download - view: text, markup, annotated - select for diffs
Sun Sep 24 15:59:33 2000 UTC (24 years, 7 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.370: preferred, colored
Changes since revision 1.370: +3 -3
lines
don't specify number of ptys if >= 16 (current default initial number)
pty comments: normalize and g/c what is no longer relevant
Revision 1.354.2.8: download - view: text, markup, annotated - select for diffs
Wed Sep 20 18:26:06 2000 UTC (24 years, 7 months ago) by thorpej
Branches: netbsd-1-5
CVS tags: netbsd-1-5-RELEASE,
netbsd-1-5-BETA2,
netbsd-1-5-BETA
Diff to: previous 1.354.2.7: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.7: +3 -3
lines
Pull up rev 1.370 (ok'd by fvdl):
Enable VM86 -- it's needed for some X servers (notably, S3 Savage,
which runs the VESA BIOS in VM86 emulation in order to switch video
modes).
Revision 1.370: download - view: text, markup, annotated - select for diffs
Wed Sep 20 18:22:22 2000 UTC (24 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.369: preferred, colored
Changes since revision 1.369: +3 -3
lines
Enable VM86 -- it's needed for some X servers (notably, S3 Savage,
which runs the VESA BIOS in VM86 emulation in order to switch video
modes).
Revision 1.354.2.7: download - view: text, markup, annotated - select for diffs
Tue Sep 12 00:48:39 2000 UTC (24 years, 7 months ago) by fvdl
Branches: netbsd-1-5
Diff to: previous 1.354.2.6: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.6: +2 -4
lines
Remove COMPAT_AOUT from GENERIC and GENERIC_TINY. Done on the trunk
as revisions 1.362 and 1.18 respectively.
Approved by thorpej
Revision 1.369: download - view: text, markup, annotated - select for diffs
Sun Sep 10 11:48:38 2000 UTC (24 years, 7 months ago) by lukem
Branches: MAIN
Diff to: previous 1.368: preferred, colored
Changes since revision 1.368: +4 -2
lines
add (commented out) entry for WSCONS_DEFAULT_TYPE
Revision 1.300.2.8: download - view: text, markup, annotated - select for diffs
Fri Aug 25 00:40:06 2000 UTC (24 years, 8 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.7: preferred, colored
Changes since revision 1.300.2.7: +3 -3
lines
Catch up to -current for this one file..
Revision 1.368: download - view: text, markup, annotated - select for diffs
Mon Aug 21 07:39:42 2000 UTC (24 years, 8 months ago) by itohy
Branches: MAIN
Diff to: previous 1.367: preferred, colored
Changes since revision 1.367: +5 -5
lines
Fix typos.
No functional changes.
Revision 1.367: download - view: text, markup, annotated - select for diffs
Tue Aug 15 20:09:26 2000 UTC (24 years, 8 months ago) by ross
Branches: MAIN
Diff to: previous 1.366: preferred, colored
Changes since revision 1.366: +3 -3
lines
Edit adv0 comment to include "SCSI"; now 'grep -v -i SCSI GENERIC' works.
Revision 1.366: download - view: text, markup, annotated - select for diffs
Sun Aug 13 01:31:18 2000 UTC (24 years, 8 months ago) by itojun
Branches: MAIN
Diff to: previous 1.365: preferred, colored
Changes since revision 1.365: +2 -3
lines
move "options PULLDOWN_TEST" into sys/sys/mbuf.h (in #ifdef _KERNEL),
as it is no wthe default setting for everyone.
the reason we still use the name "PULLDOWN_TEST" while it is now default:
kame code sharing.
Revision 1.354.2.6: download - view: text, markup, annotated - select for diffs
Thu Aug 10 23:10:28 2000 UTC (24 years, 8 months ago) by soda
Branches: netbsd-1-5
CVS tags: netbsd-1-5-ALPHA2
Diff to: previous 1.354.2.5: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.5: +6 -5
lines
Pull up to netbsd-1-5 branch
Approved by: thorpej
- remove quotation from hexadecimal constant in "options" value.
Revisions pulled up:
> cvs rdiff -r1.17 -r1.18 syssrc/sys/arch/i386/conf/CARDBUS
> cvs rdiff -r1.21 -r1.22 syssrc/sys/arch/i386/conf/DR-EVIL
> cvs rdiff -r1.360 -r1.361 syssrc/sys/arch/i386/conf/GENERIC
> cvs rdiff -r1.5 -r1.6 syssrc/sys/arch/i386/conf/IOPENER
- add commented out PCIBIOS_INTR_GUESS.
Revisions pulled up:
> cvs rdiff -r1.19 -r1.20 syssrc/sys/arch/i386/conf/CARDBUS
> cvs rdiff -r1.23 -r1.24 syssrc/sys/arch/i386/conf/DR-EVIL
> cvs rdiff -r1.364 -r1.365 syssrc/sys/arch/i386/conf/GENERIC
> cvs rdiff -r1.7 -r1.8 syssrc/sys/arch/i386/conf/IOPENER
Revision 1.365: download - view: text, markup, annotated - select for diffs
Thu Aug 10 21:33:18 2000 UTC (24 years, 8 months ago) by soda
Branches: MAIN
Diff to: previous 1.364: preferred, colored
Changes since revision 1.364: +5 -4
lines
add commented out PCIBIOS_INTR_GUESS
Revision 1.300.2.7: download - view: text, markup, annotated - select for diffs
Mon Aug 7 01:08:27 2000 UTC (24 years, 8 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.6: preferred, colored
Changes since revision 1.300.2.6: +20 -9
lines
Merge sommerfeld_i386mp_1 branch forward to 20000806 sources
Revision 1.364: download - view: text, markup, annotated - select for diffs
Fri Aug 4 11:51:37 2000 UTC (24 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.363: preferred, colored
Changes since revision 1.363: +4 -3
lines
Alphabetize.
Revision 1.354.2.5: download - view: text, markup, annotated - select for diffs
Tue Aug 1 22:35:52 2000 UTC (24 years, 8 months ago) by augustss
Branches: netbsd-1-5
Diff to: previous 1.354.2.4: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.4: +3 -2
lines
Add `midi at clcs'.
Approved by thorpej.
Revision 1.363: download - view: text, markup, annotated - select for diffs
Tue Aug 1 08:16:54 2000 UTC (24 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.362: preferred, colored
Changes since revision 1.362: +3 -2
lines
Add midi at clcs.
Revision 1.362: download - view: text, markup, annotated - select for diffs
Thu Jul 27 14:34:07 2000 UTC (24 years, 9 months ago) by mrg
Branches: MAIN
Diff to: previous 1.361: preferred, colored
Changes since revision 1.361: +2 -4
lines
remove COMPAT_AOUT option.
Revision 1.354.2.4: download - view: text, markup, annotated - select for diffs
Thu Jul 27 02:10:48 2000 UTC (24 years, 9 months ago) by mycroft
Branches: netbsd-1-5
Diff to: previous 1.354.2.3: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.3: +3 -3
lines
Approved by thorpej:
Enable DDB history by default, and increase the default size to .5k.
syssrc/sys/arch/i386/conf/BIKINI 1.28 -> 1.29
syssrc/sys/arch/i386/conf/CARDBUS 1.16 -> 1.17
syssrc/sys/arch/i386/conf/DISKLESS 1.73 -> 1.74
syssrc/sys/arch/i386/conf/GENERIC 1.358 -> 1.359
syssrc/sys/arch/i386/conf/GENERIC_TINY 1.16 -> 1.17
syssrc/sys/arch/i386/conf/HOMEWORLD 1.48 -> 1.49
syssrc/sys/arch/i386/conf/INSTALL 1.148 -> 1.149
syssrc/sys/arch/i386/conf/INSTALL_SMALL 1.49 -> 1.50
syssrc/sys/arch/i386/conf/INSTALL_TINY 1.18 -> 1.19
syssrc/sys/arch/i386/conf/IOPENER 1.4 -> 1.5
syssrc/sys/arch/i386/conf/MINBAR 1.17 -> 1.18
syssrc/sys/arch/i386/conf/PS2 1.2 -> 1.3
syssrc/sys/arch/i386/conf/TRINITY 1.96 -> 1.97
syssrc/sys/arch/i386/conf/ZHADUM 1.22 -> 1.23
syssrc/sys/arch/i386/conf/ZYGORTHIAN-SPACE-RAIDERS 1.32 -> 1.33
Revision 1.354.2.3: download - view: text, markup, annotated - select for diffs
Tue Jul 25 14:58:41 2000 UTC (24 years, 9 months ago) by minoura
Branches: netbsd-1-5
Diff to: previous 1.354.2.2: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.2: +3 -2
lines
Pull up rev. 1.360 (approved by jhawk).
Add (but commented) COMPAT_PECOFF entry.
Revision 1.361: download - view: text, markup, annotated - select for diffs
Tue Jul 18 11:41:32 2000 UTC (24 years, 9 months ago) by soda
Branches: MAIN
Diff to: previous 1.360: preferred, colored
Changes since revision 1.360: +3 -3
lines
hexadecimal constant in "options" value doesn't need quotation.
Revision 1.360: download - view: text, markup, annotated - select for diffs
Mon Jul 17 14:37:53 2000 UTC (24 years, 9 months ago) by minoura
Branches: MAIN
Diff to: previous 1.359: preferred, colored
Changes since revision 1.359: +3 -2
lines
Add (but commented) COMPAT_PECOFF entry.
Revision 1.359: download - view: text, markup, annotated - select for diffs
Sun Jul 9 00:41:24 2000 UTC (24 years, 9 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.358: preferred, colored
Changes since revision 1.358: +3 -3
lines
Turn on DDB history by default.
Revision 1.354.2.2: download - view: text, markup, annotated - select for diffs
Thu Jul 6 14:10:34 2000 UTC (24 years, 9 months ago) by sommerfeld
Branches: netbsd-1-5
Diff to: previous 1.354.2.1: preferred, colored; branchpoint 1.354: preferred, colored
Changes since revision 1.354.2.1: +3 -3
lines
Comment out EON ISO-over-ip tunneling pseudo-driver, and document as
broken/fragile. Unlikely to be of much use, and confuses new users
when their system crashes when they, or their dhclient stumble over
it. See kern/10500, kern/8994 for the gory details.
[pull up approved by thorpej]
Revision 1.231.2.12: download - view: text, markup, annotated - select for diffs
Wed Jul 5 21:15:03 2000 UTC (24 years, 9 months ago) by he
Branches: netbsd-1-4
CVS tags: netbsd-1-4-PATCH003
Diff to: previous 1.231.2.11: preferred, colored; branchpoint 1.231: preferred, colored; next MAIN 1.232: preferred, colored
Changes since revision 1.231.2.11: +2 -1
lines
Apply patch (requested by he):
Add entry for Alteon ACEnic gigabit Ethernet interface (ti).
Revision 1.231.2.11: download - view: text, markup, annotated - select for diffs
Wed Jul 5 19:16:08 2000 UTC (24 years, 9 months ago) by he
Branches: netbsd-1-4
Diff to: previous 1.231.2.10: preferred, colored; branchpoint 1.231: preferred, colored
Changes since revision 1.231.2.10: +2 -2
lines
Pull up revision 1.358 (requested by sommerfeld):
Comment out EON ISO-over-ip tunneling pseudo-driver, and document
as broken/fragile. Unlikely to be of much use, and confuses new
users when their system crashes when they, or their dhclient
stumble over it. See PR#10500 and PR#8994 for the gory details.
Revision 1.358: download - view: text, markup, annotated - select for diffs
Wed Jul 5 04:07:25 2000 UTC (24 years, 9 months ago) by sommerfeld
Branches: MAIN
Diff to: previous 1.357: preferred, colored
Changes since revision 1.357: +3 -3
lines
Comment out EON ISO-over-ip tunneling pseudo-driver, and document as
broken/fragile. Unlikely to be of much use, and confuses new users
when their system crashes when they, or their dhclient stumble over
it. See kern/10500, kern/8994 for the gory details.
Revision 1.357: download - view: text, markup, annotated - select for diffs
Mon Jul 3 01:17:35 2000 UTC (24 years, 9 months ago) by augustss
Branches: MAIN
Diff to: previous 1.356: preferred, colored
Changes since revision 1.356: +13 -4
lines
White-space improvements.
Revision 1.356: download - view: text, markup, annotated - select for diffs
Fri Jun 30 17:10:17 2000 UTC (24 years, 10 months ago) by itojun
Branches: MAIN
Diff to: previous 1.355: preferred, colored
Changes since revision 1.355: +3 -2
lines
add PULLDOWN_TEST for all the platforms.
XXX should be moved to somewhere else when stabilized
Revision 1.300.2.6: download - view: text, markup, annotated - select for diffs
Sun Jun 25 19:36:55 2000 UTC (24 years, 10 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.5: preferred, colored
Changes since revision 1.300.2.5: +70 -62
lines
Merge up to just-post-1.5 -current
Revision 1.354.2.1: download - view: text, markup, annotated - select for diffs
Fri Jun 23 14:36:09 2000 UTC (24 years, 10 months ago) by fvdl
Branches: netbsd-1-5
Diff to: previous 1.354: preferred, colored
Changes since revision 1.354: +3 -3
lines
As on the trunk, update these for the move of ffs_softdep.c into the
kernel source itself. Remove prefix construction, and add the SOFTDEP
option to GENERIC kernels.
Revision 1.355: download - view: text, markup, annotated - select for diffs
Thu Jun 22 20:27:52 2000 UTC (24 years, 10 months ago) by fvdl
Branches: MAIN
CVS tags: sommerfeld_i386mp_houseclean
Diff to: previous 1.354: preferred, colored
Changes since revision 1.354: +3 -3
lines
Remove prefix construction for softdeps. Add SOFTDEP option to GENERIC.
Revision 1.342.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 22 17:00:16 2000 UTC (24 years, 10 months ago) by minoura
Branches: minoura-xpg4dl
Diff to: previous 1.342: preferred, colored; next MAIN 1.343: preferred, colored
Changes since revision 1.342: +49 -61
lines
Sync w/ netbsd-1-5-base.
Revision 1.354: download - view: text, markup, annotated - select for diffs
Fri Jun 16 10:31:03 2000 UTC (24 years, 10 months ago) by hubertf
Branches: MAIN
CVS tags: netbsd-1-5-base
Branch point for: netbsd-1-5
Diff to: previous 1.353: preferred, colored
Changes since revision 1.353: +3 -3
lines
Change comment: APM_POWER_PRINT _does_ print stats on the console.
Revision 1.353: download - view: text, markup, annotated - select for diffs
Wed Jun 14 22:02:27 2000 UTC (24 years, 10 months ago) by veego
Branches: MAIN
Diff to: previous 1.352: preferred, colored
Changes since revision 1.352: +2 -15
lines
Remove the obsolete config fragments for kernel crypto, because the IPsec
crypto code is now in the kernel source tree.
Revision 1.352: download - view: text, markup, annotated - select for diffs
Sun Jun 11 02:41:10 2000 UTC (24 years, 10 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.351: preferred, colored
Changes since revision 1.351: +4 -7
lines
Remove pcvt tentacles.
Revision 1.351: download - view: text, markup, annotated - select for diffs
Sun Jun 11 00:21:01 2000 UTC (24 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.350: preferred, colored
Changes since revision 1.350: +3 -3
lines
Alphabetize.
Revision 1.350: download - view: text, markup, annotated - select for diffs
Thu Jun 8 21:42:14 2000 UTC (24 years, 10 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.349: preferred, colored
Changes since revision 1.349: +6 -6
lines
Make siop the default instead of ncr. The siop driver has proven to
be reliable, and, although it does not do tagged queueing yet, this
makes it a better choice.
Revision 1.349: download - view: text, markup, annotated - select for diffs
Mon Jun 5 23:18:51 2000 UTC (24 years, 10 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.348: preferred, colored
Changes since revision 1.348: +3 -3
lines
Replace references to xe with xi. Clarify description to avoid
confusion with the Xircom tlp-based cards.
Revision 1.348: download - view: text, markup, annotated - select for diffs
Mon Jun 5 13:34:13 2000 UTC (24 years, 10 months ago) by joda
Branches: MAIN
Diff to: previous 1.347: preferred, colored
Changes since revision 1.347: +3 -3
lines
fix `#scsibus at siop?' line
Revision 1.231.2.10: download - view: text, markup, annotated - select for diffs
Sat Jun 3 14:45:28 2000 UTC (24 years, 10 months ago) by he
Branches: netbsd-1-4
Diff to: previous 1.231.2.9: preferred, colored; branchpoint 1.231: preferred, colored
Changes since revision 1.231.2.9: +2 -2
lines
Apply patch (requested by he):
Disable the UNION file system, to avoid a repeat of the 1.4.1
and 1.4.2 LAST_MINUTE changes. It is reportedly buggy, and can
be used by ordinary users to crash the system.
Revision 1.347: download - view: text, markup, annotated - select for diffs
Thu Jun 1 04:24:01 2000 UTC (24 years, 10 months ago) by david
Branches: MAIN
Diff to: previous 1.346: preferred, colored
Changes since revision 1.346: +2 -4
lines
Remove entry for non-existant driver that entered GENERIC in 1.289
and propagated to others when sync'd.
Revision 1.346: download - view: text, markup, annotated - select for diffs
Sun May 28 21:46:04 2000 UTC (24 years, 11 months ago) by jhawk
Branches: MAIN
Diff to: previous 1.345: preferred, colored
Changes since revision 1.345: +3 -3
lines
Add patchable "pnpbiosdebug" global if PNPBIOSDEBUG is compiled in,
and add PNPBIOSDEBUG_VALUE to initialize its value, defaulting to 1.
Revision 1.345: download - view: text, markup, annotated - select for diffs
Sun May 28 21:12:00 2000 UTC (24 years, 11 months ago) by jhawk
Branches: MAIN
Diff to: previous 1.344: preferred, colored
Changes since revision 1.344: +8 -8
lines
pnpbios from 1.344 didn't config. s/pnpbios0/pnpbios?/
Revision 1.344: download - view: text, markup, annotated - select for diffs
Sun May 28 20:11:59 2000 UTC (24 years, 11 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.343: preferred, colored
Changes since revision 1.343: +40 -34
lines
Tidy up a little, improve PnP BIOS section.
Revision 1.343: download - view: text, markup, annotated - select for diffs
Sun May 28 02:42:16 2000 UTC (24 years, 11 months ago) by tv
Branches: MAIN
Diff to: previous 1.342: preferred, colored
Changes since revision 1.342: +3 -3
lines
`ep' has `plug-and-play' support on all buses, including non-PnP ISA.
Attach ep* at isa instead of ep0, so we will autoconfigure all 3c5x9s.
Revision 1.342: download - view: text, markup, annotated - select for diffs
Thu May 25 01:34:18 2000 UTC (24 years, 11 months ago) by mason
Branches: MAIN
CVS tags: minoura-xpg4dl-base
Branch point for: minoura-xpg4dl
Diff to: previous 1.341: preferred, colored
Changes since revision 1.341: +3 -3
lines
Fixed typo in ses comment - devies -> devices
Revision 1.341: download - view: text, markup, annotated - select for diffs
Mon May 22 16:48:41 2000 UTC (24 years, 11 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.340: preferred, colored
Changes since revision 1.340: +3 -2
lines
Add `ses' (SCSI Enclosure Services) device.
Revision 1.340: download - view: text, markup, annotated - select for diffs
Sat May 20 21:34:48 2000 UTC (24 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.339: preferred, colored
Changes since revision 1.339: +7 -7
lines
Alphabetize.
Revision 1.339: download - view: text, markup, annotated - select for diffs
Fri May 19 10:23:36 2000 UTC (24 years, 11 months ago) by veego
Branches: MAIN
Diff to: previous 1.338: preferred, colored
Changes since revision 1.338: +4 -5
lines
Disable the viaenv driver and remove the siop entry which was added
in the last commit.
Revision 1.338: download - view: text, markup, annotated - select for diffs
Wed May 17 18:08:50 2000 UTC (24 years, 11 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.337: preferred, colored
Changes since revision 1.337: +6 -4
lines
Add Cyclades-Z serial.
Revision 1.337: download - view: text, markup, annotated - select for diffs
Sun May 14 04:36:09 2000 UTC (24 years, 11 months ago) by jhawk
Branches: MAIN
Diff to: previous 1.336: preferred, colored
Changes since revision 1.336: +7 -7
lines
Comment out XSERVER and XSERVER_DDB and move them to the pccons-specific
section. They are not used with wscons.
Revision 1.231.2.9: download - view: text, markup, annotated - select for diffs
Thu May 11 09:26:57 2000 UTC (24 years, 11 months ago) by he
Branches: netbsd-1-4
Diff to: previous 1.231.2.8: preferred, colored; branchpoint 1.231: preferred, colored
Changes since revision 1.231.2.8: +2 -1
lines
Pull up revision 1.252 (requested by jhawk):
Add a driver for ``wi'', Lucent "Orinoco"/Wavelan.
Revision 1.336: download - view: text, markup, annotated - select for diffs
Mon May 8 18:41:26 2000 UTC (24 years, 11 months ago) by joda
Branches: MAIN
Diff to: previous 1.335: preferred, colored
Changes since revision 1.335: +6 -2
lines
add viaenv template
Revision 1.335: download - view: text, markup, annotated - select for diffs
Mon May 8 13:49:47 2000 UTC (24 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.334: preferred, colored
Changes since revision 1.334: +3 -2
lines
Add (sometimes commented out) MIIVERBOSE option.
Revision 1.334: download - view: text, markup, annotated - select for diffs
Sun May 7 00:44:45 2000 UTC (24 years, 11 months ago) by wiz
Branches: MAIN
Diff to: previous 1.333: preferred, colored
Changes since revision 1.333: +6 -2
lines
add bktr device
Revision 1.333: download - view: text, markup, annotated - select for diffs
Thu May 4 19:41:44 2000 UTC (24 years, 11 months ago) by jhawk
Branches: MAIN
Diff to: previous 1.332: preferred, colored
Changes since revision 1.332: +8 -2
lines
Add comment suggesting s/com[0-9]/com*/ and s/lpt0/lpt*/
if you enable com*/lpt* at pnpbios0, to avoid attaching
com0 as com3.
Don't actually change the "com0 at isa" line, since doing so
would cause some com* (e.g. pcmcia) to be renumbered from com3
to something lower, at least on some systems.
Revision 1.300.2.5: download - view: text, markup, annotated - select for diffs
Wed May 3 14:42:30 2000 UTC (24 years, 11 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.4: preferred, colored
Changes since revision 1.300.2.4: +5 -1
lines
Merge with -current
Revision 1.332: download - view: text, markup, annotated - select for diffs
Tue May 2 11:00:56 2000 UTC (24 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.331: preferred, colored
Changes since revision 1.331: +5 -2
lines
Add (commented out) cms(4) driver.
Revision 1.331: download - view: text, markup, annotated - select for diffs
Sun Apr 30 22:00:54 2000 UTC (25 years ago) by augustss
Branches: MAIN
Diff to: previous 1.330: preferred, colored
Changes since revision 1.330: +4 -2
lines
Add C-Media CMI8x38, cmpci.
Revision 1.330: download - view: text, markup, annotated - select for diffs
Sun Apr 30 19:08:19 2000 UTC (25 years ago) by dante
Branches: MAIN
Diff to: previous 1.329: preferred, colored
Changes since revision 1.329: +3 -3
lines
Update comment in adw*
Revision 1.329: download - view: text, markup, annotated - select for diffs
Fri Apr 28 17:23:52 2000 UTC (25 years ago) by uch
Branches: MAIN
Diff to: previous 1.328: preferred, colored
Changes since revision 1.328: +4 -2
lines
add PCIBIOS_ADDR_FIXUP, PCIBIOS_IRQS_HINT configuration. and its sample.
Revision 1.300.2.4: download - view: text, markup, annotated - select for diffs
Sat Apr 22 16:05:17 2000 UTC (25 years ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.3: preferred, colored
Changes since revision 1.300.2.3: +7 -5
lines
Merge up to -current.
Revision 1.328: download - view: text, markup, annotated - select for diffs
Fri Apr 21 17:52:06 2000 UTC (25 years ago) by explorer
Branches: MAIN
CVS tags: sommerfeld_i386mpbase_20000422
Diff to: previous 1.327: preferred, colored
Changes since revision 1.327: +4 -3
lines
Add (commented out) addcom0 and com* at addcom?
Revision 1.327: download - view: text, markup, annotated - select for diffs
Wed Apr 19 08:44:33 2000 UTC (25 years ago) by haya
Branches: MAIN
Diff to: previous 1.326: preferred, colored
Changes since revision 1.326: +4 -4
lines
Changes the name of RealTek driver. The new name is `rtk'. This used
to be called `rl' and it conflict with RL vax disks, canonical and
historical unix driver name.
This changes are minimal: it only changes the name of RealTek driver.
The filename of source code and a lot of the letter `rl' in source
files should be changed shortly.
Revision 1.326: download - view: text, markup, annotated - select for diffs
Wed Apr 19 06:50:31 2000 UTC (25 years ago) by itojun
Branches: MAIN
Diff to: previous 1.325: preferred, colored
Changes since revision 1.325: +3 -2
lines
add stf pseudo interface (commented out due to possible security risks)
Revision 1.300.2.3: download - view: text, markup, annotated - select for diffs
Mon Apr 17 01:43:19 2000 UTC (25 years ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.2: preferred, colored
Changes since revision 1.300.2.2: +52 -10
lines
Catch up sommerfeld_i386mp_1 branch with -current.
Revision 1.325: download - view: text, markup, annotated - select for diffs
Fri Apr 14 14:53:32 2000 UTC (25 years ago) by augustss
Branches: MAIN
Diff to: previous 1.324: preferred, colored
Changes since revision 1.324: +7 -2
lines
Add FTDI FT8U100AX driver.
Revision 1.324: download - view: text, markup, annotated - select for diffs
Fri Apr 14 14:46:17 2000 UTC (25 years ago) by augustss
Branches: MAIN
Diff to: previous 1.323: preferred, colored
Changes since revision 1.323: +5 -2
lines
Add Rio 500 device.
Revision 1.323: download - view: text, markup, annotated - select for diffs
Thu Apr 13 11:20:06 2000 UTC (25 years ago) by joda
Branches: MAIN
Diff to: previous 1.322: preferred, colored
Changes since revision 1.322: +5 -2
lines
add com at cardbus comment
Revision 1.322: download - view: text, markup, annotated - select for diffs
Mon Apr 10 07:58:18 2000 UTC (25 years ago) by haya
Branches: MAIN
Diff to: previous 1.321: preferred, colored
Changes since revision 1.321: +3 -2
lines
Add rl cardbus attachment.
Revision 1.321: download - view: text, markup, annotated - select for diffs
Sun Apr 9 18:34:02 2000 UTC (25 years ago) by augustss
Branches: MAIN
Diff to: previous 1.320: preferred, colored
Changes since revision 1.320: +7 -4
lines
Add upl(4) driver. Uncomment uvisor(4) driver.
Revision 1.320: download - view: text, markup, annotated - select for diffs
Mon Apr 3 00:03:30 2000 UTC (25 years ago) by augustss
Branches: MAIN
Diff to: previous 1.319: preferred, colored
Changes since revision 1.319: +3 -2
lines
Add atapibus* at umass?
Revision 1.319: download - view: text, markup, annotated - select for diffs
Fri Mar 31 04:47:52 2000 UTC (25 years, 1 month ago) by tsarna
Branches: MAIN
Diff to: previous 1.318: preferred, colored
Changes since revision 1.318: +4 -2
lines
Add and enable auvia
Revision 1.318: download - view: text, markup, annotated - select for diffs
Thu Mar 30 17:01:01 2000 UTC (25 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.317: preferred, colored
Changes since revision 1.317: +6 -2
lines
Add (commented out) uvisor driver.
Revision 1.317: download - view: text, markup, annotated - select for diffs
Sun Mar 26 15:36:49 2000 UTC (25 years, 1 month ago) by martin
Branches: MAIN
Diff to: previous 1.316: preferred, colored
Changes since revision 1.316: +5 -2
lines
Added a PCI frontend for the legacy ISA joystick driver.
Some PCI soundcards don't seem to use the generic gameport function with
interface 0x10 used here, but have either an own BAR dedicated to this
(i.e. Sonic Vibes or ESS Solo-1) or specify their own device (see
PCI_PRODUCT_CREATIVELABS_SBJOY in sys/dev/pci/pcidevs.h).
Probably these use a similar simple sheme and adding a frontend for them would
be trivial, but I don't own any of these cards, so I didn't.
Revision 1.316: download - view: text, markup, annotated - select for diffs
Wed Mar 22 11:22:21 2000 UTC (25 years, 1 month ago) by onoe
Branches: MAIN
Diff to: previous 1.315: preferred, colored
Changes since revision 1.315: +3 -3
lines
Update awi driver, which now supports AMD 79c930 based 802.11 DS cards
as well as 802.11 FH cards. Also, it can operate in infrastructure mode,
adhoc mode, and wi(4) (aka WaveLAN/IEEE) compatible adhoc mode.
Revision 1.315: download - view: text, markup, annotated - select for diffs
Wed Mar 22 00:58:20 2000 UTC (25 years, 1 month ago) by cgd
Branches: MAIN
Diff to: previous 1.314: preferred, colored
Changes since revision 1.314: +3 -2
lines
add commented out option PCI_CONFIG_DUMP whever there's a PCIVERBOSE.
Revision 1.314: download - view: text, markup, annotated - select for diffs
Sun Mar 19 22:35:43 2000 UTC (25 years, 1 month ago) by mycroft
Branches: MAIN
Diff to: previous 1.313: preferred, colored
Changes since revision 1.313: +3 -2
lines
Add scsibus at esp.
Revision 1.313: download - view: text, markup, annotated - select for diffs
Sun Mar 19 22:32:59 2000 UTC (25 years, 1 month ago) by mycroft
Branches: MAIN
Diff to: previous 1.312: preferred, colored
Changes since revision 1.312: +3 -2
lines
Add esp at pcmcia.
Revision 1.312: download - view: text, markup, annotated - select for diffs
Thu Mar 16 15:05:18 2000 UTC (25 years, 1 month ago) by ad
Branches: MAIN
Diff to: previous 1.311: preferred, colored
Changes since revision 1.311: +5 -2
lines
Attach cac* at pci?, ca* at cac?. Commented out where needs be.
Revision 1.311: download - view: text, markup, annotated - select for diffs
Tue Mar 14 22:37:55 2000 UTC (25 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.310: preferred, colored
Changes since revision 1.310: +5 -5
lines
Some whitespace changes.
Revision 1.310: download - view: text, markup, annotated - select for diffs
Fri Mar 10 06:03:18 2000 UTC (25 years, 1 month ago) by groo
Branches: MAIN
Diff to: previous 1.309: preferred, colored
Changes since revision 1.309: +3 -5
lines
clean up lm0 example
Revision 1.309: download - view: text, markup, annotated - select for diffs
Thu Mar 9 16:49:22 2000 UTC (25 years, 1 month ago) by hubertf
Branches: MAIN
Diff to: previous 1.308: preferred, colored
Changes since revision 1.308: +3 -3
lines
fix typo
Revision 1.308: download - view: text, markup, annotated - select for diffs
Thu Mar 9 04:12:42 2000 UTC (25 years, 1 month ago) by groo
Branches: MAIN
Diff to: previous 1.307: preferred, colored
Changes since revision 1.307: +6 -2
lines
Add (commented out) lm driver examples
Revision 1.307: download - view: text, markup, annotated - select for diffs
Mon Mar 6 18:45:42 2000 UTC (25 years, 1 month ago) by itojun
Branches: MAIN
Diff to: previous 1.306: preferred, colored
Changes since revision 1.306: +3 -3
lines
beautify APM_DISABLE_INTERRUPTS line (s/options\t/options \t/)
Revision 1.306: download - view: text, markup, annotated - select for diffs
Sat Mar 4 21:37:23 2000 UTC (25 years, 1 month ago) by mycroft
Branches: MAIN
Diff to: previous 1.305: preferred, colored
Changes since revision 1.305: +3 -3
lines
Invert the APM_NO_POWER_PRINT flag, and make sure it's off by default.
Revision 1.305: download - view: text, markup, annotated - select for diffs
Tue Feb 29 06:32:25 2000 UTC (25 years, 2 months ago) by simonb
Branches: MAIN
Diff to: previous 1.304: preferred, colored
Changes since revision 1.304: +3 -3
lines
Do the "<space><tab>" thing with the RAID_AUTOCONFIG option.
Revision 1.304: download - view: text, markup, annotated - select for diffs
Sun Feb 27 16:51:39 2000 UTC (25 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.303: preferred, colored
Changes since revision 1.303: +9 -2
lines
Add (commented out) PCIBIOS options so people can find them easily.
Revision 1.303: download - view: text, markup, annotated - select for diffs
Sat Feb 26 17:35:37 2000 UTC (25 years, 2 months ago) by oster
Branches: MAIN
Diff to: previous 1.302: preferred, colored
Changes since revision 1.302: +3 -2
lines
Defopt 'RAID_AUTOCONFIG'. Adding 'options RAID_AUTOCONFIG' turns on
the component auto-detection and auto-configuration of RAID sets.
Also, add "#options RAID_AUTOCONFIG" to the GENERIC config files.
Revision 1.302: download - view: text, markup, annotated - select for diffs
Sat Feb 26 17:12:37 2000 UTC (25 years, 2 months ago) by itojun
Branches: MAIN
Diff to: previous 1.301: preferred, colored
Changes since revision 1.301: +3 -3
lines
s/options\t/options \t/ for CONS_OVERRIDE line, so that addition/removal of
"#" does not affect indentation.
Revision 1.301: download - view: text, markup, annotated - select for diffs
Thu Feb 24 18:49:40 2000 UTC (25 years, 2 months ago) by ad
Branches: MAIN
Diff to: previous 1.300: preferred, colored
Changes since revision 1.300: +4 -3
lines
- Attach dpt0 to the isa bus. Commented out since (a) at any valid address it
conflicts with too much other stuff (b) if I UTSLed correctly, EISA boards
may be picked up at an "ISA address and an EISA address" - I don't have
enough info on this yet to fix it (c) a DPT HBA at an address usually
assigned to wdc0/1 may get detected as a WD100x controller. Some of them can
emulate a WD100x controller, but the one I tested with doesn't.
- Sync with GENERIC just a little.
Revision 1.300.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 21 19:33:00 2000 UTC (25 years, 2 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300.2.1: preferred, colored
Changes since revision 1.300.2.1: +2 -3
lines
whitespace cleanup
Revision 1.300.2.1: download - view: text, markup, annotated - select for diffs
Sun Feb 20 18:37:36 2000 UTC (25 years, 2 months ago) by sommerfeld
Branches: sommerfeld_i386mp_1
Diff to: previous 1.300: preferred, colored
Changes since revision 1.300: +5 -2
lines
Add cpu* and (commented-out) ioapic*
Needed on both uniprocessor and MP systems.
Revision 1.300: download - view: text, markup, annotated - select for diffs
Tue Feb 15 17:14:50 2000 UTC (25 years, 2 months ago) by nathanw
Branches: MAIN
Branch point for: sommerfeld_i386mp_1
Diff to: previous 1.299: preferred, colored
Changes since revision 1.299: +3 -2
lines
Add ess at pnpbios
Revision 1.299: download - view: text, markup, annotated - select for diffs
Thu Feb 3 20:31:42 2000 UTC (25 years, 2 months ago) by dante
Branches: MAIN
CVS tags: chs-ubc2-newbase
Diff to: previous 1.298: preferred, colored
Changes since revision 1.298: +2 -5
lines
Remove ADW_*_DISABLE options. Now they are described in the adw.4 man page
Revision 1.298: download - view: text, markup, annotated - select for diffs
Wed Feb 2 20:39:35 2000 UTC (25 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.297: preferred, colored
Changes since revision 1.297: +11 -11
lines
Due to popular demand (hi Bernd), comment out the CardBus entries.
Appearently it doesn't work for some chipsets. I think the right way
to fix this would be to only let cbb attach to the working chipsets...
Revision 1.297: download - view: text, markup, annotated - select for diffs
Wed Feb 2 20:17:13 2000 UTC (25 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.296: preferred, colored
Changes since revision 1.296: +20 -2
lines
Add CardBus support. If it breaks anything, I'm sure we'll know soon. :)
Revision 1.296: download - view: text, markup, annotated - select for diffs
Wed Feb 2 19:48:18 2000 UTC (25 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.295: preferred, colored
Changes since revision 1.295: +5 -5
lines
Change the size of the PCMCIA controller memory window to 64K. Several
of the radio LAN cards need it.
Revision 1.231.2.8: download - view: text, markup, annotated - select for diffs
Mon Jan 31 18:53:19 2000 UTC (25 years, 2 months ago) by he
Branches: netbsd-1-4
CVS tags: netbsd-1-4-PATCH002
Diff to: previous 1.231.2.7: preferred, colored; branchpoint 1.231: preferred, colored
Changes since revision 1.231.2.7: +3 -1
lines
Apply patch (requested by mcr):
Add commented-out entry for the ioat device driver.
Revision 1.295: download - view: text, markup, annotated - select for diffs
Tue Jan 25 08:32:01 2000 UTC (25 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.294: preferred, colored
Changes since revision 1.294: +3 -2
lines
Update for the ucom(4) addition.
Revision 1.294: download - view: text, markup, annotated - select for diffs
Mon Jan 24 01:09:57 2000 UTC (25 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.293: preferred, colored
Changes since revision 1.293: +3 -2
lines
Add Raytheon Raylink driver.
Revision 1.293: download - view: text, markup, annotated - select for diffs
Sun Jan 23 23:46:12 2000 UTC (25 years, 3 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.292: preferred, colored
Changes since revision 1.292: +3 -1
lines
Add commented out "ident"-command
Revision 1.292: download - view: text, markup, annotated - select for diffs
Thu Jan 20 19:12:31 2000 UTC (25 years, 3 months ago) by wrstuden
Branches: MAIN
Diff to: previous 1.291: preferred, colored
Changes since revision 1.291: +2 -1
lines
Add overlay to kernel configs.
Revision 1.231.2.7: download - view: text, markup, annotated - select for diffs
Mon Jan 17 19:17:45 2000 UTC (25 years, 3 months ago) by he
Branches: netbsd-1-4
Diff to: previous 1.231.2.6: preferred, colored; branchpoint 1.231: preferred, colored
Changes since revision 1.231.2.6: +4 -1
lines
Pull up revision 1.259 + patch (requested by ad):
Add driver for DPT SmartCache and SmartRAID III or IV SCSI
adapters.
Revision 1.291: download - view: text, markup, annotated - select for diffs
Mon Jan 17 17:47:06 2000 UTC (25 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.290: preferred, colored
Changes since revision 1.290: +2 -2
lines
Add USB-Ethernet adapters.
Revision 1.290: download - view: text, markup, annotated - select for diffs
Mon Jan 17 02:04:01 2000 UTC (25 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.289: preferred, colored
Changes since revision 1.289: +2 -2
lines
Enable kue driver.
Revision 1.289: download - view: text, markup, annotated - select for diffs
Sun Jan 16 13:59:38 2000 UTC (25 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.288: preferred, colored
Changes since revision 1.288: +8 -1
lines
Add some USB Ethernet adapters.
Revision 1.288: download - view: text, markup, annotated - select for diffs
Sun Jan 9 17:31:56 2000 UTC (25 years, 3 months ago) by joda
Branches: MAIN
Diff to: previous 1.287: preferred, colored
Changes since revision 1.287: +2 -1
lines
add (commented out) xe@pcmcia entry
Revision 1.231.2.6: download - view: text, markup, annotated - select for diffs
Wed Jan 5 23:48:57 2000 UTC (25 years, 3 months ago) by he
Branches: netbsd-1-4
Diff to: previous 1.231.2.5: preferred, colored; branchpoint 1.231: preferred, colored
Changes since revision 1.231.2.5: +1 -2
lines
Correct double pullup of rl* device definition.
Revision 1.287: download - view: text, markup, annotated - select for diffs
Tue Jan 4 06:58:54 2000 UTC (25 years, 3 months ago) by chopps
Branches: MAIN
Diff to: previous 1.286: preferred, colored
Changes since revision 1.286: +3 -1
lines
add ntwoc* at pci, and a commented out ntwoc0 at isa.
Revision 1.286: download - view: text, markup, annotated - select for diffs
Fri Dec 31 00:14:56 1999 UTC (25 years, 4 months ago) by simonb
Branches: MAIN
Diff to: previous 1.285: preferred, colored
Changes since revision 1.285: +1 -2
lines
Remove duplicate
#com* at boca? slave ?
line.
Revision 1.285: download - view: text, markup, annotated - select for diffs
Thu Dec 30 04:18:51 1999 UTC (25 years, 4 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.284: preferred, colored
Changes since revision 1.284: +2 -1
lines
add disabled entry for options APM_DISABLE_INTERRUPTS=0
Revision 1.260.2.2: download - view: text, markup, annotated - select for diffs
Mon Dec 27 18:32:17 1999 UTC (25 years, 4 months ago) by wrstuden
Branches: wrstuden-devbsize
Diff to: previous 1.260.2.1: preferred, colored; next MAIN 1.261: preferred, colored
Changes since revision 1.260.2.1: +83 -12
lines
Pull up to last week's -current.
Revision 1.284: download - view: text, markup, annotated - select for diffs
Sun Dec 26 17:07:23 1999 UTC (25 years, 4 months ago) by itojun
Branches: MAIN
Diff to: previous 1.283: preferred, colored
Changes since revision 1.283: +4 -1
lines
add lines for boca 16-port serial card (BB2016), commented out.
Revision 1.260.2.1: download - view: text, markup, annotated - select for diffs
Tue Dec 21 23:16:00 1999 UTC (25 years, 4 months ago) by wrstuden
Branches: wrstuden-devbsize
Diff to: previous 1.260: preferred, colored
Changes since revision 1.260: +3 -1
lines
Initial commit of recent changes to make DEV_BSIZE go away.
Runs on i386, needs work on other arch's. Main kernel routines should be
fine, but a number of the stand programs need help.
cd, fd, ccd, wd, and sd have been updated. sd has been tested with non-512
byte block devices. vnd, raidframe, and lfs need work.
Non 2**n block support is automatic for LKM's and conditional for kernels
on "options NON_PO2_BLOCKS".
Revision 1.283: download - view: text, markup, annotated - select for diffs
Mon Dec 13 20:22:53 1999 UTC (25 years, 4 months ago) by augustss
Branches: MAIN
CVS tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221
Diff to: previous 1.282: preferred, colored
Changes since revision 1.282: +3 -1
lines
Add Cirrus Logic CS4280 driver.
Revision 1.282: download - view: text, markup, annotated - select for diffs
Sun Dec 12 11:53:41 1999 UTC (25 years, 4 months ago) by soren
Branches: MAIN
Diff to: previous 1.281: preferred, colored
Changes since revision 1.281: +2 -2
lines
s/16x450/16x50/
Revision 1.281: download - view: text, markup, annotated - select for diffs
Tue Dec 7 19:38:54 1999 UTC (25 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.280: preferred, colored
Changes since revision 1.280: +2 -1
lines
Add nsphyter.
Revision 1.231.2.1.4.1: download - view: text, markup, annotated - select for diffs
Tue Nov 30 13:32:04 1999 UTC (25 years, 5 months ago) by itojun
Branches: kame
CVS tags: kame_141_19991130
Diff to: previous 1.231.2.1: preferred, colored; next MAIN 1.231.2.2: preferred, colored
Changes since revision 1.231.2.1: +9 -3
lines
bring in latest KAME (as of 19991130, KAME/NetBSD141) into kame branch
just for reference purposes.
This commit includes 1.4 -> 1.4.1 sync for kame branch.
The branch does not compile at all (due to the lack of ALTQ and some other
source code). Please do not try to modify the branch, this is just for
referenre purposes.
synchronization to latest KAME will take place on HEAD branch soon.
Revision 1.280: download - view: text, markup, annotated - select for diffs
Mon Nov 29 12:56:25 1999 UTC (25 years, 5 months ago) by itojun
Branches: MAIN
Diff to: previous 1.279: preferred, colored
Changes since revision 1.279: +2 -1
lines
add cnw* into pcmcia section.
Revision 1.279: download - view: text, markup, annotated - select for diffs
Sun Nov 21 14:00:40 1999 UTC (25 years, 5 months ago) by itojun
Branches: MAIN
Diff to: previous 1.278: preferred, colored
Changes since revision 1.278: +2 -2
lines
bring in content of GENERIC.v6 into GENERIC.
remove GENERIC.v6 file (as it is part of GENERIC now).
"faith" interface is commented out by default as it is not really for
general use.
IPsec items are commented out as well, though we can enable "options IPSEC"
without export-related issue ("options IPSEC" will enable authentication
portion only). We may need to think about it again.
if you have problem compiling with INET6 on archs I do not have access to,
please contact me.
XXX what to do with arch/arm32/SHARK{,.v6}?
Revision 1.278: download - view: text, markup, annotated - select for diffs
Mon Nov 15 20:10:49 1999 UTC (25 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.277: preferred, colored
Changes since revision 1.277: +3 -3
lines
Add dev and function locators for the USB host controllers at pci.
Revision 1.277: download - view: text, markup, annotated - select for diffs
Mon Nov 15 20:03:50 1999 UTC (25 years, 5 months ago) by dante
Branches: MAIN
Diff to: previous 1.276: preferred, colored
Changes since revision 1.276: +4 -1
lines
Add WDTR, SDTR and TAGQ disable options
Revision 1.276: download - view: text, markup, annotated - select for diffs
Mon Nov 15 19:10:47 1999 UTC (25 years, 5 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.275: preferred, colored
Changes since revision 1.275: +2 -1
lines
Add commented out option SOFTDEP to all GENERIC kernels.
Revision 1.264.4.1: download - view: text, markup, annotated - select for diffs
Mon Nov 15 00:37:57 1999 UTC (25 years, 5 months ago) by fvdl
Branches: fvdl-softdep
Diff to: previous 1.264: preferred, colored; next MAIN 1.265: preferred, colored
Changes since revision 1.264: +62 -3
lines
Sync with -current
Revision 1.275: download - view: text, markup, annotated - select for diffs
Sun Nov 14 13:31:04 1999 UTC (25 years, 5 months ago) by drochner
Branches: MAIN
CVS tags: fvdl-softdep-base
Diff to: previous 1.274: preferred, colored
Changes since revision 1.274: +22 -1
lines
add commented out pnpbios entries
Revision 1.274: download - view: text, markup, annotated - select for diffs
Sat Nov 13 17:57:28 1999 UTC (25 years, 5 months ago) by perry
Branches: MAIN
Diff to: previous 1.273: preferred, colored
Changes since revision 1.273: +5 -4
lines
make the comment on how to use the cinclude stuff for crypto clearer.
Revision 1.273: download - view: text, markup, annotated - select for diffs
Sat Nov 13 17:54:17 1999 UTC (25 years, 5 months ago) by perry
Branches: MAIN
Diff to: previous 1.272: preferred, colored
Changes since revision 1.272: +19 -1
lines
Integrate the IPv6 bits from GENERIC.v6
Revision 1.272: download - view: text, markup, annotated - select for diffs
Wed Nov 10 22:39:45 1999 UTC (25 years, 5 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.271: preferred, colored
Changes since revision 1.271: +7 -1
lines
add (commented out) APM options
Revision 1.271.2.2: download - view: text, markup, annotated - select for diffs
Sat Nov 6 16:23:50 1999 UTC (25 years, 5 months ago) by mycroft
Branches: comdex-fall-1999
Diff to: previous 1.271.2.1: preferred, colored; branchpoint 1.271: preferred, colored; next MAIN 1.272: preferred, colored
Changes since revision 1.271.2.1: +700 -0
lines
Enable DHCP by default, rather than BOOTP, as BOOTP is much more likely to
fail (due to option length issues), and DHCP is now prevalent.
Revision 1.271.2.1
Sat Nov 6 16:23:49 1999 UTC (25 years, 5 months ago) by mycroft
Branches: comdex-fall-1999
FILE REMOVED
Changes since revision 1.271: +0 -700
lines
file GENERIC was added on branch comdex-fall-1999 on 1999-11-06 16:23:50 +0000
Revision 1.271: download - view: text, markup, annotated - select for diffs
Sat Nov 6 16:23:49 1999 UTC (25 years, 5 months ago) by mycroft
Branches: MAIN
CVS tags: comdex-fall-1999-base
Branch point for: comdex-fall-1999
Diff to: previous 1.270: preferred, colored
Changes since revision 1.270: +2 -2
lines
Enable DHCP by default, rather than BOOTP, as BOOTP is much more likely to
fail (due to option length issues), and DHCP is now prevalent.
Revision 1.270: download - view: text, markup, annotated - select for diffs
Fri Nov 5 21:36:21 1999 UTC (25 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.269: preferred, colored
Changes since revision 1.269: +8 -1
lines
Add tlp, document TLP_MATCH_* options, and add some missing PHYs.
Revision 1.269: download - view: text, markup, annotated - select for diffs
Thu Nov 4 19:43:13 1999 UTC (25 years, 5 months ago) by sommerfeld
Branches: MAIN
Diff to: previous 1.268: preferred, colored
Changes since revision 1.268: +2 -1
lines
Add awi
Revision 1.268: download - view: text, markup, annotated - select for diffs
Mon Nov 1 23:27:56 1999 UTC (25 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.267: preferred, colored
Changes since revision 1.267: +5 -5
lines
Enable fms device again.
Revision 1.267: download - view: text, markup, annotated - select for diffs
Mon Nov 1 21:44:35 1999 UTC (25 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.266: preferred, colored
Changes since revision 1.266: +5 -5
lines
Disable fms driver for the moment.
Revision 1.266: download - view: text, markup, annotated - select for diffs
Mon Nov 1 20:43:13 1999 UTC (25 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.265: preferred, colored
Changes since revision 1.265: +6 -1
lines
Add FM801 audio device driver. From Witold J. Wnuk ww181302@zodiac.mimuw.edu.pl
Closes PR kern/8729.
Revision 1.231.2.5: download - view: text, markup, annotated - select for diffs
Tue Oct 26 20:38:00 1999 UTC (25 years, 6 months ago) by he
Branches: netbsd-1-4
Diff to: previous 1.231.2.4: preferred, colored; branchpoint 1.231: preferred, colored
Changes since revision 1.231.2.4: +2 -1
lines
Apply patch (requested by bouyer):
Add "rl" PCI Ethernet device driver.
Revision 1.265: download - view: text, markup, annotated - select for diffs
Mon Oct 25 16:47:03 1999 UTC (25 years, 6 months ago) by itojun
Branches: MAIN
Diff to: previous 1.264: preferred, colored
Changes since revision 1.264: +2 -2
lines
use "options \t" instead of "options\t\t" to avoid change in column
when you comment an option out.
Revision 1.231.2.4: download - view: text, markup, annotated - select for diffs
Wed Oct 20 23:35:15 1999 UTC (25 years, 6 months ago) by he
Branches: netbsd-1-4
Diff to: previous 1.231.2.3: preferred, colored; branchpoint 1.231: preferred, colored
Changes since revision 1.231.2.3: +2 -1
lines
Pull up revision 1.255 (requested by bouyer):
Back-port of the Realtek ethernet driver.
(Add to GENERIC.)
Revision 1.264.2.1: download - view: text, markup, annotated - select for diffs
Tue Oct 19 17:56:39 1999 UTC (25 years, 6 months ago) by thorpej
Branches: thorpej_scsipi
Diff to: previous 1.264: preferred, colored
Changes since revision 1.264: +2 -1
lines
Add the SCSI ethernet device.
Revision 1.231.2.3: download - view: text, markup, annotated - select for diffs
Sat Oct 9 21:49:26 1999 UTC (25 years, 6 months ago) by cgd
Branches: netbsd-1-4
Diff to: previous 1.231.2.2: preferred, colored; branchpoint 1.231: preferred, colored
Changes since revision 1.231.2.2: +5 -4
lines
pull up revs 1.262 and 1.264 from trunk via patch (requested by drochner):
Remove "nca* at isa?" from i386 GENERIC kernel. Its probe function
gives false positives and steps on other hardware. Fixes PR#8361.
Revision 1.264: download - view: text, markup, annotated - select for diffs
Fri Oct 8 13:53:00 1999 UTC (25 years, 6 months ago) by drochner
Branches: MAIN
Branch point for: thorpej_scsipi,
fvdl-softdep
Diff to: previous 1.263: preferred, colored
Changes since revision 1.263: +2 -2
lines
forgot to comment out the orphaned "scsibus"
Revision 1.263: download - view: text, markup, annotated - select for diffs
Wed Oct 6 23:01:45 1999 UTC (25 years, 6 months ago) by ad
Branches: MAIN
Diff to: previous 1.262: preferred, colored
Changes since revision 1.262: +3 -2
lines
Enable large cursor by default (at least on i386 for the moment), in
response to result of poll on tech-kern.
Revision 1.262: download - view: text, markup, annotated - select for diffs
Wed Oct 6 12:21:43 1999 UTC (25 years, 6 months ago) by drochner
Branches: MAIN
Diff to: previous 1.261: preferred, colored
Changes since revision 1.261: +4 -3
lines
comment out "ncr* at isa?" (NCR 53C80 - cheap SCSI) in the standard
config files. The probe funktion gives false hits and steps onto
other hardware. (PR port-i386/8361 by cgd and my own experience)
Revision 1.261: download - view: text, markup, annotated - select for diffs
Wed Oct 6 08:13:17 1999 UTC (25 years, 6 months ago) by itohy
Branches: MAIN
Diff to: previous 1.260: preferred, colored
Changes since revision 1.260: +7 -5
lines
Add "opl at ym" and "mpu at ym".
Fix typos.
Revision 1.260: download - view: text, markup, annotated - select for diffs
Tue Sep 28 18:07:29 1999 UTC (25 years, 7 months ago) by thorpej
Branches: MAIN
Branch point for: wrstuden-devbsize
Diff to: previous 1.259: preferred, colored
Changes since revision 1.259: +6 -1
lines
Add Megahertz Ethernet/Modem combo card goo.
Revision 1.259: download - view: text, markup, annotated - select for diffs
Mon Sep 27 23:59:50 1999 UTC (25 years, 7 months ago) by ad
Branches: MAIN
Diff to: previous 1.258: preferred, colored
Changes since revision 1.258: +3 -1
lines
Note DPT controllers as needed. If it looks like a stripped down GENERIC,
it gets it.
Revision 1.258: download - view: text, markup, annotated - select for diffs
Sun Sep 19 21:50:06 1999 UTC (25 years, 7 months ago) by ad
Branches: MAIN
Diff to: previous 1.257: preferred, colored
Changes since revision 1.257: +3 -1
lines
Document PCDISPLAY_SOFTCURSOR.
Revision 1.257: download - view: text, markup, annotated - select for diffs
Thu Sep 9 12:33:45 1999 UTC (25 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.256: preferred, colored
Changes since revision 1.256: +5 -1
lines
Add uaudio driver.
Revision 1.256: download - view: text, markup, annotated - select for diffs
Sun Aug 29 16:59:19 1999 UTC (25 years, 8 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.255: preferred, colored
Changes since revision 1.255: +5 -1
lines
Add `umass'.
Revision 1.255: download - view: text, markup, annotated - select for diffs
Tue Aug 17 17:48:38 1999 UTC (25 years, 8 months ago) by drochner
Branches: MAIN
Diff to: previous 1.254: preferred, colored
Changes since revision 1.254: +2 -1
lines
add rl* at pci? (Realtek Ethernet)
Revision 1.254: download - view: text, markup, annotated - select for diffs
Mon Aug 16 22:27:14 1999 UTC (25 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.253: preferred, colored
Changes since revision 1.253: +3 -0
lines
Add umodem device.
Revision 1.253: download - view: text, markup, annotated - select for diffs
Sat Aug 14 21:20:45 1999 UTC (25 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.252: preferred, colored
Changes since revision 1.252: +3 -2
lines
Add opl* at wss?
Revision 1.252: download - view: text, markup, annotated - select for diffs
Mon Aug 9 18:13:26 1999 UTC (25 years, 8 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.251: preferred, colored
Changes since revision 1.251: +2 -1
lines
Add wi at pcmcia.
Revision 1.251: download - view: text, markup, annotated - select for diffs
Thu Aug 5 15:52:11 1999 UTC (25 years, 8 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.250: preferred, colored
Changes since revision 1.250: +2 -2
lines
mark file system NTFS as experimental
Revision 1.250: download - view: text, markup, annotated - select for diffs
Tue Aug 3 03:23:29 1999 UTC (25 years, 8 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.249: preferred, colored
Changes since revision 1.249: +2 -1
lines
Add the "sip" driver (SiS 900 Ethernet).
Revision 1.231.2.1.2.2: download - view: text, markup, annotated - select for diffs
Mon Aug 2 19:50:30 1999 UTC (25 years, 8 months ago) by thorpej
Branches: chs-ubc2
Diff to: previous 1.231.2.1.2.1: preferred, colored; branchpoint 1.231.2.1: preferred, colored; next MAIN 1.231.2.2: preferred, colored
Changes since revision 1.231.2.1.2.1: +43 -31
lines
Update from trunk.
Revision 1.249: download - view: text, markup, annotated - select for diffs
Mon Aug 2 17:44:59 1999 UTC (25 years, 8 months ago) by augustss
Branches: MAIN
CVS tags: chs-ubc2-base
Diff to: previous 1.248: preferred, colored
Changes since revision 1.248: +4 -4
lines
Alphabetize.
Revision 1.248: download - view: text, markup, annotated - select for diffs
Mon Aug 2 17:37:41 1999 UTC (25 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.247: preferred, colored
Changes since revision 1.247: +7 -5
lines
Move the mpu device declaration to conf/files.
Let the mpu device attach at the sb device, and then midi at the mpu.
Update the mpu at eso attachment.
Revision 1.247: download - view: text, markup, annotated - select for diffs
Sun Aug 1 18:16:35 1999 UTC (25 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.246: preferred, colored
Changes since revision 1.246: +5 -1
lines
Add the MPU 401 ISA attachment.
Revision 1.246: download - view: text, markup, annotated - select for diffs
Thu Jul 29 19:36:59 1999 UTC (25 years, 9 months ago) by augustss
Branches: MAIN
Diff to: previous 1.245: preferred, colored
Changes since revision 1.245: +10 -7
lines
Make two wsmux pseudo devices and add mux locators.
Revision 1.245: download - view: text, markup, annotated - select for diffs
Thu Jul 29 10:37:17 1999 UTC (25 years, 9 months ago) by augustss
Branches: MAIN
Diff to: previous 1.244: preferred, colored
Changes since revision 1.244: +2 -1
lines
It's time to be COMPAT_14.
Revision 1.244: download - view: text, markup, annotated - select for diffs
Thu Jul 22 09:35:06 1999 UTC (25 years, 9 months ago) by augustss
Branches: MAIN
Diff to: previous 1.243: preferred, colored
Changes since revision 1.243: +2 -2
lines
The configuration and interface locators are pointless for the generic
USB device.
Revision 1.243: download - view: text, markup, annotated - select for diffs
Wed Jul 21 20:28:45 1999 UTC (25 years, 9 months ago) by tron
Branches: MAIN
Diff to: previous 1.242: preferred, colored
Changes since revision 1.242: +16 -16
lines
Use wsmouse protocol for PS/2, Logitech bus and Microsoft InPort mice
by default. The X11 distribution included in our last release already
supports it and the wsmouse protocol can be used for any of the above
and for USB mice.
Revision 1.242: download - view: text, markup, annotated - select for diffs
Tue Jul 20 07:40:35 1999 UTC (25 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.241: preferred, colored
Changes since revision 1.241: +6 -6
lines
enable PPP_BSDCOMP, PPP_DEFLATE, PPP_FILTER, PFIL_HOOKS, IPFILTER_LOG
on the GENERIC kernels that had them commented out.
XXX: Please note, that not all the kernels have all the options defined!
Revision 1.241: download - view: text, markup, annotated - select for diffs
Mon Jul 12 15:16:23 1999 UTC (25 years, 9 months ago) by kleink
Branches: MAIN
Diff to: previous 1.240: preferred, colored
Changes since revision 1.240: +4 -1
lines
Add eso(4) and the devices attached to it.
Revision 1.240: download - view: text, markup, annotated - select for diffs
Mon Jul 5 22:40:34 1999 UTC (25 years, 9 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.239: preferred, colored
Changes since revision 1.239: +3 -1
lines
Add COMPAT_AOUT to GENERIC
Revision 1.239: download - view: text, markup, annotated - select for diffs
Mon Jul 5 09:14:09 1999 UTC (25 years, 9 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.238: preferred, colored
Changes since revision 1.238: +1 -4
lines
EXEC_ELF32 is standard now.
Revision 1.238: download - view: text, markup, annotated - select for diffs
Sat Jul 3 12:09:52 1999 UTC (25 years, 9 months ago) by tron
Branches: MAIN
Diff to: previous 1.237: preferred, colored
Changes since revision 1.237: +4 -4
lines
Optical cleanup in WSCONS configuration section.
Revision 1.231.2.2: download - view: text, markup, annotated - select for diffs
Mon Jun 21 14:23:49 1999 UTC (25 years, 10 months ago) by perry
Branches: netbsd-1-4
CVS tags: netbsd-1-4-PATCH001
Diff to: previous 1.231.2.1: preferred, colored; branchpoint 1.231: preferred, colored
Changes since revision 1.231.2.1: +6 -3
lines
pullup 1.234->1.235 (bouyer)
Revision 1.231.2.1.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 21 00:49:55 1999 UTC (25 years, 10 months ago) by thorpej
Branches: chs-ubc2
Diff to: previous 1.231.2.1: preferred, colored
Changes since revision 1.231.2.1: +9 -3
lines
Sync w/ -current.
Revision 1.237: download - view: text, markup, annotated - select for diffs
Fri Jun 18 20:27:59 1999 UTC (25 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.236: preferred, colored
Changes since revision 1.236: +2 -1
lines
Add ess to isa attachment. The entry is commented out for the moment since
I'm not sure how accurate the probe is.
Revision 1.236: download - view: text, markup, annotated - select for diffs
Sun Jun 6 17:37:03 1999 UTC (25 years, 10 months ago) by dante
Branches: MAIN
Diff to: previous 1.235: preferred, colored
Changes since revision 1.235: +2 -1
lines
Add adv0 entry under ISA SCSI controllers
Revision 1.235: download - view: text, markup, annotated - select for diffs
Wed May 19 14:41:54 1999 UTC (25 years, 11 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.234: preferred, colored
Changes since revision 1.234: +6 -3
lines
Document the 'wdc at isa' flags.
Revision 1.234: download - view: text, markup, annotated - select for diffs
Thu May 6 16:29:26 1999 UTC (25 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.233: preferred, colored
Changes since revision 1.233: +2 -1
lines
Add NTFS
Revision 1.231.2.1: download - view: text, markup, annotated - select for diffs
Wed Apr 28 14:25:15 1999 UTC (26 years ago) by perry
Branches: netbsd-1-4
CVS tags: netbsd-1-4-RELEASE,
kame_14_19990705,
kame_14_19990628
Branch point for: kame,
chs-ubc2
Diff to: previous 1.231: preferred, colored
Changes since revision 1.231: +4 -3
lines
pullup 1.231->1.233 (drochner): comment out aria, which has false probes.
Revision 1.233: download - view: text, markup, annotated - select for diffs
Sat Apr 17 16:52:06 1999 UTC (26 years ago) by drochner
Branches: MAIN
Diff to: previous 1.232: preferred, colored
Changes since revision 1.232: +2 -2
lines
oops - forgot half of it
Revision 1.232: download - view: text, markup, annotated - select for diffs
Sat Apr 17 16:50:26 1999 UTC (26 years ago) by drochner
Branches: MAIN
Diff to: previous 1.231: preferred, colored
Changes since revision 1.231: +3 -2
lines
disable the "aria" sound board per default until the problems with its
"probe" functions are solved (gives false positives)
Revision 1.231: download - view: text, markup, annotated - select for diffs
Mon Mar 29 21:51:25 1999 UTC (26 years, 1 month ago) by perry
Branches: MAIN
CVS tags: netbsd-1-4-base
Branch point for: netbsd-1-4
Diff to: previous 1.230: preferred, colored
Changes since revision 1.230: +1 -3
lines
remove BROKEN_LPT_DELAY option
Revision 1.230: download - view: text, markup, annotated - select for diffs
Mon Mar 29 19:57:34 1999 UTC (26 years, 1 month ago) by drochner
Branches: MAIN
Diff to: previous 1.229: preferred, colored
Changes since revision 1.229: +2 -1
lines
add a commented out WS_KERNEL_BG option, closes PR port-i386/7271
by Charlie Root <root@theprovider.com>
Revision 1.229: download - view: text, markup, annotated - select for diffs
Sat Mar 27 23:27:58 1999 UTC (26 years, 1 month ago) by nathanw
Branches: MAIN
Diff to: previous 1.228: preferred, colored
Changes since revision 1.228: +1 -5
lines
Remove commented-out uaudio declaration;
we don't actually have support for it.
Revision 1.228: download - view: text, markup, annotated - select for diffs
Sat Mar 27 11:42:12 1999 UTC (26 years, 1 month ago) by kleink
Branches: MAIN
Diff to: previous 1.227: preferred, colored
Changes since revision 1.227: +2 -2
lines
Typo.
Revision 1.227: download - view: text, markup, annotated - select for diffs
Sat Mar 27 07:04:36 1999 UTC (26 years, 1 month ago) by explorer
Branches: MAIN
Diff to: previous 1.226: preferred, colored
Changes since revision 1.226: +3 -4
lines
remove EXPERIMENTAL comment, enable /dev/random in GENERIC kernels
Revision 1.226: download - view: text, markup, annotated - select for diffs
Thu Mar 25 17:06:38 1999 UTC (26 years, 1 month ago) by perry
Branches: MAIN
Diff to: previous 1.225: preferred, colored
Changes since revision 1.225: +2 -2
lines
fix typo
Revision 1.225: download - view: text, markup, annotated - select for diffs
Thu Mar 25 03:35:26 1999 UTC (26 years, 1 month ago) by explorer
Branches: MAIN
Diff to: previous 1.224: preferred, colored
Changes since revision 1.224: +2 -1
lines
add entry for lmc* at pci?
Revision 1.224: download - view: text, markup, annotated - select for diffs
Thu Mar 25 02:22:21 1999 UTC (26 years, 1 month ago) by perry
Branches: MAIN
Diff to: previous 1.223: preferred, colored
Changes since revision 1.223: +3 -1
lines
add a (commented out) BROKEN_LPT_DELAY
Revision 1.223: download - view: text, markup, annotated - select for diffs
Tue Mar 23 20:08:55 1999 UTC (26 years, 1 month ago) by bad
Branches: MAIN
Diff to: previous 1.222: preferred, colored
Changes since revision 1.222: +3 -1
lines
Add tcic PCMCIA controller.
Revision 1.222: download - view: text, markup, annotated - select for diffs
Mon Mar 22 23:43:30 1999 UTC (26 years, 1 month ago) by bad
Branches: MAIN
Diff to: previous 1.221: preferred, colored
Changes since revision 1.221: +5 -1
lines
Add IBM and 3COM ISA Token-Ring drivers.
Revision 1.221: download - view: text, markup, annotated - select for diffs
Tue Mar 16 16:31:54 1999 UTC (26 years, 1 month ago) by drochner
Branches: MAIN
Diff to: previous 1.220: preferred, colored
Changes since revision 1.220: +7 -1
lines
add prototype WSDISPLAY_DEFAULTSCREENS option, improve wscons related
comments
Revision 1.220: download - view: text, markup, annotated - select for diffs
Tue Feb 16 17:46:17 1999 UTC (26 years, 2 months ago) by abs
Branches: MAIN
Diff to: previous 1.219: preferred, colored
Changes since revision 1.219: +12 -10
lines
Update IDE comments, from yoavcs@inter.net.il
Revision 1.219: download - view: text, markup, annotated - select for diffs
Tue Feb 2 16:18:17 1999 UTC (26 years, 2 months ago) by bouyer
Branches: MAIN
CVS tags: bouyer-ide-last-dist
Diff to: previous 1.218: preferred, colored
Changes since revision 1.218: +2 -2
lines
Mention pciide(4).
Revision 1.218: download - view: text, markup, annotated - select for diffs
Mon Feb 1 01:36:21 1999 UTC (26 years, 2 months ago) by cjs
Branches: MAIN
Diff to: previous 1.217: preferred, colored
Changes since revision 1.217: +2 -2
lines
Add a missing tab for cosmetic purposes.
Revision 1.217: download - view: text, markup, annotated - select for diffs
Sat Jan 30 13:44:25 1999 UTC (26 years, 3 months ago) by drochner
Branches: MAIN
Diff to: previous 1.216: preferred, colored
Changes since revision 1.216: +38 -3
lines
make wscons the default
Revision 1.216: download - view: text, markup, annotated - select for diffs
Fri Jan 29 00:00:17 1999 UTC (26 years, 3 months ago) by cjs
Branches: MAIN
Diff to: previous 1.215: preferred, colored
Changes since revision 1.215: +2 -2
lines
Have NTP PLL on by default.
Revision 1.215: download - view: text, markup, annotated - select for diffs
Sat Jan 23 15:35:21 1999 UTC (26 years, 3 months ago) by drochner
Branches: MAIN
Diff to: previous 1.214: preferred, colored
Changes since revision 1.214: +7 -7
lines
update for mouse renaming
Revision 1.214: download - view: text, markup, annotated - select for diffs
Fri Jan 22 22:47:16 1999 UTC (26 years, 3 months ago) by tron
Branches: MAIN
Diff to: previous 1.213: preferred, colored
Changes since revision 1.213: +2 -1
lines
Add "ipip" network interfaces.
Revision 1.213: download - view: text, markup, annotated - select for diffs
Fri Jan 22 05:40:16 1999 UTC (26 years, 3 months ago) by sakamoto
Branches: MAIN
Diff to: previous 1.212: preferred, colored
Changes since revision 1.212: +2 -1
lines
Add vr driver.
Revision 1.212: download - view: text, markup, annotated - select for diffs
Wed Jan 6 23:30:53 1999 UTC (26 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.211: preferred, colored
Changes since revision 1.211: +3 -1
lines
Add the `pcscp' driver.
Revision 1.211: download - view: text, markup, annotated - select for diffs
Sun Dec 20 17:56:18 1998 UTC (26 years, 4 months ago) by nathanw
Branches: MAIN
Diff to: previous 1.210: preferred, colored
Changes since revision 1.210: +4 -1
lines
Add "pcic0 at pci?".
Revision 1.210: download - view: text, markup, annotated - select for diffs
Wed Dec 16 11:42:07 1998 UTC (26 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.209: preferred, colored
Changes since revision 1.209: +3 -1
lines
Add a commented out entry for tcom.
Revision 1.209: download - view: text, markup, annotated - select for diffs
Thu Dec 10 19:01:41 1998 UTC (26 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.208: preferred, colored
Changes since revision 1.208: +4 -3
lines
Add sv driver.
Revision 1.208: download - view: text, markup, annotated - select for diffs
Thu Dec 10 15:46:20 1998 UTC (26 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.207: preferred, colored
Changes since revision 1.207: +3 -3
lines
Comment out sv audio device, the driver is not in the tree yet.
Revision 1.207: download - view: text, markup, annotated - select for diffs
Tue Dec 8 15:52:32 1998 UTC (26 years, 4 months ago) by augustss
Branches: MAIN
CVS tags: kenh-if-detach-base,
kenh-if-detach
Diff to: previous 1.206: preferred, colored
Changes since revision 1.206: +10 -8
lines
Add ugen, a generic USB driver.
Revision 1.206: download - view: text, markup, annotated - select for diffs
Wed Dec 2 10:54:26 1998 UTC (26 years, 4 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.205: preferred, colored
Changes since revision 1.205: +17 -8
lines
Document the use of flags to set/disable PIO/DMA/UDMA modes.
Revision 1.205: download - view: text, markup, annotated - select for diffs
Mon Nov 23 20:47:03 1998 UTC (26 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.204: preferred, colored
Changes since revision 1.204: +2 -1
lines
add aha at isapnp?
Revision 1.204: download - view: text, markup, annotated - select for diffs
Mon Nov 16 16:44:56 1998 UTC (26 years, 5 months ago) by oster
Branches: MAIN
Diff to: previous 1.203: preferred, colored
Changes since revision 1.203: +2 -1
lines
Added a (commented out) configuration line for the RAIDframe device driver.
Revision 1.203: download - view: text, markup, annotated - select for diffs
Thu Nov 12 21:12:34 1998 UTC (26 years, 5 months ago) by rvb
Branches: MAIN
Diff to: previous 1.202: preferred, colored
Changes since revision 1.202: +2 -2
lines
Perry said I should ... enable pms0 for GENERIC
Revision 1.202: download - view: text, markup, annotated - select for diffs
Tue Nov 10 14:09:15 1998 UTC (26 years, 5 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.201: preferred, colored
Changes since revision 1.201: +4 -4
lines
Add and enable the pciide driver.
Revision 1.201: download - view: text, markup, annotated - select for diffs
Thu Nov 5 00:38:10 1998 UTC (26 years, 5 months ago) by thorpej
Branches: MAIN
CVS tags: chs-ubc-base,
chs-ubc
Diff to: previous 1.200: preferred, colored
Changes since revision 1.200: +2 -1
lines
Add "ukphy".
Revision 1.200: download - view: text, markup, annotated - select for diffs
Wed Nov 4 00:31:59 1998 UTC (26 years, 5 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.199: preferred, colored
Changes since revision 1.199: +3 -2
lines
Add the 'ex' driver, a DMA driver for 3Com 90x and 90xB cards.
Revision 1.199: download - view: text, markup, annotated - select for diffs
Tue Nov 3 23:52:50 1998 UTC (26 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.198: preferred, colored
Changes since revision 1.198: +2 -1
lines
Add sqphy.
Revision 1.198: download - view: text, markup, annotated - select for diffs
Tue Nov 3 00:12:45 1998 UTC (26 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.197: preferred, colored
Changes since revision 1.197: +2 -1
lines
Add icsphy*.
Revision 1.197: download - view: text, markup, annotated - select for diffs
Fri Oct 30 13:47:02 1998 UTC (26 years, 6 months ago) by lukem
Branches: MAIN
Diff to: previous 1.196: preferred, colored
Changes since revision 1.196: +2 -2
lines
s/milieconds/milliseconds/
Revision 1.196: download - view: text, markup, annotated - select for diffs
Sun Oct 25 18:40:17 1998 UTC (26 years, 6 months ago) by christos
Branches: MAIN
Diff to: previous 1.195: preferred, colored
Changes since revision 1.195: +4 -1
lines
Add nca driver goo.
Revision 1.195: download - view: text, markup, annotated - select for diffs
Sat Oct 24 00:46:17 1998 UTC (26 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.194: preferred, colored
Changes since revision 1.194: +3 -1
lines
Add "exphy" and "lxtphy" drivers.
Revision 1.194: download - view: text, markup, annotated - select for diffs
Thu Oct 22 15:11:39 1998 UTC (26 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.193: preferred, colored
Changes since revision 1.193: +5 -2
lines
Add config flags for pciide: 0x001 forces the use of DMA when the driver
don't know how to set the controller's modes.
Revision 1.193: download - view: text, markup, annotated - select for diffs
Mon Oct 19 12:29:55 1998 UTC (26 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.192: preferred, colored
Changes since revision 1.192: +2 -1
lines
Add 'uk at atapibus'.
Revision 1.192: download - view: text, markup, annotated - select for diffs
Mon Oct 19 12:06:55 1998 UTC (26 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.191: preferred, colored
Changes since revision 1.191: +2 -2
lines
Remove useless 'flags' for wdc ata isapnp.
Revision 1.191: download - view: text, markup, annotated - select for diffs
Tue Oct 13 11:43:50 1998 UTC (26 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.190: preferred, colored
Changes since revision 1.190: +4 -1
lines
Add a CPURESET_DELAY options which specifies the delay (in milliseconds)
between the "rebooting" message and the hardware reset. If set to 0, the call
to delay() is disabled. Default is 2s.
Revision 1.190: download - view: text, markup, annotated - select for diffs
Tue Oct 13 03:57:27 1998 UTC (26 years, 6 months ago) by enami
Branches: MAIN
Diff to: previous 1.189: preferred, colored
Changes since revision 1.189: +4 -4
lines
Remove space at the end of line.
Revision 1.189: download - view: text, markup, annotated - select for diffs
Mon Oct 12 16:09:13 1998 UTC (26 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.188: preferred, colored
Changes since revision 1.188: +11 -7
lines
Merge bouyer-ide
Revision 1.152.2.14: download - view: text, markup, annotated - select for diffs
Mon Oct 12 14:33:40 1998 UTC (26 years, 6 months ago) by bouyer
Branches: bouyer-ide
CVS tags: bouyer-ide-merge
Diff to: previous 1.152.2.13: preferred, colored; next MAIN 1.153: preferred, colored
Changes since revision 1.152.2.13: +6 -3
lines
Sync with HEAD.
Revision 1.188: download - view: text, markup, annotated - select for diffs
Sat Oct 10 21:58:22 1998 UTC (26 years, 6 months ago) by thorpej
Branches: MAIN
CVS tags: bouyer-ide-base
Diff to: previous 1.187: preferred, colored
Changes since revision 1.187: +4 -1
lines
Add pcmcom driver and com slaves.
Revision 1.187: download - view: text, markup, annotated - select for diffs
Tue Oct 6 01:44:11 1998 UTC (26 years, 6 months ago) by rvb
Branches: MAIN
Diff to: previous 1.186: preferred, colored
Changes since revision 1.186: +3 -3
lines
Add Coda
Revision 1.152.2.13: download - view: text, markup, annotated - select for diffs
Fri Oct 2 19:51:48 1998 UTC (26 years, 6 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.12: preferred, colored
Changes since revision 1.152.2.12: +6 -4
lines
Sync with HEAD.
Revision 1.186: download - view: text, markup, annotated - select for diffs
Sat Sep 26 16:38:43 1998 UTC (26 years, 7 months ago) by dante
Branches: MAIN
Diff to: previous 1.185: preferred, colored
Changes since revision 1.185: +4 -2
lines
Add support for AdvanSys Ultra Wide boards
Revision 1.185: download - view: text, markup, annotated - select for diffs
Tue Sep 22 01:16:48 1998 UTC (26 years, 7 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.184: preferred, colored
Changes since revision 1.184: +3 -3
lines
Slight edit to previous.
Revision 1.152.2.12: download - view: text, markup, annotated - select for diffs
Sun Sep 20 16:37:22 1998 UTC (26 years, 7 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.11: preferred, colored
Changes since revision 1.152.2.11: +8 -7
lines
sync with HEAD
Revision 1.184: download - view: text, markup, annotated - select for diffs
Fri Sep 18 12:22:54 1998 UTC (26 years, 7 months ago) by drochner
Branches: MAIN
Diff to: previous 1.183: preferred, colored
Changes since revision 1.183: +4 -4
lines
Note which units memory sizes are counted in.
Fixes half of PR port-i386/6159 ("Heiko W.Rupp" <hwr@pilhuhn.de>).
Revision 1.183: download - view: text, markup, annotated - select for diffs
Sun Sep 13 21:02:02 1998 UTC (26 years, 7 months ago) by hwr
Branches: MAIN
Diff to: previous 1.182: preferred, colored
Changes since revision 1.182: +2 -1
lines
Enable gre(4) device
Revision 1.182: download - view: text, markup, annotated - select for diffs
Sat Sep 12 15:05:47 1998 UTC (26 years, 7 months ago) by rvb
Branches: MAIN
Diff to: previous 1.181: preferred, colored
Changes since revision 1.181: +4 -4
lines
Change cfs/CFS in symbols, strings and constants to coda/CODA
to avoid fs conflicts.
Revision 1.152.2.11: download - view: text, markup, annotated - select for diffs
Fri Sep 11 16:23:14 1998 UTC (26 years, 7 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.10: preferred, colored
Changes since revision 1.152.2.10: +15 -6
lines
Sync with HEAD.
Revision 1.181: download - view: text, markup, annotated - select for diffs
Tue Sep 8 20:56:08 1998 UTC (26 years, 7 months ago) by rvb
Branches: MAIN
Diff to: previous 1.180: preferred, colored
Changes since revision 1.180: +5 -1
lines
Get ready to add Coda
Revision 1.180: download - view: text, markup, annotated - select for diffs
Mon Aug 31 17:58:46 1998 UTC (26 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.179: preferred, colored
Changes since revision 1.179: +1 -4
lines
UVM+PMAP_NEW is standard now; don't need it in individual config files.
Revision 1.179: download - view: text, markup, annotated - select for diffs
Wed Aug 26 14:27:44 1998 UTC (26 years, 8 months ago) by dante
Branches: MAIN
Diff to: previous 1.178: preferred, colored
Changes since revision 1.178: +3 -1
lines
Add AdvanSys SCSI controller
Revision 1.178: download - view: text, markup, annotated - select for diffs
Wed Aug 26 13:37:49 1998 UTC (26 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.177: preferred, colored
Changes since revision 1.177: +3 -1
lines
Add more opl attachments.
Revision 1.152.2.10: download - view: text, markup, annotated - select for diffs
Fri Aug 21 16:34:48 1998 UTC (26 years, 8 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.9: preferred, colored
Changes since revision 1.152.2.9: +6 -2
lines
Sync with -current
Revision 1.177: download - view: text, markup, annotated - select for diffs
Tue Aug 18 17:03:42 1998 UTC (26 years, 8 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.176: preferred, colored
Changes since revision 1.176: +2 -2
lines
Tab vs. space, and turn *off* XSERVER_DDB by default.
Revision 1.176: download - view: text, markup, annotated - select for diffs
Mon Aug 17 21:16:10 1998 UTC (26 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.175: preferred, colored
Changes since revision 1.175: +6 -2
lines
* Redo the way the way the MIDI driver attaches to audio devices.
* Improve the midisyn layer a little.
* Add a driver for the Yamaha OPL[23] FM synths.
The opl driver is not finished yet; it sounds pretty awful.
For some strange reason I cannot get any FM sound from my SB64 cards,
but a regular SB16 works fine.
Revision 1.175: download - view: text, markup, annotated - select for diffs
Thu Aug 13 17:47:56 1998 UTC (26 years, 8 months ago) by rvb
Branches: MAIN
Diff to: previous 1.174: preferred, colored
Changes since revision 1.174: +6 -2
lines
Make serial line debugging easier to enable and use
Revision 1.152.2.9: download - view: text, markup, annotated - select for diffs
Thu Aug 13 14:37:52 1998 UTC (26 years, 8 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.8: preferred, colored
Changes since revision 1.152.2.8: +15 -9
lines
- sync with -current
- b* -> mem*
Revision 1.174: download - view: text, markup, annotated - select for diffs
Wed Aug 12 18:32:18 1998 UTC (26 years, 8 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.173: preferred, colored
Changes since revision 1.173: +2 -1
lines
Add audio at ess.
Revision 1.173: download - view: text, markup, annotated - select for diffs
Wed Aug 12 18:17:55 1998 UTC (26 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.172: preferred, colored
Changes since revision 1.172: +4 -3
lines
Add the PC speaker MIDI attachment.
Revision 1.172: download - view: text, markup, annotated - select for diffs
Tue Aug 11 00:32:04 1998 UTC (26 years, 8 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.171: preferred, colored
Changes since revision 1.171: +6 -8
lines
Adapt to MII changes.
Revision 1.171: download - view: text, markup, annotated - select for diffs
Mon Aug 10 01:54:59 1998 UTC (26 years, 8 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.170: preferred, colored
Changes since revision 1.170: +2 -1
lines
Add ess at isapnp.
Revision 1.170: download - view: text, markup, annotated - select for diffs
Fri Aug 7 00:00:56 1998 UTC (26 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.169: preferred, colored
Changes since revision 1.169: +5 -1
lines
Add MIDI support. The MIDI devices can be accessed as ``raw'' through
the /dev/rmidiN devices, or with a sequencer interface via /dev/music.
So far the only supported MIDI device is the MPU401 port on SoundBlaster
(and only on SB on isapnp, since we do not have locators with multiple
values yet).
Revision 1.169: download - view: text, markup, annotated - select for diffs
Wed Jul 29 12:36:47 1998 UTC (26 years, 9 months ago) by augustss
Branches: MAIN
CVS tags: eeh-paddr_t-base,
eeh-paddr_t
Diff to: previous 1.168: preferred, colored
Changes since revision 1.168: +2 -1
lines
Add wss on isapnp.
Revision 1.168: download - view: text, markup, annotated - select for diffs
Mon Jul 27 23:55:23 1998 UTC (26 years, 9 months ago) by perry
Branches: MAIN
Diff to: previous 1.167: preferred, colored
Changes since revision 1.167: +2 -2
lines
NORVEGIAN -> NORWEGIAN
Revision 1.152.2.8: download - view: text, markup, annotated - select for diffs
Mon Jul 27 19:02:46 1998 UTC (26 years, 9 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.7: preferred, colored
Changes since revision 1.152.2.7: +45 -2
lines
Sync with -current
Revision 1.167: download - view: text, markup, annotated - select for diffs
Mon Jul 27 18:42:27 1998 UTC (26 years, 9 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.166: preferred, colored
Changes since revision 1.166: +4 -4
lines
Correct indent.
Revision 1.166: download - view: text, markup, annotated - select for diffs
Mon Jul 27 18:38:08 1998 UTC (26 years, 9 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.165: preferred, colored
Changes since revision 1.165: +2 -1
lines
Ops, forgot FINNISH_KBD.
Revision 1.114.2.11: download - view: text, markup, annotated - select for diffs
Mon Jul 27 15:33:32 1998 UTC (26 years, 9 months ago) by mellon
Branches: netbsd-1-3
CVS tags: netbsd-1-3-PATCH003-CANDIDATE2,
netbsd-1-3-PATCH003-CANDIDATE1,
netbsd-1-3-PATCH003-CANDIDATE0,
netbsd-1-3-PATCH003
Diff to: previous 1.114.2.10: preferred, colored; branchpoint 1.114: preferred, colored; next MAIN 1.115: preferred, colored
Changes since revision 1.114.2.10: +6 -1
lines
Add French, German and Norvegian keyboard options (bouyer)
Revision 1.165: download - view: text, markup, annotated - select for diffs
Mon Jul 27 13:39:51 1998 UTC (26 years, 9 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.164: preferred, colored
Changes since revision 1.164: +6 -1
lines
Document FRENCH_KBD,GERMAN_KBD,NORVEGIAN_KBD options.
Revision 1.164: download - view: text, markup, annotated - select for diffs
Mon Jul 27 01:51:29 1998 UTC (26 years, 9 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.163: preferred, colored
Changes since revision 1.163: +2 -1
lines
Add cs0 at isa? port 0x300, wildcard IRQ and memory address, to pull
them from the EEPROM. Wildcard DRQ to force memory-mode operation; this
value is not available in the EEPROM and must be configured manually.
Revision 1.163: download - view: text, markup, annotated - select for diffs
Sun Jul 26 17:45:53 1998 UTC (26 years, 9 months ago) by augustss
Branches: MAIN
Diff to: previous 1.162: preferred, colored
Changes since revision 1.162: +3 -1
lines
Use wscons attachments for USB keyboard and mouse.
Revision 1.162: download - view: text, markup, annotated - select for diffs
Sun Jul 12 19:51:56 1998 UTC (26 years, 9 months ago) by augustss
Branches: MAIN
Diff to: previous 1.161: preferred, colored
Changes since revision 1.161: +35 -1
lines
Add USB support. Supported so far:
* UHCI and OHCI host controllers on PCI
* Hubs
* HID devices withe special drivers for mouse and keyboard
* Printers
Revision 1.161: download - view: text, markup, annotated - select for diffs
Thu Jul 9 20:59:38 1998 UTC (26 years, 9 months ago) by perry
Branches: MAIN
Diff to: previous 1.160: preferred, colored
Changes since revision 1.160: +2 -2
lines
Set soundblaster irq to 5 by default.
Revision 1.152.2.7: download - view: text, markup, annotated - select for diffs
Thu Jul 2 08:19:35 1998 UTC (26 years, 9 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.6: preferred, colored
Changes since revision 1.152.2.6: +7 -2
lines
Sync with HEAD.
Revision 1.160: download - view: text, markup, annotated - select for diffs
Fri Jun 26 18:58:38 1998 UTC (26 years, 10 months ago) by cgd
Branches: MAIN
Diff to: previous 1.159: preferred, colored
Changes since revision 1.159: +7 -1
lines
add device declarations for 'puc'-related devices. Add lpt attaching
to puc to the files file, because it can't go in files.pci (see comments
here or there).
Revision 1.159: download - view: text, markup, annotated - select for diffs
Fri Jun 26 01:53:58 1998 UTC (26 years, 10 months ago) by lukem
Branches: MAIN
Diff to: previous 1.158: preferred, colored
Changes since revision 1.158: +1 -2
lines
remove options FIFO; it's now the default
Revision 1.152.2.6: download - view: text, markup, annotated - select for diffs
Thu Jun 25 10:50:23 1998 UTC (26 years, 10 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.5: preferred, colored
Changes since revision 1.152.2.5: +3 -3
lines
Sync with HEAD.
Revision 1.158: download - view: text, markup, annotated - select for diffs
Wed Jun 24 20:58:44 1998 UTC (26 years, 10 months ago) by sommerfe
Branches: MAIN
Diff to: previous 1.157: preferred, colored
Changes since revision 1.157: +2 -2
lines
Always include fifos; "not an option any more".
Revision 1.157: download - view: text, markup, annotated - select for diffs
Wed Jun 24 05:38:09 1998 UTC (26 years, 10 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.156: preferred, colored
Changes since revision 1.156: +2 -2
lines
Update comment regarding conflict between wt driver and SMC ethernet boards.
Closes PR 4481 by Erik Bertelsen.
Revision 1.152.2.5: download - view: text, markup, annotated - select for diffs
Sat Jun 13 14:34:16 1998 UTC (26 years, 10 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.4: preferred, colored
Changes since revision 1.152.2.4: +1 -7
lines
Remove comments about flags for IDE controllers, it's not true any more.
Revision 1.152.2.4: download - view: text, markup, annotated - select for diffs
Sat Jun 13 14:26:17 1998 UTC (26 years, 10 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.3: preferred, colored
Changes since revision 1.152.2.3: +0 -0
lines
Sync with HEAD.
Revision 1.152.2.3: download - view: text, markup, annotated - select for diffs
Tue Jun 9 13:04:22 1998 UTC (26 years, 10 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.2: preferred, colored
Changes since revision 1.152.2.2: +5 -3
lines
Sync with trunk.
Revision 1.156: download - view: text, markup, annotated - select for diffs
Sun Jun 7 18:34:38 1998 UTC (26 years, 10 months ago) by sommerfe
Branches: MAIN
Diff to: previous 1.155: preferred, colored
Changes since revision 1.155: +3 -1
lines
Add ISA Plug and Play attachment for PCIC PCMCIA controller (pcic* at isapnp?).
Slightly modify ISA attachment to let the two share code.
Revision 1.155: download - view: text, markup, annotated - select for diffs
Sun Jun 7 02:36:53 1998 UTC (26 years, 10 months ago) by enami
Branches: MAIN
Diff to: previous 1.154: preferred, colored
Changes since revision 1.154: +2 -2
lines
Use TAB instead of two space to indent.
Revision 1.154: download - view: text, markup, annotated - select for diffs
Sun Jun 7 02:34:41 1998 UTC (26 years, 10 months ago) by enami
Branches: MAIN
Diff to: previous 1.153: preferred, colored
Changes since revision 1.153: +2 -2
lines
Remove TAB after `options I686_CPU'.
Revision 1.152.2.2: download - view: text, markup, annotated - select for diffs
Sat Jun 6 12:40:52 1998 UTC (26 years, 10 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152.2.1: preferred, colored
Changes since revision 1.152.2.1: +3 -1
lines
Sync with HEAD.
Revision 1.153: download - view: text, markup, annotated - select for diffs
Sat Jun 6 10:14:21 1998 UTC (26 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.152: preferred, colored
Changes since revision 1.152: +3 -1
lines
Add Aria driver.
Revision 1.152.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 4 16:53:45 1998 UTC (26 years, 10 months ago) by bouyer
Branches: bouyer-ide
Diff to: previous 1.152: preferred, colored
Changes since revision 1.152: +17 -7
lines
Commit changes to the IDE system in a branch. This allows a better separation
between higth-level and low-level (i.e. registers read/write) and generalize
the queue for all commands. This also add supports for IDE DMA.
Revision 1.152: download - view: text, markup, annotated - select for diffs
Wed Jun 3 21:17:52 1998 UTC (26 years, 10 months ago) by mjacob
Branches: MAIN
Branch point for: bouyer-ide
Diff to: previous 1.151: preferred, colored
Changes since revision 1.151: +2 -1
lines
turn on Essential HIPPI for this configuration
Revision 1.151: download - view: text, markup, annotated - select for diffs
Wed Jun 3 10:03:25 1998 UTC (26 years, 10 months ago) by frueauf
Branches: MAIN
Diff to: previous 1.150: preferred, colored
Changes since revision 1.150: +1 -3
lines
Remove double "options GATEWAY" entry.
Revision 1.150: download - view: text, markup, annotated - select for diffs
Tue Jun 2 01:44:57 1998 UTC (26 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.149: preferred, colored
Changes since revision 1.149: +4 -1
lines
Add epic* at pci?
Revision 1.149: download - view: text, markup, annotated - select for diffs
Wed May 20 16:25:06 1998 UTC (26 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.148: preferred, colored
Changes since revision 1.148: +3 -1
lines
Add ym (Yamaha OPL3-SA3) driver.
Revision 1.114.2.10: download - view: text, markup, annotated - select for diffs
Tue May 5 08:10:38 1998 UTC (26 years, 11 months ago) by mycroft
Branches: netbsd-1-3
CVS tags: netbsd-1-3-PATCH002
Diff to: previous 1.114.2.9: preferred, colored; branchpoint 1.114: preferred, colored
Changes since revision 1.114.2.9: +3 -3
lines
Pull up 1.129, per request of mycroft.
Revision 1.148: download - view: text, markup, annotated - select for diffs
Fri May 1 22:00:37 1998 UTC (27 years ago) by augustss
Branches: MAIN
Diff to: previous 1.147: preferred, colored
Changes since revision 1.147: +5 -1
lines
Add Ensoniq AudioPCI driver.
Revision 1.147: download - view: text, markup, annotated - select for diffs
Mon Apr 20 10:58:01 1998 UTC (27 years ago) by drochner
Branches: MAIN
Diff to: previous 1.146: preferred, colored
Changes since revision 1.146: +2 -2
lines
There are NE2100 compatible cards which cannot IRQ 10.
Use IRQ 9 in the default configuration.
(Thanks to Rick Byers <rickb@iaw.on.ca>.)
Revision 1.146: download - view: text, markup, annotated - select for diffs
Thu Apr 16 22:01:42 1998 UTC (27 years ago) by drochner
Branches: MAIN
Diff to: previous 1.145: preferred, colored
Changes since revision 1.145: +10 -4
lines
-"spkr" now attaches to "pcppi"
-"le at isa" is split into "depca", "nele" and "bicc"
Revision 1.145: download - view: text, markup, annotated - select for diffs
Fri Apr 3 04:35:05 1998 UTC (27 years ago) by enami
Branches: MAIN
Diff to: previous 1.144: preferred, colored
Changes since revision 1.144: +4 -1
lines
Add entry for aic* at isapnp.
Revision 1.144: download - view: text, markup, annotated - select for diffs
Fri Apr 3 04:29:13 1998 UTC (27 years ago) by enami
Branches: MAIN
Diff to: previous 1.143: preferred, colored
Changes since revision 1.143: +2 -1
lines
Add entry for mbe* at pcmcia.
Revision 1.143: download - view: text, markup, annotated - select for diffs
Fri Apr 3 04:23:50 1998 UTC (27 years ago) by enami
Branches: MAIN
Diff to: previous 1.142: preferred, colored
Changes since revision 1.142: +3 -2
lines
Add entries for ate0 and fmv0 (former is tested but latter is not).
Remove fe0.
Revision 1.142: download - view: text, markup, annotated - select for diffs
Sun Mar 22 18:18:45 1998 UTC (27 years, 1 month ago) by drochner
Branches: MAIN
Diff to: previous 1.141: preferred, colored
Changes since revision 1.141: +5 -3
lines
The "pckbd" attribute of pc/vt is now "pckbcport".
Use the real console driver name here to make more obvious where
pms and spkr attach to.
Revision 1.141: download - view: text, markup, annotated - select for diffs
Wed Mar 18 16:34:43 1998 UTC (27 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.140: preferred, colored
Changes since revision 1.140: +2 -1
lines
Add commented out "options FFS_EI"
Revision 1.140: download - view: text, markup, annotated - select for diffs
Fri Feb 27 23:57:31 1998 UTC (27 years, 2 months ago) by pk
Branches: MAIN
Diff to: previous 1.139: preferred, colored
Changes since revision 1.139: +4 -3
lines
Replace monolithic `ie0' and `ie1' driver by `ef', `ix', `ai' front-ends.
Revision 1.139: download - view: text, markup, annotated - select for diffs
Thu Feb 19 23:21:33 1998 UTC (27 years, 2 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.138: preferred, colored
Changes since revision 1.138: +2 -2
lines
Fix formatting glitch.
Revision 1.138: download - view: text, markup, annotated - select for diffs
Thu Feb 19 14:21:57 1998 UTC (27 years, 2 months ago) by drochner
Branches: MAIN
Diff to: previous 1.137: preferred, colored
Changes since revision 1.137: +2 -1
lines
add COMPAT_386BSD_MBRPART option
Revision 1.137: download - view: text, markup, annotated - select for diffs
Fri Feb 13 04:12:33 1998 UTC (27 years, 2 months ago) by mrg
Branches: MAIN
Diff to: previous 1.136: preferred, colored
Changes since revision 1.136: +2 -1
lines
add a commented out PMAP_NEW.
Revision 1.114.2.9: download - view: text, markup, annotated - select for diffs
Sat Feb 7 00:45:46 1998 UTC (27 years, 2 months ago) by mellon
Branches: netbsd-1-3
CVS tags: netbsd-1-3-PATCH001
Diff to: previous 1.114.2.8: preferred, colored; branchpoint 1.114: preferred, colored
Changes since revision 1.114.2.8: +2 -1
lines
Pull up 1.33 (tron)
Revision 1.136: download - view: text, markup, annotated - select for diffs
Fri Feb 6 11:20:31 1998 UTC (27 years, 2 months ago) by mrg
Branches: MAIN
Diff to: previous 1.135: preferred, colored
Changes since revision 1.135: +1 -6
lines
remove paging options from kernel files.
Revision 1.135: download - view: text, markup, annotated - select for diffs
Fri Feb 6 07:53:27 1998 UTC (27 years, 2 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.134: preferred, colored
Changes since revision 1.134: +4 -1
lines
Add pceb at pci and {eisa,isa} at pceb attachments.
Revision 1.134: download - view: text, markup, annotated - select for diffs
Fri Feb 6 07:21:44 1998 UTC (27 years, 2 months ago) by mrg
Branches: MAIN
Diff to: previous 1.133: preferred, colored
Changes since revision 1.133: +8 -1
lines
add the i386 MD portions for UVM.
Revision 1.133: download - view: text, markup, annotated - select for diffs
Thu Jan 29 01:53:03 1998 UTC (27 years, 3 months ago) by tron
Branches: MAIN
Diff to: previous 1.132: preferred, colored
Changes since revision 1.132: +2 -1
lines
Add option "#options IPFILTER_LOG", fixes port-i386/4858.
Revision 1.132: download - view: text, markup, annotated - select for diffs
Fri Jan 23 20:42:34 1998 UTC (27 years, 3 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.131: preferred, colored
Changes since revision 1.131: +4 -1
lines
Add wdc* at isapnp?.
Revision 1.131: download - view: text, markup, annotated - select for diffs
Fri Jan 23 01:16:03 1998 UTC (27 years, 3 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.130: preferred, colored
Changes since revision 1.130: +4 -1
lines
Add wdc* at pcmcia.
Revision 1.130: download - view: text, markup, annotated - select for diffs
Thu Jan 15 02:26:35 1998 UTC (27 years, 3 months ago) by cgd
Branches: MAIN
Diff to: previous 1.129: preferred, colored
Changes since revision 1.129: +2 -1
lines
add 'sd* at atapibus? drive ?' to all kernel configs already containing
an analogous line for 'cd'.
Revision 1.129: download - view: text, markup, annotated - select for diffs
Wed Jan 14 15:27:44 1998 UTC (27 years, 3 months ago) by drochner
Branches: MAIN
Diff to: previous 1.128: preferred, colored
Changes since revision 1.128: +3 -3
lines
from Dave Burgess per PR4620:
-base address 0x308 is supported by more Wangtek QIC tapes than 0x300
-Ultrastor ISA SCSI adapters can't be set to base address 0x334
(changed to 0x340)
Revision 1.128: download - view: text, markup, annotated - select for diffs
Fri Jan 9 15:18:50 1998 UTC (27 years, 3 months ago) by drochner
Branches: MAIN
Diff to: previous 1.127: preferred, colored
Changes since revision 1.127: +3 -1
lines
enable diskless boot with BOOTP and BOOTPARAM configuration
Revision 1.127: download - view: text, markup, annotated - select for diffs
Tue Dec 9 13:32:35 1997 UTC (27 years, 4 months ago) by tv
Branches: MAIN
Diff to: previous 1.126: preferred, colored
Changes since revision 1.126: +2 -2
lines
KMEMSTATS is documented in options(4) as being a possible severe
performance hit, and on an 80386 processor, it most certainly is. Pull it
from the GENERIC (and DISKLESS "generic") kernels--configure it in
yourself if you actually need it.
Revision 1.114.2.8: download - view: text, markup, annotated - select for diffs
Fri Nov 28 08:17:59 1997 UTC (27 years, 5 months ago) by mellon
Branches: netbsd-1-3
CVS tags: netbsd-1-3-RELEASE,
netbsd-1-3-BETA
Diff to: previous 1.114.2.7: preferred, colored; branchpoint 1.114: preferred, colored
Changes since revision 1.114.2.7: +1 -6
lines
Pull rev 1.126 up from trunk (fvdl)
Revision 1.126: download - view: text, markup, annotated - select for diffs
Thu Nov 27 09:58:33 1997 UTC (27 years, 5 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.125: preferred, colored
Changes since revision 1.125: +1 -6
lines
Revert I486_PCI_MEM_ENABLED change, it caused too many problems.
Revision 1.125: download - view: text, markup, annotated - select for diffs
Tue Nov 25 20:29:32 1997 UTC (27 years, 5 months ago) by kleink
Branches: MAIN
Diff to: previous 1.124: preferred, colored
Changes since revision 1.124: +1 -0
lines
Add COMPAT_13.
Revision 1.114.2.7: download - view: text, markup, annotated - select for diffs
Mon Nov 24 01:40:31 1997 UTC (27 years, 5 months ago) by thorpej
Branches: netbsd-1-3
Diff to: previous 1.114.2.6: preferred, colored; branchpoint 1.114: preferred, colored
Changes since revision 1.114.2.6: +6 -1
lines
Pull up from trunk: add commented-out I486_PCI_MEM_ENABLED option.
Revision 1.124: download - view: text, markup, annotated - select for diffs
Mon Nov 24 00:21:51 1997 UTC (27 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.123: preferred, colored
Changes since revision 1.123: +6 -1
lines
Add commented-out "I486_PCI_MEM_ENABLED" option, and describe it.
Revision 1.114.2.6: download - view: text, markup, annotated - select for diffs
Mon Nov 17 03:44:34 1997 UTC (27 years, 5 months ago) by thorpej
Branches: netbsd-1-3
Diff to: previous 1.114.2.5: preferred, colored; branchpoint 1.114: preferred, colored
Changes since revision 1.114.2.5: +5 -5
lines
Partial sync w/ trunk: addresses for iy0 and lc0.
Revision 1.123: download - view: text, markup, annotated - select for diffs
Mon Nov 17 03:39:42 1997 UTC (27 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.122: preferred, colored
Changes since revision 1.122: +2 -2
lines
Put lc0 at i/o 0x320.
Revision 1.122: download - view: text, markup, annotated - select for diffs
Mon Nov 17 01:57:50 1997 UTC (27 years, 5 months ago) by lukem
Branches: MAIN
Diff to: previous 1.121: preferred, colored
Changes since revision 1.121: +2 -1
lines
* add commented out DDB_HISTORY_SIZE=100 if DDB exists in config file
* fix up use of 'options<SPACE><TAB>'
Revision 1.121: download - view: text, markup, annotated - select for diffs
Tue Nov 11 20:31:38 1997 UTC (27 years, 5 months ago) by drochner
Branches: MAIN
Diff to: previous 1.120: preferred, colored
Changes since revision 1.120: +4 -4
lines
-point to console(4) manpage for serial console parameters
(suggested by Chuck Cranor)
-insert a reasonable IO base address for "iy at isa"
(from Ignatios Souvatzis)
Revision 1.114.2.5: download - view: text, markup, annotated - select for diffs
Tue Nov 11 06:33:16 1997 UTC (27 years, 5 months ago) by thorpej
Branches: netbsd-1-3
Diff to: previous 1.114.2.4: preferred, colored; branchpoint 1.114: preferred, colored
Changes since revision 1.114.2.4: +2 -2
lines
Sync w/ trunk.
Revision 1.120: download - view: text, markup, annotated - select for diffs
Tue Nov 11 05:53:06 1997 UTC (27 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.119: preferred, colored
Changes since revision 1.119: +2 -2
lines
Add locators for "eg0" device, and enable it.
Revision 1.114.2.4: download - view: text, markup, annotated - select for diffs
Wed Nov 5 19:15:53 1997 UTC (27 years, 5 months ago) by thorpej
Branches: netbsd-1-3
Diff to: previous 1.114.2.3: preferred, colored; branchpoint 1.114: preferred, colored
Changes since revision 1.114.2.3: +4 -4
lines
Update from trunk: add "we" and "ec" drivers, remove "ed" drivers.
Revision 1.114.2.3: download - view: text, markup, annotated - select for diffs
Wed Nov 5 18:13:53 1997 UTC (27 years, 5 months ago) by thorpej
Branches: netbsd-1-3
Diff to: previous 1.114.2.2: preferred, colored; branchpoint 1.114: preferred, colored
Changes since revision 1.114.2.2: +2 -1
lines
Add sm0 at isa? port 0x300 irq 10
Revision 1.119: download - view: text, markup, annotated - select for diffs
Wed Nov 5 18:13:13 1997 UTC (27 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.118: preferred, colored
Changes since revision 1.118: +2 -1
lines
Add sm0 at isa? port 0x300 irq 10
Revision 1.118: download - view: text, markup, annotated - select for diffs
Mon Nov 3 21:33:33 1997 UTC (27 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.117: preferred, colored
Changes since revision 1.117: +3 -3
lines
Delete "ed" driver, add "we".
Revision 1.117: download - view: text, markup, annotated - select for diffs
Sun Nov 2 01:02:23 1997 UTC (27 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.116: preferred, colored
Changes since revision 1.116: +4 -4
lines
Add "ec" driver.
Revision 1.114.2.2: download - view: text, markup, annotated - select for diffs
Thu Oct 23 06:40:35 1997 UTC (27 years, 6 months ago) by mellon
Branches: netbsd-1-3
Diff to: previous 1.114.2.1: preferred, colored; branchpoint 1.114: preferred, colored
Changes since revision 1.114.2.1: +8 -7
lines
Pull up rev 1.115 from trunk
Revision 1.116: download - view: text, markup, annotated - select for diffs
Thu Oct 23 05:49:42 1997 UTC (27 years, 6 months ago) by mikel
Branches: MAIN
Diff to: previous 1.115: preferred, colored
Changes since revision 1.115: +8 -7
lines
fix some typos and other misfeatures in comments; no functional change
note that bha driver supports BT44x cards as well
Revision 1.114.2.1: download - view: text, markup, annotated - select for diffs
Tue Oct 21 08:20:52 1997 UTC (27 years, 6 months ago) by mrg
Branches: netbsd-1-3
Diff to: previous 1.114: preferred, colored
Changes since revision 1.114: +3 -3
lines
pull up from trunk: Correct ThunderLAN spelling
Revision 1.115: download - view: text, markup, annotated - select for diffs
Tue Oct 21 06:01:16 1997 UTC (27 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.114: preferred, colored
Changes since revision 1.114: +3 -3
lines
Correct spelling of 'ThunderLAN'
Revision 1.114: download - view: text, markup, annotated - select for diffs
Mon Oct 20 18:45:09 1997 UTC (27 years, 6 months ago) by explorer
Branches: MAIN
CVS tags: netbsd-1-3-base
Branch point for: netbsd-1-3
Diff to: previous 1.113: preferred, colored
Changes since revision 1.113: +2 -2
lines
Mark options RND_COM as broken on i386 port
Revision 1.113: download - view: text, markup, annotated - select for diffs
Mon Oct 20 15:19:51 1997 UTC (27 years, 6 months ago) by explorer
Branches: MAIN
Diff to: previous 1.112: preferred, colored
Changes since revision 1.112: +5 -2
lines
Comment out pseudo-device rnd, mention options RND_COM, and mark experiemntal
Revision 1.112: download - view: text, markup, annotated - select for diffs
Sun Oct 19 20:14:21 1997 UTC (27 years, 6 months ago) by perry
Branches: MAIN
Diff to: previous 1.111: preferred, colored
Changes since revision 1.111: +206 -134
lines
Yet Another Massive Reorganization. I took the last reorg even
further. Devices are grouped by types and within the types segregated
by bus. Lots of comments fixed up, lots of nits cleaned. Extensive
comments from Jason and Charles incorporated.
We also really need an automatic way to generate INSTALL from GENERIC,
but that's a project for another day...
Revision 1.111: download - view: text, markup, annotated - select for diffs
Sun Oct 19 00:00:18 1997 UTC (27 years, 6 months ago) by perry
Branches: MAIN
Diff to: previous 1.110: preferred, colored
Changes since revision 1.110: +2 -2
lines
typo: that -> than
Revision 1.110: download - view: text, markup, annotated - select for diffs
Sat Oct 18 01:42:22 1997 UTC (27 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.109: preferred, colored
Changes since revision 1.109: +216 -142
lines
Major cleanup of the GENERIC config file. The devices are laid out in
a more readable manner now, and sorted by bus type.
Revision 1.109: download - view: text, markup, annotated - select for diffs
Fri Oct 17 19:25:36 1997 UTC (27 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.108: preferred, colored
Changes since revision 1.108: +7 -1
lines
Add tl and mii devices.
Revision 1.108: download - view: text, markup, annotated - select for diffs
Fri Oct 17 07:27:02 1997 UTC (27 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.107: preferred, colored
Changes since revision 1.107: +4 -2
lines
Add "ne" and "com" isapnp attachments. Move the fe0 declaration to a
more logical location.
Revision 1.107: download - view: text, markup, annotated - select for diffs
Fri Oct 17 07:08:55 1997 UTC (27 years, 6 months ago) by enami
Branches: MAIN
Diff to: previous 1.106: preferred, colored
Changes since revision 1.106: +3 -3
lines
Use lowercase for hexdigit.
Revision 1.106: download - view: text, markup, annotated - select for diffs
Fri Oct 17 07:07:26 1997 UTC (27 years, 6 months ago) by enami
Branches: MAIN
Diff to: previous 1.105: preferred, colored
Changes since revision 1.105: +2 -2
lines
Use TAB to separate `cd*' and `at'.
Revision 1.105: download - view: text, markup, annotated - select for diffs
Thu Oct 16 23:32:35 1997 UTC (27 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.104: preferred, colored
Changes since revision 1.104: +14 -1
lines
Pull marc-pcmcia branch down from trunk.
Revision 1.86.2.8: download - view: text, markup, annotated - select for diffs
Thu Oct 16 10:54:01 1997 UTC (27 years, 6 months ago) by enami
Branches: marc-pcmcia
Diff to: previous 1.86.2.7: preferred, colored; branchpoint 1.86: preferred, colored; next MAIN 1.87: preferred, colored
Changes since revision 1.86.2.7: +2 -1
lines
Add PCMCIA aic instances.
Revision 1.86.2.7: download - view: text, markup, annotated - select for diffs
Tue Oct 14 23:35:08 1997 UTC (27 years, 6 months ago) by thorpej
Branches: marc-pcmcia
Diff to: previous 1.86.2.6: preferred, colored; branchpoint 1.86: preferred, colored
Changes since revision 1.86.2.6: +5 -6
lines
Sync w/ trunk.
Revision 1.104: download - view: text, markup, annotated - select for diffs
Tue Oct 14 23:31:00 1997 UTC (27 years, 6 months ago) by thorpej
Branches: MAIN
CVS tags: marc-pcmcia-base
Diff to: previous 1.103: preferred, colored
Changes since revision 1.103: +5 -2
lines
Add ISA and PCI "ne" instances as appropriate.
Revision 1.86.2.6: download - view: text, markup, annotated - select for diffs
Tue Oct 14 09:05:42 1997 UTC (27 years, 6 months ago) by thorpej
Branches: marc-pcmcia
Diff to: previous 1.86.2.5: preferred, colored; branchpoint 1.86: preferred, colored
Changes since revision 1.86.2.5: +21 -10
lines
Update marc-pcmcia branch from trunk, and add "ne" devices on ISA and PCI.
Revision 1.103: download - view: text, markup, annotated - select for diffs
Mon Oct 13 00:46:27 1997 UTC (27 years, 6 months ago) by explorer
Branches: MAIN
Diff to: previous 1.102: preferred, colored
Changes since revision 1.102: +2 -1
lines
o Make usage of /dev/random dependant on
pseudo-device rnd # /dev/random and in-kernel generator
in config files.
o Add declaration to all architectures.
o Clean up copyright message in rnd.c, rnd.h, and rndpool.c to include
that this code is derived in part from Ted Tyso's linux code.
Revision 1.102: download - view: text, markup, annotated - select for diffs
Wed Oct 8 10:09:38 1997 UTC (27 years, 6 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.101: preferred, colored
Changes since revision 1.101: +3 -3
lines
Clump USER_LDT with other CPU-related options.
Revision 1.101: download - view: text, markup, annotated - select for diffs
Wed Oct 8 09:32:37 1997 UTC (27 years, 6 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.100: preferred, colored
Changes since revision 1.100: +8 -5
lines
Update comments regarding BIOSEXTMEM (now REALEXTMEM), and add REALBASEMEM.
Revision 1.100: download - view: text, markup, annotated - select for diffs
Tue Oct 7 10:39:56 1997 UTC (27 years, 6 months ago) by augustss
Branches: MAIN
Diff to: previous 1.99: preferred, colored
Changes since revision 1.99: +3 -1
lines
Add GUS PnP card to GENERIC.
Revision 1.86.2.5: download - view: text, markup, annotated - select for diffs
Tue Sep 16 03:48:30 1997 UTC (27 years, 7 months ago) by thorpej
Branches: marc-pcmcia
Diff to: previous 1.86.2.4: preferred, colored; branchpoint 1.86: preferred, colored
Changes since revision 1.86.2.4: +2 -1
lines
Update marc-pcmcia branch from trunk.
Revision 1.99: download - view: text, markup, annotated - select for diffs
Fri Sep 12 05:22:55 1997 UTC (27 years, 7 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.98: preferred, colored
Changes since revision 1.98: +2 -1
lines
Add fe0.
Revision 1.86.2.4: download - view: text, markup, annotated - select for diffs
Mon Sep 1 20:10:00 1997 UTC (27 years, 7 months ago) by thorpej
Branches: marc-pcmcia
Diff to: previous 1.86.2.3: preferred, colored; branchpoint 1.86: preferred, colored
Changes since revision 1.86.2.3: +4 -3
lines
Update marc-pcmcia branch from trunk.
Revision 1.98: download - view: text, markup, annotated - select for diffs
Thu Aug 28 08:00:12 1997 UTC (27 years, 8 months ago) by mikel
Branches: MAIN
CVS tags: thorpej-signal-base,
thorpej-signal
Diff to: previous 1.97: preferred, colored
Changes since revision 1.97: +4 -3
lines
add KMEMSTATS and sync GENERIC, INSTALL, and DISKLESS
Revision 1.86.2.3: download - view: text, markup, annotated - select for diffs
Wed Aug 27 22:24:13 1997 UTC (27 years, 8 months ago) by thorpej
Branches: marc-pcmcia
Diff to: previous 1.86.2.2: preferred, colored; branchpoint 1.86: preferred, colored
Changes since revision 1.86.2.2: +12 -10
lines
Update marc-pcmcia branch from trunk.
Revision 1.97: download - view: text, markup, annotated - select for diffs
Wed Aug 27 11:23:43 1997 UTC (27 years, 8 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +3 -1
lines
Merge scsipi branch in the mainline. This add support for ATAPI devices
(currently only CD-ROM drives on i386). The sys/dev/scsipi system provides 2
busses to which devices can attach (scsibus and atapibus). This needed to
change some include files and structure names in the low level scsi drivers.
Revision 1.82.2.6: download - view: text, markup, annotated - select for diffs
Wed Aug 27 08:10:37 1997 UTC (27 years, 8 months ago) by bouyer
Branches: bouyer-scsipi
Diff to: previous 1.82.2.5: preferred, colored; next MAIN 1.83: preferred, colored
Changes since revision 1.82.2.5: +8 -8
lines
Sync with trunk.
Revision 1.96: download - view: text, markup, annotated - select for diffs
Tue Aug 26 19:26:38 1997 UTC (27 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.95: preferred, colored
Changes since revision 1.95: +7 -7
lines
XXX Add a drq2 locator for the ISA bus. Many sound cards need
two DMA channels to do e.g. full-duplex. This allows
a way of specifying the second channel in a sane way.
THIS IS TEMPORARY. The drq2 locator will go away when
the locator system has been changed to allow multiple
values per locator.
Revision 1.95: download - view: text, markup, annotated - select for diffs
Tue Aug 26 18:39:02 1997 UTC (27 years, 8 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.94: preferred, colored
Changes since revision 1.94: +2 -2
lines
Activate SCSIVERBOSE by default.
Revision 1.82.2.5: download - view: text, markup, annotated - select for diffs
Tue Aug 26 15:20:26 1997 UTC (27 years, 8 months ago) by bouyer
Branches: bouyer-scsipi
Diff to: previous 1.82.2.4: preferred, colored
Changes since revision 1.82.2.4: +11 -3
lines
Update from trunk.
Revision 1.94: download - view: text, markup, annotated - select for diffs
Sat Aug 23 14:25:55 1997 UTC (27 years, 8 months ago) by drochner
Branches: MAIN
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +4 -4
lines
Update prototype options for serial console / KGDB for new reality.
"option\t" -> "option \t", as wished by Bernd Ernesti.
Revision 1.86.2.2: download - view: text, markup, annotated - select for diffs
Sat Aug 23 07:08:49 1997 UTC (27 years, 8 months ago) by thorpej
Branches: marc-pcmcia
Diff to: previous 1.86.2.1: preferred, colored; branchpoint 1.86: preferred, colored
Changes since revision 1.86.2.1: +19 -11
lines
Update marc-pcmcia branch from trunk.
Revision 1.93: download - view: text, markup, annotated - select for diffs
Wed Aug 20 18:40:35 1997 UTC (27 years, 8 months ago) by mjacob
Branches: MAIN
Diff to: previous 1.92: preferred, colored
Changes since revision 1.92: +2 -1
lines
add commented out reference SCSIVERBOSE option
Revision 1.92: download - view: text, markup, annotated - select for diffs
Tue Aug 19 23:49:47 1997 UTC (27 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.91: preferred, colored
Changes since revision 1.91: +6 -1
lines
Change the MI audio driver so it attaches to the MD driver in the
normal way. This requires adding a line to the config files to
get audio to work again.
Revision 1.91: download - view: text, markup, annotated - select for diffs
Fri Aug 15 21:44:31 1997 UTC (27 years, 8 months ago) by perry
Branches: MAIN
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +2 -2
lines
comment out APM -- it hurts some systems during install.
Revision 1.90: download - view: text, markup, annotated - select for diffs
Thu Aug 14 16:23:41 1997 UTC (27 years, 8 months ago) by drochner
Branches: MAIN
Diff to: previous 1.89: preferred, colored
Changes since revision 1.89: +4 -2
lines
Add prototype definitions for serial console and KGDB.
Revision 1.82.2.4: download - view: text, markup, annotated - select for diffs
Thu Aug 14 11:05:59 1997 UTC (27 years, 8 months ago) by bouyer
Branches: bouyer-scsipi
Diff to: previous 1.82.2.3: preferred, colored
Changes since revision 1.82.2.3: +9 -9
lines
Sync with trunk.
Revision 1.89: download - view: text, markup, annotated - select for diffs
Sun Aug 3 21:59:11 1997 UTC (27 years, 8 months ago) by perry
Branches: MAIN
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +2 -1
lines
Add (commented out) COM_HAYESP option, per pr-2189 from John Vinopal
Revision 1.88: download - view: text, markup, annotated - select for diffs
Sun Aug 3 05:26:35 1997 UTC (27 years, 8 months ago) by mikel
Branches: MAIN
Diff to: previous 1.87: preferred, colored
Changes since revision 1.87: +7 -9
lines
order of devices in this file is irrelevant, so move isapnp0 up with
other buses and pair isapnp devices with isa equivalents.
Revision 1.87: download - view: text, markup, annotated - select for diffs
Thu Jul 31 22:03:33 1997 UTC (27 years, 9 months ago) by matt
Branches: MAIN
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +2 -1
lines
Add lc0 entry for DEC EtherWORKS III.
Revision 1.82.2.3: download - view: text, markup, annotated - select for diffs
Wed Jul 30 16:23:09 1997 UTC (27 years, 9 months ago) by bouyer
Branches: bouyer-scsipi
Diff to: previous 1.82.2.2: preferred, colored
Changes since revision 1.82.2.2: +2 -2
lines
Sync with trunk.
Revision 1.86.2.1: download - view: text, markup, annotated - select for diffs
Wed Jul 30 07:36:07 1997 UTC (27 years, 9 months ago) by marc
Branches: marc-pcmcia
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +12 -1
lines
added pcmcia infrastructure and a few devices
Revision 1.86: download - view: text, markup, annotated - select for diffs
Mon Jul 28 22:58:21 1997 UTC (27 years, 9 months ago) by perry
Branches: MAIN
CVS tags: marc-pcmcia-bp
Branch point for: marc-pcmcia
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +2 -2
lines
comment out mcd for now -- it causes people too much trouble during installs
Revision 1.82.2.2: download - view: text, markup, annotated - select for diffs
Thu Jul 17 13:42:32 1997 UTC (27 years, 9 months ago) by bouyer
Branches: bouyer-scsipi
Diff to: previous 1.82.2.1: preferred, colored
Changes since revision 1.82.2.1: +6 -2
lines
Update from trunck.
Revision 1.85: download - view: text, markup, annotated - select for diffs
Wed Jul 16 13:40:24 1997 UTC (27 years, 9 months ago) by hpeyerl
Branches: MAIN
Diff to: previous 1.84: preferred, colored
Changes since revision 1.84: +9 -9
lines
Fix an oops on my part. I commented out some devices in my local copy
of this file.
Revision 1.84: download - view: text, markup, annotated - select for diffs
Sun Jul 13 19:33:29 1997 UTC (27 years, 9 months ago) by hpeyerl
Branches: MAIN
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +12 -9
lines
Satellite receiver driver for ISA cards from PlanetConnect by Jason and
Herb for Canada Connect Corp.
Revision 1.83: download - view: text, markup, annotated - select for diffs
Wed Jul 2 02:44:10 1997 UTC (27 years, 9 months ago) by cjs
Branches: MAIN
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +2 -2
lines
Update comments to show that ed driver on PCI works with 3c90x cards.
Revision 1.82.2.1: download - view: text, markup, annotated - select for diffs
Tue Jul 1 17:33:55 1997 UTC (27 years, 10 months ago) by bouyer
Branches: bouyer-scsipi
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +3 -1
lines
Updates for new scsipi subsystem. Actally known to work on i386 and sparc.
Revision 1.82: download - view: text, markup, annotated - select for diffs
Wed Jun 25 04:41:16 1997 UTC (27 years, 10 months ago) by mellon
Branches: MAIN
Branch point for: bouyer-scsipi
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +47 -47
lines
Adjust options statements so that if they are commented out or uncommented, it doesn't screw up indentation.
Revision 1.81: download - view: text, markup, annotated - select for diffs
Thu Jun 12 07:05:49 1997 UTC (27 years, 10 months ago) by veego
Branches: MAIN
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +3 -2
lines
Use '#options<SPACE><TAB>' for EXT2FS_SYSTEM_FLAGS and add the empty line
before '#options GATEWAY'.
Revision 1.80: download - view: text, markup, annotated - select for diffs
Wed Jun 11 21:05:41 1997 UTC (27 years, 10 months ago) by perry
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +3 -3
lines
clean up the formatting of the ext2fs lines a bit.
Revision 1.79: download - view: text, markup, annotated - select for diffs
Wed Jun 11 10:54:53 1997 UTC (27 years, 10 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +4 -2
lines
Add file-system ext2fs and related options.
Revision 1.78: download - view: text, markup, annotated - select for diffs
Thu Jun 5 02:27:44 1997 UTC (27 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +2 -1
lines
Add fxp* at pci? declarations.
Revision 1.77: download - view: text, markup, annotated - select for diffs
Mon Jun 2 00:26:49 1997 UTC (27 years, 10 months ago) by perry
Branches: MAIN
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +2 -2
lines
trivial reformat -- one space to a tab
Revision 1.76: download - view: text, markup, annotated - select for diffs
Tue May 13 22:48:33 1997 UTC (27 years, 11 months ago) by jtk
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +2 -1
lines
add pci* at pchb?
Revision 1.75: download - view: text, markup, annotated - select for diffs
Tue Apr 1 13:12:14 1997 UTC (28 years, 1 month ago) by mycroft
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +2 -2
lines
Enable wdc1 at IRQ 15.
Revision 1.74: download - view: text, markup, annotated - select for diffs
Wed Mar 26 01:16:23 1997 UTC (28 years, 1 month ago) by perry
Branches: MAIN
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +5 -2
lines
Comment out the wt driver -- its rather dangerous to ed users, as it
turns out. Also, add a comment explaining this.
Revision 1.73: download - view: text, markup, annotated - select for diffs
Thu Mar 13 04:15:24 1997 UTC (28 years, 1 month ago) by cgd
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +3 -1
lines
add entries for isp, as isp* at pci? dev ? function ?, for Qlogic ISP 10x0
PCI SCSI controllers. Also, add the attached SCSI busses.
Revision 1.71.4.1: download - view: text, markup, annotated - select for diffs
Wed Mar 12 14:34:37 1997 UTC (28 years, 1 month ago) by is
Branches: is-newarp
Diff to: previous 1.71: preferred, colored; next MAIN 1.72: preferred, colored
Changes since revision 1.71: +2 -3
lines
Merge in Changes from The Trunk.
Revision 1.72: download - view: text, markup, annotated - select for diffs
Tue Feb 18 21:07:56 1997 UTC (28 years, 2 months ago) by mrg
Branches: MAIN
CVS tags: is-newarp-before-merge
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +2 -3
lines
comment PFIL_HOOKS as it is redundant (as an option) when used with ipfilter.
Revision 1.71: download - view: text, markup, annotated - select for diffs
Fri Jan 31 01:50:48 1997 UTC (28 years, 2 months ago) by thorpej
Branches: MAIN
CVS tags: mrg-vm-swap,
is-newarp-base
Branch point for: is-newarp
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +16 -18
lines
Adopt for new file system and root spec grammar.
Revision 1.66.2.3: download - view: text, markup, annotated - select for diffs
Thu Jan 30 05:46:21 1997 UTC (28 years, 3 months ago) by thorpej
Branches: thorpej-setroot
Diff to: previous 1.66.2.2: preferred, colored; next MAIN 1.67: preferred, colored
Changes since revision 1.66.2.2: +2 -1
lines
update from trunk
Revision 1.70: download - view: text, markup, annotated - select for diffs
Wed Jan 22 23:46:59 1997 UTC (28 years, 3 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +2 -1
lines
ep* at isapnp?
Revision 1.66.2.2: download - view: text, markup, annotated - select for diffs
Sat Jan 18 04:14:42 1997 UTC (28 years, 3 months ago) by thorpej
Branches: thorpej-setroot
Diff to: previous 1.66.2.1: preferred, colored
Changes since revision 1.66.2.1: +8 -3
lines
Update from trunk.
Revision 1.69: download - view: text, markup, annotated - select for diffs
Thu Jan 16 23:30:29 1997 UTC (28 years, 3 months ago) by perry
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +2 -1
lines
added options I686_CPU (commented or uncommented) per thorpej
Revision 1.68: download - view: text, markup, annotated - select for diffs
Thu Jan 16 23:25:03 1997 UTC (28 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +6 -1
lines
Add Plug and Play devices
Revision 1.67: download - view: text, markup, annotated - select for diffs
Wed Jan 15 01:28:45 1997 UTC (28 years, 3 months ago) by perry
Branches: MAIN
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +2 -3
lines
Eliminate obsolete TIMEZONE and DST options.
Eliminate obsolete global kernel variable "struct timezone tz"
Add RTC_OFFSET option
Add global kernel variable rtc_offset, which is initialized by
RTC_OFFSET at kernel compile time.
on i386, x68k, mac68k, pc532 and arm32, RTC_OFFSET indicates how many
minutes west (east) of GMT the hardware RTC runs. Defaults to 0.
Places where tz variable was used to indicate this in the past have
been replaced with rtc_offset.
Add sysctl interface to rtc_offset.
Kill obsolete DST_* macros in sys/time.h
gettimeofday now always returns zeroed timezone if zone is requested.
settimeofday now ignores and logs attempts to set non-existant kernel
timezone.
Revision 1.66.2.1: download - view: text, markup, annotated - select for diffs
Tue Jan 14 21:25:16 1997 UTC (28 years, 3 months ago) by thorpej
Branches: thorpej-setroot
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +16 -18
lines
Snapshot of work-in-progress, committed to private branch.
These changes implement machine-independent root device and file system
selection. Notable features:
- All ports behave in a consistent manner regarding root
device selection.
- No more "options GENERIC"; all kernels have the ability
to boot with RB_ASKNAME to select root device and file system
type.
- Root file system type can be wildcarded; a machine-independent
function will try all possible file systems for the selected
root device until one succeeds.
- If the root file system fails to mount, the operator will
be given the chance to select a new root device and file
system type, rather than having the machine simply panic.
- nfs_mountroot() no longer panics if any part of the NFS
mount process fails; it now returns an error, giving the
operator a chance to recover.
- New, more consistent, config(8) grammar. The constructs:
config netbsd swap generic
config netbsd root on nfs
have been replaced with:
config netbsd root on ? type ?
config netbsd root on ? type nfs
Additionally, the operator may select or wildcard root file
system type in the kernel configuration file:
config netbsd root on cd0a type cd9660
config(8) now requires that a "root" specification be
made. "root" may be wired down or wildcarded. "swap" and
"dump" specifications are optional, and follow previous
semantics.
- config(8) has a new "file-system" keyword, used to configure
file systems into the kernel. Eventually, this will be used
to generate the default vfssw[].
- "options NFSCLIENT" is obsolete, and is replaced by
"file-system NFS". "options NFSSERVER" still exists, since
NFS server support is independent of the NFS file system
client.
- sys/arch/<foo>/<foo>/swapgeneric.c is no longer used, and
will be removed; all information is now generated by config(8).
As of this commit, all ports except arm32 have been updated to use
the new setroot(). Only SPARC, i386, and Alpha ports have been
tested at this time. Port masters should test these changes on their
ports, and report any problems back to me.
More changes are on their way, including RB_ASKNAME support in
nfs_mountroot() (to prompt for server address and path) and, potentially,
the ability to select rarp/bootparam or bootp in nfs_mountroot().
Revision 1.66: download - view: text, markup, annotated - select for diffs
Tue Jan 7 11:35:14 1997 UTC (28 years, 3 months ago) by mrg
Branches: MAIN
Branch point for: thorpej-setroot
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +3 -3
lines
use pseudo-device ipfilter, not ipl.
Revision 1.65: download - view: text, markup, annotated - select for diffs
Tue Jan 7 08:01:32 1997 UTC (28 years, 3 months ago) by veego
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +4 -1
lines
Add the pseudo-device for ipl and PFIL_HOOKS which is required for ipl.
Revision 1.64: download - view: text, markup, annotated - select for diffs
Sat Dec 7 00:26:02 1996 UTC (28 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +2 -2
lines
s/EXTMEM_SIZE/BIOSEXTMEM/
Revision 1.63: download - view: text, markup, annotated - select for diffs
Thu Nov 28 03:15:19 1996 UTC (28 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +12 -5
lines
Update for pchb and pcib drivers.
Revision 1.62: download - view: text, markup, annotated - select for diffs
Sat Nov 16 01:16:40 1996 UTC (28 years, 5 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +1 -4
lines
Move VNODEPAGER and DEVPAGER to std.i386 as well.
Revision 1.61: download - view: text, markup, annotated - select for diffs
Fri Nov 15 09:19:33 1996 UTC (28 years, 5 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +2 -6
lines
Move non-optional options to std.i386, and use that file.
Revision 1.60: download - view: text, markup, annotated - select for diffs
Wed Oct 2 23:56:43 1996 UTC (28 years, 6 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +4 -1
lines
Add examples of NTP, MROUTING, and serial console.
Revision 1.59: download - view: text, markup, annotated - select for diffs
Wed Oct 2 22:20:52 1996 UTC (28 years, 6 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +5 -1
lines
Update to current reality.
Revision 1.58: download - view: text, markup, annotated - select for diffs
Tue Sep 24 19:10:41 1996 UTC (28 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +4 -4
lines
Fix the entries for the cyclades multiport serial cards, but leave commented
out, like the other multiport cards
Revision 1.57: download - view: text, markup, annotated - select for diffs
Mon Sep 9 17:18:47 1996 UTC (28 years, 7 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +2 -2
lines
Oops; include paths are relative to $S.
Revision 1.56: download - view: text, markup, annotated - select for diffs
Mon Sep 9 16:37:08 1996 UTC (28 years, 7 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +3 -1
lines
Add a file for local additions to GENERIC.
Revision 1.55: download - view: text, markup, annotated - select for diffs
Mon Sep 9 16:30:47 1996 UTC (28 years, 7 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +5 -2
lines
Add ss, uk. Minor touchups.
Revision 1.54: download - view: text, markup, annotated - select for diffs
Sat Aug 31 20:43:56 1996 UTC (28 years, 7 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +2 -1
lines
Oops. Add patterns for PCI BusLogic cards.
Revision 1.53: download - view: text, markup, annotated - select for diffs
Sat Aug 31 20:39:17 1996 UTC (28 years, 7 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +6 -6
lines
Update for BusLogic and UltraStor changes.
Revision 1.52: download - view: text, markup, annotated - select for diffs
Mon Aug 26 23:39:57 1996 UTC (28 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +2 -1
lines
add COMPAT_12.
Revision 1.51: download - view: text, markup, annotated - select for diffs
Sun Aug 25 23:39:27 1996 UTC (28 years, 8 months ago) by jtk
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +3 -1
lines
add Advanced Power Management driver
Includes bootstrap support from FreeBSD (Tatsumi HOSOKAWA and <ukai>)
Revision 1.48.2.1: download - view: text, markup, annotated - select for diffs
Sun Aug 25 17:22:16 1996 UTC (28 years, 8 months ago) by thorpej
Branches: netbsd-1-2
CVS tags: netbsd-1-2-RELEASE,
netbsd-1-2-PATCH001
Diff to: previous 1.48: preferred, colored; next MAIN 1.49: preferred, colored
Changes since revision 1.48: +4 -3
lines
Fix support for the Adaptec 284x VLbus SCSI cards, massaged for the
NetBSD-1.2 release branch by Noriyuki Soda <soda@sra.co.jp>.
(`sys/arch/i386/isa/ahc_isa.c' tagged separately.)
Revision 1.50: download - view: text, markup, annotated - select for diffs
Mon Aug 5 21:15:58 1996 UTC (28 years, 8 months ago) by soda
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +2 -1
lines
adding AHA-284x VL front-end to ahc driver by Jason Thorpe.
Revision 1.49: download - view: text, markup, annotated - select for diffs
Sun Jul 14 00:10:11 1996 UTC (28 years, 9 months ago) by explorer
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +3 -3
lines
Suggestion from Noriyuki Soda <soda@sra.co.jp> to update the comments for
these files, since the driver was updated to deal with more devices.
Revision 1.48: download - view: text, markup, annotated - select for diffs
Mon May 20 18:17:23 1996 UTC (28 years, 11 months ago) by mrg
Branches: MAIN
CVS tags: netbsd-1-2-base,
netbsd-1-2-BETA
Branch point for: netbsd-1-2
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +2 -2
lines
document PORTAL
Revision 1.47: download - view: text, markup, annotated - select for diffs
Mon May 20 03:32:16 1996 UTC (28 years, 11 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +2 -3
lines
Remove references to the "ahe" device, and add ahc at eisa. Lingering
junk pointed out by Greg Earle <earle@isolar.Tujunga.CA.US>.
Revision 1.46: download - view: text, markup, annotated - select for diffs
Mon May 20 00:50:33 1996 UTC (28 years, 11 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +2 -1
lines
Add the DEFEA EISA FDDI controller to the catch-all kernels.
Revision 1.45: download - view: text, markup, annotated - select for diffs
Tue May 7 00:59:53 1996 UTC (28 years, 11 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +2 -1
lines
Add the DEC DEFPA FDDI interface to the catch-all kernel configs.
Revision 1.44: download - view: text, markup, annotated - select for diffs
Thu Apr 25 20:14:13 1996 UTC (29 years ago) by scottr
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +3 -2
lines
Add ie1, appropriate for EtherExpress support
Revision 1.43: download - view: text, markup, annotated - select for diffs
Thu Apr 25 18:59:14 1996 UTC (29 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -1
lines
Document the VM86 option by adding it to the GENERIC* kernel config
files. Note, the option is disabled by default (comment out). This
is meant as an example for others.
Revision 1.42: download - view: text, markup, annotated - select for diffs
Thu Apr 25 02:23:38 1996 UTC (29 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +2 -1
lines
Break up the ep driver into isa, eisa, and pci front-ends and a
bus-independent core driver. Tested on all three bus types, including
an isa 3c509 masquerading as an eisa device (use ep* at eisa? slot ? in
your kernel config file to catch this one).
XXX Driver still needs to be converted to <machine/bus.h>
Revision 1.41: download - view: text, markup, annotated - select for diffs
Sun Apr 21 20:55:28 1996 UTC (29 years ago) by ghudson
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +2 -2
lines
aic0 belongs at IRQ 11 (the card default); the entry was apparently
changed to 12 by mistake when GENERIC was created after NetBSD 1.0.
Change confirmed by Perry and several others. Fixes PR 1878.
Revision 1.40: download - view: text, markup, annotated - select for diffs
Sat Mar 30 23:57:09 1996 UTC (29 years, 1 month ago) by perry
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +4 -1
lines
Added (commented out) line for joystick driver.
Revision 1.39: download - view: text, markup, annotated - select for diffs
Sat Mar 30 05:42:45 1996 UTC (29 years, 1 month ago) by mycroft
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +4 -1
lines
Add wds0 and wds1 to generic kernels.
Revision 1.38: download - view: text, markup, annotated - select for diffs
Mon Mar 25 05:45:18 1996 UTC (29 years, 1 month ago) by perry
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +2 -1
lines
Add COMPAT_11 option.
Revision 1.37: download - view: text, markup, annotated - select for diffs
Mon Mar 18 01:46:37 1996 UTC (29 years, 1 month ago) by jtk
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -2
lines
updated spkr attachment to use new pckbd attribute
Revision 1.36: download - view: text, markup, annotated - select for diffs
Sat Mar 16 06:09:03 1996 UTC (29 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +2 -2
lines
Change the PS/2 mouse driver to be a child of the "pckbd" attribute,
which represents the "keyboard controller". Give "pc" and "vt" drivers
the "pckbd" attribute. In pcattach() (pccons and pcvt), attach children
of the keyboard controller.
Revision 1.35: download - view: text, markup, annotated - select for diffs
Tue Mar 12 01:32:47 1996 UTC (29 years, 1 month ago) by perry
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +2 -2
lines
close prs #2076 and #2159: Install kernels have had DIAGNOSTIC and
KTRACE removed to make them fit on the floppies. All kernels have had
the comment typo "internally consistency" changed to "internal consistency".
Revision 1.34: download - view: text, markup, annotated - select for diffs
Sun Mar 10 09:03:17 1996 UTC (29 years, 1 month ago) by cgd
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -2
lines
update for new commulti->com attach interface. com ports at 'ast'
multiport cards no longer need 'flags 1', because the "don't set IEN"
requirement is communicated by the commulti_attach_args. com.c no longer
recognizes 'flags 1' at all.
Revision 1.33: download - view: text, markup, annotated - select for diffs
Thu Mar 7 00:48:36 1996 UTC (29 years, 1 month ago) by jtk
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +2 -2
lines
speaker device uses a port, so declare it as such in all the config
files
Revision 1.32: download - view: text, markup, annotated - select for diffs
Tue Mar 5 01:32:14 1996 UTC (29 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +6 -1
lines
Add a blurb about the EXTMEM_SIZE option to the example kernels, disabled
by default.
Revision 1.31: download - view: text, markup, annotated - select for diffs
Mon Mar 4 03:25:52 1996 UTC (29 years, 1 month ago) by cgd
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +6 -4
lines
Attach isa, eisa, and pci to mainbus now, rather than root. The i386
now has a single device tree (rather than a forest). Also, attach
EISA only if it's present, and attach in order: PCI, EISA, ISA (most
specific to least specific).
Revision 1.30: download - view: text, markup, annotated - select for diffs
Wed Feb 28 02:02:32 1996 UTC (29 years, 2 months ago) by cgd
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +9 -6
lines
pci devices are now specified like "foo* at pci? dev ? function ?". also,
add support for PPB's and secondary PCI busses, where appropriate.
Revision 1.29: download - view: text, markup, annotated - select for diffs
Tue Feb 27 00:06:53 1996 UTC (29 years, 2 months ago) by cgd
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +3 -2
lines
update for new EISA autoconfiguration: there can now be an eisa0 at root,
and ahb attaches to eisa, not isa. Also, ahb* at eisa?... is now supported,
so you can get all ahb's configured easily.
Revision 1.28: download - view: text, markup, annotated - select for diffs
Sat Jan 13 02:05:24 1996 UTC (29 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +3 -1
lines
Add the "ahe" driver, autoconfiguration support for the aic7xxx-based
Adaptec 2[78]4x SCSI controllers, from Michael Graff <explorer@flame.org>.
Fixes PR #1594 from Noriyuki Soda <soda@sra.co.jp> in a different way.
Revision 1.27: download - view: text, markup, annotated - select for diffs
Sun Dec 24 00:22:20 1995 UTC (29 years, 4 months ago) by neil
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -1
lines
Added ccd pseudo-device.
Revision 1.26: download - view: text, markup, annotated - select for diffs
Thu Dec 14 01:09:59 1995 UTC (29 years, 4 months ago) by tls
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +4 -4
lines
add 3C590 support to all generic and install kernels
Revision 1.25: download - view: text, markup, annotated - select for diffs
Thu Nov 30 00:58:14 1995 UTC (29 years, 5 months ago) by jtc
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +2 -1
lines
merge in changes from 1.1 release branch
Revision 1.24: download - view: text, markup, annotated - select for diffs
Fri Nov 10 19:34:54 1995 UTC (29 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +2 -1
lines
Add a config line for 3c590 ethernet cards
Revision 1.23.2.1: download - view: text, markup, annotated - select for diffs
Tue Oct 17 12:54:55 1995 UTC (29 years, 6 months ago) by tls
Branches: netbsd-1-1
CVS tags: netbsd-1-1-RELEASE,
netbsd-1-1-PATCH001
Diff to: previous 1.23: preferred, colored; next MAIN 1.24: preferred, colored
Changes since revision 1.23: +2 -1
lines
fix missing devices etc. but INSTALL still won't go on a floppy, even minus sea0... LKM or KTRACE may need to go.
Revision 1.23: download - view: text, markup, annotated - select for diffs
Tue Oct 10 01:29:15 1995 UTC (29 years, 6 months ago) by mycroft
Branches: MAIN
CVS tags: netbsd-1-1-base
Branch point for: netbsd-1-1
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +4 -1
lines
Add ahc and COMPAT_FREEBSD.
Revision 1.22: download - view: text, markup, annotated - select for diffs
Tue Oct 3 20:18:58 1995 UTC (29 years, 6 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +20 -1
lines
Undo accidental deletions in last commit.
Revision 1.21: download - view: text, markup, annotated - select for diffs
Thu Sep 14 12:46:42 1995 UTC (29 years, 7 months ago) by hpeyerl
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -21
lines
update comment to include Etherexpress.
Revision 1.20: download - view: text, markup, annotated - select for diffs
Tue Aug 22 19:43:14 1995 UTC (29 years, 8 months ago) by jtc
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +2 -2
lines
recommanded -> recommended; PR #1395
Revision 1.19: download - view: text, markup, annotated - select for diffs
Mon Jul 24 03:33:12 1995 UTC (29 years, 9 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +3 -5
lines
Remove extraneous makeoptions declarations.
Revision 1.18: download - view: text, markup, annotated - select for diffs
Wed Jul 19 19:59:00 1995 UTC (29 years, 9 months ago) by brezak
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -1
lines
GUS audio driver from John Kohl.
Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat Jun 24 20:39:40 1995 UTC (29 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +2 -2
lines
GENERIC: Add COMPAT_IBCS2 in too by default.
Makefile.`arch`: - Add -lcompat
- Change clean: target to be a double dep one,
so libraries can use the clean target too
- Add genassym to the clean targets
Revision 1.16: download - view: text, markup, annotated - select for diffs
Fri May 12 03:18:05 1995 UTC (29 years, 11 months ago) by cgd
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +5 -2
lines
Split FFS,QUOTA line, comment each individually.
Add 'options INSECURE' so that the GENERIC kernel is happy with
X's linear mapping.
Revision 1.15: download - view: text, markup, annotated - select for diffs
Mon Apr 17 22:44:38 1995 UTC (30 years ago) by brezak
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +4 -1
lines
Add config for PSS
Revision 1.14: download - view: text, markup, annotated - select for diffs
Mon Apr 17 07:23:34 1995 UTC (30 years ago) by cgd
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +3 -1
lines
use CC="cc -Werror" for cc
Revision 1.13: download - view: text, markup, annotated - select for diffs
Sun Mar 5 22:32:54 1995 UTC (30 years, 1 month ago) by mycroft
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +3 -1
lines
Update to reflect the state of the world.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Tue Feb 21 01:43:02 1995 UTC (30 years, 2 months ago) by brezak
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +3 -1
lines
New audio subsystem
Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Jan 25 04:58:18 1995 UTC (30 years, 3 months ago) by cgd
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -2
lines
vn -> vnd renaming, for consistency.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Mon Jan 16 12:23:50 1995 UTC (30 years, 3 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +4 -4
lines
More updates to EISA stuff.
Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Jan 16 12:00:50 1995 UTC (30 years, 3 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +4 -5
lines
Update EISA stuff.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Wed Jan 11 20:59:50 1995 UTC (30 years, 3 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +5 -2
lines
Add boca, makeoptions.
Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Dec 11 16:20:52 1994 UTC (30 years, 4 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -2
lines
Add `flags 1' to ast subdevices, as pointed out by John Kohl.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Fri Nov 4 07:36:45 1994 UTC (30 years, 5 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2
lines
Comment out one option that doesn't quite work at the moment.
Revision 1.5: download - view: text, markup, annotated - select for diffs
Thu Nov 3 22:18:40 1994 UTC (30 years, 5 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -2
lines
Don't allow configuration of specific PCI function numbers.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Thu Nov 3 20:12:09 1994 UTC (30 years, 5 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +7 -5
lines
Stylistic changes.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Thu Nov 3 19:09:22 1994 UTC (30 years, 5 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -2
lines
pms0 would be at irq 12 if it existed.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Thu Nov 3 18:27:13 1994 UTC (30 years, 5 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +5 -5
lines
Rearrange slightly.
Revision 1.1: download - view: text, markup, annotated - select for diffs
Thu Nov 3 18:14:50 1994 UTC (30 years, 5 months ago) by mycroft
Branches: MAIN
Make a real GENERIC config.
CVSweb <webmaster@jp.NetBSD.org>