Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-04-24 | Introduce a new file, machine/internal_types.h, to hold that specific arch | Marc Espie | |
type characteristics. internal_types.h will contain only settings invisible from standard C, e.g., in the __* or _[A-Z]* namespace, and be reused by files like limits.h. This allows us to shorten machine/limits.h greatly, as all the common defines are now in sys/limits.h, plus a small stub in internal_types.h. Tested on all arches as far as I know. Approved after discussion with art, millert, deraadt, and others. | |||
2002-04-24 | whoops, missed two fields in modexp structure (kinda important ones =) | Jason Wright | |
2002-04-23 | Clear flags indicating whether or not wi or hostap is active as | Todd C. Miller | |
early as possible. Also move the timeout_del() in wi_stop() to before we disable wi(4) so it doesn't fire at the wrong time. Joint effort between mickey@ and myself. | |||
2002-04-23 | modexp context structure | Jason Wright | |
2002-04-22 | regen | Matthieu Herrb | |
2002-04-22 | Add Matrox MGA G550. ok deraadt@ millert@ fgs@ | Matthieu Herrb | |
2002-04-22 | clean up attach messages | Jason Wright | |
2002-04-22 | even better lt kbd map (in the best .su tradition ); from vld@vic.lt | Michael Shalayeff | |
2002-04-21 | Symbol version string need not start with 'V'; from NetBSD (onoe) | Todd C. Miller | |
2002-04-20 | Correct the value for WI_RID_SYMBOL_PREAMBLE and add | Todd C. Miller | |
WI_RID_P2_SHORT_PREAMBLE and WI_RID_P2_EXCLUDE_LONG_PREAMBLE. Unforturnately, the Prism2 preamble RIDs conflict with the Lucent WEP RIDs (and they don't seem to behave as I would expect anyway). | |||
2002-04-18 | add support for Conexant LANfinity RS7112; based on patch from Maurice ↵ | Jason Wright | |
Nonnekes <maurice@amaze.nl> based on FreeBSD (only minor surgery necessary) | |||
2002-04-18 | sync | Jason Wright | |
2002-04-18 | Another conexant winmodem, and a MiniPCI ethernet card; Maurice Nonnekes ↵ | Jason Wright | |
<maurice@amaze.nl> | |||
2002-04-17 | dm9102 appears to be register compatible with dm9101 which is also an ↵ | Jason Wright | |
amphy-alike. | |||
2002-04-17 | remove unneeded bytes; tested by nate, deraadt and nate ok. | Federico G. Schwindt | |
2002-04-17 | Clear flags indicating whether or not wi or hostap is active as | Todd C. Miller | |
early as possible. Also the timeout_del() in wi_stop() to before we disable wi(4) so it doesn't fire at the wrong time. Joint effort between mickey@ and myself. | |||
2002-04-17 | regen | Todd C. Miller | |
2002-04-17 | Spectrum24 LA4100 is vendor id SYMBOL not SYMBOL2; from NetBSD | Todd C. Miller | |
2002-04-16 | move prototypes of dc_eeprom_width, dc_read_srom, and dc_parse_21143_srom to ↵ | Jason Wright | |
dcreg.h and out of the bus specific drivers | |||
2002-04-16 | From NetBSD: | Todd C. Miller | |
o Fix m->m_data alignment in wi_rxeof() o Add a comment | |||
2002-04-15 | Add Siemens/Efficient Networks SpeedStream 1023 Wireless PCI Adapter, | Todd C. Miller | |
another PLX card. From FreeBSD. | |||
2002-04-15 | regen with SpeedStream 1023 | Todd C. Miller | |
2002-04-15 | SpeedStream 1023 Wireless PCI Adapter (PLX-based) | Todd C. Miller | |
2002-04-15 | Remove bogus casts to int in printf that causes a warning on 64bit arches. | Todd C. Miller | |
2002-04-15 | wx is totally gone now | Theo de Raadt | |
2002-04-11 | o Check supported speeds before examing capabilties | Todd C. Miller | |
o If capinfo doesn't match, save it anyway for debugging porpoises o Add more info for capinfo failures in debug mode | |||
2002-04-11 | Fix Lucent <-> Prism2 WEP interop bug. We only want to set the | Todd C. Miller | |
EXCLUDE_UNENCRYPTED bit in the WI_RID_P2_ENCRYPTION value if we are in shared key mode. Symbol cards, just to be different, supposedly always want the EXCLUDE_UNENCRYPTED bit set (confirmed with the Linux orinoco and spectrum24 drivers). I have so far been unable to get my Symbol card to interop with Lucent or Prism2 WEP. In BSS mode at least, this Symbol card does not list WEP as a capability it supports. This is, to put it mildly, rather annoying. | |||
2002-04-11 | o Set feature flags based on firmware type and version. | Todd C. Miller | |
o Move the sc->has_wep flag into sc->wi_flags o Only do the COR reset on Symbol cards just to play it safe. o Remove unused sc->sc_enabled variable. o Kill ibss_portmap array in favor of sc->wi_ibss_port, which is stored in little endian. mickey@ OK | |||
2002-04-10 | o Add ibss and ibss-master mediaopt for ifconfig | Todd C. Miller | |
o Map port type 4 to ibss regardless of firmware type. This gives us a consistent way to set ibss mode. | |||
2002-04-10 | For PLX cards move CIS handling to be earlier | Todd C. Miller | |
2002-04-09 | because SUNW,fas boards don't have a corresponding 'dma' device, searching | Jason Wright | |
for the corresponding 'dma' for a non-fas 'esp' needs to have an offset (really a count of the number of 'fas's) | |||
2002-04-09 | better lt keymap (in the best .su tradition); from Vladis Adler <vld@vic.lt> | Michael Shalayeff | |
2002-04-09 | Don't enable interrupts until an open() is done. Until then the driver | Per Fogelstrom | |
is not handling them and may throw the kernel into a spurious interrupt loop. ok art@ | |||
2002-04-09 | No longer need memsize. | Todd C. Miller | |
2002-04-08 | Make fiber cards work (3com 3c996-SX) | Nathan Binkert | |
Make the BCM5701 chips work. (3com 3c996B-T) From FreeBSD | |||
2002-04-08 | Match on phy model found internally on the BCM5701 chips (3c996B-T) | Nathan Binkert | |
2002-04-08 | sync | Nathan Binkert | |
2002-04-08 | new brgphy model | Nathan Binkert | |
2002-04-08 | two missing splx()s | Michael Shalayeff | |
2002-04-08 | restore what was a default inactivity timeout, two minutes | Michael Shalayeff | |
2002-04-08 | make hostap work on other-endian machines; tested by drahn@ | Michael Shalayeff | |
2002-04-08 | Credit DARPA/USAF appropriately. | Jason Wright | |
2002-04-08 | tag repair | Theo de Raadt | |
2002-04-08 | regen | Mike Frantzen | |
2002-04-08 | ESS Alegro-1 and Maestro 3 stuff | Mike Frantzen | |
2002-04-08 | add an entry for the MAESTRO_3 audio accelerator. it improves your bandwidth | Mike Frantzen | |
almost as much as an openbsd sticker! | |||
2002-04-08 | Allegro-1 and Maestro 3 driver ported from netbsd | Mike Frantzen | |
ok deraadt@ | |||
2002-04-08 | add flag to swap channels. from netbsd. | Mike Frantzen | |
ok deraadt@ | |||
2002-04-07 | Don't reset COR in wi_reset(), break it out into its own function and | Todd C. Miller | |
only call it from wi_attach() and wi_pcmcia_activate() (ie: just once). It would be nicer to have the COR reset be part of the bus-specific code but we need to know whether or not we have a Lucent card since old Lucent firmware revs get messed up on a COR soft reset. Even with the COR reset we still need to avoid initializing Symbol cards more than once. However, we *do* want to do a reset after returning from suspend. Therefore, rename wi_gone to wi_flags and store both the attach and init status in it. wi_reset() now checks wi_flags to see if the card should be initialized in the Symbol case. Info on initializing Symbol cards once from NetBSD. | |||
2002-04-07 | Typo. ok millert@ | Thierry Deval | |