| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Smaller script, smaller (though equivalent) output.
|
|
|
|
| |
Instead, don't run kldxref if you don't have one on your system.
|
|
|
|
| |
(with big thanks to Oliver Fromme <olli@fromme.com>)
|
| |
|
| |
|
|
|
|
| |
MFC after: 2 weeks
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
0xdeadc0de and then check for it just before memory is handed off as part
of a new request. This will catch any post free/pre alloc modification of
memory, as well as introduce errors for anything that tries to dereference
it as a pointer.
This code takes the form of special init, fini, ctor and dtor routines that
are specificly used by malloc. It is in a seperate file because additional
debugging aids will want to live here as well.
|
|
|
|
| |
from releng4 and are not able to properly read make(1) output.
|
| |
|
|
|
|
| |
Approved by: des
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
ever connect a SCSI Cdrom/Tape/Jukebox/Scanner/Printer/kitty-litter-scooper
to your high-end RAID controller. The interface to the arrays is still
via the block interface; this merely provides a way to circumvent the
RAID functionality and access the SCSI buses directly. Note that for
somewhat obvious reasons, hard drives are not exposed to the da driver
through this interface, though you can still talk to them via the pass
driver. Be the first on your block to low-level format unsuspecting
drives that are part of an array!
To enable this, add the 'aacp' device to your kernel config.
MFC after: 3 days
|
| |
|
|
|
|
|
|
|
|
|
|
| |
to build kernel and kernel modules so stop supporting them in
bsd.subdir.mk and reimplement them in kern.post.mk and kmod.mk
as special versions of the install and reinstall targets, and
only define them if DEBUG is also defined (when debug versions
are really built).
Prompted by: bde
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Ensure all standard targets honor SUBDIR. Now `make obj' descends into
SUBDIRs even if NOOBJ is set (some descendants may still need an object
directory, but we do not have such precedents). Now `make install' in
non-bsd.subdir.mk makefiles runs `afterinstall' target _after_ `install'
in SUBDIRs, like we do in bsd.subdir.mk. Nothing depended on the wrong
order anyway.
Fixed `distribute' targets (except for the bsd.subdir.mk version) so that
they do not depend on _SUBDIR; `distribute' calls `install' which already
depends on _SUBDIR.
De-standardize `maninstall', otherwise manpages would be installed twice.
(To be revised later.)
|
| |
|
| |
|
| |
|
|
|
|
| |
time to fix them.
|
|
|
|
|
|
| |
into if_txreg.h.
MFC after: 1 week
|
| |
|
|
|
|
| |
also tracks sxlocks, etc.
|
|
|
|
|
|
| |
- Add stubs for EISA and SBUS cards.
(VME, FutureBUS, and TurboChannel stubs not provided.)
- Add infrastructure to build driver and bus front-end modules.
|
|
|
|
| |
Submitted by: Myson , Taiwan
|
|
|
|
| |
in-line macros. pal.s remains however for use by Compaq 'ccc' some day.
|
|
|
|
| |
Submitted by: Hiten Pandya <hiten@uk.FreeBSD.org>
|
| |
|
| |
|
|
|
|
|
|
|
| |
see http://people.freebsd.org/~scottl/udf
MFC after: when asmodai gets the backport done
Prodded by: phk asmodai des
|
|
|
|
| |
work on real hardware. (SKI used to break the sapic probes)
|
|
|
|
| |
Submitted by: Andrew M. Miklic <AndrwMklc@cs.com>
|
| |
|
| |
|
|
|
|
|
| |
dynamically, as this will only happen if you kldload digi after the
machine has booted or explicitly mention them in loader.conf.
|
|
|
|
|
|
|
|
|
|
|
|
| |
drivers with MI portions into the MI notes. Device drivers such as busses
like the isa, eisa, and pci devices are now in the MD NOTES section even
though they have some MI code. This will ensure that only the proper bits
of device drivers will be included due to the optional bits dependent on
the busses in sys/conf/files. This commit also takes the stance that since
hints are ignored in NOTES anyways, it is ok to include hints for a bus
that may not be present.
Advice from: bde
|
| |
|
|
|
|
|
|
|
|
|
| |
behavior by default. Also, change the options line to reflect this.
If there are no problems reported this will become the only behavior and the
knob will be removed in a month or so.
Demanded by: obrien
|
| |
|
| |
|
|
|
|
| |
cross compiler names.
|
| |
|
|
|
|
| |
Pointy hat to: tmm
|
| |
|
|
|
|
|
|
| |
Add an option for enabling f/w crashdumps for the isp driver.
MFC after: 1 week
|
|
|
|
|
|
| |
time-of-day clocks, ported from NetBSD. The front-ends are expected
to be at least partly machine-dependent; the sparc64 EBus and SBus
ones will be commited to MD directories for now (in a subsequent commit).
|
|
|
|
|
|
|
|
|
|
| |
a set of helper routines to deal with real-time clocks. The generic
functions access the clock diver using a kobj interface. This is intended
to reduce code reduplication and make it easy to support more than one
clock model on a single architecture.
This code is currently only used on sparc64, but it is planned to convert
the code of the other architectures to it later.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Unfortunately, this level doesn't really provide enough granularity. We
probably need several MI NOTES type files for things that are shared by
several architectures but not by all. For example, the PCI options could
live in a NOTES.pci.
This also updates the Makefile for i386 to generate LINT. The only changes
in the generated LINT are the order of various options.
Suggestions for improvement welcome.
|
|
|
|
|
|
| |
TIOCCONS must be able to VOP_ACCESS() /dev/console to succeed.
Obtained from: OpenBSD
|