]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
20 years agogetgrent() and friends should set errno if there is an error.
kientzle [Mon, 17 May 2004 22:15:49 +0000 (22:15 +0000)]
getgrent() and friends should set errno if there is an error.
Also, clarify the manpage description of when errno is set and
explain that clients should set errno=0 first if they want useful
error information.

20 years agoTurn on modules for amd64. Fear.
peter [Mon, 17 May 2004 22:13:14 +0000 (22:13 +0000)]
Turn on modules for amd64.  Fear.

20 years agoAdd rman_get_device(9) to SYNOPSIS, .Nm and MLINK it to
hmp [Mon, 17 May 2004 21:25:02 +0000 (21:25 +0000)]
Add rman_get_device(9) to SYNOPSIS, .Nm and MLINK it to
rman(9).

20 years agoSince we go to the trouble of compiling the kobj ops table for each class,
peter [Mon, 17 May 2004 21:24:39 +0000 (21:24 +0000)]
Since we go to the trouble of compiling the kobj ops table for each class,
and cannot handle it going away, add an explicit reference to the kobj
class inside each linker class.  Without this, a class with no modules
loaded will sit with an idle refcount of 0.  Loading and unloading
a module with it causes a 0->1->0 transition which frees the ops table
and causes subsequent loads using that class to explode.  Normally, the
"kernel" module will remain forever loaded and prevent this happening, but
if you have more than one linker class active, only one owns the "kernel".

This finishes making modules work for kldload(8) on amd64.

20 years agoMarkup nits.
ru [Mon, 17 May 2004 21:24:06 +0000 (21:24 +0000)]
Markup nits.

20 years agoClean up the code some more. Unify the text/data (progbits) and bss
peter [Mon, 17 May 2004 21:20:23 +0000 (21:20 +0000)]
Clean up the code some more.  Unify the text/data (progbits) and bss
(nobits) tables to simplify some code.  Try and shorten some of the very
wide lines.  Somewhere along the way, I think I fixed the memory
corruption that caused panics after going multiuser.

20 years agoDeal with REL records that have the addend embedded variable sized targets
peter [Mon, 17 May 2004 21:16:49 +0000 (21:16 +0000)]
Deal with REL records that have the addend embedded variable sized targets
rather than the RELA table.  I dont know if bintutils will ever generate
REL records, but just in case.....

20 years agoCorrect existing usage lines, add two more.
ru [Mon, 17 May 2004 21:11:35 +0000 (21:11 +0000)]
Correct existing usage lines, add two more.

20 years agoMarkup nits.
ru [Mon, 17 May 2004 21:05:39 +0000 (21:05 +0000)]
Markup nits.

20 years agoMarkup and grammar nits.
ru [Mon, 17 May 2004 20:58:42 +0000 (20:58 +0000)]
Markup and grammar nits.

20 years agoMarkup overhaul.
ru [Mon, 17 May 2004 20:45:21 +0000 (20:45 +0000)]
Markup overhaul.

20 years agoNow that I learned about how all this is working together, quickly
joerg [Mon, 17 May 2004 20:17:39 +0000 (20:17 +0000)]
Now that I learned about how all this is working together, quickly
document it for anyone else who might be interested in it.

MFC after: 2 weeks

20 years agoSwitch from using the vnode interlock to a private mutex in fifo_open()
truckman [Mon, 17 May 2004 20:16:40 +0000 (20:16 +0000)]
Switch from using the vnode interlock to a private mutex in fifo_open()
to avoid lock order problems when manipulating the sockets associated
with the fifo.

Minor optimization of a couple of calls to fifo_cleanup() from
fifo_open().

20 years agoNG_ONE2MANY_XMIT_ALL algorithm should also be listed here.
pjd [Mon, 17 May 2004 19:35:40 +0000 (19:35 +0000)]
NG_ONE2MANY_XMIT_ALL algorithm should also be listed here.

Submitted by: Michel Lavonds <fox@vader.aacc.cc.md.us>
Approved by: archie

