summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-09-17Handful of additional devices.Jonathan Gray
Partially from Lawrence Teo lcteo at uncc.edu
2005-09-17allows grabbing the packing-list directly from a PackageLocation,Marc Espie
in order to make further code more symetric and efficient.
2005-09-17special-case when we only need the packing-list.Marc Espie
2005-09-17beginning to a source path repository infrastructure, very likely to changeMarc Espie
a lot yet.
2005-09-17Document the process for pkg_add -u.Marc Espie
2005-09-17document quickie $o->contents() methodMarc Espie
2005-09-17write down explicitly that directory names in PKG_PATH should end with a /,Marc Espie
since pkg_add will have trouble splitting the path correctly in the presence of weird url schemes otherwise.
2005-09-17slightly simpler install.Marc Espie
2005-09-17minor nitMarc Espie
2005-09-17Document PKG_CACHE.Marc Espie
Document a few more -F toggles. Explain in more details what happens during pkg_add -r.
2005-09-17regenJonathan Gray
2005-09-17Linksys USB200M v2Jonathan Gray
2005-09-17refactor this code, much more readable, no operational change.Dale Rahn
2005-09-17remove VPD bitsBrad Smith
2005-09-17Cleanly handle the case where a dynamic object is opened, but one of it'sDale Rahn
dependant libraries is missing. return NULL for a handle instead of causing the program to exit.
2005-09-17add regression tests to validate that dlopened objects can pick up theirDale Rahn
depend libraries. Also that dlopen() does not just exit when a dependant library is not found.
2005-09-17add media detection and dual port detection for Yukon-2.Brad Smith
from jason@
2005-09-17Respect main program's rpath for dependancies of dynamic libraries.Dale Rahn
2005-09-17more like a real regression test, not just printfs.Dale Rahn
2005-09-17spacingTheo de Raadt
2005-09-17add some Realtek chip idsBrad Smith
2005-09-17syncTheo de Raadt
2005-09-17fix test. dlsym(RTLD_DEFAULT,...) should not see symbols in objects openedKurt Miller
without RTLD_GLOBAL.
2005-09-16use poll() instead of select(), pr4505, alexander.farber@gmail.comTheo de Raadt
2005-09-16use poll() instead of select(), pr4503, alexander.farber@gmail.comTheo de Raadt
2005-09-16use poll() instead of select(), pr4502, alexander.farber@gmail.comTheo de Raadt
2005-09-16if tokendb_open() failed, do not crash if tokendb_close() is calledTheo de Raadt
2005-09-16Now that the bug requiring it has been fixed, remove the lastchance kludgeDale Rahn
ok kurt@
2005-09-16return 1 instead of -1 on error. noticed by theo.Kurt Miller
2005-09-16revert the debug enable.Dale Rahn
2005-09-16Rework symbol lookup to more closely match sun's documentation, nowDale Rahn
treats dlopens as load groups. ok kurt@
2005-09-16more clean-up:Marc Espie
- kill multiple inheritance; - replace pipename() with open_pipe, and use explicit exec. - add intermediate PackageRepository::Distant class. - if PKG_CACHE is set, use an intermediate wedge that stores the retrieved package in that directory. - handle signals correctly in that case.
2005-09-16revert, breaks DESTDIR. sorry.Marc Espie
2005-09-16oopsMarc Espie
2005-09-16minor tweaks.Alexandre Anriot
ok espie@
2005-09-16put gdbtui into compTheo de Raadt
2005-09-16backout until we find a socket state for initTheo de Raadt
2005-09-16use shell-neutral language (in a comment);Jason McIntyre
from ray lai; ok krw@
2005-09-16in the bnf section, clarify that "fastroute" takes no arguments. also fixDaniel Hartmeier
the literal parentheses around the "route/reply/dup-to" arguments. from Karl O. Pinc, discussed with jmc@ and otto@
2005-09-16move .tgz addition down to PackageRepositoryList.Marc Espie
re-add list, which returns a \@, whereas available returns a @.
2005-09-16reorder tests for improved sanity, from stevesk@Damien Miller
2005-09-16unneeded headers, from stevesk@Damien Miller
2005-09-16spelling.Federico G. Schwindt
2005-09-16- remove code to read PCI VPD as we do not use that anymore.Brad Smith
- remove some FreeBSD-ism's: struct resource *'s. - fail more gracefully in sk_probe() instead of in sk_attach() for newer unsupported ASIC revisions. From jason@
2005-09-15add test2 subdirKurt Miller
2005-09-15add more complex tests for dlsym. some tests may change after moreKurt Miller
discussion.
2005-09-15strip trailing slashes from any arguments passed to opencvs.Joris Vink
ok xsa@
2005-09-15Remove the (unused) syscall() indirection on arm.Miod Vallat
2005-09-15In syscall(), do not recompute the struct proc * after the syscall hasMiod Vallat
succeeded. This used to be necessary for fork(), when returning in the child, but we return in the child in child_return() which does TRT. ok art@
2005-09-15Change child_return() to record a proper ktrace record for vfork childMiod Vallat
processes. ok art@ uwe@ (some time ago)