Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-04-11 | Fix an off-by-one error. Also, SETFRAGMENT ignores the high bit; from NetBSD. | Aaron Campbell | |
Now the sound from the Linux binary of VGB (Virtual Gameboy) is emulated correctly, although only with sound cards whose drivers' aren't picky about rounding blocksizes. | |||
2001-04-10 | Split RealTek 8129/8139 driver into bus-dependent and bus-independent parts; | Aaron Campbell | |
prep for an rl CardBus attachment. | |||
2001-04-10 | add shutdown hook to stop the adapter completely | Jason Wright | |
put txp_set_filter() in the right places | |||
2001-04-10 | allow host-to-host negotiations if no gateway has been specified. | Niels Provos | |
from angelos@ | |||
2001-04-10 | receive filter programming | Jason Wright | |
2001-04-10 | Don't seg-fault on file systems that don't support cookies. Thanks to | Constantine Sapuntzakis | |
Jason Ish for finding this one. | |||
2001-04-10 | Decrement open_count in netclose(); this fixes the bug which caused | Brandon Creighton | |
boot to halt on boot attempts after a failed network boot attempt. Also, prototype netmountroot() and return 0 in netclose(). | |||
2001-04-10 | Fix for machines which need to enlarge the kernel address space, at least | Niklas Hallqvist | |
1GB i386 machines needs this. The fix is heavily based on Jason Thorpe's found in NetBSD. Here is his original commit message: Instead of checking vm_physmem[<physseg>].pgs to determine if uvm_page_init() has completed, add a boolean uvm.page_init_done, and test against that. Use this same boolean (rather than pmap_initialized) in pmap_growkernel() to determine if we are being called via uvm_page_init() to grow the kernel address space. This fixes a problem on some i386 configurations where pmap_init() itself was needing to have the kernel page table grown, and since pmap_initialized was not yet set to TRUE, pmap_growkernel() was choosing the wrong code path. | |||
2001-04-10 | This file is not welcomed here. | Miod Vallat | |
2001-04-10 | Get rid of unnecessary symbols. | Miod Vallat | |
2001-04-09 | - full media support (and remove all of the mii stuff... the firmware wants | Jason Wright | |
to maintain write control over the phy... fine... but we query it to get current status). - fix several bugs in cmd/rsp handling: match responses to commands via id/seq, and add a routine to fixup the queue if it gets mangled). | |||
2001-04-09 | FFS_SOFTUPDATES in sys/conf/GENERIC | Theo de Raadt | |
2001-04-09 | Add softdep. | Hugh Graham | |
2001-04-09 | Honor the db_console sysctl variable, like PCVT did. | Aaron Campbell | |
2001-04-09 | LFS is not an option right now. | Artur Grabowski | |
2001-04-09 | Add emulation of Linux features to procfs; mostly from NetBSD. ok deraadt@ | Thorsten Lockert | |
2001-04-09 | further stripping down | Theo de Raadt | |
2001-04-09 | Handle more Linux ioctls; from NetBSD. ok deraadt@ | Thorsten Lockert | |
2001-04-09 | Silently ignore signals we don't handle; idea from NetBSD. Ok deraadt@ | Thorsten Lockert | |
2001-04-09 | To fit, fxp must go. Sorry | Theo de Raadt | |
2001-04-09 | partial mii support (commented out because the response queue freaks out) | Jason Wright | |
get link status via media status query (unclear how to get speed/duplex this way) fix media command definitions to match documentation update the hostvar index for response queue on successful query | |||
2001-04-09 | basic media handling/switching | Jason Wright | |
XXX: Status routine needs to really query device to get duplex/speed/link | |||
2001-04-09 | - implement command and response ring management | Jason Wright | |
- rewrite definitions for command/response rings (bad aaron, shared memory structures are volatile and should not use nonportable bit slices, ':') Status: loads firmware, boots, gets mac address | |||
2001-04-09 | A much tidier layout, from NetBSD. | Hugh Graham | |
2001-04-09 | Amputate some dead and broken code and rework the rest to do the | Hugh Graham | |
right thing if booting off something other than sd0a. RB_ASKNAME will be reimplemented later. | |||
2001-04-09 | Comment out compat vax1k until needed. | Hugh Graham | |
Also a large quantity of whitespace fixes. | |||
2001-04-08 | - bring over some bus_dma allocation code (from failed attempt to ↵ | Jason Wright | |
bus_dma-ify ubsec) - allocate rings and boot the card Status: firmware loads, card appears to boot correctly | |||
2001-04-08 | addtron card has prism2 in it, it's justthat cis was not given properly | Michael Shalayeff | |
2001-04-08 | regen | Michael Shalayeff | |
2001-04-08 | correct cis for addtron | Michael Shalayeff | |
2001-04-08 | Typo. __IP_FIL_H__ -> __IP_FRAG_H__ | smart | |
2001-04-08 | and host ring definition | Jason Wright | |
2001-04-08 | define boot record | Jason Wright | |
2001-04-08 | - load microcode from better directory (still not in tree) | Jason Wright | |
- reg "definition" for soft reset register - make sure fileheader and section number are initialized before use - verify section checksum before use - add a skeleton txp_start() | |||
2001-04-08 | sync | Aaron Campbell | |
2001-04-08 | another sis vga | Aaron Campbell | |
2001-04-08 | correct wi_write_record(); from freebsd; pointed out by Alfred Perlstein ↵ | Michael Shalayeff | |
<bright@wintelcom.net> | |||
2001-04-08 | make sure that we don't go off the end of the image | Jason Wright | |
2001-04-08 | cleanup, more register definitions | Jason Wright | |
2001-04-08 | Update closer to current status of powerpc, remove items resolved or | Dale Rahn | |
mostly resolved. | |||
2001-04-08 | Some cleanup to the mac audio driver, does not improve the interrupt | Dale Rahn | |
storm much, but hopefully is in the right direction. | |||
2001-04-08 | Attempt at tracking interrupt source better than "irqN", with this | Dale Rahn | |
change, when the interrupt is established, the string will be changed from irqN to irqN/dvrname. Some drivers establish nice names, "usb0" some do not, "wdc_obio". | |||
2001-04-08 | Add one more 1 byte (reserved, as defined in spc-2) field to the | Kenneth R Westerback | |
scsi_inquiry_data structure. The last commit made the structure 57 bytes long, an odd number. This caused problems with at least two drivers, which were not prepared to handle the IGNORE WIDE RESIDUE message during probing. This message apparently being generated during probes of non-existant LUNs. Problem found on siop by Rev. Chris Cappuccio and on iha by Andreas Gunnarsson <andreas@zzlevo.net>. | |||
2001-04-08 | Skeleton driver for 3c990 (mainly so aaron/theo/myself can coordinate) | Jason Wright | |
- the firmware image is still under a restrictive license, so it will not be in the tree yet - driver only knows how to (correctly) upload firmware - register definitions and such are incomplete | |||
2001-04-08 | Don't print anything for transmission error 90, since the driver always | Aaron Campbell | |
recovers from the situation, and there's not much point in knowing about it. | |||
2001-04-07 | Stack gap no longer fits common structures (like struct statfs), causing | Thorsten Lockert | |
many emulated system calls (SysV, Linux, others) to fail. Bump from 400 up to 512 bytes; ok aaron@ | |||
2001-04-07 | Additional console ioctl definitions | Thorsten Lockert | |
2001-04-07 | Handle Linux Virtual Terminal ioctl calls with wscons as well as vt; | Thorsten Lockert | |
requires WSDISPLAY_COMPAT_USL | |||
2001-04-07 | Reduce the count of fs_sparecon's by 1 for 64 bit architectures | Todd C. Miller | |
since fs_contigdirs takes 64 bits on those platforms. This fixes a problem on alpha where "struct fs" grew. A better solution is to make fs_csp into a pointer and use the remainder for pointer spares and allocate fs_contigdirs from those. This will happen some time post-2.9. | |||
2001-04-07 | OK, PMAP_NEW by default once again. This time it should work better for | Niklas Hallqvist | |
userland since art removed the vm_pmap field that made UVM and old VM differ. An option PMAP_OLD is provided should someone need to configure with the old pmap. This is suspected to go away soon so I will not document it. |