summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-08-27fix description so it is aligned with other entries surrounding itBrad Smith
-- Ok'd by millert@
2001-08-262nd uninitialized variable that bit me todayNiklas Hallqvist
2001-08-26Don't restrict MICROP 4421-07 quirk to a specific firmware revisionTodd C. Miller
2001-08-26Uninitialized variable.Niklas Hallqvist
2001-08-26su(1) see also: sudo(8) - users coming fron other UNIX environments mayHeikki Korpela
be using su for purposes where sudo would serve better. Suggested by <allenwc@home.com>. Ok millert@
2001-08-26The lkkbd and lkms drivers are causing problems on several machines,Hugh Graham
so inhibit their attachment for the time being.
2001-08-26syncTheo de Raadt
2001-08-26newTheo de Raadt
2001-08-26Prepare for transition to 5-parameter bus_dmamap_sync() by creating andKenneth R Westerback
using adv_bus_dmamap_sync() defines that are defined appropriately depending on __HAS_NEW_BUS_DMAMAP_SYNC. The code changes are simple reversions to the original NetBSD code.
2001-08-26remove excess XrTheo de Raadt
2001-08-26Fix typo: 'On after defining ...' -> 'After defining ...'Kenneth R Westerback
2001-08-26do not panic if spl is wrong, for now; millert & art agreeTheo de Raadt
2001-08-26Fix two typos that had the effect that ethernet addresses where always loggedMatthieu Herrb
as <null> and that hostname lookups didn't work, forcing people to use IP adresses instead of names. ok krw@
2001-08-26minor cleanupsTheo de Raadt
2001-08-26We can now compile kernels with -Werror.Miod Vallat
2001-08-26Add prototypes, fix compilation warnings, random style fixes.Miod Vallat
2001-08-26Attempt to use the configuration and test register to tell aHugh Graham
VS4000 60 KA46 from a MV 3100/80 KA47. Apparently does not work on all 3100/80's, but better than nothing.
2001-08-26pflog is a binary file, ok jakob@Matthieu Herrb
2001-08-26Add a -q to silence zero-output lines and fix some whitespace and text nits.brian
Submitted by: Sam Smith <S@mSmith.net> Ok: theo
2001-08-26this hasn't been used for ages. kill; krw@ ok.Federico G. Schwindt
2001-08-26sort keywordsTheo de Raadt
2001-08-26remove duplicate syscallargs() macrosTheo de Raadt
2001-08-26syncTheo de Raadt
2001-08-26syncTheo de Raadt
2001-08-26be and le varients of syscallarg; from netbsdTheo de Raadt
2001-08-26Yup, I managed to fat finger all three of these while doing bus_dmamap_sync()Jason Wright
conversion (luckily only sparc64 uses the 5 arg form so far =)
2001-08-26deal with 5 arg form of bus_dmamap_sync() if availableJason Wright
2001-08-26Change the second arg to pw_mkdb() from a boolean flag to a set ofTodd C. Miller
bit flags ORed together. Currently the only flags defined are _PASSWORD_SECUREONLY and _PASSWORD_OMITV7 but this is enough to cause pw_mkdb() to run pwd_mkdb with the options we want. With this change we no longer generate the old V7 passwd file when only the extra fields in master.passwd (or the encrypted password) have changed. There are other programs that could probably use the _PASSWORD_OMITV7 flag; they will be converted at a future date.
2001-08-26Final tweak to i386 list2sh.awk SPECIAL handling - consolidate printKenneth R Westerback
statements. Use as base for other architectures to improve comment eradication/space reclamation in scripts on boot floppies.
2001-08-26there is no need for .bak filesTheo de Raadt
2001-08-26Prepare for transition to 5-parameter bus_dmamap_sync() by creating andKenneth R Westerback
using *_bus_dmamap_sync() defines that are defined appropriately depending on __HAS_NEW_BUS_DMAMAP_SYNC. Most of the code changes are simple reversions to the original NetBSD code. Slip in a siop_script_sync() instead of a manually done code section.
2001-08-26Add prototypes, fix compilation warnings, random style fixes.Miod Vallat
2001-08-26more styleNiklas Hallqvist
2001-08-26More syncing with FreeBSD, preparing for a commit.Federico G. Schwindt
2001-08-26remove useless INUSE references from scsi_xfer->flags; art@ miod@ ok.Federico G. Schwindt
2001-08-26Nuke annoying defopt, by popular demand. Plus you get two typos fixedMiod Vallat
for free.
2001-08-25Enable IKE mode config, as it works ok with PGPnet and at least has a usableNiklas Hallqvist
configuration method. Documentation will follow.
2001-08-25Use x509_DN_string API. Style fixes.Niklas Hallqvist
2001-08-25Add x509_DN_string API to get a printable DN component given oneNiklas Hallqvist
rpresented in ASN.1
2001-08-25StyleNiklas Hallqvist
2001-08-25PF ISN randomization. Or in trekkie techno-babble, ISN phase modulation.Mike Frantzen
2001-08-25use callocEric Jackson
2001-08-25OpenBSD doesn't have RLIMIT_VMEM or RLIMIT_SWAP, so we don'tHeikki Korpela
have ulimit -v or -w either. ok millert@
2001-08-25Ooops. Disable accidentally comitted DEBUG.Artur Grabowski
2001-08-25It makes more sense to have argc stored as a long on the stack,Artur Grabowski
not int. Shouldn't affect any archs except sparc64 (now one step closer to a working userland).
2001-08-25This is mvmeppc land, not mvme88k.Miod Vallat
2001-08-25Do not enter/compile installboot on mvmeppc yet - this code is notMiod Vallat
ready yet.
2001-08-25a couple of fixes from me and bk@rt.fmMichael Shalayeff
2001-08-25It is ok for the target file not to exist even if -b was specifiedHeikki Korpela
to install(1), so silently ignore rename(2) ENOENT. Closes PR 2028. ok millert@
2001-08-25Remove dangling comma.Aaron Campbell