summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-03-27regenBrad Smith
2005-03-27EB -> GBBrad Smith
2005-03-27remove FreeBSD ifdef bloat.Brad Smith
ok krw@
2005-03-27Fix possible double alignment, and a memory leak in error path. MostlyKenneth R Westerback
from FreeBSD. ok brad@.
2005-03-27another fxp PCI idBrad Smith
2005-03-27regenBrad Smith
2005-03-27ICH-6M fxp PCI idBrad Smith
From: FreeBSD
2005-03-26Use "struct em_softc *sc" consistently all over and uncover theBrad Smith
watchdog reset message. ok krw@
2005-03-26enable compat_hpux and a commented out compat_linuxMichael Shalayeff
2005-03-26oops. it's 2005 now!Michael Shalayeff
2005-03-26md parts for hpux_compa code; some problems w/ signals delivery still existMichael Shalayeff
2005-03-26- Parse boot arguments like on other platforms and handle common flags.Uwe Stuehler
- Delay much longer before rebooting to give the internal disk in the C3000 enough time to stop itself. "go ahead" drahn@
2005-03-26enable reception of multicast frames; from NetBSDChristian Weisgerber
2005-03-26encrypt swap by default. cheap, and why not. can be disabled by peopleTheo de Raadt
who have machines that hit swap a lot. decided after survey of developers, we found that most turned this on. ok various
2005-03-26simplify man! no need to outline pci_mapreg_map() anymore just use itMichael Shalayeff
2005-03-26Use the PROM font whenever possible, rather than switching to theMiod Vallat
not-so-nice 8x16 font upon attach. Also, shift the display two character cells to the left from its centered position in this case, so as to keep our output properly aligned with the PROM messages. Tested on 3GS and 3GX.
2005-03-26Enable wsfont_add(), it will be necessary on sparc.Miod Vallat
2005-03-26Cleanup. Use defines, standard names, consistant comparison operators, etc.Kenneth R Westerback
for auto negotiation ticks code. No functional change. ok brad@
2005-03-25regenMichael Shalayeff
2005-03-25belkin bt and the unsupported netgear ma111v2Michael Shalayeff
2005-03-25regenMichael Shalayeff
2005-03-25a bunch of ati ixp* idsMichael Shalayeff
2005-03-25calculate the rpm for a disklabel; implement new io discipline for mirror; ↵Michael Shalayeff
this also changes the mirror striping strategy a bit to achieve the scatter-gathering; of course it has been proven that new discipline still makes troubles thus not enabling it yet );
2005-03-25during probe test for a mem window reduction in case there is not enough ↵Michael Shalayeff
space in the hole for a large one (ie generic now boots same as ramdisk on some machinesw/ lots of bios); found and testing by niallo@
2005-03-25Since START_STOP is an optional command that a device need notKenneth R Westerback
support, don't penalize devices that don't support it. May help some usb devices. ok marco@
2005-03-25increment the right counter on error.Brad Smith
2005-03-24enable memory-mapped i/o everywhere but on i386Martin Reindl
suggested by mickey@, ok krw@, deraadt@, also tested by miod@
2005-03-24Unbreak tree, mono_time may no longer be used because of timecounters.Claudio Jeker
Use getmicrouptime() instead. Found by grange@ and henning@. OK henning@
2005-03-24If READ CAPACITY(10) says there are more than 0xffffffff sectors,Kenneth R Westerback
report 0xffffffff and print a message. READ CAPACITY(16) is needed to get the actual size in this case. ok tdeval@ (a while ago) marco@
2005-03-24major knfHans-Joerg Hoexer
fix spelling in comment, by rohee@ no binary change ok deraadt@
2005-03-24ansi and tiny knfHans-Joerg Hoexer
ok deraadt@
2005-03-24always good to check for invalid values. ok marius pedroTed Unangst
2005-03-24another D-Link DFE-670TXD PCMCIA card, next MAC 3-byte seq; fromTheo de Raadt
openbsd@sillence.co.uk
2005-03-23typo corrections; ok krw a long time agoTheo de Raadt
2005-03-23Set up a shutdown hook to put the display back to a PROM-compatible modeMiod Vallat
at shutdown if necessary.
2005-03-23Do not bzero() too far when setting up 32-bit mode.Miod Vallat
2005-03-23Move the alloc_screen, free_screen and show_screen wsdisplay accessops toMiod Vallat
the common frame buffer code, rather than duplicating it in every driver. No functional change.
2005-03-23Do not set up accelerated operations if we fail to unbusy the blitter inMiod Vallat
a reasonable amount of time.
2005-03-23Move wzero() and wcopy() from machdep.c to where they are really used.Miod Vallat
2005-03-23Match power on the SPARCbook's auxio2, but prefer tctrl poweroff ifMiod Vallat
both power0 and tctrl0 are configured. This allows installation media to poweroff quickly on SPARCbooks.
2005-03-23Kill the sparc-specific mountroot hooks (which are run before the rootMiod Vallat
filesystem is mounted, unlike the MI mountroot hooks). They were only used to allow root on floppy in the long dead two-floppies installation method.
2005-03-23fix a possible kernel panic in the ar5211 and ar5212 detach functions.Reyk Floeter
closes PR #4153.
2005-03-23use URAL_DEBUG not RAL_DEBUG. use logprintf for consistency. default toDamien Bergamini
debug level 0.
2005-03-23add new vendor/product ids.Damien Bergamini
2005-03-23regen.Damien Bergamini
2005-03-23more ural devicesDamien Bergamini
2005-03-23do packet accounting (opackets/oerrors/ierrors).Damien Bergamini
2005-03-23print the mac address in dmesg like every other nic we haveDavid Gwynne
ok damien@
2005-03-23USB_DEBUG implies URAL_DEBUG.David Gwynne
ok damien@
2005-03-23Merge some sppp improvements from NetBSD:Can Erkin Acar
1. better timeout and keepalive handling 2. fix some memory leaks on error paths. 3. use arc4random instead of random 4. always send keepalives in cHDLC mode, from claudio@ Tested by Greg Mortensen (san) and jmc@ (pppoe), ok claudio@