summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Typo s/AirLAncer/AirLancer/gimp2001-09-101-2/+2
|
* clarify PCMLM56 statusimp2001-09-101-1/+2
|
* The EXCard-10-PCMCIA entry was slightly bogus.imp2001-09-101-1/+1
|
* Fix a warning. l_name is managed by us and is malloc/free'ed.peter2001-09-102-2/+2
| | | | It is the userland declaration of l_name that is inconvenient for us.
* Add on UPAGES to ki_rssize since it is there as result of the processpeter2001-09-101-0/+2
| | | | and can be swapped out with the process.
* UPAGES as a constant is gone in KSE. We are going to have to trustpeter2001-09-101-3/+1
| | | | and/or fix ki_rssize.
* Implement support for MAXMEM option and hw.physmem environment variabledfr2001-09-102-0/+57
| | | | | which can be used to artificially reduce the memory size of a machine for debugging (or other) purposes.
* Fix LINT breakage caused by previous commit. The linux_rt_sendsigmarcel2001-09-101-0/+9
| | | | | | | | | | | | and linux_sendsig functions guarded their debugging output with ldebug(sigreturn). This has been mistaken for a cut-n-paste bug, and was replaced by ldebug(rt_sendsig) and ldebug(sendsig) resp. Since the sendsig functions are not syscalls, this brokei any build that defines DEBUG. The fix maps both functions to the unused syscall 0 so that they can be enabled/disabled independently from sigreturn, but not independently from each other.
* This will have to be revised, but allow putting 'makeoptions GCC3=true'peter2001-09-102-0/+30
| | | | | in a kernel config file. This should minimize the tearing-out-hair process while updating the kernel for gcc-3 compliance.
* Rip some well duplicated code out of cpu_wait() and cpu_exit() and movepeter2001-09-1012-196/+75
| | | | | | | | | | | | it to the MI area. KSE touched cpu_wait() which had the same change replicated five ways for each platform. Now it can just do it once. The only MD parts seemed to be dealing with fpu state cleanup and things like vm86 cleanup on x86. The rest was identical. XXX: ia64 and powerpc did not have cpu_throw(), so I've put a functional stub in place. Reviewed by: jake, tmm, dillon
* gcc-3 has objections about the bluetrap6 and bluetrap13 inline asmpeter2001-09-102-38/+38
| | | | functions. Apparently multi-line string asm arguments are deprecated.
* Fix some malformed macro concatenation that gcc-3 has objections about.peter2001-09-101-4/+4
|
* Add cs driver for IBM EtherJet card. Doesn't completely work yet, butimp2001-09-101-0/+9
| | | | it won't work without it.
* 2Mbps card from Teletronics. Looks like a generic OEM card for theimp2001-09-101-0/+7
| | | | | awi driver, but the MAC address isn't recognized, so maybe this is wrong.
* ELSA Air Lancer wireless card. Appears to be a Lucent OEM.imp2001-09-101-0/+6
| | | | Submitted by: Eric Masson <e-masson@kisoft-services.com>
* Lots of style(9) related white space fixes. Mostly missing spacesbrooks2001-09-106-122/+149
| | | | | after if, for, while, switch, '{', and '}' plus a bunch of bogus whitespace at the end of lines.
* Add support for monitor mode. This means that after enabling thebrooks2001-09-103-98/+291
| | | | | | | | correct mode via ancontrol, you can use bpf to sniff raw 802.11 frames. Who want's to port AirSnort. ;-) Submitted by: Doug Ambrisko <ambrisko@ambrisko.com> (author) David Wolfskill <david@catwhisker.org> (port to current)
* Remove/comment tokens after #endif (#endif NETATALK)peter2001-09-102-4/+4
|
* Fix a minor buglet/typo here that gcc3 complains about.peter2001-09-101-1/+1
|
* #endif /* comment */peter2001-09-101-1/+1
|
* Stop gcc's fixincludes making an exception for this filepeter2001-09-101-2/+3
|
* Mihira-san says that this works for him. Linksys EtherFast 10/100 +imp2001-09-091-0/+6
| | | | | | | 56k modem with the fat connector. Submitted by: sanpei@sanpei.org (MIHIRA yoshiro) Ignored since Jan 2001 by: imp
* The "dirpref" directory layout preference improvements make use ofiedowse2001-09-091-1/+1
| | | | | | | | | | | | | | | | | an array "fs_contigdirs[]" to avoid too many directories getting created in each cylinder group. The memory required for this and two other arrays (fs_csp[] and fs_maxcluster[]) is allocated with a single malloc() call, and divided up afterwards. However, the 'space' pointer is not advanced correctly, so fs_contigdirs and fs_maxcluster end up pointing to the same address. Add the missing code to advance the 'space' pointer, and remove an unnecessary update of the pointer that follows. This is likely to fix the "ffs_clusteralloc: map mismatch" panics that have been reported recently. Submitted by: Luke Mewburn <lukem@wasabisystems.com>
* Addtron AWP-100 wireless card.imp2001-09-091-0/+6
| | | | Submitted by: Alfred Perlstein <bright@mu.org>
* EZCard, not EXCardimp2001-09-091-2/+2
|
* Speculatively commit fix for Surecom EP-427TX PCMCIA adapter. Thisimp2001-09-091-0/+6
| | | | | | | | appears to be another OEM version of the Netgear FA411. This is a guess, since the original didn't include the flags, but this is too similar to my netgear card... Submitted by: neal@nelsonnet.org
* SMC EZ Card 10 PCMCIAimp2001-09-091-0/+6
| | | | Submitted by: Goncharov D <gda@sani.ru>
* Add NE-2000 compatible card sold by addron.imp2001-09-091-0/+6
| | | | Submitted by: johs@copyleft.no
* Add more standards which we conform to.asmodai2001-09-091-1/+18
| | | | | | Note our implementation is not thread nor async-cancel safe. Explicitely note atof() does not check nor report errors. Note that strtod() should be used instead.
* Add NetGEAR FA411 card. This appears to be based on the AX88190 chipsetimp2001-09-091-0/+6
| | | | and works with those flags.
* Detail thread-safe and async-cancel-safe status.asmodai2001-09-091-0/+10
| | | | | | Also add C99 conformity status plus clarification that C99 leaves the flushing of unwritten data, closure of open streams, and removal of temporary files to the implementation.
* When booting verbose, print the config space for this device. Thisimp2001-09-091-0/+19
| | | | | will help debugging problem systems as it will reduce the number of commands the user needs to type and send me the output of.
* If flags were specified for the device, print them in the probeimp2001-09-091-1/+4
| | | | | | message. Some scsi devices have rather elaberate flags, and it is hard to know which ones were specified in pccard.conf when debug information only includes the dmesg.
* regenerate this file too (forgotten after last usbdevs update)wpaul2001-09-091-1/+7
|
* Fix some problems with the reference/modified tracking which I introduceddfr2001-09-091-4/+51
| | | | | | with the last change to the way the pmap_emulate_reference() works. This should fix a number of memory corruption problems and also should stop the mtimes of executables changing all the time.
* Automatically load the "snp" module if it isn't already present.dd2001-09-091-0/+6
|
* Use protected variables names in prototypes visible to the userland asdd2001-09-091-4/+4
| | | | per style(9) and most other header files in sys/.
* update cs_CZ's MONETARY information to more used formatphantom2001-09-091-6/+6
| | | | Discussed with: Cejka Rudolf <cejkar@dcse.fee.vutbr.cz> (submitter)
* Add a missing newline to an error message.dd2001-09-092-2/+2
| | | | | PR: 30436 Submitted by: Joerg Lehners <Lehners@Informatik.Uni-Oldenburg.DE>
* Use CFLAGS instead of COPTS.dd2001-09-091-1/+1
|
* Include ttymsg.h from ../../usr.bin/wall instead of rolling our owndd2001-09-092-1/+3
| | | | prototype.
* - Silence warnings: apply `const' generously, mark some variablesdd2001-09-092-45/+50
| | | | | | | | | | | | | | | __unused, and change local variables named `sin' (struct sockaddr_in) to `sin4'. (`sin' conflicts with the definition of sin(3), which gcc assumes to be defined even if math.h isn't included (it's a builtin). This is probably a bug in gcc.) - Apply WARNS=1. WARNS=2 was not used because this program assigns string literals to (struct iovec).iov_base for writing, and the only clean way to silence -Wwrite-strings in that case would be to strdup() and consequently free() those literals, which I considered too disruptive. Reviewed by: bde (partially)
* - Move the prototype of ttymsg() into ttymsg.h. syslogd and talkddd2001-09-093-7/+15
| | | | | | | | | | also use this, and they shouldn't have to have their own prototypes. - Silence warnings about constness and signedness in ttymsg(). This includes changing the return value to a `const char *', and changing the types of `left' and `wret' (both byte counts) to ssize_t. Reviewed by: bde
* Iron out an identity crisis. I'm Irish, not English.brian2001-09-091-1/+1
|
* Run the uustat command as the uucp user, not as root.kris2001-09-091-1/+1
|
* The basis for the recent coredump commit had the wrong attribution.dillon2001-09-090-0/+0
| | | | | | The new attribution is below. Submitted by: peter, ps
* Make sure that all non-root-owned binaries in standard systemdillon2001-09-096-1/+6
| | | | | | | | | paths are chflaged 'schg' to prevent exploit vectors when run by cron, by a root user, or by a user other then the one owning the binary. This applies to most of the uucp binaries, cu, tip, and man (man was already installed properly). MFC will occur when approved.
* Add support for the Accton USB320-EC Ethernet adapter.dwhite2001-09-091-0/+1
| | | | MFC after: 14
* Regen.dwhite2001-09-091-1/+4
|
* Add entry for Accton USB320-EC Ethernet adapter.dwhite2001-09-091-0/+3
| | | | MFC after: 14
OpenPOWER on IntegriCloud