summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-11-02superfluous comma, From: James Herbert <lists@artyzan.net>Henning Brauer
2004-11-02ansi, indentation, etc.Hans-Joerg Hoexer
ok markus@ krw@ cloder@ millert@
2004-11-02don't leak mem on strlcpy failure, Patrick LatifiHenning Brauer
2004-11-02Don't call memset() if MALLOC returns NULL; also fix the rcs ID.Todd C. Miller
From Patrick Latifi; OK reyk@
2004-11-02spacing, beautify dmesg outputReyk Floeter
2004-11-02syncTheo de Raadt
2004-11-02now that carp media descriptions are available through the ifmedia frameworkHenning Brauer
print carp interface status correctly
2004-11-02KNF - reyk, look at this diffHenning Brauer
not that ifconfig is our prime example for nicely KNF'd and readable code tho
2004-11-02kill spacesHans-Joerg Hoexer
ok djm@
2004-11-02supress logging of the (likely very long) repeated Connect -> Active ->Henning Brauer
Connect -> Active state changes, just clutters logs, claudio ok
2004-11-02save the previous state in struct peer, claudio okHenning Brauer
2004-11-02removed some printfsReyk Floeter
2004-11-02Do not modify ro mem and plug a mem leak. Happens when no cipherOtto Moerbeek
spec is found in login.conf. Found by Jerome Loyet. ok henning@ hshoexer@ and millert@ on an earlier version.
2004-11-02factor out the dma memory allocation, mapping, freeing and unmappingmarius eriksen
functionality and call them only on attach and detach. these were being called in interrupt context and were causing a panic on device timeout. ok damien@
2004-11-02no CardBus here.Brad Smith
2004-11-02import of a free hal part for the ath driver as a replacement for theReyk Floeter
binary-only hal module found in FreeBSD and NetBSD. OpenBSD's approach is based on reverse engineering because it is _not_ possible to include a non-free and binary-only piece of software in a 100% free operating system. it still lacks some features found in the "official" hal module but this will be done very soon with a help by a lot of contributors - because it's free. ok deraadt@
2004-11-02imported Sam Leffler's ath driver for atheros multimode wireless nicsReyk Floeter
from NetBSD and FreeBSD. ok deraadt@
2004-11-02spacingTheo de Raadt
2004-11-02some changes merged in from netbsd. ieee80211_regdomain.# will be usedReyk Floeter
by sdr (software defined radios). ok deraadt@ millert@ damien@
2004-11-02added new commands to ifconfig used by net80211 interfaces:Reyk Floeter
mode (set mode for multi-mode interfaces) and chan (set the radio channel). some additional output will be printed by "ifconfig -m". ok deraadt@ millert@ damien@
2004-11-02udav is broken on alpha so remove it for now.Jonathan Gray
2004-11-02delint gunk approved by otto a while backTheo de Raadt
2004-11-02BSD-like license permitting redistribution of of the current AtmelTheo de Raadt
firmware (apparently new firmwares coming soon). Agreement worked out with rbisset@atmel -- the marketing director :) Thanks Atmel, I am working on a driver.
2004-11-02from netbsd:Theo de Raadt
Generated from the firmware binaries for T3 series CF adapter. Obtained from Tim Gardner <timg@tpi.com> who developed the Linux driver. And approved by Brad Lefore <blefore@sj.symbol.com> to redistribute it with BSD license.
2004-11-01much to my surprise a minute has only 60 seconds, and the hour 60 minutes,Henning Brauer
not 70 :( From: Jorden Verwer <J.Verwer@inter.NL.net>
2004-11-01syncTheo de Raadt
2004-11-01adjust dependenciesMarc Espie
2004-11-01pkg_add may need to clean up shared items now that it can delete old stuff.Marc Espie
let very verbose mode show moving files around.
2004-11-01allows Delete to remove a plist (assuming it's already been validated).Marc Espie
let pkg_add -r compute a replaced package and store its plist in the new package plist, so that replacement has a chance to proceed. Not finished yet. Missing: - real lib depends checks; - restoring package dependencies after replacement.
2004-11-01syncTheo de Raadt
2004-11-01englishPedro Martelletto
2004-11-01move all the checking prior to extraction to a `prepare_to_extract' function.Marc Espie
check that linknames match while we're at it.
2004-11-01linknames have extra 0 we want to get rid of.Marc Espie
2004-11-01typoMarc Espie
2004-11-01handle the case of symlinks.Marc Espie
Let pkg_add -r do extraction first, and finish installation later.
2004-11-01separate `extract' routine that can put an archive in temporary filesMarc Espie
next to their final locations. XXX: doesn't work with hard links, yet.
2004-11-01reorg pkg_add slightly, put all options into state so that we don't needMarc Espie
to use local variables.
2004-11-01additional DIAGNOSTIC, checking for proc in lockmgr when requiredmarius eriksen
ok pedro@ tedu@
2004-11-01check for malloc() in bufq_default_alloc(), ok tedu@Pedro Martelletto
2004-11-01back out previous commit.Brad Smith
2004-10-31do not dupe a pagan entry hereMichael Shalayeff
2004-10-31don't swap zerosBrad Smith
2004-10-31sync with quirks from FreeBSD and NetBSD, ok dlgJonathan Gray
2004-10-31regenJonathan Gray
2004-10-31more devices from FreeBSD and NetBSDJonathan Gray
2004-10-31fix logic error: we will be able to fully validate the new packing-listMarc Espie
in pkg_add -r mode, it's just a question of removing the old package from the virtual filesystem early, so that we can still check for collisions. Help getting OpenBSD::Delete self-contained while we're there...
2004-10-31UQ_NO_STRINGS no longer needed, ok dlgJonathan Gray
2004-10-31from netbsd via freebsd via jsg@David Gwynne
usbdi_util.h (1.29), uhid.c (1.62), ugen.c (1.68), usb_subr.c (1.114) Yes, some devices return incorrect lengths in their string descriptors. Rather than losing, do what Windows does: just request the maximum size, and allow a shorter response. Obsoletes the need for UQ_NO_STRINGS, and therefore these "quirks" are removed. usb_subr.c (1.116) In the "seemed like a good idea until I found the fatal flaw" department... Attempting to read a maximum-size string descriptor causes my kue device to go completely apeshit. So, go back to the original method, but allow the device to return a shorter string than it claimed.
2004-10-31Simplify ldconfig handling: one single ensure_ldconfig routine thatMarc Espie
reruns ldconfig -R (okay, we don't check that -m would be enough, so what ?) First hooks for -r: check that replacement should work.
2004-10-31change the undocumented -t flag to -n used for configuration testingCan Erkin Acar
and document it. cleanup some unused/unneeded variables while there. idea & ok henning@