summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Added upcoming FreeBSD 4.6wosch2002-03-101-0/+3
|
* FreeBSD 4.5 is releaseed "29 Jan 2002" (not 20 Jan)wosch2002-03-101-1/+1
| | | | | PR: misc/35738 Submitted by: WAKABAYASHI Susumu <susumu@wakabaya.net>
* Link scbus(4) to scsi(4). Most of the other CAM devices have theirdd2002-03-101-0/+1
| | | | | | | | own manual pages, but this is better than nothing until someone writes a real scbus(4). PR: 35641 Submitted by: Gary W. Swearingen <swear@blarg.net>
* The chapter on kernel debugging is now in the Developers' Handbook.dd2002-03-101-2/+2
| | | | | | | Add a trailing slash to a URL while I'm here. PR: 35637 Submitted by: Gary W. Swearingen <swear@blarg.net>, setantae@submonkey.net
* Forgot to update the date.luigi2002-03-091-1/+1
| | | | | The manpage describes the latest batch of changes, and especially the runtime config was totally different before.
* Lots of updates on the install process, detailing how toluigi2002-03-091-17/+271
| | | | | | | | | install PicoBSD on hard disks and CDROM images, and on the bootstrap sequence and the places where you can customise a PicoBSD image. Now if some of the -doc guys want to put this stuff in a nice handbook page, that would be extremely useful!
* Add Cenatek Inc.'s ID.obrien2002-03-071-0/+2
|
* Create a manual to document the new kernel byte order conversionmike2002-03-062-0/+126
| | | | | | functions. Reviewed by: tmm
* . Add support for making NLS linksphantom2002-03-041-1/+22
| | | | . Target definitions tweaks
* Slightly relax requirements to set per-file variablesphantom2002-03-041-3/+8
|
* Add basic infrastructure for building and installing Message Catalogs (NLS ↵phantom2002-03-042-1/+107
| | | | | | | Catalogs) Idea obtained from: NetBSD Reviewed by: silence at -hackers
* Document cru2x().dd2002-03-032-2/+26
|
* Add information about {kerberos,kadmind}5_enable and changedd2002-03-031-5/+20
| | | | | | | | {kerberos,kadmind}_enable to {kerberos,kadmind}4_enable to match reality. Fix some mismatched parentheses while I'm here. PR: 34982 Submitted by: Michel Oosterhof <m.oosterhof@xs4all.nl>
* Fix required includes in accordance with recent source fixes.markm2002-03-011-1/+1
| | | | Submitted by: bde
* Fix typo: s/of/or/bmah2002-03-011-1/+1
| | | | | | PR: 35291 Submitted by: John Nielsen <zoobie@bsdconspiracy.net> Tom Rhodes <darklogik@pittgoth.com>
* Fix typo.keramida2002-02-281-1/+1
| | | | | PR: docs/35422 Submitted by: Mike DeGraw-Bertsch <mbertsch@radioactivedata.org>
* Note the the process group is returned locked.davidc2002-02-281-0/+5
|
* The do { } while (0) macro example was missing a space after the 'e'.imp2002-02-271-1/+1
|
* Preprocess with pic(1).ru2002-02-271-0/+1
|
* Make gif(4) nesting level and parallel tunnel support tunable at runtimebrooks2002-02-261-0/+18
| | | | | | via sysctl's. The old #defines, MAX_GIF_NEST and XBONEHACK are currently supported for backwards compatability, but will probably be removed at some point in the future.
* Add a definition for mode page 0x2a "CD capabilities and mechanicaljoerg2002-02-241-0/+52
| | | | status page".
* Obviate the need to set the COMPILER_PATH and LIBRARY_PATH in Makefile.inc1ru2002-02-212-18/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to pick up the correct cross-tools (the compiler executables and binutils) and special linker files (crt*.o). This is now controlled by a single knob, TOOLS_PREFIX, when building cross-tools. Fixed regression in Makefile.inc1,v 1.203 (-nostdinc). This clobbered target architecture's CFLAGS with building host's CPUTYPE setting in /etc/make.conf, and had a nice but nasty side effect of exposing some (normally hidden) bugs in system headers. (Attempt to move the "-nostdinc -I..." part of CFLAGS into the new CINCLUDES (modeled after a similar CXXINCLUDES) eventually failed because hard-coding ${WORLDTMP}/usr/include to be the first in the include list does not always work, e.g. lib/libbind.) Compensate the -nostdinc removal by making cpp(1) built in the cross-tools stage to not look for <> header files in the building host's /usr/include (already committed as gnu/usr.bin/cc/cc_tools/freebsd-native.h, revisions 1.10-1.12, STANDARD_INCLUDE_DIR). : $ /usr/obj/usr/src/i386/usr/bin/cpp -v /dev/null : : Before: : : #include <...> search starts here: : /usr/obj/usr/src/i386/usr/include : /usr/include : End of search list. : : After: : : #include <...> search starts here: : /usr/obj/usr/src/i386/usr/include : /usr/obj/usr/src/i386/usr/include (Disabling the use of GCC_INCLUDE_DIR in the FREEBSD_NATIVE case would fix the duplicate above.) Get rid of the (now unneeded) -I${DESTDIR}/usr/include magic in bsd.prog.mk and bsd.lib.mk. Finish the removal of LDDESTDIR in bsd.lib.mk,v 1.55 -- we no longer have users of it. The required changes to gcc were already committed as contrib/gcc.295/gcc.c, revisions 1.23 and 1.24. Basically, this allows for the changes above plus makes gcc(1) persistent about path configuration, whether it's configured as a native or a cross compiler: : $ /usr/obj/usr/src/i386/usr/bin/cc -print-search-dirs : install: /usr/obj/usr/src/i386/usr/libexec/(null) : programs: /usr/obj/usr/src/i386/usr/libexec/elf/:/usr/obj/usr/src/i386/usr/libexec/ : libraries: /usr/obj/usr/src/i386/usr/lib/ : : $ /usr/obj/alpha/usr/src/i386/usr/bin/cc -print-search-dirs : install: /usr/obj/alpha/usr/src/i386/usr/libexec/(null) : programs: /usr/obj/alpha/usr/src/i386/usr/libexec/elf/:/usr/obj/alpha/usr/src/i386/usr/libexec/ : libraries: /usr/obj/alpha/usr/src/i386/usr/lib/ Reviewed by: bde, obrien
* Document NGM_PPPOE_ACNAME.brian2002-02-201-2/+5
|
* There is no reason to demand the administrator set 'natd_interface'cjc2002-02-201-5/+1
| | | | | | | | | | | | | when running natd(8) out of the rc-files. It is perfectly valid for the interface or alias address to be set in a natd(8) configuration file, not on the command line. Also, loosen up the restrictions on identifying an IP address argument in 'natd_interface.' Fix the documentation, rc.conf(5), to reflect this change. Take the bogus default for 'natd_interface' out of /etc/defaults/rc.conf. MFC after: 3 days
* Switch national currencies to Europhantom2002-02-1911-22/+22
|
* Fix typo.sobomax2002-02-181-1/+1
| | | | Approved by: phk
* The DEVFS paper presented at BSDcon-euro 2001 and BSDcon-2002.phk2002-02-183-1/+1286
|
* Remove a blank line.luigi2002-02-181-1/+0
|
* Manpage update: comment existing functionalities and giveluigi2002-02-181-60/+146
| | | | | | more detailed examples on how to use them. Undocument deprecated functionalities which are going to be removed soon.
* Two license updates.rwatson2002-02-183-3/+9
|
* Language clarification: s/an or/a/rwatson2002-02-181-1/+1
|
* Clarify word choice: s/those users/users/, since there is no previousrwatson2002-02-181-1/+1
| | | | instance of 'users' to refer to.
* Add infrastructure for sendmail 8.12. If users are not starting a daemongshapiro2002-02-171-0/+36
| | | | | | | | | | | | | at boot (sendmail_enable=NO), a localhost-only daemon may started (sendmail_submit_enable) as it is needed to accept mail from command line submissions. If this isn't desired, see etc/mail/README for more hints. Optionally (sendmail_msp_queue_enable) start a queue runner for the submission queue in case a daemon isn't available to accept command line submitted mail at submission time. Note that the syslog labels for all of these sendmail processes have been uniquified for easier log parsing.
* Document new build knob, SENDMAIL_SET_USER_ID, which installs sendmail as agshapiro2002-02-172-1/+20
| | | | set-user-ID root binary instead of the new method (set-group-ID smmsp).
* Add two new libraries which are part of sendmail 8.12. libsm is used onlygshapiro2002-02-171-0/+3
| | | | | for building sendmail and the associated utilities. libmilter is a new mail filtering API for sendmail.
* Add the puc (PCI "Universal" Communications) driver. The idea and some ofjhay2002-02-162-0/+69
| | | | | | | | | | | | | the structure definitions come from NetBSD to make it easier to share card definitions. The driver only acts as a shim between the pci bus and the sio driver. Later pci parallel ports could also be supported through this driver. Support for most single and multiport pci serial cards should be as simple as adding its definition to pucdata.c Tested with the following pci cards: Moxa Industio CP-114, 4 port RS-232,RS-422/485 Syba Tech Ltd. PCI-4S2P-550-ECP, 4 port RS-232 + 2 parallel ports Netmos NM9835 PCI-2S-550, 2 port RS-232
* new entry for polling manpageluigi2002-02-151-0/+1
| | | | (wonder why the process cannot be made automatic...)
* Add a manpage for DEVICE_POLLINGluigi2002-02-151-0/+91
|
* Update manpage to reflect reality.luigi2002-02-151-29/+149
|
* - Added support for receive in multiplepdeuskar2002-02-131-79/+71
| | | | | | | | | descriptors. This simplifies code for jumbo frames. - Cleaned up coding conventions to make code more unix-like. - Cleaned up code in if_em_fxhw.c and if_em_phy.c. Added relevant comments. MFC after: 1 week
* Correct comment: mklocale(1) and NLS are absolutely independentphantom2002-02-131-1/+1
|
* Correct NLSOWN and NLSGRP values.phantom2002-02-131-4/+4
|
* Unbreak nl_BE localesphantom2002-02-124-1/+53
| | | | Found by: tools/diag/localeck
* Unbreak fr_BE localephantom2002-02-126-7/+68
| | | | Found by: tools/diag/localeck
* Unbreak it_CH localephantom2002-02-123-3/+17
| | | | Found by: tools/diag/localeck
* Unbreak fr_CH localephantom2002-02-121-2/+9
| | | | Found by: tools/diag/localeck
* Document NO_CXX and NO_GDB.obrien2002-02-111-0/+2
|
* The routine is dev_depends(); consistently spell it that way.dd2002-02-112-4/+4
| | | | | | PR: 34047 Submitted by: Maxime Henrion <mux@sneakerz.org> Pointy hat to: dd
* Reinforce locking requirement for VOP_REVOKE: the lock must not be held.rwatson2002-02-101-1/+1
| | | | Discussed with: phk
* Revert 1.14: VOP_GETATTR() really does require a vnode lock.rwatson2002-02-101-3/+3
| | | | Confirmed by: mckusick
OpenPOWER on IntegriCloud