jhb
2b9783b539
Get this closer to working. The Write_Disk() function's for loop needed
...
to use the same start condition as the i386 version. However, since
Alpha's only have one fake "slice" from sysinstall's perspective we don't
need to use a loop, but can just write out the BSD label in the first
fake "slice".
2002-11-07 14:39:21 +00:00
jhb
5b5c30694e
Turn on GEOM. It works on Alpha and we are going to need it for installs.
2002-11-07 14:36:56 +00:00
simokawa
2d6271e925
- Fix printf warnings on 64bit plathome.
...
- Disable fw_vmaccess() because it's not used and unuseful 64bit plathome.
2002-11-07 02:13:40 +00:00
davidxu
b2a02ec1dc
1.Fix smp race between kernel vm86 BIOS calling and userland vm86 mode code,
...
remove global variable in_vm86call, set vm86 calling flag in PCB flags.
2.Fix vm86 BIOS calling preempted problem by changing vm86_lock mutex type
from MTX_DEF to MTX_SPIN. vm86pcb is not remembered in thread struct,
when the thread calling vm86 BIOS is preempted by interrupt thread,
and later switching back to the thread would cause incorrect context be
loaded into CPU registers, this leads to kernel crash.
2002-11-07 01:34:23 +00:00
mux
ad9fbf676c
s/HZ/Hz/
2002-11-06 23:31:01 +00:00
jhb
22de9969b0
Adjust some casts to quiet warnings.
...
Reviewed by: mdodd
2002-11-06 22:58:55 +00:00
jhb
74e3cefa12
lnc(4) uses kvtop() and is thus i386-only for now.
2002-11-06 22:56:57 +00:00
obrien
afccab5282
Style sync with rest of FreeBSD.
2002-11-06 22:54:58 +00:00
jhb
323d135eb0
Use long long to print out a bus_addr_t again.
2002-11-06 22:42:45 +00:00
jhb
50f4905075
Cast a bus_addr_t to a long long to make printf happy.
2002-11-06 22:40:01 +00:00
jhb
264dd658ff
Make firewire i386-only for now. It doesn't quite handle machines with
...
64-bit address spaces yet. Pointy hat to myself for sticking it in the MI
NOTES file to begin with.
2002-11-06 22:30:33 +00:00
jhb
c7c9518ceb
Wrap ()'s around an argument before casting it to a void *. If the
...
argument is an expression you can end up casting part of it to void *.
This resulted in bogus warnings about pointer arith using void *'s for
the ep(4) driver.
2002-11-06 22:18:26 +00:00
jhb
a26811007a
ed(4) uses kvtop() and is thus i386-only. It has several other warnings
...
related to sizeof(int) != sizeof(void *), but kvtop() is much harder to
fix.
Approved by: imp
2002-11-06 22:03:53 +00:00
jhb
bf81d4a7cf
Move the drm code to the i386 MD NOTES file. It can be added to other MD
...
NOTES files if desired, but this code is not MI on FreeBSD. The Alpha
support is Linux specific and does not compile on FreeBSD.
2002-11-06 21:42:42 +00:00
joe
7a3b87e1c5
Packed structures are defined differently in older gcc's, like the one
...
currently in -stable. Put the exception into usb.h instead of having it
hard coded in the sound code.
2002-11-06 21:37:21 +00:00
jhb
5203196b0a
Use bus_addr_t instead of u_int32_t in functions to convert between
...
physical and virtual addresses.
2002-11-06 21:19:17 +00:00
jhb
942047de14
Move digi to the i386 MD NOTES until it stops using inb() and outb().
...
Please use bus_space functions instead.
2002-11-06 21:11:42 +00:00
jhb
eb4a219189
- Move comments regarding flags for dgb(4) over to the MD NOTES file where
...
dgb(4) lives.
- Move dgb(4) back to where it used to be relative to other drives in the
old NOTES/LINT file.
2002-11-06 21:07:13 +00:00
jhb
5faf4a5973
dgb(4) currently is i386-only.
2002-11-06 21:02:19 +00:00
jhb
534622e551
Use the explicit value 0xffffffff instead of assuming that is what ~0UL
...
equals.
Approved by: imp
2002-11-06 20:40:29 +00:00
jhb
5f80d8bbe2
Add some band-aid casts to quiet warnings. This driver still assumes
...
that sizeof(int) == sizeof(void *) == 4. However, it also seems that the
hardware assumes this.
2002-11-06 20:34:38 +00:00
jhb
a956a28e35
More int != pointer stuff.
2002-11-06 20:16:39 +00:00
phk
ad8a01f928
Straighten up the geom.ctl config interface definitions.
...
Sponsored by: DARPA & NAI Labs
2002-11-06 20:05:15 +00:00
jhb
fd412ae82b
Repeat after me: sizeof(int) != sizeof(void *).
2002-11-06 20:04:41 +00:00
jhb
59eda164d2
Use some long long casts to quiet warnings in debug printf's on alpha.
2002-11-06 19:52:13 +00:00
jhb
6c4cc56664
Use a bandaid to fix a warning. However, this driver is very, very far
...
from being MI in any fashion. It currently "assumes" that it can get
a kernel virtual address for a phyiscal address by adding KERNBASE to the
physical address. It also tries to read values out of a the PC BIOS on
all archs. It also uses "manual" inb() and outb()'s to talk to the mcclock
device which just happens to be at that location on both i386 and alpha.
This driver should likely be i386-only.
2002-11-06 19:42:59 +00:00
jhb
1d44bd117e
Make the ar(4) driver i386-only for now. It has lots of sizeof(int) ==
...
sizeof(void *) assumptions and doesn't use busdma yet (it uses kvtop()
which is not an MI interface).
Recommended by: jake, mux
2002-11-06 19:27:09 +00:00
trhodes
32917739e2
Restore most (90%) of the text I removed in my previous commit. Remove the
...
part about spelling and grammar.
Discussed with: -developers
2002-11-06 18:58:02 +00:00
jhb
292fe1c0a4
Fix warning where sizeof(size_t) != sizeof(int).
2002-11-06 18:55:24 +00:00
mux
6a634df290
In the !DEBUG case, we were passing foo.ko two times on the
...
rm -f command line when doing a make clean. Fix this.
Reviewed by: ru
2002-11-06 17:40:13 +00:00
chris
86d546ca0e
o Make the COMPATIBILITY section a bit less redundant.
...
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Labs
2002-11-06 17:38:18 +00:00
chris
1b738abdbf
o Update man page to reflect the new prototypes for mac_{to,from}_text.
...
o Remove a (currently) no-longer-pertinent entry from errors.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Labs
2002-11-06 17:34:29 +00:00
simokawa
131fe3293a
Add support for DEVICE_POLLING.
...
PR: kern/44772
Submitted by: Takashi Oono <takashi@yha.att.ne.jp>
MFC after: 1 week
2002-11-06 15:50:32 +00:00
simokawa
e6dea8f633
Minor clean up on cdb handling.
2002-11-06 15:34:52 +00:00
maxim
9e1dcedc4a
Kill EOL whitespaces, style(9) fix.
2002-11-06 15:09:34 +00:00
maxim
d32e27266d
Fix UID/GID options parsing.
...
PR: bin/42579
Submitted by: Belousov Oleg <oleg@belousov.com>
Approved by: luigi
MFC after: 2 weeks
2002-11-06 14:57:18 +00:00
jmallett
e1d1292908
Remove what was a temporary bogus assignment of bits of siginfo_t, as it does
...
not look like the prerequisites to fill it in properly will be in the tree
for the upcoming release, but it's mostly done, so there is no need for these
to stay around to remind us.
2002-11-06 14:53:35 +00:00
joe
e47c241892
There's no need for a locally defined usb_proc_t when we've got
...
usb_proc_ptr that does the same thing.
2002-11-06 14:29:27 +00:00
jmallett
53eebebcce
Add a MAINTAINERS entry for make(1), to the make@ alias, which anyone can use
...
to run patches to make(1) by. Hopefully this will make it easier to get bugs
fixed in make(1), as well as get review by people with experience working on,
in, around, etc., make(1).
Currently it points to two people who have demonstrated maintainership (ru@
and myself) and one person interested in helping (alane@). That list is
subject to expansion and contraction.
2002-11-06 14:01:08 +00:00
nyan
0499bbb049
Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.
2002-11-06 13:47:00 +00:00
nyan
0541d566d8
Include "../Makefile.inc".
2002-11-06 13:41:40 +00:00
tjr
2b2cb081a8
Add missing #includes of <stdio.h>. Correct a few typos in comments.
2002-11-06 09:37:47 +00:00
dougb
70d50c6e7f
Import the latest hints file from Internic. The most important change
...
is that J has moved, however I'm sure you'll all be very disappointed
to hear that you can no longer retrieve this file via gopher.
2002-11-06 09:21:39 +00:00
obrien
22ae8a63ad
Clean up a little. Don't need to include fetch.h any more, and I can't
...
find any consumers of HOSTNAME_MAX.
2002-11-06 09:03:53 +00:00
obrien
4bf9f3289b
Break fileGetURL() out into its own file so that pkg_install/lib consumers
...
pkg_{create,delete} don't need to needlessly link with libfetch.
2002-11-06 08:57:03 +00:00
mdodd
a349f5fa5c
Whitespace, style fixes.
2002-11-06 08:08:55 +00:00
des
66bd92dc49
Add caveats regarding the effect of PAM on PasswordAuthentication and
...
PermitRootLogin.
PR: docs/43776
MFC after: 1 week
2002-11-06 08:04:56 +00:00
obrien
1d9a26469d
Better emulate the FSF build for Sparc64.
2002-11-06 07:00:59 +00:00
marcel
6206d06949
Don't ever disable ACPI on ia64. We cannot life without it.
2002-11-06 04:59:22 +00:00
marcel
7afb30d143
Define UMA_MD_SMALL_ALLOC so that we can allocate memory with region
...
7 addresses for use by page tables and kernel stacks.
Obtained from: peter
2002-11-06 04:47:38 +00:00