summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
2005-01-17PXALCD type.Dale Rahn
2005-01-14Switch OpenBSD/hp300 to wscons, still using on-board ROM fonts for now.Miod Vallat
Main features: - MI hil drivers, allowing live plug/unplug of devices, and the keyboard does not need to be at id 1 anymore. - SGC bus support on 4xx models. SGC frame buffers are supported too, but not as console, though you can use them as a regular glass terminal if you run a getty on ttyC0. Currently not compiled-in, awaiting for an sti(4) fix to be commited. - HP-UX compatibility interfaces are removed. grfinfo and hilinfo are removed. X11 support is currently broken by these changes; X.org X11R6 support will be available very soon. Tested on hyperion and 4 different flavours of catseye/topcat/kathmandu; other, older frame buffers (davinci, gatorbox and renaissance) could not been tested but should work; please report any regression.
2005-01-14zaurus entry, ok miod@Dale Rahn
2005-01-14`halt -p' works on some zaurus platforms (C3000).Uwe Stuehler
ok drahn@
2005-01-13be aware of zaurusTheo de Raadt
2005-01-13build on zaurus too, after further discusssion, because MANSUBDIR needsDale Rahn
updating it will be explicit MACHINE
2005-01-08Use the handler specified in phandler instead of always usingCan Erkin Acar
dump_packet. Report and patch from Peter Postma, thanks.
2005-01-07Print disk size and free space in requested unit. Some refactoring toOtto Moerbeek
avoid code duplication as well. ok marco@ deraadt@
2005-01-07Use fstatfs(), not statfs() to determine free space so if /var/crashTodd C. Miller
is a link we follow it. OK deraadt@ jcs@
2005-01-06validate mfs size to avoid wrapping. ok miod@Otto Moerbeek
2005-01-06Missing braces in pfctl_load_debug(), pointed out by camield@Ryan Thomas McBride
2005-01-05spelling;Jason McIntyre
2005-01-05kill whitespace;Jason McIntyre
2005-01-05Document -m flag.Ryan Thomas McBride
2005-01-05Modify pfctl behaviour so that 'set ...' options are no longer "sticky", ie.Ryan Thomas McBride
they are reset to default values if omitted from a subsequent ruleset load. Also: - make sure 'set ...' options are not loaded in anchors. - add a -m ("merge") flag to pfctl which allows an individual option to be set without reseting the others, eg: # echo "set loginterface fxp0" | pfctl -mf - ok henning@ dhartmei@
2005-01-05Discourage using aggressive mode.Hans-Joerg Hoexer
ok and some help ho@
2005-01-03don't merge a rule's source address into a table if we're already trying toMike Frantzen
merge its destination address. caught by an assertion. it's tempting to do recursive reduction here to pick that low hanging fruit.... bug report from <gustavo AT hades DOT uint8t DOT org>
2005-01-02"bad-timestamp" is a valid logging reason;Jason McIntyre
from joel knight;
2004-12-31Build wicontrol on all arm archs, not just cats.Dale Rahn
2004-12-30Replace home-grown byte swapping routine with calls to swap* macrosTodd C. Miller
from endian.h. Header swapping is moved into its own function. Fixes problems reading non-native endian dump images on sparc64. Adapted from changes in NetBSD.
2004-12-29Put settimeslot() into #ifndef SMALL as it is not needed on ramdisks.Claudio Jeker
OK deraadt@
2004-12-29Print 'set fingerprints' correctly when parsing verbosely.Ryan Thomas McBride
2004-12-29Make sure that fingerprint_count gets reset to 0 correctly when we flushRyan Thomas McBride
our list of fingerprints. ok dhartmei@ henning@ frantzen@
2004-12-29change last commit so that the test for PF_OPT_NOACTION is actually inDan Harnett
pfctl_clear_interface_flags(). suggested by and ok henning@
2004-12-29don't clear interface flags if '-n' option was given.Dan Harnett
ok henning@
2004-12-29be quiet about resetting the interface flags omn ruleset load, onlyHenning Brauer
print that info on manual flushes. noticed by marc@
2004-12-28reset skip interface flags on reloads and for -FallHenning Brauer
from max, this time working :)
2004-12-28handle strtoul correctly on 64-bit machines; hshoexer okTheo de Raadt
2004-12-28proper portable C; ok hshoexerTheo de Raadt
2004-12-28Correctly determine length of rsa key passed by the kernel to userland. FoundHans-Joerg Hoexer
and fix provided by Stefan Miltchev. Again, many thanks! Slightly different fix. ok ho@
2004-12-28use __LP64__; miodTheo de Raadt
2004-12-27unbreak treeTheo de Raadt
2004-12-27reset skip interface flags on reloads and for -FallHenning Brauer
from max
2004-12-27Fix broken pointer arithmetic when receiving a RSA key from the kernel. FoundHans-Joerg Hoexer
and fix provided by Stefan Miltchev. Thanks! ok otto@
2004-12-26snprintf return value paranoia; henning okTheo de Raadt
2004-12-25#ifndef SMALL throughout this, for install media; ok mcbrideTheo de Raadt
2004-12-23set rule_flag PFRULE_SRCTRACK when setting srctrack, found by camield@Daniel Hartmeier
using regress test pf84
2004-12-22Introduce 'set skip on <ifspec>' to support a list of interfaces where noDaniel Hartmeier
packet filtering should occur (like loopback, for instance). Code from Max Laier, with minor improvements based on feedback from deraadt@. ok mcbride@, henning@
2004-12-22Fix parenthesis mismatch, from Stefan Miltchev. Thanks!Hans-Joerg Hoexer
While around, zap some spaces ok markus@
2004-12-22also pass SIGINT/QUIT to child, from mpech@. ok avsm@Otto Moerbeek
2004-12-22some -Wimplicit-function-declaration cleaning; ok millert@David Krause
2004-12-19use strchr instead of indexTheo de Raadt
2004-12-15missing free()s; with patHenning Brauer
2004-12-14&&/|| inversion would try to merge IP addresses with non-addresses into aMike Frantzen
single table causing a ruleset load error and eventually a double-free. bug report and testing from martin{AT}spamcop net
2004-12-14Reword comment a bit for clarity. hshoexer@ ok.Hakan Olsson
2004-12-14add two warn() calls to make sure a warning message gets printed if one ofMike Frantzen
the table calls fails and the optimizer is gonna bomb out
2004-12-14Allow the Address, Network, or Netmask values of the <IPsec-ID> to beRyan Thomas McBride
specified with an interface name (in which case the first address is used) or the keyword 'default' (in which case the address is selected based on the default route). eg: [roadwarrior-ip] ID-type= IPV4_ADDR Address= default ok ho@ hshoexer@
2004-12-14link0 drops IP multicast, and link1 non-IP multicast. Not the other wayCamiel Dobbelaar
around. ok fgsch@
2004-12-14mention /var/backups;Jason McIntyre
ok otto@
2004-12-13sync authpf anchor syntax;Jason McIntyre
also, spelling while i'm in here; from joel knight;