20 years agoFix my own style(9) bugs:
joerg [Mon, 17 May 2004 19:19:08 +0000 (19:19 +0000)]
Fix my own style(9) bugs:

. forward declare all static functions
. add a couple of redundant parens in return statements where they've
  been missing
. remove the space after exit since it's a function

20 years agoFix various style(9) bugs. This includes the removal of wrong
joerg [Mon, 17 May 2004 18:55:45 +0000 (18:55 +0000)]
Fix various style(9) bugs.  This includes the removal of wrong
reimplementations of enodev() (for the smbread() and smbwrite()
functions), as well as fixing various errno values to conform to
errno(3).

Bruce also points out that a number of the pointer == NULL tests
are probably nonsense because the respective checks are already
done at upper layers.

(Mostly) submitted by: bde

20 years agoFix typo in comment. While here, end the sentence with a period and
marcel [Mon, 17 May 2004 18:36:14 +0000 (18:36 +0000)]
Fix typo in comment. While here, end the sentence with a period and
remove the empty line between the fdc and sio devices. The empty
line suggests that the comment applies to fdc only while it applies
to all following devices and options.

Typo spotted by: ru@

20 years agoSet errno to 0 before calling getpwuid/getgrgid, so that error
kientzle [Mon, 17 May 2004 18:29:12 +0000 (18:29 +0000)]
Set errno to 0 before calling getpwuid/getgrgid, so that error
messages will be displayed only when there is, in fact, an error.

20 years agoPOSIX prohibits any library function from setting errno to 0.
kientzle [Mon, 17 May 2004 18:27:05 +0000 (18:27 +0000)]
POSIX prohibits any library function from setting errno to 0.
Correct my previous commit and add a comment to the manpage
indicating that the user must set errno to 0 if they wish to
distinguish "no such user" from "error".

Pointed out by: Jacques Vidrine (nectar@)

20 years agoMinor language fixes.
yar [Mon, 17 May 2004 17:55:19 +0000 (17:55 +0000)]
Minor language fixes.

20 years agoRip out the too verbose "spurious interrupt" printf's, they dont serve
sos [Mon, 17 May 2004 17:53:12 +0000 (17:53 +0000)]
Rip out the too verbose "spurious interrupt" printf's, they dont serve
a purpose any longer.

20 years agoNew release notes:
yar [Mon, 17 May 2004 17:43:40 +0000 (17:43 +0000)]
New release notes:
cron(8) -j and -J options.

20 years agoTurn SCSI pre-fetch ON. This is mainly for 64XX and 64X based
ps [Mon, 17 May 2004 17:27:38 +0000 (17:27 +0000)]
Turn SCSI pre-fetch ON.  This is mainly for 64XX and 64X based
controllers and allows the controller to prefetch 1-2k on certain
PCI memory reads to the host.  The spec says this should only be
used for IA32 based systems.

Informed of feature by: John Cagle <first.last@hp.com>

20 years agoUndid scottl's recent changes.
vkashyap [Mon, 17 May 2004 17:16:58 +0000 (17:16 +0000)]
Undid scottl's recent changes.

20 years agoAllow buildworld and friends to complete when make(1) is called
ru [Mon, 17 May 2004 16:19:51 +0000 (16:19 +0000)]
Allow buildworld and friends to complete when make(1) is called
with some debug flags (-d).

Noticed by: Gleb Smirnoff

20 years agoAdd Cronyx Tau-PCI sync WAN adapters family entry.
rik [Mon, 17 May 2004 14:42:59 +0000 (14:42 +0000)]
Add Cronyx Tau-PCI sync WAN adapters family entry.

20 years agoSpell Cronyx Tau and Sigma families correctly.
rik [Mon, 17 May 2004 14:35:32 +0000 (14:35 +0000)]
Spell Cronyx Tau and Sigma families correctly.

MFC after: 3 days

20 years agoConnect Cronyx Tau-PCI to the system.
rik [Mon, 17 May 2004 14:24:52 +0000 (14:24 +0000)]
Connect Cronyx Tau-PCI to the system.

