summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-04-14UP1000 will fit in here.Artur Grabowski
2001-04-14Add support for Alpha Processor, Inc. UP1000.Artur Grabowski
From NetBSD.
2001-04-14'T' handling rcp/scp sync; ok markus@Kevin Steves
2001-04-14protocol 2 tty modes support; ok markus@Kevin Steves
2001-04-14use clear_pass instead of xfree()Markus Friedl
2001-04-14remove some channels that are not appropriate for keepalive.Markus Friedl
2001-04-14oops, really sync.. i have no idea what happened hereAaron Campbell
2001-04-14syncAaron Campbell
2001-04-14Use [a-f] for hex digits, not [A-F]. Also fix some tab/space issues.Aaron Campbell
2001-04-14KNFAaron Campbell
2001-04-14Remove non-portable sysbeep calls; deraadt@Aaron Campbell
2001-04-14quieten this on OpenBSD, information available in ifconfig -m is not needed ↵Theo de Raadt
in dmesg
2001-04-14activate wsmoused; the sooner the betterTheo de Raadt
2001-04-14syncTheo de Raadt
2001-04-14Remove some static.Aaron Campbell
2001-04-14Userland daemon for wscons console mouse features.Aaron Campbell
2001-04-14Kernel support for console mouse functionality which will be controlled byAaron Campbell
the wsmoused daemon (replacement for moused which was used with PCVT). Adds a "getchar" method to the display drivers which returns the value of the character currently under the cursor (e.g., so it may be inversed). From jbm@. Still needs a bit of cleanup and improvement, especially X cohabitation features. The pointer moves to fast as well. These sorts of issues will be corrected in-tree.
2001-04-14do not double freeTheo de Raadt
2001-04-14Instead of using KBC_AUXTEST, probe the aux port with KBC_AUXECHO, which isAaron Campbell
what Linux does; from NetBSD. This apparently fixes problems with old chipsets that handle the test command differently, leading to a non-working keyboard. This patch was tested by many people successfully.
2001-04-14Add an lxtphy_reset function; from NetBSD. Tested on a NewMedia LiveWireAaron Campbell
10/100 PCMCIA Ethernet card.
2001-04-14Forgot remove 'U' from optstring; millert@ ok. ;)Grigoriy Orlov
2001-04-14Remove the -o flag from identd's default invocation as it serves only toHugh Graham
obfuscate, and confuses some software. derradt + millert concur.
2001-04-14Respect (absence of) "other" flag in all cases, and fix some whitespace.Hugh Graham
Checked by Theo.
2001-04-14Minor cleanup.Hakan Olsson
2001-04-14Minor changes, preparing for real socket-attached TDBs; also, moreAngelos D. Keromytis
information will be stored in the TDB. ok ho@ provos@
2001-04-14Correctly initialize disklabel structure in readdisklabel().Miod Vallat
Prevents kernel from panic'ing or disklabel(1) from faulting with an empty (never labaled) disk. Also, use LABELSECTOR instead of hardwired constant. Tested by deraadt@ on mvme68k and myself on mvme88k, deraadt@ ok
2001-04-14Remove defopt; aaron@ ok.Federico G. Schwindt
2001-04-13Add options ClientAliveInterval and ClientAliveCountMax to sshd.Bob Beck
This gives the ability to do a "keepalive" via the encrypted channel which can't be spoofed (unlike TCP keepalives). Useful for when you want to use ssh connections to authenticate people for something, and know relatively quickly when they are no longer authenticated. Disabled by default (of course). ok markus@
2001-04-13Remove softdep and add avgfilesize/avgfpdir in printfs().Grigoriy Orlov
Pointed out by fgs@. deraadt@ ok.
2001-04-13Another case where we need to use u_char, not char for arrayTodd C. Miller
subscripts to avoid buf[-1] problems. Also add a missing include of unistd.h. OK'd by Theo
2001-04-13signess bug; jwaterman@yaleroad.comTheo de Raadt
2001-04-13Add support for user specified tokens to identd. Based on a patchTodd C. Miller
from rjmooney@wall.st w/ minor tweakage by Theo and myself.
2001-04-13- attempt to get dma coherent buffers for most of the shared memory usesJason Wright
- correct rx_reclaim (still needs some work) - rework txp_init() a bit to do the operations in the right order - wait for filter setup to complete before returning
2001-04-13Fix clean target so it really cleans - depending on if we have aBob Beck
seperate .OBJDIR or not, Now checks to see if .OBJDIR is seperate from CURDIR, and if so, blows away the lndir tree so that we don't get caught by stale stuff lying around.
2001-04-13merge mod_ssl 2.8.2Brad Smith
-- Ok'd by: beck@
2001-04-13merge mod_ssl 2.8.2Brad Smith
-- Ok'd by: beck@
2001-04-13- rx buffer ring management (working)Jason Wright
- simplify/encapsulate fully transmit ring handling - initialize sc_xcvr to be auto - initial rx descriptor ring handling (doesn't work yet) status: firmware, boot, media, tx, and rx buffer management work (actual received frames don't... yet).
2001-04-13Remove debugging output, and some extra junk from the verbose output.Marc Espie
Prefix verbose output with pkg: so that we get a better idea what we're dealing with...
2001-04-13typo. ok deraadt@Jakob Schlyter
2001-04-13Define RL_USEIOSPACE in the PCI bus piece, not the common piece; thanks jason@Aaron Campbell
2001-04-13Oops, remove an unrelated debugging #if 0.Aaron Campbell
2001-04-13Disestablish the shutdownhook on detach.Aaron Campbell
2001-04-13bmtphy does not work perfect yet, but put it in anywaysTheo de Raadt
2001-04-13syncTheo de Raadt
2001-04-13silence printfs from media selection.Brad Smith
2001-04-13In cpu_fork, initialize the ipl of the new process toArtur Grabowski
run at IPL_0. From NetBSD.
2001-04-13bmtphyTheo de Raadt
2001-04-13Fix overflow in superblock. From FreeBSD.Grigoriy Orlov
FreeBSD's log: > The ffs superblock includes a 128-byte region for use by temporary > in-core pointers to summary information. An array in this region > (fs_csp) could overflow on filesystems with a very large number of > cylinder groups (~16000 on i386 with 8k blocks). When this happens, > other fields in the superblock get corrupted, and fsck refuses to > check the filesystem. > > Solve this problem by replacing the fs_csp array in 'struct fs' > with a single pointer, and add padding to keep the length of the > 128-byte region fixed. Update the kernel and userland utilities > to use just this single pointer. > > With this change, the kernel no longer makes use of the superblock > fields 'fs_csshift' and 'fs_csmask'. Add a comment to newfs/mkfs.c > to indicate that these fields must be calculated for compatibility > with older kernels. art@ ok.
2001-04-13Make PROCFS compile again on non-UVM systems, deraadt@ okMiod Vallat
2001-04-13add eephy man page; from patelTheo de Raadt