summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-03-18improve ar5212 init on resetReyk Floeter
2005-03-18add IBSS and HostAP support. thanks to SnoopyPro.Damien Bergamini
2005-03-18sk(4) fitsTheo de Raadt
2005-03-18another re* at cardbus missing, arghcvs diff -u RAMDISK_CDTheo de Raadt
2005-03-18sk(4) fitsTheo de Raadt
2005-03-18disable a bunch of old devices (mostly ISA, or stuff people are unlikelyTheo de Raadt
to use on a laptop) enable a bunch of newer devices. For instance, a whole whack of new gigabit & wireless cards -- pci and cardbus
2005-03-18use xferlen for mgt frames too. this prevents management frames with aDamien Bergamini
odd length from being dropped.
2005-03-18don't set BSSID in hostap mode. this allows hostap mode to work to someDamien Bergamini
extend.
2005-03-18ignore bmiss interrupts for now.Reyk Floeter
2005-03-18only update the flags part of PHY_CSR5 and PHY_CSR6. this makes OFDMDamien Bergamini
modulation working and improves tx signal.
2005-03-18close pipes and free tx/rx lists in detach(). this avoids some of theDamien Bergamini
panics observed when detaching the device while the interface is up.
2005-03-18enable ural since it works fine here tooDavid Gwynne
ok deraadt@
2005-03-18fail to attach with a printf instead of a panic for newer yet unsupportedBrad Smith
Yukon-2-based cards. ok deraadt@
2005-03-18+bge(4), ok deraadt@Brad Smith
2005-03-18Add bge. ok deraadt@.Kenneth R Westerback
2005-03-18sync and cleanup in ubsa(4)Reyk Floeter
2005-03-18add new 3G devices from Option. the Vodafone MC3G is an Option device.Reyk Floeter
ok deraadt@
2005-03-18Only complain about tx fifo overflows if RTW_DEBUG is set.Jonathan Gray
ok deraadt@
2005-03-17fix comment wrt previous changeMichael Shalayeff
2005-03-17Increase timeout in fdcresult(), this allows fdformat(8) to work now.Miod Vallat
ok deraadt@
2005-03-17add two more revs of romless cards; from netbsdMichael Shalayeff
2005-03-17enable uralDavid Gwynne
"do it" deraadt@
2005-03-17support for ipv6.Damien Bergamini
2005-03-17fix ral_enable_tsf_sync() for hostap mode.Damien Bergamini
2005-03-17do not drop ToDS frames when acting as an access point.Damien Bergamini
fix beacon expired interrupt handler in hostap mode.
2005-03-17give ipv6 a chance. pointed out by Paul de Weerd.Damien Bergamini
2005-03-17enable tx retries for unicast frames.Damien Bergamini
ok and tweaks from dlg@
2005-03-17fix for big endian archsDavid Gwynne
ok damien@
2005-03-17- fix ralink urlDamien Bergamini
- add usb events for attach/detach - pre-allocate rx buffers so they are not allocated in an interrupt context - let ural_free_rx_list() do the cleanup
2005-03-17+vge, ciphy; requests by pvalchevTheo de Raadt
2005-03-16oops, this needs the ural classifierTheo de Raadt
2005-03-16ural will be here tooTheo de Raadt
2005-03-16permit ramdisks to compileTheo de Raadt
2005-03-16syncDamien Bergamini
2005-03-16move ral vendor/product Ids into usbdevsDamien Bergamini
2005-03-16enable uralTheo de Raadt
2005-03-16Driver for Ralink Technology RT2500USB wireless adapters.Damien Bergamini
ok deraadt@
2005-03-16Use biowait() instead of rolling our own.Miod Vallat
tested krw@ moritz@, ok deraadt@
2005-03-16+rtw, ral, but a few rare ethernet devices go away..Theo de Raadt
2005-03-16ath, atw, ral, rtw on CD ramdiskTheo de Raadt
2005-03-16more wireless chipsetsTheo de Raadt
2005-03-16play the relied-upon-xlation proper; deraadt@ okMichael Shalayeff
2005-03-16don't account packet's twice; from joel@; ok deraadt@, henning@Markus Friedl
2005-03-16amd64 also fails copyoutstr regress, missed in the first round.Ted Unangst
need to checker the to address. patch from netbsd. ok deraadt mickey
2005-03-15s/IPL_BIO/IPL_TTY. ok drahn@, deraadt@Uwe Stuehler
2005-03-15tag for release, more things coming, but ports needs thisTheo de Raadt
2005-03-15enable hotplug on macppc, been using it for some time, forgot it wasn't enabled.Dale Rahn
2005-03-15Skip empty pci ranges rather than aborting probe, as done on sparc64.Miod Vallat
ok drahn@
2005-03-15Only warn if pci_{io,mem}_find fails if the returned value is not ENOENT - emptyMiod Vallat
ranges are skipped and considered harmless.
2005-03-15Only print warning messages in pci_{io,mem}_find() if option DEBUG; instead,Miod Vallat
do not return 1 on failure but a real errno the caller can check for proper action. tweaks and ok mickey@