20 years agoUpdate man page date for yesterday's change.
archie [Mon, 17 May 2004 14:21:00 +0000 (14:21 +0000)]
Update man page date for yesterday's change.

20 years agoAdd description of Cronyx Omega2-PCI (8x port serial adapter).
rik [Mon, 17 May 2004 12:57:30 +0000 (12:57 +0000)]
Add description of Cronyx Omega2-PCI (8x port serial adapter).

20 years agoUse conversion state objects to store the accumulated wide character,
tjr [Mon, 17 May 2004 12:32:40 +0000 (12:32 +0000)]
Use conversion state objects to store the accumulated wide character,
low bound, and the number of bytes remaining instead of storing the
raw byte sequence and deriving them every time mbrtowc() is called.
This is much faster -- about twice as fast in some crude benchmarks.

20 years agoUse a simpler and faster buffering scheme for partial multibyte characters.
tjr [Mon, 17 May 2004 11:16:14 +0000 (11:16 +0000)]
Use a simpler and faster buffering scheme for partial multibyte characters.

20 years agoWire smbmsg(8) into the build.
joerg [Mon, 17 May 2004 10:57:03 +0000 (10:57 +0000)]
Wire smbmsg(8) into the build.

20 years agoThis commit was generated by cvs2svn to compensate for changes in r129330,
joerg [Mon, 17 May 2004 10:56:05 +0000 (10:56 +0000)]
This commit was generated by cvs2svn to compensate for changes in r129330,
which included commits to RCS files with non-trunk default branches.

20 years agoThis is smbmsg(8), a small utility to send/receive SMBus messages.
joerg [Mon, 17 May 2004 10:56:05 +0000 (10:56 +0000)]
This is smbmsg(8), a small utility to send/receive SMBus messages.

