Commit Graph

1094 Commits

Author SHA1 Message Date
briggs 74277ae141 uebayasi noted that NDIS is really platform-dependent. 2005-11-11 06:09:57 +00:00
briggs 7d597ca092 Update to describe a way to claim a project. 2005-11-11 05:51:20 +00:00
briggs 5a695fd1fd Add a roadmap that's kind of a cross between a todo list and a roadmap.
This is present as a guide for developers.  It is meant to be maintained
by the community with some guidance by core.
2005-11-11 05:42:48 +00:00
yamt 914c85ff3b terminate yamt-vop branch. 2005-11-02 12:44:24 +00:00
yamt 73370bbcf4 yamt-vop: new base. 2005-11-02 12:12:36 +00:00
mrg 60c6df9a25 note that vixie cron 4.1 is out (since jan 2004) 2005-11-01 20:20:13 +00:00
riz 2a0a441743 Note netbsd-2-1 branch. 2005-10-26 23:09:32 +00:00
yamt 92a6da46f7 yamt-vop branch. 2005-10-20 00:42:40 +00:00
wiz 8373c79729 Update cvs Home Page and Archive Site. 2005-10-18 00:47:05 +00:00
pooka 53797e1b73 note release & import of file 4.16 2005-10-17 21:39:14 +00:00
riz ae57180bf8 Move entries for sparc64 switch to wscons, vnd(4) support for
cloop2-compressed images, sysinst Spanish translation, and xge(4)
driver to CHANGES.prev after pulling them up to the netbsd-3 branch.
2005-10-15 17:42:44 +00:00
manu 27b86a7be1 Last entry is at the bottom... 2005-10-14 15:06:11 +00:00
manu 7127e24cd6 ipsec-tools 0.6.2 import 2005-10-14 14:05:09 +00:00
rpaulo c356c20859 RPC kqueue project done. 2005-10-13 23:41:03 +00:00
kleink 412317b49a I'll look after dtoa.c/gdtoa integration. 2005-10-13 17:51:45 +00:00
wiz 69f5f2a592 gcc-4.0.2 out. 2005-10-12 14:27:16 +00:00
wiz e01d132d97 file-4.15 out. 2005-10-12 11:33:10 +00:00
wiz 048a48304d openpam-20050616 out. 2005-10-12 11:25:54 +00:00
wiz b2e72e1f3b heimdal-0.7.1 out. 2005-10-12 11:23:32 +00:00
rpaulo 0732b3a3b2 am-utils 6.1.3 2005-10-10 17:55:37 +00:00
kleink a43bbf3fc8 tzcode2005n out; tzdata2005n out and imported. 2005-10-07 23:14:28 +00:00
simonb 1541f2efdc Describe the mips shared linker load address fix hack in
src/sys/kern/exec_elf32.c rev 1.107.
2005-10-07 08:42:24 +00:00
rpaulo 3f3754adcd acpica 20050930 is out. 2005-10-06 19:03:55 +00:00
bouyer 33d782018b Note Xen network backend inprovements. 2005-10-02 21:55:41 +00:00
wiz a0655223fb Sort wpa_supplicant entry. 2005-10-02 01:18:59 +00:00
scw 2cc2cb3389 Note addition of wpa_cli and wpa_supplicant. 2005-10-01 18:53:58 +00:00
scw f238fe91a4 Update for wpa_supplicant-0.3.9 2005-10-01 10:29:32 +00:00
cube 774136f54f Note the latest config(1) additions. 2005-09-30 23:05:02 +00:00
hubertf f538be6bf5 * make clear what "window" is
* we now have a SMB filesystem
 * add link to SoC project for BSD-licensed privacy guard like gnupg or pgp
   (XXX what's the status of that???)
 * Mention kerberizing more services, with associated PR
2005-09-27 20:15:15 +00:00
rpaulo 87d98a27d3 Forgot to note amd responsible on this file. 2005-09-27 10:12:46 +00:00
jmcneill fd2f15ceda Claim responsibility for the gpio framework. 2005-09-27 03:04:43 +00:00
jmcneill 1e7e45d087 Note import of gpio(4) and friends. 2005-09-27 03:03:31 +00:00
rpaulo 124876d613 Fixing showmount was easier than I thought.. 2005-09-25 18:59:50 +00:00
rpaulo 7f0e10fba7 Add entry about showmount IPv6 support. 2005-09-25 17:53:33 +00:00
christos 714b6fd870 more nits. 2005-09-24 17:29:10 +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
dyoung 647d6ec240 Remark on AMD Geode SC1100 additions: system reset, watchdog timer. 2005-09-22 07:54:11 +00:00
tsarna cf833f9d39 Take credit for pam_afslog 2005-09-21 14:58:52 +00:00
tsarna 8c033b7764 Note pam_afslog 2005-09-21 14:20:56 +00:00
simonb 50bc896229 Remove trailing white space. 2005-09-21 09:19:23 +00:00
christos debf7b4781 More simple projects. 2005-09-21 03:13:44 +00:00
rpaulo 9c9c9cc011 Note the am-utils update and add rpaulo as another responsible person. 2005-09-20 18:41:43 +00:00
rpaulo f50a838989 Mention am-utils 6.1.2.1 upgrade. 2005-09-20 18:40:22 +00:00
wiz 7df453330f am-utils-6.1.2.1 is out. 2005-09-20 09:14:40 +00:00
christos a6b8486dda Mention compat changes, and fix the entry above; (hi jmmv) 2005-09-15 12:41:23 +00:00
christos 66077da03e remove itojun and add christos from openssl, openssh, and bind. 2005-09-13 17:13:50 +00:00
christos f12b717439 blurb for libpthread. 2005-09-13 17:09:59 +00:00
jmmv 8e0a777ab1 wiz@ remembers that the preferred way to spell file-system in NetBSD is
file system.
2005-09-10 22:28:57 +00:00
wiz 85b45789bf Fix typo. 2005-09-10 21:14: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