Commit Graph

3773 Commits

Author SHA1 Message Date
christos 395c3f1569 getenv_r and ttyname_r 2005-09-25 20:11:03 +00:00
elad 1831cf63ac New home for rmd160.h. 2005-09-25 14:27:26 +00:00
jmmv b0085cab71 Kill the tmpfs(9) manual page; it was just documenting internal details of
tmpfs' "API" and was already rotting.

Instead, merge all the relevant comments into the code.  This includes
acknowledgements to Google's Summer of Code 2005 program (they were in the
AUTHORS section of tmpfs(9) before), so all the files need to be changed
to include this sentence alongside the title.  (Note that this was not a
requirement of the program.)
2005-09-23 15:36:15 +00:00
jmmv 2a3e5eeb7c Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
  function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
  file sys/nfs/nfs_export.c.  The former was becoming large and its code
  is always compiled, regardless of the build options.  Using the latter,
  the code is only compiled in when NFSSERVER is enabled.  While doing this,
  also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
  path and a set of export entries.  At the moment it can only clear the
  exports list or append entries, one by one, but it is done in a way that
  allows setting the whole set of entries atomically in the future (see the
  comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
  that it becomes file system agnostic.  In fact, all this whole thing was
  done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
  exports initialization; done internally by the kernel when initializing
  the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
  subsystems can run arbitrary code upon receipt of specific VFS events.
  At the moment, this only provides support for unmount and is used to
  destroy NFS exports lists from the file systems being unmounted, though it
  has room for extension.

Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 12:10:31 +00:00
christos 992367dcfc un-obsolete tetris. 2005-09-23 00:31:42 +00:00
salo 4db8c20f4c Mark tetris as obsolete. (hi christos!) 2005-09-22 17:25:01 +00:00
dyoung f6fb08f361 Add the manual page for geodewdog(4), the driver for the AMD Geode
SC1100's integrated watchdog timer.
2005-09-22 07:31:10 +00:00
tsarna 4019a4212f pam_afslog is used in conjunction with pam_krb5 to obtain AFS tokens and
create a PAG if necessary.

Especially important for home directories on AFS.
2005-09-21 14:19:08 +00:00
simonb 5de1cebf91 Mark <sys/tprintf.h> as obsolete. 2005-09-19 03:16:40 +00:00
rpaulo 0c7a413532 /usr/share/examples/postfix/TLS_LICENSE should be installed even when
MKDOC=no. Noticed by Ralf Huvendiek <netbsd@kaervek.net> on current-users.
2005-09-17 19:33:00 +00:00
wiz c4b850a8a6 Add man page for l{,l}rint{,f}(3), very loosely based on the FreeBSD one.
Requested by martin@
Reviewed by drochner@
2005-09-16 15:26:47 +00:00
nonaka f4b01f6f22 Added rs5c372rtc, shpcic man pages. 2005-09-15 15:04:55 +00:00
elad 30cf53ba56 Fix copy/paste.
From Ralf Huvendiek, thanks!
2005-09-14 19:58:57 +00:00
elad 95a8b0810d Update entry for /usr/lib too.
From Hisashi T Fujinaka, thanks!
2005-09-14 18:14:51 +00:00
elad 8d6270e665 Introduce pw_policy(3), an easily extendable way of defining password
policies and enforcing them in programs.

Man-page written with much help and tips from David Maxwell, Hubert
Feyrer, and Thomas Klausner.

This bumps libutil minor to 7.

XXX: Need default policy to go in /etc/passwd.conf, and integration
     into local/yp/PAM password changing code.

PR/10206.
2005-09-14 11:36:52 +00:00
lukem 3b87ff7e46 Add a note explaining why we don't "obsolete" end-user configuration files.
Inspired by the fallout from the recent named.conf move.

XXX: consider fixing spamd.conf in a similar manner.
2005-09-14 00:38:39 +00:00
lukem 36476eed8b Don't mark /etc/namedb/named.conf as "obsolete" since that will cause
a file that has end-user configuration to be unconditionally removed.
Instead, remove the entry from the set list, and add a note to UPDATING
reminding users of MKUPDATE=yes to manually rectify the problem in
their DESTDIR.

The "named" fix in postinstall(8) will migrate /etc/namedb/named.conf
to /etc/named.conf if the latter doesn't exist.
(The need for these style of migrations was why I implemented postinstall(8)
in the first place.)
2005-09-14 00:32:26 +00:00
elad 1a75cd7fa5 - cksum -m -> cksum -a md5.
- Generate SHA512 checksums too.

Is there any reason to still generate MD5 checksums?
2005-09-13 16:38:01 +00:00
macallan dc24724129 man page for the adt7467c driver 2005-09-12 03:19:50 +00:00
xtraeme 42d70a8cf2 Revert my previous commit, and put back the scan_lfs manpage... it
was removed, but now a link is created.
2005-09-11 17:39:12 +00:00
xtraeme 155bec8f6a Mask scan_lfs manpage as obsolete, now it has been removed. 2005-09-10 23:19:54 +00:00
jmmv 5404fece05 Place mount_ptyfs.8 in man-sysutil-man (instead of man-miscfs-man) to
match mount_ptyfs.0, which is in man-sysutil-catman.
2005-09-10 19:26:18 +00:00
jmmv ec93365612 Initial addition of tmpfs, an efficient memory file-system. This project
was developed as part of Google's Summer of Code 2005 program.  This
change adds the kernel code, the mount_tmpfs utility, a regression test
suite and does all other related changes to integrate these.

The file-system is still *experimental*.  Therefore, it is disabled by
default in all kernels.  However, as typically done, a commented-out
entry is added in them to ease its setup.

Note that I haven't commited the required mountd(8) changes to be able
to export tmpfs file-systems because NFS support is still very unstable
and because, before enabling it, I'd like to do some other changes.

OK'ed by my project mentor, William Studenmund (wrstuden@).
2005-09-10 19:20:48 +00:00
jmmv e4f5206ced Add xge.{0,4}. Hi, ragge@! 2005-09-10 10:35:25 +00:00
kiyohara 17587c6104 Support LCD screen driver for PERSONA SH3 machines. 2005-09-05 18:54:10 +00:00
tron f851540ac2 Move "named.conf" example configuration to "/etc" because that is where
named(8) looks for it. You can now really get a caching name server
by simply setting "named=yes" in "/etc/rc.conf" as documented in
The NetBSD Guide. This fixes PR bin/30662 by Christian Hattemer.
2005-08-30 10:58:33 +00:00
kleink d8302b8f79 Update for tzdata2005m. 2005-08-29 18:59:12 +00:00
taca 7fb995c950 Add ioctl_copyin(9) and ioctl_copyout(9) for catman pages. 2005-08-29 05:40:17 +00:00
reinoud f4a3f04cb2 Create functions ioctl_copyin() and ioctl_copyout(). They are meant to be
used in ioctl routines to do the right thing when the FKIOCTL flag is
passed to the IOCTL routine indicating its a in-kernel VOP_IOCTL call and
indirect addresses provided in the arguments are to be seen as kernel
adresses rather than userland adresses.

A simple substitution and prepending of the `flags' passed on to the ioctl
handler is enough to DTRT.
2005-08-28 20:58:14 +00:00
thorpej e1afed9c2d Experimental support for extended attributes on UFS1 file systems, using a
backing file per attribute type indexed by inode number to hold the extended
attributes.

This is working pretty well on my test systems, except for the "autostart"
feature.  I need someone with a better handle on the VFS locking protocol
to go over that.

This is a work-in-progress.  There are parts of this that could be re-factored
allowing this approach to be used on other types of file systems.

Adapted from FreeBSD.
2005-08-28 19:37:58 +00:00
elad 2567fd1c7b Bump libc here too. Noted by mrg@. 2005-08-23 19:57:54 +00:00
elad dc175888db Add SHA2 man-pages. 2005-08-23 17:47:07 +00:00
peter 668c49bc35 Add new files for pf.boot.conf. 2005-08-23 12:14:00 +00:00
yamt 565285f75f add M_MOVE_PKTHDR.[09] 2005-08-23 09:38:17 +00:00
yamt 0d8b16f3a1 sort. 2005-08-23 09:36:47 +00:00
tron dfad02ecbb Add "./usr/include/crypto/sha2.h". 2005-08-21 15:37:57 +00:00
abs 2ea92d2f7a Support booting from ffsv2 filesystems - thanks Simon Burge 2005-08-20 20:15:57 +00:00
rpaulo 82bdaacb4f Adapted to the changes of grfinfo(1) MANSUBDIR (hp300). (thanks Klaus Klein) 2005-08-20 17:23:53 +00:00
christos 7e4e283458 Two places to bump libc (from Kurt) 2005-08-19 13:07:56 +00:00
rpaulo eed479db05 Added missing Postfix 2.2.5 man pages. 2005-08-18 23:06:15 +00:00
rpaulo bfa7c1291a Added new files from Postfix 2.2.5. 2005-08-18 22:31:47 +00:00
yamt 5585c58579 mark disk_init.9 obsolete. 2005-08-14 12:04:23 +00:00
xtraeme cf10ca7b98 Add vnconfig(8). ok christos 2005-08-10 20:04:40 +00:00
veego 8b2d09621e libc minor version was bumped due too a wrong namespace.h entry. 2005-08-07 20:33:41 +00:00
xtraeme 2b485204d1 Add /usr/include/sys/tape.h 2005-08-07 16:57:12 +00:00
peter b4429dd9d3 Add /etc/rc.d/ftpd. 2005-08-04 22:31:40 +00:00
xtraeme 016ad35975 Add scan_lfs(8), utility to find LFS partitions on disk, useful
to recover lost disklabels.
2005-07-31 19:26:06 +00:00
skrll feea7c2127 Add ucycom(4). 2005-07-31 18:55:08 +00:00
wiz f140dc629e Add /usr/share/man/{cat,html,man}4/hpcmips. 2005-07-31 00:22:55 +00:00
nakayama 69b6d49897 Add man page for teliosio(4). 2005-07-31 00:12:16 +00:00
agc 42d12839e1 Add sys_siglist.0 2005-07-28 23:16:39 +00:00
christos e9e222a95c Update for strerror_r changes:
1. new man pages
2. bump libc.
2005-07-28 16:28:51 +00:00
rpaulo b539de839b Added /usr/share/wscons/keymaps/mkbd.pt.iso8859-2. 2005-07-25 19:58:32 +00:00
hubertf 65cee02da7 Fix paths of vndcompress (binary and manpages+category) 2005-07-25 18:34:38 +00:00
hubertf 2b72198a99 Add vndcompress(1) and vnduncompress(1) to transform filesystem/disk
images from "normal" into cloop2-format compressed images and back.
Written by Florian Stoehr (netbsd@wolfnode.de) with some polishing
by me.

Compressed disk images can be used with the vnd(4) driver when compiled with
VND_COMPRESSION and "vnconfig -z".  Useful for creation of Live CDs/DVDs.
2005-07-25 12:19:36 +00:00
wiz 60daf88fca Fix typo. 2005-07-24 14:24:53 +00:00
wiz 429d29ed4f Add dummy_pci and wi_pcmcia lkms. 2005-07-24 13:08:29 +00:00
rpaulo 34048808b6 Add new libm387.so.0.1. 2005-07-21 22:50:44 +00:00
kleink 3328b7072f Make libm.so entries consistent. 2005-07-21 17:14:59 +00:00
christos aed5ba58ad bump libm for log2 and log2f 2005-07-21 12:59:51 +00:00
christos 6553bf780e man pages for log2 and log2f 2005-07-21 12:58:47 +00:00
pooka 1883c5ec12 VFS_STATFS.{0,9} -> VFS_STATVFS.{0,9} 2005-07-20 11:36:39 +00:00
martin 7ceaeb7acc Duh, after disabling the vga driver, we don't want it's manual pages
any more.
2005-07-19 04:33:14 +00:00
martin 7d5aa8c228 Do not build/install the vga driver on sparc64 - it won't work there
anyway (and confuses autoconfiguration)
2005-07-18 20:01:05 +00:00
augustss f4f7531c05 Add uipaq(4). 2005-07-18 11:45:57 +00:00
rpaulo 80cf1e727a Add missing man page source for rtw.4 2005-07-17 22:39:28 +00:00
rpaulo 28226933f3 Add rtw(4) man page. 2005-07-17 22:20:59 +00:00
macallan 19a7332aff added tslot and dbri manpages 2005-07-17 18:54:10 +00:00
rtr 1892a6084b add plist entries for forward manpage 2005-07-16 09:13:01 +00:00
drochner fed189aea6 add a manpage for the ral (at pci/cardbus/uhub) wlan driver,
mostly from OpenBSD
2005-07-14 12:46:45 +00:00
wiz 4ae24708bf Mark /usr/include/dev/ieee1394/fwiso_ioctl.h as obsolete (not installed
any longer).
2005-07-12 11:40:29 +00:00
wiz e633d6f83a Sort. Add fwctl(8). 2005-07-12 11:37:51 +00:00
kiyohara a795368bde Fix
1. man4 -> cat4
  2. obsolete fwiso.[04]
2005-07-11 16:09:14 +00:00
kiyohara c1a84a4d12 ieee1394 import from FreeBSD. 2005-07-11 15:29:05 +00:00
drochner 67cce9c6dd oops, missed a second occurence of libc.so
noticed by Juergen Hannken-Illjes
2005-07-07 10:52:50 +00:00
drochner e866f2794b Move insque/remque/lsearch/lfind from libcompat to libc,
they are in XPG4-UNIX, XSH5.0, mentioned in SUSv3 etc.
Minimal update of the manpages. (more needed)
2005-07-06 14:43:24 +00:00
tron 89b7f0c149 Adapt to recent source tree changes:
- usr.sbin/config -> usr.bin/config
- contrib/sys -> sys/contrib
2005-07-05 08:41:16 +00:00
tron c4f205cf3a Install "afb" module again on systems which use an X11 server with
loadable modules and don't install the static "afb" library on systems
which use a static server. This fixes build problems introduced by
recent changes.
2005-07-03 14:30:52 +00:00
snj 4bb24023a0 Add ching.0 and ching.6. 2005-07-01 03:32:49 +00:00
perry 77f5872e78 add ching(6) 2005-06-30 13:41:19 +00:00
perry 1a79ca20cc add deroff and spell 2005-06-29 21:38:58 +00:00
kent eabe9bbfa4 remove pss(4) driver. It has never been workable and has not been
compilable for a long time.
2005-06-28 08:36:47 +00:00
peter df0caa2637 Remove (pf)spamd. Its right to exist in NetBSD has been questioned since it
appeared and whether it's really part of pf or not is still unclear. Looking
at the other *BSDs it seems that they have left out spamd when importing pf,
and now we do that too. Also, the name conflicted with another more popular
used tool, after the rename to pfspamd it was left with completely unusable
documentation which apparently no-one wanted to fix.

A port of the latest spamd will be imported into pkgsrc soon.

Suggested by several people, no objections on last proposal on tech-userlevel.
2005-06-27 20:32:39 +00:00
mrg 1f42a99845 enable the vnd LKM. i meant to do this when this LKM first appeared. 2005-06-26 05:36:57 +00:00
dyoung 9063402978 Resolve conflicts in importation of 18-May-2005 ath(4) / net80211(9)
from FreeBSD.  Introduce compatibility shims (sys/dev/ic/ath_netbsd.[ch],
sys/net80211/ieee80211_netbsd.[ch]).  Update drivers (an, atu, atw,
awi, ipw, iwi, rtw, wi) for the new net80211(9) API.
2005-06-22 06:14:51 +00:00
wiz 1129c8c029 Add ac97(4) man page from OpenBSD, written by Constantine Sapuntzakis.
Suggested by kent@.
2005-06-21 18:11:38 +00:00
kent c782306795 add azalia(4) man page 2005-06-21 17:37:06 +00:00
briggs b75c4bf0e2 Add an initial man page for ataraid(4). 2005-06-20 03:08:25 +00:00
thorpej 7adddd1b69 Move common Sun3/Sun4 EEPROM definitions in to <dev/sun/eeprom.h> 2005-06-19 20:23:48 +00:00
thorpej 15adcb96b8 Move common Sun ID PROM definitions into <dev/sun/idprom.h>. 2005-06-19 20:00:28 +00:00
wiz 73b81397ef Files here should not be removed, but marked obsolete.
Re-add obsolete ./usr/share/examples/fstab/fstab.md (hi hubertf!).
2005-06-19 07:51:33 +00:00
peter d80b2c49e3 Typo, noted by Asmodehn Shade on -current-users. 2005-06-18 21:25:14 +00:00
lukem 335e2ccf58 add scan_ffs and veriexecctl to /rescue 2005-06-18 06:59:23 +00:00
peter d4cc3cce89 Create links for pthread_attr_setschedparam.3
and pthread_attr_getschedparam.3 to pthread_attr.3.

From Igor Sobrado in PR/29997.
2005-06-17 18:37:24 +00:00
peter e17db753e7 Mark as obsolete:
pthread_barierattr_destroy.*, pthread_barierattr_init.*

Add:
pthread_barrierattr_destroy.*, pthread_barrierattr_init.*

PR/29997 from Igor Sobrado.
2005-06-17 18:26:22 +00:00
peter 8704f18e38 Install vinum(4) manpage. 2005-06-17 17:12:57 +00:00
xtraeme b67b8509c2 Add scan_ffs(8) from OpenBSD, it was modified to support FFSv2
for NetBSD (with different blocksizes). Utility to find
FFSv1 and FFSv2 partitions on disks, useful to recover lost
disklabels.

Reviewed by christos.
2005-06-15 18:06:19 +00:00
is 7452bc547d Move ld and libbfd (needed by modload) to base, so that a base-only
system can load kernel modules.
2005-06-07 14:27:42 +00:00
martin e9f82d8da2 fix typo 2005-06-06 05:20:05 +00:00
thorpej 5ecc953bdb config and genassym are not sysadmin tools, they are development tools.
As such, they don't belong in /usr/sbin, but rather /usr/bin.  Move them
there.
2005-06-05 18:19:52 +00:00
christos 24c295f4b3 mark genassym.sh obsolete 2005-05-31 11:39:03 +00:00
christos d84ea6a23c Add genassym. 2005-05-31 11:38:31 +00:00
christos b47254f6d8 Add genassym. 2005-05-31 03:50:14 +00:00
agc cdada63d5e Add manual pages for psh3tp(4) to the man set. 2005-05-24 08:14:55 +00:00
kleink 3a2b4d4dd7 * Factor out fd_set and related definitions from <sys/types.h> to
<sys/fd_set.h>.  Still include it from <sys/types.h> for _NETBSD_SOURCE,
  and amke <sys/select.h> use it instead of <sys/types.h>.
* Instead of including <string.h> for memset()/memcpy() (or adding their
  declarations locally), make FD_ZERO()/FD_COPY() use GCC builtins if
  available, or define them inline otherwise.
Approved by Christos.
2005-05-22 12:44:24 +00:00
lukem dfee67134f Make fdisk(8) available on all platforms, since MS-DOS partitioning
is the de-facto standard for many removable media types.
2005-05-22 03:45:30 +00:00
lukem 64863e99af Use "find |sort" instead of "find -s" -- the latter isn't POSIX. 2005-05-22 03:05:15 +00:00
christos 8adc5f9efb add t_putws 2005-05-15 21:12:53 +00:00
christos bac9dcf8ce bump libtermcap. 2005-05-15 21:11:59 +00:00
christos 85b51312ff bump libc. 2005-05-14 23:59:32 +00:00
christos 406fc04640 add new stdio wide functions. 2005-05-14 23:58:51 +00:00
dsl f023cb8f18 Mark ./usr/share/examples/racoon/roadwarrior/server/phase1-down.sh
as obsolete (it was deleted in the previous commit).
Fix sort errors.
2005-05-14 20:03:31 +00:00
peter 7147ba1184 PR/30177: Rui Paulo: /var/chroot/pflogd isn't created by default 2005-05-11 10:41:51 +00:00
manu 6cb285d965 Take into account file removal 2005-05-10 10:23:13 +00:00
perry 5f29506c5f add cat7/script.0 man7/script.7 2005-05-07 02:23:39 +00:00
martin 2fca76e80d Add the xf8_32wid module. 2005-05-06 22:55:51 +00:00
tron 12c1fb5b6d "loadfile_machdep.h" should not be installed as pointed out by
Izumi Tsutsui. This needs to be fixed in the build process.
2005-05-03 08:24:15 +00:00
lukem 3e3c4f88c3 Another fix for MKSHARE=no. (broken a while ago in rev 1.17. hi rtr!) 2005-05-03 00:23:41 +00:00
lukem aac90486da Fix for MKSHARE=no 2005-05-03 00:21:47 +00:00
lukem cd64c3eed3 zoneinfo directories don't need MKSHARE=yes.
Part of PR 29968 from Jukka Salmi.
2005-05-03 00:16:59 +00:00
tron 450260eeec Install "loadfile_machdep.h" to fix build of "libsa". 2005-05-02 12:31:08 +00:00
martti 840228057a Install netinet/ipl.h (bin/30095) 2005-05-01 14:57:27 +00:00
lukem 597054d4ad Fix typo in previous.
Noted by Markus W Kilbinger in private email.
2005-05-01 10:34:50 +00:00
lukem e9c1d14fc9 Update for various USE_* options.
Rest of PR 30092 from Jukka Salmi.
2005-05-01 07:28:13 +00:00
lukem 22b0f5dfc0 Add support for following keywords in sets lists, based on mk.conf(5) vars:
use_inet6		${USE_INET6} != no
	use_kerberos		${USE_KERBEROS} != no
	use_yp			${USE_YP} != no
2005-05-01 07:06:09 +00:00
agc dc9630d5b3 Mark ./usr/share/locale/no@nynorsk/LC_MESSAGES/gettext.mo as obsolete. Really. 2005-04-30 14:26:38 +00:00
wiz 9b93dfd77c obsolete...obsolete... (i.e. make both keywords contain obsolete). 2005-04-29 21:08:13 +00:00
christos d097b35f6f adjust for new gettext. 2005-04-29 15:27:33 +00:00
christos 0f57a94b66 Add the directories for the new gettext; noted by Jukka Salmi 2005-04-27 00:59:46 +00:00
agc cb6ade7bb5 Remove a spurious reference to a non-existent ./usr/bin/texi2pdf which seems
to have crept in in the previous commit.
2005-04-26 10:51:26 +00:00
wiz 2b16d52f32 For obsolete files, make sure that both words behind the pathname contain
"obsolete".
2005-04-25 11:38:01 +00:00
blymn c096161d93 Obsolete verifiedexec(4) man page 2005-04-25 00:46:18 +00:00
dyoung 9b9ed510b0 Add IEEE 802.11 manual pages from FreeBSD to both the Makefiles
and the set lists.
2005-04-24 21:43:03 +00:00
wiz 22a0421626 Add openssl_errstr(1). 2005-04-24 00:15:02 +00:00
perseant 2f695b5476 Provide a resize_lfs(8), including kernel and cleaner support. The current
implementation requires the fs to be mounted while resizing.  Tested in both
directions, and everything appears to work happily, but ymmv.
2005-04-23 19:47:51 +00:00
christos 058cfb2918 bump libssh. 2005-04-23 16:58:21 +00:00
blymn 8387760ed1 Rototill of the verified exec functionality.
* We now use hash tables instead of a list to store the in kernel
    fingerprints.
  * Fingerprint methods handling has been made more flexible, it is now
    even simpler to add new methods.
  * the loader no longer passes in magic numbers representing the
    fingerprint method so veriexecctl is not longer kernel specific.
  * fingerprint methods can be tailored out using options in the kernel
    config file.
  * more fingerprint methods added - rmd160, sha256/384/512
  * veriexecctl can now report the fingerprint methods supported by the
    running kernel.
  * regularised the naming of some portions of veriexec.
2005-04-20 13:44:45 +00:00
tsutsui 16066bfe4a Remove obsolete mbr and msdos5mb.gz binaries. 2005-04-18 16:44:04 +00:00
tsutsui 5ab2951c5e Add a standalone boot for arc. 2005-04-18 16:34:28 +00:00
lukem 5c5750a595 Move /etc/postinstall (and the etc.tgz set) to /usr/sbin/postinstall
(and the base.tgz set).
2005-04-17 15:15:48 +00:00
provos bdc32cfad7 update to libevent-1.0c. This includes support for event priorities,
multi-threaded applications and some bug fixes.  regression test
improved to test for new features.  bump major.
2005-04-17 07:20:00 +00:00
itohy 0ee992857f ukyopon(4): Kyocera AIR-EDGE PHONE driver
Close NetBSD PR #25954 in a different way.
2005-04-15 17:18:18 +00:00
peter ffe0037a82 The pf directory is always created in /usr/share/examples, so remove the pf
keyword from the list.  Fixes part of PR 29968 from Jukka Salmi.
2005-04-14 21:45:10 +00:00
kleink 2debc92229 Actually give /var/chroot/spamd an `obsolete' keyword. 2005-04-12 16:59:16 +00:00
jwise 17d8f2eb11 Missed commit -- /var/chroot/spamd is now /var/chroot/pfspamd. 2005-04-12 15:55:38 +00:00
kleink 7a5e7ac8e9 Adjust for the Argentina directory that came with tzdata2004b;
noted by Geoff C. Wing in PR bin/29954.
2005-04-12 15:35:54 +00:00
jwise 50ee2bcb04 spamlogd is now pfspamlogd. 2005-04-12 14:47:08 +00:00
jwise f876c1012e spamd.conf is now pfspamd.conf. 2005-04-12 14:39:39 +00:00
jwise ed335360d1 Provide obsolete list entries for old names of pfspamd et al. 2005-04-11 23:39:12 +00:00
jwise d4a770bc93 spamd (et al) man pages have also changed to pfspamd (et al). 2005-04-11 22:42:47 +00:00
jwise d757dd5564 spamd (et al) -> pfspamd (et al). 2005-04-11 22:35:45 +00:00
nakayama 78fc87188c Add "skey" tag to pam_skey.[08]. 2005-04-10 02:48:45 +00:00
christos 94218b86fb Add get{pw,gr}ent_r.{3,0} 2005-04-04 20:38:24 +00:00
peter 6e4d82adbb Enable pflogd(8). 2005-04-04 19:11:18 +00:00
christos bfcb364086 Fix sets for strfmon 2005-04-03 20:12:18 +00:00
martin 73dcb3902b Add r128, radeon and atimisc files. 2005-04-03 20:01:53 +00:00
hubertf 6d7eb973a8 fstab-examples reorg:
fstab.md is dead, add fstab.{cdrom,pseudo,ramdisk}
2005-04-03 14:13:06 +00:00
jdolecek 0b8e9ef3ed add tra(4) manpage 2005-04-03 11:56:29 +00:00
christos 62984744ca bump libc. 2005-04-02 04:56:09 +00:00
yamt 3165a4e284 remove links to uvm.9 for removed functions. 2005-04-01 12:07:42 +00:00
lukem 6448c18465 Add /rescue/tetris.
When your system is fubared, this will help you relax.
2005-04-01 08:35:17 +00:00
wiz 3294301136 Add wcsftime(3). 2005-03-30 10:17:36 +00:00
wiz 5236534b53 Add postinstall(8). 2005-03-28 15:44:26 +00:00
lukem 56794bce3c All of the X11 obsolete set lists are installed now. 2005-03-28 13:48:04 +00:00
lukem d967a961ee Don't remove empty obsolete lists; it unnecessarily complicates etc/Makefile 2005-03-28 03:12:34 +00:00
tnozaki a3b248100e add csmapper:CNS11643-1,2 and esdb:ISO-2022-CN,
integrate esdb:EUC-TW, locale:zh_TW.eucTW.
2005-03-27 22:30:05 +00:00
tron 1fb15927cb Add new files installed after import of XFree86 4.5.0. 2005-03-26 21:33:48 +00:00
martin 9bea68674e Add files additionaly installed for loadable servers. Sort. 2005-03-26 11:37:08 +00:00
christos 112f814bfd bump libcrypto. 2005-03-26 02:24:10 +00:00
christos d6b9d6afcb der_chop is minced meat. 2005-03-26 00:33:44 +00:00
cube 76083f1d54 Add a manpage for attimer(4), and cross-reference it from pcppi(4). 2005-03-25 23:30:55 +00:00
tron f0c491ff32 Add new files installed after import of XFree86 4.5.0. 2005-03-25 23:08:22 +00:00
christos ab5e9c0298 add fips openssl include files. 2005-03-25 20:13:21 +00:00
tron ea41f5798a Add new files installed after import of XFree86 4.5.0. 2005-03-25 19:01:53 +00:00
martin 6b1f94f060 Add src/x11 generated stuff 2005-03-24 09:49:07 +00:00
martin dcbe0ab123 Move /var/db/obsolete/xserver in md sets for those archs that have it. 2005-03-24 09:16:10 +00:00
rtr c6b047ea8b + do not install getconfig 2005-03-24 05:27:18 +00:00
tron 02aac2106a The last of the changes for missing files in i386 vs xsrc.
+ build libafb for i386 (like xsrc does)
+ hook getconfig into the build
+ add new input driver acecad
+ add new xkb symbols
+ add new font encodings
2005-03-23 15:43:42 +00:00
tron d98cfc324a Correct entries for "XStandards.7" and "Xsecurity.7" so that they are
still found if manual pages are compressed. Problem pointed out by
Chavdar Ivanov in private e-mail.
2005-03-23 00:38:10 +00:00
tron dbc8156f5b Add Xdmx server, libraries and utilities to reachover set lists. 2005-03-22 13:45:46 +00:00
tron 302011aaba Move X11 obsolete file lists into "xbase" set. 2005-03-22 12:45:07 +00:00
tron a9f1e3563a Add "MKX11" flag. We need it for the X11 obsolete lists in the "base" set. 2005-03-22 09:28:24 +00:00
tron fb571c8922 Add support for handling obsolete X11 files and directories. 2005-03-21 23:09:39 +00:00
tron aa9c0780ed Mark the "codeconv" modules as obsolete. 2005-03-21 15:00:15 +00:00
tron ccfb82e52b Update reachover build framework set list for XFree86 4.5.0. 2005-03-21 14:43:43 +00:00
martin 5946d307e6 Add new man pages 2005-03-19 15:26:23 +00:00
tron 85a7063e89 Update sets for native XFree86 build for version 4.5.0. 2005-03-18 20:45:42 +00:00
drochner 68210160d1 add new brazilian-abnt2 keymap 2005-03-18 17:44:17 +00:00
kleink 363c26d4ba Interpose cancellation points in pollts() and pselect(), bringing us
to libc.so.12.127 and libpthread.so.0.6.
2005-03-18 11:23:44 +00:00
yamt 5240b887db add agr(4), a pseudo network device driver for link aggregation. 2005-03-18 11:11:50 +00:00
kleink 513c158344 A couple of <sys/select.h>-related changes:
* Factor out struct selinfo and its header dependencies into its own header,
  <sys/selinfo.h>, to avoid namespace pollution.
* Include <sys/selinfo.h> in user-visible headers where necessary.
2005-03-17 20:39:17 +00:00
he 25fad1edc3 Revert the previous commit; nodns.m4 was only installed in the time
period between the import and the subsequent "resolve conflicts"
commit.
2005-03-16 12:52:53 +00:00
xtraeme 84b54ddae9 /usr/share/sendmail/features/nodns.m4 is installed by the new sendmail
in base.
2005-03-15 20:31:21 +00:00
peter 0a9aa9779a Install pf(4) examples. Reviewed by yamt@.
Thanks to hubertf@ for the reminder.
2005-03-15 16:05:03 +00:00
christos 4eb907bddf Add "crypto" to the pam_ssh files. 2005-03-15 15:02:51 +00:00
atatat d69e78afde Update to compensate for new sendmail 2005-03-15 02:34:54 +00:00
perry e99c3b1541 we are at libc.so.126 2005-03-14 13:02:00 +00:00
perry 4d7b53f8df add memmem man pages 2005-03-13 15:20:09 +00:00
atatat a02cda792a Add sockstat references to sets lists. 2005-03-09 05:24:38 +00:00
thorpej 7078187c0c Add a pam.conf(5) manual page. 2005-03-07 02:26:31 +00:00