Also included is a `bus-probe' modus of operation to help scanning
an I2C bus.

20 years agoUnbreak the fdc module build after the repocopy of sys/isa/fd.c to
roam [Mon, 17 May 2004 10:48:42 +0000 (10:48 +0000)]
Unbreak the fdc module build after the repocopy of sys/isa/fd.c to
sys/dev/fdc/fdc.c.

20 years agoAssorted markup, grammar, and spelling fixes.
ru [Mon, 17 May 2004 08:35:43 +0000 (08:35 +0000)]
Assorted markup, grammar, and spelling fixes.

20 years agoReapply local changes that got simply axed by the latest KAME merge.
ru [Mon, 17 May 2004 08:25:15 +0000 (08:25 +0000)]
Reapply local changes that got simply axed by the latest KAME merge.
Fixed some more markup.

20 years agoConnect Cronyx Tau-PCI to the system.
rik [Mon, 17 May 2004 08:15:59 +0000 (08:15 +0000)]
Connect Cronyx Tau-PCI to the system.

20 years agoSpeed up safe_fprintf by copying to a temp buffer, then writing
kientzle [Mon, 17 May 2004 07:35:52 +0000 (07:35 +0000)]
Speed up safe_fprintf by copying to a temp buffer, then writing
blocks at a time, rather than using putc().

20 years agoUnbreak build due to previous commit: now that elf_reloc_internal()
marcel [Mon, 17 May 2004 07:11:37 +0000 (07:11 +0000)]
Unbreak build due to previous commit: now that elf_reloc_internal()
gets the relocation base passed in relocbase, we cannot declare a
local variable with the same name. Assume the argument holds the
same value as the local variable did...

20 years agoAdded -l to usage().
ru [Mon, 17 May 2004 07:07:20 +0000 (07:07 +0000)]
Added -l to usage().

20 years agofilter out the fdc(4) and sio(4) devices and corresponding options.
marcel [Mon, 17 May 2004 07:03:01 +0000 (07:03 +0000)]
filter out the fdc(4) and sio(4) devices and corresponding options.
Note that cy(4) uses COM_MULTIPORT, so we need to keep that option.

20 years agoo De-support fdc(4). No ia64 has ever been made with PC floppy and
marcel [Mon, 17 May 2004 06:51:19 +0000 (06:51 +0000)]
o  De-support fdc(4). No ia64 has ever been made with PC floppy and
   the likelyhood of one ever being made is nil.
o  While here, de-support sio(4).

20 years agoIf getpwent/getpwuid/getpwnam return NULL, they must also set errno.
kientzle [Mon, 17 May 2004 06:17:59 +0000 (06:17 +0000)]
If getpwent/getpwuid/getpwnam return NULL, they must also set errno.

20 years agoMove fdc from isa/fd.c to dev/fdc/fdc.c. The old files were
imp [Mon, 17 May 2004 05:46:16 +0000 (05:46 +0000)]
Move fdc from isa/fd.c to dev/fdc/fdc.c.  The old files were
repocopied.  Soon there will be additional bus attachments and
specialization for isa, acpi and pccard (and maybe pc98's cbus).

This was approved by nate, joerg and myself.  bde dissented on the new
location, but appeared to be OK after some discussion.

20 years agoPropagate struct bsdtar down into a lot more places.
kientzle [Mon, 17 May 2004 05:44:53 +0000 (05:44 +0000)]
Propagate struct bsdtar down into a lot more places.
Move global progname variable into struct bsdtar.

20 years agoUpdate to reflect new location in the tree. This has been repo copied
imp [Mon, 17 May 2004 05:42:04 +0000 (05:42 +0000)]
Update to reflect new location in the tree.  This has been repo copied
from sys/isa/fd.c in preparation for specialization of attachments for
different busses.

20 years agoRefactor name caching to use a common piece of code for uname_cache and
kientzle [Mon, 17 May 2004 05:02:39 +0000 (05:02 +0000)]
Refactor name caching to use a common piece of code for uname_cache and
gname_cache.  Cache negative lookups to dramatically improve performance
building archives containing nonexistent uid/gid.

20 years agoMake symlink protection a bit more useful:
kientzle [Mon, 17 May 2004 03:33:06 +0000 (03:33 +0000)]
Make symlink protection a bit more useful:
  * Remove terminal symlinks so they can be replaced.
  * If -U, remove intermediate symlinks as well
  * Otherwise, refuse the extraction

20 years agoUpdate manpage to track new security features.
kientzle [Mon, 17 May 2004 03:19:31 +0000 (03:19 +0000)]
Update manpage to track new security features.

20 years agoRemove some kludges designed to ensure that the compiler didn't round
das [Mon, 17 May 2004 01:04:37 +0000 (01:04 +0000)]
Remove some kludges designed to ensure that the compiler didn't round
constants the wrong way on the VAX.  Instead, use C99 hexadecimal
floating-point constants, which are guaranteed to be exact on binary
IEEE machines.  (The correct hexadecimal values were already provided
in the source, but not used.)  Also, convert the constants to
lowercase to work around a gcc bug that wasn't fixed until gcc 3.4.0.

Prompted by: stefanf

20 years agoOops, use the generic ELF_ST_BIND() macro instead of ELF64_ST_BIND.
peter [Mon, 17 May 2004 00:51:34 +0000 (00:51 +0000)]
Oops, use the generic ELF_ST_BIND() macro instead of ELF64_ST_BIND.

Submitted by:  marks

20 years agoMarkup fixes.
ru [Sun, 16 May 2004 22:51:36 +0000 (22:51 +0000)]
Markup fixes.

20 years agoCheckpoint some of what I was starting to tinker with for having some
peter [Sun, 16 May 2004 22:43:57 +0000 (22:43 +0000)]
Checkpoint some of what I was starting to tinker with for having some
different context support for 32 vs 64 bit processes.  This simply omits
the save/restore of the segment selector registers for non 32 bit
processes.  This avoids the rdmsr/rwmsr juggling when restoring %gs
clobbers the kernel msr that holds the gsbase.

However, I suspect it might be better to conditionally do this at
user<->kernel transition where we wouldn't need to do the juggling in the
first place.  Or have per-thread extended context save/restore hooks.

20 years agoDisable ndis module on amd64. It doesn't compile. For example,
peter [Sun, 16 May 2004 22:24:57 +0000 (22:24 +0000)]
Disable ndis module on amd64.  It doesn't compile.  For example,
hal_raise_irql(void) doesn't take an argument, but it is called with one.
eg: irql = FASTCALL1(hal_raise_irql, DISPATCH_LEVEL);
This is hidden by the macros on i386, but becomes a compile error on amd64
since the arguments are actually checked.

20 years agoMarkup fixes.
ru [Sun, 16 May 2004 22:12:12 +0000 (22:12 +0000)]
Markup fixes.

20 years agoMarkup nit.
ru [Sun, 16 May 2004 22:11:56 +0000 (22:11 +0000)]
Markup nit.

20 years agoKill the LAZYPMAP ifdefs. While they worked, they didn't do anything
peter [Sun, 16 May 2004 22:11:50 +0000 (22:11 +0000)]
Kill the LAZYPMAP ifdefs.  While they worked, they didn't do anything
to help the AMD cpus (which have a hardware tlb flush filter).  I held
off to see what the 64 bit Intel cpus did, but it doesn't seem to help
much there either.  Oh well, store it in the Attic.

20 years agoThere's no such beast like AF_INET4, even when powered by whiskey.
ru [Sun, 16 May 2004 22:11:40 +0000 (22:11 +0000)]
There's no such beast like AF_INET4, even when powered by whiskey.

20 years agoBump document date for the latest change.
ru [Sun, 16 May 2004 22:11:22 +0000 (22:11 +0000)]
Bump document date for the latest change.
Minor markup tweaks.

20 years agoRemove spurious semicolons. Outside of functions they are actually errors but
stefanf [Sun, 16 May 2004 22:08:17 +0000 (22:08 +0000)]
Remove spurious semicolons.  Outside of functions they are actually errors but
GCC doesn't warn about them without -pedantic.

Approved by: das (mentor)
PR: 56649
Reviewed by: md5

20 years agoRemove myself from da(4). MIHIRA Sanpei Yoshiro will be taking over quirk
njl [Sun, 16 May 2004 22:05:25 +0000 (22:05 +0000)]
Remove myself from da(4).  MIHIRA Sanpei Yoshiro will be taking over quirk
maintenance given his work on USB.  Also, the root cause of spamming da(4)
with NO_6_BYTE quirks was fixed last year and the extraneous quirks have
been removed.  Please coordinate future quirk issues with sanpei@

20 years agoMarkup fixes.
ru [Sun, 16 May 2004 21:52:48 +0000 (21:52 +0000)]
Markup fixes.

20 years agoReally add -l to the usage output.
ru [Sun, 16 May 2004 21:49:23 +0000 (21:49 +0000)]
Really add -l to the usage output.

20 years agoAssorted markup fixes.
ru [Sun, 16 May 2004 21:35:05 +0000 (21:35 +0000)]
Assorted markup fixes.

20 years agoPunctuation.
ru [Sun, 16 May 2004 21:34:49 +0000 (21:34 +0000)]
Punctuation.

20 years agoFixed spelling of the document date.
ru [Sun, 16 May 2004 21:34:31 +0000 (21:34 +0000)]
Fixed spelling of the document date.

20 years agoBump document date for the latest functional change.
ru [Sun, 16 May 2004 21:34:15 +0000 (21:34 +0000)]
Bump document date for the latest functional change.
Minor markup tweaks.

20 years agoDESCRIPTION was not updated for the new SYNOPSIS.
ru [Sun, 16 May 2004 21:33:48 +0000 (21:33 +0000)]
DESCRIPTION was not updated for the new SYNOPSIS.

20 years agoConverge some more with i386.
peter [Sun, 16 May 2004 21:27:29 +0000 (21:27 +0000)]
Converge some more with i386.

20 years agoRemove "register_t eflags; eflags = read_eflags();" because 1) it wasn't
peter [Sun, 16 May 2004 21:22:45 +0000 (21:22 +0000)]
Remove "register_t eflags; eflags = read_eflags();" because 1) it wasn't
subsequently used in the code, and 2) it doesn't compile on !i386.

20 years agoAnother candidate that didn't use copyin/copyout for user<->kernel
joerg [Sun, 16 May 2004 21:19:59 +0000 (21:19 +0000)]
Another candidate that didn't use copyin/copyout for user<->kernel
transfers.

MFC after: 1 month

20 years agoYou wouldn't believe a driver could survive doing userland IO without
joerg [Sun, 16 May 2004 21:18:45 +0000 (21:18 +0000)]
You wouldn't believe a driver could survive doing userland IO without
properly using copyin/copyout for more than 5 years?  This one did. :-)

Properly encapsulate all user<->kernel data transfers using copy{in,out}.

MFC after: 1 month

20 years agoAfter successfully attaching an iicbus instance, instead of using a
joerg [Sun, 16 May 2004 21:11:46 +0000 (21:11 +0000)]
After successfully attaching an iicbus instance, instead of using a
NULL name in device_add_child(), explicitly name all of our known
child drivers in order to give them a chance to attach to us.
Otherwise, only the first one present would be probed and attached.

Reviewed by: nsouch
MFC after: 1 month

20 years agoMFi386: add rue and twa
peter [Sun, 16 May 2004 20:57:01 +0000 (20:57 +0000)]
MFi386: add rue and twa

20 years agoMFi386: avoid partial register references, for what its worth.
peter [Sun, 16 May 2004 20:46:13 +0000 (20:46 +0000)]
MFi386: avoid partial register references, for what its worth.

20 years agoFor consistency with i386, have pmap_kenter_temporary() take a vm_paddr_t
peter [Sun, 16 May 2004 20:44:41 +0000 (20:44 +0000)]
For consistency with i386, have pmap_kenter_temporary() take a vm_paddr_t
argument.  It is actually the same type on amd64 (vm_paddr_t = vm_offset_t)
but this reduces the i386<->amd64 diffs a little.

20 years agoAdded -v to usage().
ru [Sun, 16 May 2004 20:41:11 +0000 (20:41 +0000)]
Added -v to usage().

20 years agoMFi386: numerous interrupt and acpi updates
peter [Sun, 16 May 2004 20:30:47 +0000 (20:30 +0000)]
MFi386: numerous interrupt and acpi updates

20 years agoEnable first part of kld's on amd64. This is known to not work right
peter [Sun, 16 May 2004 20:11:38 +0000 (20:11 +0000)]
Enable first part of kld's on amd64.  This is known to not work right
yet, but building kld's is OK now and they can be loaded by kldload(2).
(but the machine will likely crash soon afterwards, a "minor" problem :-)

Brought to you by:  my injured knee (from moving)

20 years agoMake a small revision to the api between the elf linker core and the
peter [Sun, 16 May 2004 20:00:28 +0000 (20:00 +0000)]
Make a small revision to the api between the elf linker core and the
elf_reloc() backends for two reasons.  First, to support the possibility
of there being two elf linkers in the kernel (eg: amd64), and second, to
pass the relocbase explicitly (for relocating .o format kld files).

20 years agoAllow ng_ether "lower" and "orphans" hooks to be connected at the same time.
archie [Sun, 16 May 2004 19:31:35 +0000 (19:31 +0000)]
Allow ng_ether "lower" and "orphans" hooks to be connected at the same time.

Reviewed by: julian
PR: kern/63317

20 years agoAdd two new options to cron(8), -J and -j. They allow to specify
yar [Sun, 16 May 2004 19:29:33 +0000 (19:29 +0000)]
Add two new options to cron(8), -J and -j.  They allow to specify
the maximum amount of time jitter for root and other users, respectively.
Before starting a job, cron(8) will sleep a random number of seconds,
from 0 to the amount specified.  This can help to smooth down load spikes
when a lot of jobs are to start at the beginning of a particular minute
(e.g., the first minute of an hour.)

PR: bin/66474
Submitted by: Dmitry Morozovsky <marck <@> rinet.ru>

20 years agoIf the revision is 0, don't trust the length in the RSDP. Instead assume
njl [Sun, 16 May 2004 18:02:47 +0000 (18:02 +0000)]
If the revision is 0, don't trust the length in the RSDP.  Instead assume
an ACPI version 1.0 length.

20 years agoKill DOS newline breaks.
ru [Sun, 16 May 2004 14:41:20 +0000 (14:41 +0000)]
Kill DOS newline breaks.

20 years ago- Initialize uart_bus_space_io and uart_bus_space_mem.
nyan [Sun, 16 May 2004 14:12:05 +0000 (14:12 +0000)]
- Initialize uart_bus_space_io and uart_bus_space_mem.
- Fix wrong comment.

20 years agoFixed the disordering from rev. 1.371.
ru [Sun, 16 May 2004 13:58:27 +0000 (13:58 +0000)]
Fixed the disordering from rev. 1.371.

20 years agoDon't use the node id as an index into the topology map. This breaks
dfr [Sun, 16 May 2004 11:26:39 +0000 (11:26 +0000)]
Don't use the node id as an index into the topology map. This breaks
if a node on the bus has more than three ports (like my cheapo six
port hub).

20 years agosnafu, exchanged the descriptions of -maxdepth and -mindepth.
eik [Sun, 16 May 2004 10:35:14 +0000 (10:35 +0000)]
snafu, exchanged the descriptions of -maxdepth and -mindepth.

Noticed by: ru

20 years agoRead in the entire RSDP but only run the standard checksum over the
njl [Sun, 16 May 2004 05:31:40 +0000 (05:31 +0000)]
Read in the entire RSDP but only run the standard checksum over the
version 1 header.  Add comments to explain what we're doing here better.

Reported by: Alex Vasylenko <lxv@omut.org>

20 years agoTry harder not to compile anything in sys/boot for arm.
cognet [Sun, 16 May 2004 00:19:12 +0000 (00:19 +0000)]
Try harder not to compile anything in sys/boot for arm.
I wonder how buildworld ever worked for me...

20 years agoRemove dead code. (This loop counted the number of rules, but the count
cperciva [Sat, 15 May 2004 20:55:19 +0000 (20:55 +0000)]
Remove dead code.  (This loop counted the number of rules, but the count
was never used.)

Reported by: pjd
Approved by: rwatson

20 years agoCorrect a typo in column header.
mdodd [Sat, 15 May 2004 16:06:59 +0000 (16:06 +0000)]
Correct a typo in column header.

Submitted by:  phk
Obtained from:  BSDCan

20 years agoRemove twa_intrhook prototype.
scottl [Sat, 15 May 2004 15:41:59 +0000 (15:41 +0000)]
Remove twa_intrhook prototype.

Submitted by: cperciva

20 years agoSet the cpi.hba_inquiry field to something useful.
scottl [Sat, 15 May 2004 05:18:05 +0000 (05:18 +0000)]
Set the cpi.hba_inquiry field to something useful.

20 years agoRemove the config_intrhook as it is not needed.
scottl [Sat, 15 May 2004 05:17:42 +0000 (05:17 +0000)]
Remove the config_intrhook as it is not needed.

20 years agoHook sysinstall to the build for powerpc.
grehan [Sat, 15 May 2004 05:07:14 +0000 (05:07 +0000)]
Hook sysinstall to the build for powerpc.

20 years agoMods for powerpc.
grehan [Sat, 15 May 2004 05:06:19 +0000 (05:06 +0000)]
Mods for powerpc.

Submitted by:  Suleiman Souhlal <refugee@segfaulted.com>

20 years agoWork around a problem somewhere with binutils (?) on arm, hopefully without
cognet [Sat, 15 May 2004 00:13:14 +0000 (00:13 +0000)]
Work around a problem somewhere with binutils (?) on arm, hopefully without
breaking any other arch this time.