summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2002-03-29add numlock, pgup, pgdn, home, end.Dale Rahn
2002-03-29eap works on sparc64Theo de Raadt
2002-03-29i_nwid is not a NUL-terminated string, it is length bounded.Todd C. Miller
2002-03-29regenTodd C. Miller
2002-03-29Add Proxim RangeLAN-DS PCMCIA card (model 8430); Paul M. HirschTodd C. Miller
2002-03-29Change lower enter key to be 'Mode_Switch' like it was before.Dale Rahn
Add note for power button (not currently translated). Meta_L vs Super_L is still an issue (CMD/Win key) o CMD/Win key is Super_L not Meta_L, usb has this too. Changing to RAW will change swap Meta and Alt (to what is printed on key, not PC layout).
2002-03-29o remove extra args in printf's.Federico G. Schwindt
o remove unneded struct. o change error to match reality. jason@ ok.
2002-03-291) restrict 'hostap' mediaopt to prism2 chipsTodd C. Miller
2) set ether_dhost and ether_shost based on wi_dst_addr and wi_src_addr respectively. This allows packets to traverse the hostap and is also what FreeBSD and NetBSD both do. 3) Move the setting of tx_frame.wi_frame_ctl to be right after we zero tx_frame. Otherwise we end up clearing the WI_FCTL_FROMDS flag. 4) Use some ETHER_* constants instead of hard-coding things (cosmetic only)
2002-03-28put the protos and spls in placeMichael Shalayeff
2002-03-28missing timeout add and del; some minor api changeMichael Shalayeff
2002-03-28some BITS defs for %bMichael Shalayeff
2002-03-28i forgot these for if_wiMichael Shalayeff
2002-03-28basic host-ap implementation, more work is needed; from Thomas Skibo ↵Michael Shalayeff
<skibo@pacbell.net>; millert@ ok
2002-03-28recognize isl37300p as a prism2.5, for niels babyMichael Shalayeff
2002-03-28syncNiels Provos
2002-03-28new linksys wpc11; okay mickey@Niels Provos
2002-03-28Add WSDISPLAY_COMPAT_RAWKBD (commented), add missing mux pieces.Dale Rahn
It is now possible to test wsmux with (recent) X. XF86Config changes are necessary in InputDevice Section: Protocol -> standard, remove Device.
2002-03-28All US keys beside KPEQ and Mode_switch? (enter key on laptops) fixed.Dale Rahn
2002-03-28do not use MID_ZERO! then file(1) does not workTheo de Raadt
2002-03-28use MID_HPPA for core file markingTheo de Raadt
2002-03-28HPPA mid (needed for core files)Theo de Raadt
2002-03-28- recheck the PCI BAR's during mmap: XFree86 doesn't like the prom mappingsJason Wright
so rather than deal with it, it remaps things. - turn off access to the rom... this may need rethinking (both accelerated X and dumb framebuffer X work because the offsets will not overlap).
2002-03-28Remove debugging that was forgotten.Dale Rahn
2002-03-28Replace magic values with appropriate constants.Miod Vallat
2002-03-28Doh, I'm on drugs.Miod Vallat
2002-03-28Better fix.Miod Vallat
2002-03-28be more careful about breaking the RAMDISK guysTheo de Raadt
2002-03-27Indicate which keys translations are missing.Dale Rahn
2002-03-27Update comment at the top to reality.Todd C. Miller
2002-03-27add WSDISPLAY_COMPAT_RAWKBD support for macppc, not complete yet, Fx keysDale Rahn
are missing in translation table. Not enabled yet.
2002-03-27must be at least 7 insns between rsm/ssm; minot cleanups and debugging printfsMichael Shalayeff
2002-03-27tsk tsk tsk, compile it first.Dale Rahn
2002-03-27Add X-Window support to wsmoused(8). This allows running wsmoused(8) andjbm
X-Window at the same time, removing the need to kill wsmoused(8) before starting X-Window.
2002-03-27implement a "no-route" keyword.Michael Shalayeff
usage semantics are analogous w/ "any", meaning is "any ip address for which there is no route in the current routing table", could be used in both from and to. typical usage would be (assuming symmetrical routing): block in from no-route to any also doc "any" in the pf.conf.5, include in regress, etc. tested by me on i386 and sparc. dhartmei@ and frantzen@ ok
2002-03-27Calculate the maximum queue depth correctly.Grigoriy Orlov
PR2490 from Alexander Yurchenko <grange@rt.mipt.ru>
2002-03-27suppress "duplicate IP" message when booting machines with no initial IP.Ian Darwin
2002-03-27Don't use magic constants to the loop over the BAR, also, include theJason Wright
politically correct check for whether this is an io or mem mapping space.
2002-03-27Need APERTURE so we can read/write pci configuration with securelevel > 0Jason Wright
2002-03-27make sure error is set to zero on the pci write case for user confJason Wright
2002-03-27knf (case labels align with switch)Jason Wright
2002-03-27From FreeBSD: check for FIFO becoming unfull correctly, in the case of ↵Niklas Hallqvist
consumer index wrapping. Improve an internal API. ok mickey@
2002-03-27Avoid using bus_space_map2() on the rom (was too lazy to deal with endian =),Jason Wright
instead use bus_space_map() and bus_space_read_1() to gaurantee correct endian; speed isn't an issue here (well, as long as some joker doesn't ship a 16MB vga rom...)
2002-03-27Make a shadow copy of the bios rom (if available) and make it available via mmapJason Wright
Also, don't hardcode the length of the pixel memory in vgafb_mmap(), use the size provided by pci_mem_find.
2002-03-27bus_space_mmap wants the paddr not the handleJason Wright
2002-03-26Add support for the TMD7160 dumb PCI-ISA bridge (similar in function toTodd C. Miller
the PLX905x). Info gleaned from patches to the Linux wlan driver from NDC. This makes the NDC NCP130 rev A2 work.
2002-03-26regenTodd C. Miller
2002-03-26o 0x15e8 is National Datacomm Corp, not CoregaTodd C. Miller
o Add NDC NCP130 PCI Prism2 boards (2 flavors)
2002-03-26Change default logging level from none to urgent. Should never printDaniel Hartmeier
anything, and if it does, it should be reported.
2002-03-26m_freem(NULL) bad style, ok jason@Niklas Hallqvist
2002-03-26Fix 128bit WEP on prism2; from FreeBSDTodd C. Miller