summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Spell tcp_signature_compute correctly.bms2004-02-141-1/+1
|
* Fix hw.acpi.os_name by renaming it to hw.acpi.osname. The "_name" suffixnjl2004-02-141-1/+1
| | | | | | | | | | is reserved by the loader, and thus any tunable name with that suffix will be silently discarded. Document this in the header and man page so that other developers do not develop so many bumps on the head after banging it against the wall. Detective work by: Mark Santcroos, grehan
* - Document more explicitly how the mac_portacl(4) policy works.simon2004-02-131-6/+67
| | | | | | | | | | - Document all the policy sysctl's. - Note that mac_portacl(4) appeared in FreeBSD 5.1. - A bit of mdoc(7) fixes. Much of the new text was inspired by the source code comments. Reviewed by: rwatson
* Update manual pages: the name of function g_access_rel() haspjd2004-02-132-5/+5
| | | | | | changed to g_access(). Approved by: scottl (mentor)
* Register libarchive in bsd.libnames.mk and mdoc.localkientzle2004-02-131-0/+1
| | | | Submitted by: ru
* Create symbolic link for g_print_bio(9) manual page.pjd2004-02-111-1/+2
| | | | Approved by: scottl (mentor)
* Document g_print_bio() function.pjd2004-02-111-1/+14
| | | | Approved by: scottl (mentor)
* Added GEOM kernel API manuals to the build.pjd2004-02-111-0/+26
| | | | | Reviewed by: scottl Approved by: phk, scottl (mentor)
* Added first part of GEOM kernel API manuals pages.pjd2004-02-1110-0/+1473
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Documented function and macros are: - DECLARE_GEOM_CLASS(), - g_attach(), - g_detach(), - g_new_bio(), - g_clone_bio(), - g_destroy_bio(), - g_new_consumer(), - g_destroy_consumer(), - g_read_data(), - g_write_data(), - g_post_event(), - g_waitfor_event(), - g_cancel_event(), - g_new_geomf(), - g_destroy_geom(), - g_new_providerf(), - g_destroy_provider(), - g_error_provider(), - g_provider_by_name(), - g_wither_geom(). and more to come. I want to thanks following people for help with those documents: Slawek Zak <zaks@prioris.mini.pw.edu.pl> Simon L. Nielsen <simon@FreeBSD.org> Pieter de Boer <g.p.de.boer@st.hanze.nl> and of course Poul-Henning Kamp <phk@FreeBSD.org> Reviewed by: phk, scottl Approved by: phk, scottl (mentor)
* Initial import of RFC 2385 (TCP-MD5) digest support.bms2004-02-111-2/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the first of two commits; bringing in the kernel support first. This can be enabled by compiling a kernel with options TCP_SIGNATURE and FAST_IPSEC. For the uninitiated, this is a TCP option which provides for a means of authenticating TCP sessions which came into being before IPSEC. It is still relevant today, however, as it is used by many commercial router vendors, particularly with BGP, and as such has become a requirement for interconnect at many major Internet points of presence. Several parts of the TCP and IP headers, including the segment payload, are digested with MD5, including a shared secret. The PF_KEY interface is used to manage the secrets using security associations in the SADB. There is a limitation here in that as there is no way to map a TCP flow per-port back to an SPI without polluting tcpcb or using the SPD; the code to do the latter is unstable at this time. Therefore this code only supports per-host keying granularity. Whilst FAST_IPSEC is mutually exclusive with KAME IPSEC (and thus IPv6), TCP_SIGNATURE applies only to IPv4. For the vast majority of prospective users of this feature, this will not pose any problem. This implementation is output-only; that is, the option is honoured when responding to a host initiating a TCP session, but no effort is made [yet] to authenticate inbound traffic. This is, however, sufficient to interwork with Cisco equipment. Tested with a Cisco 2501 running IOS 12.0(27), and Quagga 0.96.4 with local patches. Patches for tcpdump to validate TCP-MD5 sessions are also available from me upon request. Sponsored by: sentex.net
* Document the functions m_apply() and m_getptr().bms2004-02-111-0/+42
| | | | Requested by: Maxim Konovalov
* add verbage about how once BUS_TEARDOWN_INTR returns, the interrupt willjmg2004-02-101-0/+6
| | | | | | | | | no longer be active or called.. Also document requirement that no mutexes be held across calls to these functions.. Reviewed by: jhb, rwatson
* Spelling.bms2004-02-101-2/+2
|
* Remove a redundant command. No MFC, this was removed in STABLE.trhodes2004-02-101-4/+1
| | | | Update the date.
* Remove 'broken in some cases' Xref to Kerberos.trhodes2004-02-101-1/+0
| | | | | PR: 30443 Cool with: markm (who approved this ages ago)
* Two changes to aid in cleaning up sys/boot/ makefiles:ru2004-02-091-3/+9
| | | | | | | - Don't put libc.a as a dependency if program is linked with -nostdlib. - Added INTERNALPROG (by analogy to INTERNALLIB) for programs which are built only for its side effect and shold not be installed.
* First round of cleanups to sys/boot/ makefiles:ru2004-02-061-0/+1
| | | | | | | | | | | | - do not use PROG for what's not a real C program, - use sys.mk transformation rules where possible, - only create the "machine" symlink on AMD64, - removed MAINTAINER lines in individual makefiles, - added the LIBSTAND defitinion to <bsd.libnames.mk>, - somewhat better contents in .depend files. Tested on: i386, amd64 Prodded by: bde
* Added missing DPADD.ru2004-02-052-0/+2
|
* Temporarily put STRIP back; bsd.port.mk still needs it.ru2004-02-051-0/+4
|
* Don't define STRIP in bsd.own.mk.ru2004-02-052-15/+3
|
* make(1) can now handle spaces surrounding parenthesis correctly.ru2004-02-051-1/+1
|
* GC port.mkversion.des2004-02-051-3/+0
|
* Fixed breakage of POSIX support in rev.1.31. -pipe was added tobde2004-02-041-1/+2
| | | | | | CFLAGS in all cases, but POSIX requires a default of -O. Adding -pipe unconditionally still is still broken for non-gcc compilers in the non-POSIX case.
* Fixed static build.ru2004-02-041-2/+2
|
* Nothing in libypclnt depends on librpcsvc.ru2004-02-041-2/+2
| | | | Reported by: lorder(1) (modified to work with libraries)
* Document new 'what' value for sx_assert(9).pjd2004-02-041-1/+6
| | | | | | | | | | PS. There is a inconsistency in this manual page, because in non-WITNESS case sx_assert(9) does not panics, it only prints the warning. I haven't fixed this, because jhb@ is planing to replace those printf()s with panic()s. Reviewed by: jhb Approved by: jhb, scottl (mentor)
* Add the kernel side of network interface renaming support.brooks2004-02-041-0/+7
| | | | | | | | | | | | | | | The basic process is to send a routing socket announcement that the interface has departed, change if_xname, update the sockaddr_dl associated with the interface, and announce the arrival of the interface on the routing socket. As part of this change, ifunit() is greatly simplified by testing if_xname directly. if_clone_destroy() now uses if_dname to look up the cloner for the interface and if_dunit to identify the unit number. Reviewed by: ru, sam (concept) Vincent Jardin <vjardin AT free.fr> Max Laier <max AT love2party.net>
* Document NO_VINUM, which is already listed in the man page.des2004-02-031-0/+1
|
* Whitespace nit.des2004-02-031-1/+1
|
* Add support for initializing swap devices with random one-shot keys. Notedes2004-02-031-0/+8
| | | | | | | that the keys are currently generated by computing the MD5 checksum of 512 bytes read from /dev/random, and are passed to gbde on the command line. Sponsored by: Teleplan AS
* A shorter version of keeping all -std= options out of CXXFLAGS.ru2004-02-031-1/+1
|
* Fixed MINUSLPAM:ru2004-02-031-13/+12
| | | | | | | | | | | | | | | | | | | | - Added missing NOCRYPT and NO_OPENSSL checks for Kerberos. - Don't depend on -lcrypto and -lcrypt in pam_ssh to resolve dependencies in pam_krb5 and pam_ksu -- the former may not be compiled at all if NO_OPENSSH knob is enabled. - Added missing -lcrypt to pam_ssh dependencies. - Moved librpcsvc after libypclnt. (The last two aren't strictly speaking necessary to resolve the dependencies of static versions of pam_ssh and pam_unix, respectively, but they correspond to dynamic dependencies of libssh and libypclnt, and are put here for consistency.) In collaboration with: bde Reviewed by: des
* Notify the user (at kern.emerg) that the system will be shutting down ifnjl2004-02-031-0/+3
| | | | | | it is still above the critical temperature on the next poll cycle. This is a 10 second advance notice by default. Document the private (non-standard) notify we will be using with devd(8).
* Add a note about the default media types and a simple reminder to keeptrhodes2004-02-031-0/+17
| | | | | | | | | | individules from asking a question which may result in the following answer: "Hi, please do not run a newfs utility on a file system if there is still data on it you would like to keep." PR: 56894 Submitted by: Marc Silver <marcs@draenor.org> (original version)
* GC LIBPC and LIBPLOT: they never existed in unencumbered BSD versions.ru2004-02-021-2/+0
| | | | Reviewed by: bde
* Fix MSIZE definition location.ale2004-02-011-2/+2
| | | | | | | PR: docs/62129 Submitted by: Lee Brotherston <lee@nerds.org.uk> (PR), Marc Silver <marcs@draenor.org> (patch) Approved by: blackend (mentor)
* Clarify more about LC_*/LANG priorities.ache2004-01-311-3/+6
|
* deischen had a good idea on how to make my previous commit a little better,trhodes2004-01-311-5/+8
| | | | | | update accordingly. Suggested by: deischen
* Update this manual page for the libkse -> libpthread changes.trhodes2004-01-311-12/+12
| | | | Discussed with: deischen
* Add LIBPTHREAD.marcel2004-01-311-0/+1
|
* 1. Garbage-collected LIBDES (now in a different library), LIBPERL (banishedbde2004-01-311-5/+2
| | | | | | | | to ports) and LIBRESOLV (now in a different library. 2. Added comments about nonexistent libraries LIBPC and LIBPLOT. Submitted by: ru (1)
* Fixed insertion sort errors for LIBBLUETOOTH and LIBSDP.bde2004-01-311-2/+2
|
* Removed XXX comments about some libraries only being in the securebde2004-01-311-15/+15
| | | | | | | distribution. This is not the place to document this, especially now that the secure distribution is the normal one. Reviewed by: ru
* Fixed some style bugs (long lines).bde2004-01-311-2/+5
|
* Drop -mcpu=pentiumpro from the default CPU flags for i386 as it doesn'tjhb2004-01-301-1/+1
| | | | | | perform better than the default setting for most i386 CPUs. Requested by: bde
* Add kk_KZ.PT154ache2004-01-2917-1/+1068
| | | | Submitted by: Birsh T <tim@zhezu.kz>
* Document NO_BLUETOOTH knobemax2004-01-281-0/+3
| | | | Reviewed by: imp (mentor), ru
* Add debug.mutex.prof.reset.rwatson2004-01-281-0/+2
|
* - Catch up to new boot floppies targets.jhb2004-01-281-7/+14
| | | | | - Update description of release.4 to mention KERNELS variable. - Update field width for make release targets.
* Always build ext2fs module. There is no written policy preventing theobrien2004-01-281-3/+0
| | | | building of GPL'ed modules.
OpenPOWER on IntegriCloud