summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-12-20more details in license filesTheo de Raadt
2004-12-20repair error message: set_pkgname so that we don't report for the lastMarc Espie
package.
2004-12-20firmware loading from the filesystem. pci subsystem type thingsTheo de Raadt
are still done early, but audio subsystem setup is deferred till after root is mounted. tested by mcbride
2004-12-20don't display some details in -n mode unless very verbose.Marc Espie
2004-12-20keep a hash of installed packages, so that we can refuse to replace aMarc Espie
package that just got installed. Also allows us to give a full tally of what reorder did in kitchensink.
2004-12-20lots of minor tweaking and cleanup, removal of unused junk, etc; dlg okTheo de Raadt
2004-12-20Ansification plus some minor knf. No binary change on i386 andOtto Moerbeek
sparc64, binary change in lex.o on macppc due to introduction of dopprompt() prototype. ok millert@
2004-12-20Add support for displaying Shared Spanning Tree Protocol frames, a minorChristopher Pascoe
variation on 802.1d/STP. ok otto@ mcbride@
2004-12-20Enforce an ordering on ifnet such that CARP interfaces appear later in theChristopher Pascoe
list than physical interfaces. This makes ifa_ifwith* prefer a physical interface over a CARP one. This addresses the problem where a CARP interface in BACKUP state is selected after a route change, resulting in a loss of communications despite there being another interface available which is perfectly usable. ok mcbride@ mpf@
2004-12-20syncTheo de Raadt
2004-12-20remove MLINKS tooJun-ichiro itojun Hagino
2004-12-20remove manpages based on RFC. requested by deraadtJun-ichiro itojun Hagino
2004-12-20vge(4) in bsd.rd, only CD for now; ok deraadtPeter Valchev
2004-12-19#define sc_if sc_ac.ac_if, makes things a little more readable, andRyan Thomas McBride
kills a couple of ugly line wraps. From Max Laier. ok pascoe@
2004-12-19sanity check: in -n mode, we end up replacing stuff that doesn't exist ?Marc Espie
2004-12-19single comment in GENERIC replaces a file that gets out of date; discussed ↵Theo de Raadt
by many
2004-12-19don't create path if -n.Marc Espie
2004-12-19grammar;Jason McIntyre
2004-12-19add a handler for the Gzip-stream request. The handler parses theJean-Francois Brousseau
requested compression level but does not enable compression yet.
2004-12-19Add ahd.Kenneth R Westerback
ok deraadt@.
2004-12-19use /sys includes instead of /usr/include/[possibly stale]/sys; deraadt@ okMichael Shalayeff
2004-12-19prep for futureTheo de Raadt
2004-12-19shorten codeTheo de Raadt
2004-12-19disable uyap by default, because it is that rareTheo de Raadt
2004-12-19syncTheo de Raadt
2004-12-19not yds yetTheo de Raadt
2004-12-19filesystem firmware loading written over the pacific 2 weeks ago, testedTheo de Raadt
by mickey
2004-12-19Allow comments in /etc/{myname,mygate,defaultdomain}; OK deraadt@Todd C. Miller
2004-12-19syncTheo de Raadt
2004-12-19tigon-license fileTheo de Raadt
2004-12-19build uyap firmwareTheo de Raadt
2004-12-19filesystem firmware loading for uyap(4). this should work, i wrote it veryTheo de Raadt
carefully. unfortunately, we cannot find anyone who has one of these devices in our entire user community, thus far. commit it anyways. whoever finds one can contact me if there is a problem.
2004-12-19simplify solve_dependencies: always compute to_install array (it isMarc Espie
reasonably cheap). Remove else conditions, use next: after all, it's a simple pattern, try one solution after the other until one succeeds. Pass state to access replace: in that case, first try the list of packages to install/update so that we force them into proper order. Add a mark to handles for finished packages: with -r, we can no longer rely on installed packages to avoid doing the work twice.
2004-12-19Block SIGALRM during write--we only want it to interrupt read().Todd C. Miller
OK deraadt@
2004-12-19move conflict code to PkgCfl.Marc Espie
2004-12-19fix cleanupTheo de Raadt
2004-12-19use strchr instead of indexTheo de Raadt
2004-12-19spacingTheo de Raadt
2004-12-19route <label> rewording from otto@;Jason McIntyre
ok dhartmei@;
2004-12-19remove section detailing `file' operand: none of our other pages do itJason McIntyre
(well, there probably are exceptions) and it's kind of obvious; ok millert@
2004-12-19Reduce delta to FreeBSD by adding and using ahd_alloc() rather thanKenneth R Westerback
manually reproducing bits in ahd_pci.c. Just as in ahc, avoid allocating and freeing zero length bits of memory for platform data. Don't try to free all or part of ahd_softc, but correctly free allocated memory for seep_config if necessary. Add a final few fields to ahd_softc and scb in preparation for updating/fixing timeout handling. No functional changes.
2004-12-19spacingTheo de Raadt
2004-12-19syncTheo de Raadt
2004-12-19Make it possible for carp to work on fddi and token ring again.Ryan Thomas McBride
ok pascoe@ mpf@
2004-12-19umask returns mode_t, not intTodd C. Miller
2004-12-19Set atime and mtime when giving out a new pty. With help from tholo@Todd C. Miller
and OK tedu@
2004-12-18Use _PATH_BSHELL instead of hardcoding "/bin/sh"Todd C. Miller
2004-12-18remove GCC_FUNC_ATTR/GCC_FUNC_ATTR2 and just use __attribute__ directlyTodd C. Miller
(we define it away in sys/cdefs.h if it is not supported).
2004-12-18Replace fd_clexec() with calls to fcntl(fd, F_SETFD, FD_CLOEXEC)Todd C. Miller
2004-12-18Use struct termios instead of TTY_state typedefTodd C. Miller
Use tc[gs]etattr() instead of [gs]et_tty() abstraction