wiz
8c920e9e22
Drop trailing whitespace.
2002-01-21 11:40:20 +00:00
martin
a585d748dc
Duplicate include protection.
2002-01-21 11:38:16 +00:00
martin
6121a90ba1
Fix copy&pasto: truncate strings copied in at *their* right length, not
...
some other strings length.
Found by Arne Helme.
2002-01-21 11:37:29 +00:00
ichiro
1635f76bf6
forces if_wi to initiate one round of access point scan.
...
This code was written by jrb@cs.pdx.edu , modified and bug-fixed by ichiro@netbsd.org
2002-01-21 11:35:06 +00:00
ichiro
65967c6704
Print Association status changes to the console.
2002-01-21 11:29:22 +00:00
ichiro
e08ec84292
"Association Faild" was added to "Link Stat" messages.
...
;
Implement wi_scan into wi.c.
forces if_wi to initiate one round of access point scan.
This code was written by jrb@cs.pdx.edu , modified and bug-fixed by ichiro@netbsd.org
2002-01-21 11:28:18 +00:00
lukem
0d1261454e
in closedataconn(), only close the passive data fd if the main data
...
descriptor was set by dataconn(). this fixes a problem for clients (such
as lynx and netscape) that only sent PASV/EPSV after a transfer (RETR, LIST,
STOR) started and returned 150. certain command sequences could return 550
(etc) before setting up the dataconn(), and would run into this bug. netbsd's
ftp didn't hit this bug because it always sends PASV/EPSV before a new
transfer command.
2002-01-21 11:25:20 +00:00
augustss
12f71ce4b8
Regen.
2002-01-21 11:20:42 +00:00
augustss
8f9166873c
Add some new devices.
2002-01-21 11:20:25 +00:00
ichiro
93c743cc3b
mistake bit number of tx_rate
...
case 4 -> case 5
2002-01-20 07:26:14 +00:00
ichiro
19ae79a0b6
Upps
...
Garbage was removed.
2002-01-20 06:49:32 +00:00
ichiro
f62afb33a0
add few Information frame types
2002-01-20 06:45:22 +00:00
mrg
61d679b8c1
convert sparc64 to use `makefs' rather than vnd/newfs/mount. this severely
...
cleans up a lot of the processing here.
XXX: note that the sparc64 "INSTALL" kernel's file system has a copy of
GENERIC in /netbsd. fix this shortly.
2002-01-20 05:57:10 +00:00
ichiro
c1a93623bd
When the length of the key of WEP was 5 or less octets, WEP was set to 40Bit.
...
5.5MBps were added to ifmedia.
2002-01-20 05:39:52 +00:00
ichiro
c9cdd04709
add scan req/result RIDs
2002-01-20 04:37:04 +00:00
fair
88c16e89f7
Fix bug per PR 8944, and also revise the man page to clearly
...
document leave's limitations.
2002-01-20 03:53:53 +00:00
thorpej
e594c94727
Some prototype cleanup.
2002-01-20 03:41:47 +00:00
thorpej
ce74acf44c
XXX Local prototype for syscall().
2002-01-20 03:39:51 +00:00
shin
073b07d45d
bugfix: OHCI is bus 0, device 12 or 19, function 2 (not 0).
2002-01-20 03:34:27 +00:00
oster
c4aed2da0e
Add a description of how to possibly recover a RAID set in the
...
event of a multiple disk failure.
2002-01-20 02:30:11 +00:00
wiz
15d16b2223
Use standard headers.
2002-01-20 00:52:22 +00:00
jsm
26891a9fd2
Allow minimum word length to be set on command line. Patch based on
...
one by Joey Hess <joeyh@debian.org>.
2002-01-20 00:42:51 +00:00
oster
71a4ca8acd
Bah.. Not sure how those ";"'s got missed :-(
2002-01-19 22:20:48 +00:00
he
2af4d16cbb
Say that this driver appeared first in 1.5.3.
2002-01-19 21:59:55 +00:00
scw
0e17fb3d6a
Make this compile again.
2002-01-19 21:13:45 +00:00
oster
e474b1951e
Update the various MAKEDEV's to reflect the default of 8 RAIDframe devices.
2002-01-19 18:59:17 +00:00
chris
e05c355470
Following on from similair change by Jason for xscale, pass the l1 page table into the map_chunk function so it can try to map the kernel in sections.
2002-01-19 18:51:58 +00:00
oster
39b858e3bf
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.
2002-01-19 18:45:06 +00:00
wiz
c43de8bde2
Include err.h for err(3) prototype.
2002-01-19 17:07:51 +00:00
chs
b263a7eb4d
add a new flag PMAP_CACHE_VIVT for the pmap to inform the MI code that
...
that the cache is virtually-indexed and virtually-tagged (such as on the ARM),
and use this flag in the UBC code to be more friendly to those caches.
2002-01-19 16:55:20 +00:00
tv
d7938946ac
Honor HOST_{CC,CFLAGS,CPPFLAGS,LDFLAGS} passed in from the environment
...
when building nbmake. Use the correct defaults if not set (HOST_CC=cc,
HOST_CFLAGS=-O).
2002-01-19 16:49:28 +00:00
manu
ddd039179b
Fixes the problem with libX11.so mapping by syssgi(MAPELF): the load address
...
for the text section of libx11.so was overlapping with other ELF sections
aloready loaded, and this resulted into an ENOMEM error.
syssgi(MAPELF) uses elf32_load_psection() from syssrc/sys/kern/exec_subr.c
The problem was never experienced with load_psection() because it only has
to load one section, hence the requested address are not already allocated.
The fix is done when the initial mapping at the default address fails by
finding a free location in the VM space using uvm_map_findspace(), and then
retrying to load the section.
Other details:
- once the ELF section has been relocated, the ELF program header must be
updated with the new address and copied back to userland. For now we always
do it, maybe we could copy it only when it was modified.
- We are able to emulate the exact address where IRIX loads libX11.so instead
of the default location
2002-01-19 14:56:02 +00:00
mrg
194652a3c1
update to reality, even if it still does not quite work.
2002-01-19 14:49:18 +00:00
wiz
67f778e818
Add FM (per 15281), ROFL and ROFLMAO.
2002-01-19 13:40:33 +00:00
mrg
e00fc7b09f
add SUNLABEL & SPARCINSTALLBOOT.
2002-01-19 13:32:52 +00:00
wiz
a2d753e3ef
Whitespace nits.
2002-01-19 11:44:57 +00:00
wiz
78cb877358
Try to remove some more unnecessary whitespace when converting.
2002-01-19 11:43:47 +00:00
reinoud
87e0da9f3a
Please _test_ your patche first Reinoud !!! sorry for the fuzz.... this
...
ought to work....
2002-01-19 11:16:20 +00:00
mjl
7ea8665c72
Catch open failure and exit with error instead of crashing.
2002-01-19 06:10:13 +00:00
shin
69d0f55255
add VR4131 cache-op bug workaround code.
...
we can't use Hit_WriteBack_Invalidate.
2002-01-19 04:25:36 +00:00
wiz
483f92284e
Whitespace nits.
2002-01-19 03:39:46 +00:00
wiz
59652c8572
Punctuation nits.
2002-01-19 03:38:36 +00:00
wiz
1b9e345181
Whitespace nits, sort SEE ALSO.
2002-01-19 03:37:38 +00:00
reinoud
1e253502e5
Make the ramdisc binaries compile in cross compilation without the
...
BSDSRCDIR variable set ... build.sh doesn't set this...
2002-01-19 03:37:35 +00:00
wiz
f79ee8e50f
Sort sections, mark up AUTHORS section.
2002-01-19 03:36:44 +00:00
wiz
30a3135df2
Sort SEE ALSO and sections, use .An in AUTHORS section.
2002-01-19 03:36:20 +00:00
wiz
7e266c9a07
Improve markup.
2002-01-19 03:35:21 +00:00
wiz
4e823ac145
Whitespace nits.
2002-01-19 03:35:05 +00:00
eeh
de4c6a980a
Remove some DEBUG code.
2002-01-19 03:30:54 +00:00
wiz
8f48ce1461
Sort sections, sort SEE ALSO, whitespace nit.
2002-01-19 03:27:06 +00:00