summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-08-06Use .Dl instead of a literal block when we only have a single line. HasTodd C. Miller
the side effect of fixing some ugly indentation (or the lack thereof).
2004-08-06Fix typo (.Bd that should be .Ed)Todd C. Miller
2004-08-06not an error when merging in a directory without whatis.db.Marc Espie
2004-08-06Handle case insensitivity for realJean-Francois Brousseau
2004-08-06Handle the '-b' and '-x' global options even if we don't support them,Jean-Francois Brousseau
and add support for case insensitivity
2004-08-06protect makewhatis calls inside eval.Marc Espie
failing makewhatis should be a warning at best.
2004-08-06Print cpu/cmmu details during boot, like mvme88k.Kenji Aoyama
ok miod@
2004-08-06Add fields to keep track of the file's mode and last modification timeJean-Francois Brousseau
2004-08-06creeping chdir. Not used at all these days, but would bug other clients,Marc Espie
such as pkg_ad....
2004-08-06Unused variableJean-Francois Brousseau
2004-08-06Easy one! Remove two redundant assignments.Per Fogelstrom
OK from miod@, millert@, henning@, marcus@ .... :)
2004-08-06Merge Luna88k and mvme88k M88200 management code. Features:Miod Vallat
- simpler structures (no more redundant or easily computable information). - split scheme configuration (for 4:1 and 8:1 designs) is only compiled in if necessary (read: only on a mvme88k kernel configured for MVME188 support), which speeds up CMMU operations on the Luna88k. - will not enable bus snopping on a monoprocessor system. Tested on Luna88k-2, MVME187 and various MVME188 by aoyama@ and I.
2004-08-06Start using the global files listJean-Francois Brousseau
2004-08-06Have one global hierarchy of files that are being affected. This willJean-Francois Brousseau
allow us to build the tree in memory as well as on disk for operations such as checkout and update. It will also allow us to write all Entries in a single disk write and to avoid creating empty directories on updates when pruning is requested
2004-08-06use OpenBSD::Makewhatis, avoid forking extra makewhatis.Marc Espie
Note: requires you to update makewhatis to work.
2004-08-06the CF_STAT flag is useless now, all we have to do is extract the requiredJean-Francois Brousseau
information and keep it in the file structure
2004-08-06Reorganize makewhatis in smaller modules.Marc Espie
Avoid pulling unneeded code: for instance, if you have only formated manpages in your system, Unformated will never be used; Check put aside and only used in -p mode. -t mode won't pull Whatis. Find; File::Compare and File::Copy and File::Temp likewise. okay millert@
2004-08-06Monster diff to get one step closer to IPv6 support.Claudio Jeker
Cleanup path attribute handling. First of all kill struct attr_flags, all those infos are now in struct rde_aspath. Second move attribute parser functions into rde.c, rde_attr.c is shared between bgpd and bgpctl. Third reimplementation of the nexthop handling. Make it IPv6 ready and fix some major bug relating to "set nexthop". henning@ OK if it breaks nothing
2004-08-06In bgpctl show summary report the current and max prefix count if state isClaudio Jeker
established. OK henning@
2004-08-06Forward IMSG_CTL_SHOW_NEIGHBOR messages to the rde so that we can reportClaudio Jeker
the current and max prefix count back to bgpctl. OK henning@
2004-08-06fix one of the most bizarre bugs in a while...Marc Espie
found by henning@.
2004-08-06@lib shared library marker.Marc Espie
- runs ldconfig to find out search library path. - if library is in path, mark directory for updating cache. - run ldconfig when needed, e.g., right before executing something that might depend on the library. Doesn't handle destdir case yet.
2004-08-06add MII_MODEL_AMD_79C875phyPer Fogelstrom
2004-08-06Add support for Am79C875 quad phy.Per Fogelstrom
ok deraadt@
2004-08-06update for mipsPer Fogelstrom
2004-08-06update for mipsPer Fogelstrom
2004-08-06Document filename semantics, @sample, @extra.Marc Espie
Clean up.
2004-08-06unneeded switch to main package.Marc Espie
2004-08-06avoid pulling in OpenBSD::md5 and File::Copy if we can.Marc Espie
2004-08-06block-scoped require is way simpler than weird AUTOLOAD hack.Marc Espie
2004-08-06unified headers, switch to smaller copyright notice.Marc Espie
2004-08-06Extradir name.Marc Espie
Don't bother deleting it if it's not there.
2004-08-06deinstall DirRm like DirBase.Marc Espie
2004-08-06And another...Marco Peereboom
2004-08-06oops. noted by lizardo@openbsd.org.mxArtur Grabowski
2004-08-06Remove __static inline to make the kernel ~24k smaller on i386 and make the ↵Marco Peereboom
debug sessions bearable. ok krw@ deraadt@
2004-08-05kill 3 lines of unused codeMarc Espie
2004-08-05refactor classes in PackingElement to share more code.Marc Espie
- all files go through FileBase, all directories go through DirBase. - dirclass() is used to switch classes based on final /, so that @sample, @extra, and @file all take directories as well. - set NoDuplicateNames() more thoroughly. - make sure all no-default-conflict objects are correct. compute_fullname() checks for absolute paths, allowed for @sample and @extra. lastfile only gets set for actual files. special names like INSTALL are only checked for normal files. add a CVSTag class for @comment $OpenBSD$, so that these get sorted first. Changes for make-plist rewrite: clone() method that can create copies of all hash objects, to specialize if needed. add_object() method so that add() is now new() followed by add_object() for most objects (useful for cloned objects). Check that plist has a name in pkg_create, allowing PackingList to write unnamed plists.
2004-08-05- Remove the userland data limit check. It's mmap(2)'s job.Thierry Deval
- When malloc_abort==0 (MALLOC_OPTIONS=a), don't abort in wrterror(). fine deraadt@
2004-08-05spacingTheo de Raadt
2004-08-05syncTheo de Raadt
2004-08-05Unbreak luna88k; spotted by aoyama@Miod Vallat
2004-08-05comapring -> comparing noticed by brad@.Claudio Jeker
2004-08-05remove some separate per driver constants and useBrad Smith
ETHER_MAX_LEN_JUMBO/ETHERMTU_JUMBO where appropriate.
2004-08-05The peer_l is not needed in the rde but still allocated, free them andClaudio Jeker
save 1k per peer. OK henning@
2004-08-05When probing using badaddr make sure the probe load instructionPer Fogelstrom
is retired before turning off trap handling. Otherwise a panic trap may be taken. OK drahn@
2004-08-05As usual cleanup on exit. OK henning@Claudio Jeker
2004-08-05compile before you commit damnitTheo de Raadt
2004-08-05use ETHER_MAX_LEN.Brad Smith
ok mickey@
2004-08-05remove some separate per driver constants and useBrad Smith
ETHER_MAX_LEN_JUMBO/ETHERMTU_JUMBO where appropriate. ok mcbride@ henning@ mickey@