summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-04-17mem_clusters.size has page protection encoded in them.Artur Grabowski
Mask it away, otherwise the reservation of RAM will fail.
2001-04-17- apple -> AppleBrad Smith
- kernel boot -> bootloader -- Ok'd by: drahn@
2001-04-17undo socks5 and https support since they are not really used andMarkus Friedl
only bloat ssh. remove -D from usage(), since '-D' is experimental.
2001-04-17sync maxusers with GENERIC.Brad Smith
2001-04-17add HostKeyAlgorithms; based on patch from res@shore.net; ok provos@Markus Friedl
2001-04-17handle EINTR/EAGAIN on read; ok deraadt@Markus Friedl
2001-04-17check for key!=NULL, thanks to costaMarkus Friedl
2001-04-17syncTheo de Raadt
2001-04-17Add eject to the powerpc ramdisk, mt is already there, so it is basicallyDale Rahn
free. Allows ejecting of CDROMs on slot loading systems without an eject button.
2001-04-17Do not claim that a user will not be able to boot from the hard driveDale Rahn
because they installed on a HFS partitioned disk, tell them that they have to set it up by copying 'ofwboot' to the first HFS partition.
2001-04-17crank maxusers by a teeeeeny little bitTheo de Raadt
2001-04-17Match quoting on this...Dale Rahn
2001-04-17Add pdisk to list of programs to build for powerpc, all other archsDale Rahn
will build the manpage, with the proper destination.
2001-04-17Update manpage after recent changes.Federico G. Schwindt
2001-04-17No colon after "address" when printing out Ethernet address.Aaron Campbell
2001-04-17Implement cnbell(), an optional entrypoint that rings the console bell; fromAaron Campbell
NetBSD. deraadt@ ok
2001-04-17Add commented out siop driver since it works. Enable after 2.9Nathan Binkert
2001-04-17Flush the in-core disklabel when running disklabel without the -r option,Dale Rahn
such as editing a HFS partitioned disk. This is necessary because the OpenBSD partition entry in the HFS label may have just been added and the old disklabel did not contain the entry.
2001-04-17Switch a "BGTR foo" to a "BLSS bar; BRW foo; bar:". In this case, theBrandon Creighton
difference between the BGTR and foo: is too large for a byte displacement. as should give an error or at least a warning here, but it doesn't; instead it merrily outputs a completely bogus displacement. This fixes problems with EMODD on numbers with negative exponents.
2001-04-17add support for the 82562E[MT] phys (These are essentially 82555's willJason Wright
all support for T4 gone). There are some register definition conflicts (SCR), but that is qualified by the presence of T4 support.
2001-04-17Updated version of last patch from kstailey@disclosure.com.Todd C. Miller
We should always save the user area since we are sorting on start time (which lives there).
2001-04-16Fix a couple of nits: delete some unnecessary commas andKenneth R Westerback
only print a 'Done.' for fsck'ing if fsck'ing is actually attempted. ok deraadt@
2001-04-16syncTheo de Raadt
2001-04-16Don't remove the mouse cursor when output occurs on a virtual terminal differentjbm
from the current one.
2001-04-16incorrect return value from ami_intrTheo de Raadt
2001-04-16better safe than sorry in later mods; yongari@kt-is.co.krTheo de Raadt
2001-04-16Split motd and hushlogin checks into seperate functions, helps for portable.Damien Miller
From Chris Adams <cmadams@hiwaay.net>; ok markus@
2001-04-16fix headerTheo de Raadt
2001-04-16put yamaha comment in the fileTheo de Raadt
2001-04-16xrealloc dealing with ptr == nULL; mouringTheo de Raadt
2001-04-16check for 'i' before the getopt. (idea from freebsd)Eric Jackson
this allows us to call the functions directly from the switch, which lets us now put all options on ONE command line, instead of separating them out into several command's. ok tholo@, deraadt@
2001-04-16We default to infrastructure mode now; say so in the man page instead ofThorsten Lockert
claiming we do ad-hoc by default. ok ericj@
2001-04-16much more cleanup.Eric Jackson
- Only create the socket for ioctl()'s once. - get rid of gratuitous argument passing - treat an_dump* function different than the regular options - fix the -T option, it doesnt take an arguement. deraadt@, tholo@ ok
2001-04-16NOT GENERICTheo de Raadt
2001-04-16API_UP1000 support fitsTheo de Raadt
2001-04-16cleanTheo de Raadt
2001-04-16dmesg cleanupsTheo de Raadt
2001-04-16IPv6 support for sftp (which I bungled in my last patch) which ismouring
borrowed from scp.c. Thanks to Markus@ for pointing it out.
2001-04-16Add missing dev to wsdisplayvar.h path; found by patrick@gulus.usherb.ca.Federico G. Schwindt
aaron@ ok.
2001-04-16man page for 3c990Jason Wright
2001-04-16Avoid resetting the interface when not needed; allows temporary WEP keysThorsten Lockert
to work. ALso optimize some interactions with the card. Fixes rest of PR 1754; ok deraadt@
2001-04-16Actually permit setting the transmit key in WEP mode; from Kurt Miller.Thorsten Lockert
Correctly display number and order of WEP keys; from Kurt Miller. Fixes part of PR 1754; ok deraadt@
2001-04-16close fd on error; deraadt@ ok.Federico G. Schwindt
2001-04-16nsphyter also supports phy on DP83815 (MACPHYTER)Jason Wright
2001-04-16Man page for hsearch/hcreate/hdestroy from NetBSDTodd C. Miller
2001-04-15Replace a bunch of conditional expressions with global pointers.Hugh Graham
Requested and checked by millert.
2001-04-15Avoid panic on unmounting read-only fs, which previously use softupdates.Grigoriy Orlov
This problem occur only on kernels without soft-updates support. art@ ok.
2001-04-15Randomized PIDs uglifies "ps -ax" output since it sorts on tty thenTodd C. Miller
PID and it makes no sense to sort on a strong random number. This patch changes the default to be the start time so output looks logical to a human. From kstailey@disclosure.com
2001-04-15start some cleanup to ancontrolEric Jackson
- alphabetize the argument list - get rid of unused vars deraadt@ ok
2001-04-15- in txp_intr(), don't call the rx/tx handlers unless necessaryJason Wright
- make txp_rx_reclaim() run on offsets instead of indices (avoids several division/multiplication conversions) - remove vlan tag support for now (it doesn't work anyway) - optimize txp_start(), txp_rx_reclaim(), and txp_tx_reclaim() a bit (this is based on my original attempts at these functions... only now it works =)