diff --git a/en/projects/acpi/completed.sgml b/en/projects/acpi/completed.sgml index 972ec977aa..e9c3f94d9c 100644 --- a/en/projects/acpi/completed.sgml +++ b/en/projects/acpi/completed.sgml @@ -1,339 +1,339 @@ - + %includes; %developers; ]> &header;

Completed Project List

- +
Add methods to get/set ints acpi_EvaluateInteger only gets an int. Update api to get/set so that every consumer does not end up defining their own. &a.marks;
Fix getenv_string. Does not seem to work in sys/dev/acpica/Osd/OsdTable.c. Turned out the name should not end in "_name". &a.marks; and &a.grehan;
acpi_video manpage. See appendix B of the ACPI 2.0 spec for info on what this driver does as well as look at the sysctls it exports. &a.marks;
fd0 not working on Intel boards. The floppy device did not work due to the _CRS object on some systems splitting the IO port into three 2 port resources (6 ports total). Fix committed to sys/isa/fd.c to work with this type of resource specification. &a.njl; and &a.jhb;
Some BIOSs use 0x3f2-0x3f5 as the port range -- the real range is 0x3f0-0x3f5, 0x3f7. Workaround committed. &a.imp;
ACPI Debugging Handbook Page -- Introduction to ACPI for new users as well as how to assist us in fixing problems as they arise. &a.njl; and &a.trhodes;
acpi_video driver (njl) -- Imported.&a.njl and Taku YAMAMOTO (driver author)&a.njl; and Taku YAMAMOTO (driver author)
BIOS blacklist -- implement a mechanism and specific quirks to disable features or ACPI entirely on known broken systems. If a custom DSDT is loaded, do not check it against the blacklist (since a user may fix the DSDT without changing the vendor/revision fields.) Add blacklist option for disabling acpi on certain systems. &a.njl
acpi_toshiba man page -- Driver submitted by Hiroyuki Aizu and committed. All it needs is someone to try it out and document the sysctls. &a.philip;
Invalid PBLK length workaround -- Accept a PBLK of length 5 (spec says 6). Only enable C2 for this though. Some people may be using 7 to indicate another C3 state but we do not support the extra state. &a.njl;
Check EcSpacehandler to make sure it is correct for multi-byte access. Found off-by-one in that the last address (0xff) could never be written or read.  
Pick a default MS OS to claim -- Too much ASL depends on a MS OS string so we should masquerade as the most accurate one. Picked Win2k™ ("Microsoft Windows NT™"), then reverted once _OSI support was available.  
Handle DPF resource types in acpi_pcib.c -- Some _PRS values are bracketed with start/end dependent function resource descriptors. Parse/skip them to fix PCI IRQ routing. &a.njl;
acpi_toshiba updates -- Implement support for DSSX which appears to be the only way to do display switching (other than acpi_video). &a.njl;
ASUS driver -- Driver for ASUS ACPI extras (hotkeys). Similar to the acpi4asus.sf.net Linux project. &a.philip;
Fix sysctls for debug layer/level -- setting from usermode via a sysctl did not work. &a.njl;
Make lid and sleep button sysctls default to min(supported_states) -- lid switch now defaults to NONE, sleep button to minimum sleep state available.  
newbus attachments for cpu -- Get cpu devices under newbus so drivers like cpufreq can probe/attach. &a.njl;
Make CPU cx_lowest sysctl more readable -- Use C[1-9] instead of the index value. &a.njl;
Update EC GLK check -- Use the handle from the table to read _GLK instead of always defaulting to using the global lock. &a.njl;
Merge ECDT/EC probe &a.njl;
_INI methods -- run for all devices, not just Device objects. ACPI-CA now calls _INI for Devices, ThermalZones and Processors.  
Fix acpidump failing on several systems -- acpidump(8) fails on some systems. I suspect this may be in how we search low memory for the RSDP. Changed to only search EBDA (1 KB pointed to by 16 bit pointer at 0x40E) and high memory (0xE0000 - 0xFFFFF) according to the spec (section 5.2.2). &a.njl;
Fix apm compat interface -- Hacked around this in the userland utility by marking values >= 255 as "unknown". &a.njl;
Update GPE code to handle general device wake -- Also, disable GPEs that are not valid when entering a new sleep state. Without this, GPEs for the lid left enabled on a Thinkpad™ X22 restart the system after power off. Add userland interface for enabling device wake (done as per-device sysctls). &a.njl;
Fix shutdown routines to not poke all the events (causes auto power on for some people). Workaround is to set hw.acpi.disable_on_poweroff=0. Now that GPEs are properly disabled based on _PRW during suspend and poweroff, we can hopefully remove the call to acpi_Disable() in the poweroff path. We now handle the reboot case also by hooking device_shutdown().  
Cleanup acpidump/boot EBDA lengths.  
Fix acpi_cpu busy refcount -- We no longer use a refcount but instead avoid doing any housekeeping after re-enabling interrupts at the end of acpi_cpu_idle(). Otherwise, the context switch after unmasking ints could disrupt device state. &a.njl;
Do not print an error message for _PR0 method -- If not present, do not print an error in switch_consumer. &a.njl;
acpi sysresource probing -- Probe/attach acpi resources in the acpi bus and then dole it out to children as necessary. Requires rman(9). Includes more sophisticated handling of device ordering in scan. &a.njl;
Update ACPI blacklist -- Read entries from various OS's and add them to our blacklist table. &a.njl;, &a.marks;
Fix general wake code -- remove use of device_t flags as they may collide with the driver. Use an acpi ivar instead. Fix for non-acpi devices as well by using a bus walk routine instead of device_suspend. Add code to turn on appropriate power resources. Disable EC in shutdown path. &a.njl;
Fix drivers and the apm compat interface -- Currently, the apm compat interface expects byte values but the ABI used is a set of u_ints and an int. Either the apm or acpi battery drivers (or both) are setting the value to -1, which results in 0xffffffff being passed back as the current state. Really, only 255 should be returned in this case. The apm userland utility marks values >= 255 as "unknown" to work around this. But really the underlying drivers should be fixed. &a.imp;
Fix EC timeouts -- move to a sx lock to cover EcWait instead of a mutex so we can hold it across msleep. This fixed the timed out errors that occurred occasionally for some users.  
Package all info on how to do an ACPI import -- done and handed off to &a.marks; for inclusion in the acpi projects website. &a.njl;
ACPI floppy driver probing -- Add a fdc_acpi_probe method to enumerate floppies using _FDE, _FDI methods. &a.njl;
Rework ACPI PCI link support -- _DIS all links, ignore invalid _CRS, ignore _STA, assume _SRS succeeds. &a.njl;
Fix EISA probe not to write to registers. Turns out an inb actually triggers the boot hang. Patch committed to only probe the first slot; however, this breaks the Adaptec VLB adapter (not EISA). &a.gibbs; is fixing that device's probe.  
Giant-free locking -- Remove dependency on Giant. &a.njl;
Add SSDT support to acpidump(8) -- Right now we only dump the fixed tables and DSDT. Change acpidump(8) to dump the SSDT tables. It currently concatenates them with the DSDT. &a.marcel;
Change shutdown path -- do not use smp_rendezvous() since it acquires a spinlock. Instead, MI code should run the shutdown path only on the BSP and all other processors should be halted. &a.peter;
Turn ACPI and PCI devices off or to a lower power state in suspend and back on again in resume. Override the default of D3 with the value the BIOS specifies in _SxD, if present. Skip serial devices (PNP05xx) since they seem to hang when set to D3 and may require special driver support. Also skip non-type 0 PCI devices (i.e., bridges) since they don't seem to handle being powered off. 
&footer; diff --git a/en/projects/c99/index.sgml b/en/projects/c99/index.sgml index 08d46c7186..a7a05cb7bb 100644 --- a/en/projects/c99/index.sgml +++ b/en/projects/c99/index.sgml @@ -1,2005 +1,2005 @@ - + %includes; %developers; "> "> "> "> "> assert(3)"> printf(3)"> scanf(3)"> strtod(3)"> printf(9)"> freebsd-standards-subscribe@FreeBSD.org"> freebsd-standards@FreeBSD.org"> ]> FreeBSD C99 & &posix; Conformance Project FreeBSD C99 & POSIX Conformance Project
Project Goal

The FreeBSD C99 & &posix; Conformance Project aims to implement all requirements of the ISO 9899:1999 (C99) and IEEE 1003.1-2001 (POSIX) standards. In cases where aspects of these standards cannot be followed, those aspects will be documented in the c99(7) or posix(7) manuals. It is also an aim of this project to implement regression tests to ensure correctness whenever possible.

Project Plan

All of the initial development takes place in the 5-CURRENT branch and most changes are merged into the 4-STABLE branch. Since this is a rather large project and is being done on a volunteer basis, there is no set schedule.

How to Contribute

The project is always looking for additional contributors. If you wish to participate, the best way to find out what is happening is to subscribe to the freebsd-standards mailing list. If you are working on a specific task relating to the project, you should contact mike@FreeBSD.org with a description of the task so that your task can be listed below.

Resources and Links Status Board

Task Responsible Last Updated Status
5.x 4.x
Documentation
Create stdint(7) manual to document <stdint.h>. &a.mike; 15 September 2002 &status.done; &status.n-a;
Document flockfile(3), ftrylockfile(3), funlockfile(3). &a.tjr; 22 January 2004 &status.done; &status.n-a;
Document new _SC options in sysconf(3) (PR: 20528). &a.trhodes; 13 January 2005 &status.done; &status.blank;
Document standards conformity level of the API.   26 March 2002 &status.wip; &status.blank;
Document thread safety and async-cancel safety.   26 March 2002 &status.wip; &status.blank;
Create c99(7) and posix(7) manuals.   11 December 2001 &status.new; &status.blank;
Document in posix(7) that the batch job management utilities are available in the port net/generic-nqs.   11 December 2001 &status.new; &status.blank;


Task Responsible Last Updated Status
5.0 4.x
Functions and System Calls
Add __func__ reporting to &man.assert.3;. &a.asmodai; 27 October 2001 &status.done; &status.n-a;
Implement imaxabs(), imaxdiv(), llabs(), lldiv(). &a.mike; 14 November 2001 &status.done; &status.n-a;
Implement atoll(), strtoimax(), strtoumax(). &a.fenner; 27 November 2001 &status.done; &status.n-a;
Implement new length modifiers (hh, j, t, z) and new flag (') in &man.printf.3;. &a.wollman;,
&a.fenner;
30 November 2001 &status.done; &status.n-a;
Implement strerror_r(). &a.wes; 20 December 2001 &status.done; &status.done;
Implement tgamma() based on Lite1's gamma(). &a.bde; 27 March 2002 &status.done; &status.n-a;
Implement new length modifiers (hh, j, ll, t, z) in &man.scanf.3;. &a.fenner; 20 April 2002 &status.done; &status.n-a;
Add WCONTINUED to waitpid(2). &a.mike; 1 June 2002 &status.done; &status.n-a;
Implement new conversion specifiers (%j and %n) in &man.printf.9;. &a.dd;
&a.des;
3 June 2002 &status.done; &status.n-a;
Implement fstatvfs() and statvfs() (trivial). &a.wollman; 14 June 2002 &status.done; &status.n-a;
Implement fmtmsg(). &a.mike; 8 August 2002 &status.done; &status.n-a;
Implement ulimit(). &a.mkm; 8 August 2002 &status.done; &status.n-a;
Implement C99's _Exit(). &a.wollman; 11 September 2002 &status.done; &status.n-a;
Add required options for POSIX.1-2001 to glob(). (partial MFC) &a.mikeh; 20 September 2002 &status.done; &status.done;
Update sysconf(3) for POSIX.1-2001. &a.wollman; 18 September 2002 &status.done; &status.n-a;
Restore insque(), lsearch(), remque() from libcompat. &a.robert; 16 November 2002 &status.done; &status.n-a;
Implement fpclassify(). &a.das;,
&a.mike;
8 February 2003 &status.done; &status.n-a;
Implement isfinite(), isinf(), isnan(), isnormal(). &a.das; 17 February 2003 &status.done; &status.n-a;
Implement isgreater(), isgreaterequal(), isless(), islessequal(), islessgreater(). &a.das; 17 February 2003 &status.done; &status.n-a;
Implement signbit(). &a.mike; 17 February 2003 &status.done; &status.n-a;
Implement sockatmark(). &a.fenner; 23 December 2002 &status.done; &status.new;
Implement wordexp() and wordfree(). &a.tjr; 31 December 2002 &status.done; &status.new;
Implement grantpt(), posix_openpt(), ptsname(), unlockpt(). &a.ryany; 4 February 2003 &status.done; &status.new;
Add floating-point support for the (') modifier in &man.printf.3; &a.das; 22 January 2004 &status.done; &status.blank;
Add new conversion specifiers (%a and %A) to &man.printf.3;. &a.das; 22 January 2004 &status.done; &status.n-a;
Transition to vendor (Netlib) source for strtod.c. &a.das; 22 January 2004 &status.done; &status.n-a;
Import Netlib's gdtoa (strtof, strtold, etc.). &a.das; 22 January 2004 &status.done; &status.n-a;
Implement C99 macros fpclassify(), isfinite(), isinf(), isnan(), isnormal(), signbit(). &a.mike;,
&a.das;
22 January 2004 &status.done; &status.n-a;
Implement C99 macros isgreater(), isgreaterequal(), isless(), islessequal(), islessgreater(), isunordered(). &a.mike;,
&a.das;
22 January 2004 &status.done; &status.n-a;
Implement new hex floating-point format types (%a/%A) in &man.scanf.3;. &a.das; 22 January 2004 &status.done; &status.n-a;
Implement getpwnam_r(), getpwuid_r(). &a.nectar; 7 June 2004 &status.done; &status.n-a;
Implement posix_madvise(). &a.bms; 7 June 2004 &status.done; &status.n-a;
Implement new functions that appear in <fenv.h>. &a.das; 7 June 2004 &status.done; &status.n-a;
Implement ftw() and nftw() in terms of fts(). &a.das; 8 July 2004 &status.done; &status.blank;
Implement C99 rounding functions lrint(), lrintf(), lrintl(), llrint(), llrintf(), llrintl(). &a.das; 13 January 2005 &status.done; &status.blank;
Implement getgrgid_r(), getgrnam_r(). &a.wes; 20 December 2001 &status.wip; &status.blank;
Implement new functions that appear in <complex.h>. &a.markm; 6 February 2002 &status.wip; &status.blank;
Implement waitid(2). &a.mike; 27 May 2002 &status.wip; &status.blank;
Implement the utmpx family of functions. &a.robert; 28 June 2002 &status.wip; &status.blank;
Add restrict type-qualifier to functions that require it. &a.robert; 16 August 2002 &status.wip; &status.blank;
Implement iconv(), iconv_close(), iconv_open(). &a.tjr; 8 October 2002 &status.wip; &status.blank;
Update fmtcheck(3) to recognize new printf(3) flags.   16 October 2002 &status.wip; &status.n-a;
Make non thread-safe functions thread-safe.   22 October 2001 &status.new; &status.blank;
Make functions async-cancel safe.   22 October 2001 &status.new; &status.blank;
Obtain a64l(), l64a(), and l64a_r() (extention) from NetBSD.   9 September 2002 &status.new; &status.blank;
Add SIG_HOLD support to signal(3)/sigaction(2).   13 October 2002 &status.new; &status.blank;
Implement RTS functions sigqueue(), sigtimedwait(), sigwaitinfo().   13 October 2002 &status.new; &status.blank;
Implement posix_mem_offset(), posix_typed_mem_get_info(), posix_typed_mem_open(), posix_memalign().   7 June 2004 &status.new; &status.blank;
Implement long double versions of libm routines.   13 January 2005 &status.new; &status.blank;
Implement exp2(), fma(), log2(), nan(), nexttoward(), and remquo() in libm.   13 January 2005 &status.new; &status.blank;


+ (originally developed by &a.wollman;).
Task Responsible Last Updated Status
5.0 4.x
Headers
Fix prototypes and hide non-conforming portions of header <arpa/inet.h>. &a.mike; 19 February 2002 &status.done; &status.n-a;
Implement the <stdint.h> and <inttypes.h> headers. &a.mike; 1 March 2002 &status.done; &status.n-a;
Add exposure control primitives to <sys/cdefs.h> - (originally developed by &a.wollman). &a.mike; 1 April 2002 &status.done; &status.n-a;
Implement <sys/_types> to store shared MI types. &a.mike; 1 April 2002 &status.done; &status.n-a;
Implement header <strings.h>, and work out compatibility issues with header <string.h>. &a.mike; 4 April 2002 &status.done; &status.n-a;
Hide non-conforming portions, add missing types to <sys/un.h>. &a.mike; 19 April 2002 &status.done; &status.n-a;
Remove pollution and add missing macros to <netinet/in.h> and <netinet6/in6.h>. &a.mike; 23 May 2002 &status.done; &status.n-a;
Hide non-conforming portions of <sys/wait.h>. &a.mike; 3 June 2002 &status.done; &status.n-a;
Hide non-conforming portions of <pwd.h>. &a.mike; 9 June 2002 &status.done; &status.n-a;
Create <sys/statvfs.h> based on POSIX spec. &a.wollman; 14 June 2002 &status.done; &status.n-a;
Add nfds_t and resolve other issues in <poll.h> (actually <sys/poll.h>). &a.mike; 8 July 2002 &status.done; &status.n-a;
Implement the XSI header, <cpio.h>. &a.mike; 1 August 2002 &status.done; &status.n-a;
Implement <fmtmsg.h>. &a.mike; 8 August 2002 &status.done; &status.n-a;
Implement <ulimit.h>. &a.mkm; 8 August 2002 &status.done; &status.n-a;
Merge <machine/ansi.h> and <machine/types> into a new common header <machine/_types.h>. &a.bde;,
&a.mike;
23 August 2002 &status.done; &status.n-a;
Fix namespaces, add missing types in <sys/mman.h>. &a.mike; 29 August 2002 &status.done; &status.n-a;
Fix namespace issues in <ctype.h>. &a.mike; 9 September 2002 &status.done; &status.n-a;
Fix namespace issues in <dlfcn.h>. &a.wollman;,
&a.mike;
11 September 2002 &status.done; &status.n-a;
Fix namespace issues in <fcntl.h>. &a.mike; 18 September 2002 &status.done; &status.n-a;
Fix namespace issues in <fnmatch.h>. &a.mike; 18 September 2002 &status.done; &status.n-a;
Fix namespace issues in <grp.h>. &a.mike; 18 September 2002 &status.done; &status.n-a;
Fix namespace issues in <langinfo.h>. &a.mike; 18 September 2002 &status.done; &status.n-a;
Add va_copy() macro to <stdarg.h> (actually <machine/stdarg.h>). &a.mike; 20 September 2002 &status.done; &status.n-a;
Fix namespaces issues in <stdlib.h>. &a.wollman; 21 September 2002 &status.done; &status.n-a;
Add new pathname, system variable, and POSIX option constants to <unistd.h>. &a.wollman; 21 September 2002 &status.done; &status.n-a;
Merge two conflicting math.h headers into a single header. &a.bde; 2 October 2002 &status.done; &status.n-a;
Fix namespace issues in <net/if.h>. &a.mike; 2 October 2002 &status.done; &status.n-a;
Fix namespace issues in <netinet/tcp.h>. &a.mike; 2 October 2002 &status.done; &status.n-a;
Add size_t, fix regoff_t in <regex.h>. &a.mike; 2 October 2002 &status.done; &status.n-a;
Fix namespace issues in <sched.h> (actually <posix4/sched.h>). &a.mike; 5 October 2002 &status.done; &status.n-a;
Fix namespace issues in <semaphore.h> (actually <posix4/semaphore.h>). &a.mike; 5 October 2002 &status.done; &status.n-a;
Fix namespace issues in <setjmp.h> (actually <machine/setjmp.h>). &a.mike; 5 October 2002 &status.done; &status.n-a;
Fix namespace issues in <stdio.h>. &a.wollman; 7 October 2002 &status.done; &status.n-a;
Add missing members to struct lconv in <locale.h>. &a.tjr; 9 October 2002 &status.done; &status.n-a;
Fix namespace issues, add missing types in <sys/socket.h>. &a.mike; 13 October 2002 &status.done; &status.n-a;
Fix namespace issues, add missing types in <sys/uio.h>. &a.mike; 13 October 2002 &status.done; &status.n-a;
Fix namespace issues in <signal.h> (also <sys/signal.h> and <machine/signal.h>). &a.mike; 13 October 2002 &status.done; &status.n-a;
Eliminate <sys/_posix.h>. &a.mike; 16 October 2002 &status.done; &status.n-a;
Implement the header <wordexp.h>. &a.tjr; 31 December 2002 &status.done; &status.new;
Add missing constants FLT_EVAL_METHOD, DECIMAL_DIG to <float.h> (actually <machine/float.h>). &a.mike;,
&a.das;
22 January 2004 &status.done; &status.n-a;
Implement the header <fenv.h>. &a.das; 7 June 2004 &status.done; &status.n-a;
Implement <ftw.h>. &a.das; 8 July 2004 &status.done; &status.blank;
Implement <tgmath.h>. &a.stefanf; 13 January 2005 &status.done; &status.blank;
Implement new types and prototypes in header <complex.h>. &a.markm; 6 February 2002 &status.wip; &status.blank;
Hide non-conforming portions, add missing types to <sys/types.h>. &a.mike; 1 April 2002 &status.wip; &status.blank;
Reduce namespace pollution and add missing typedefs in <unistd.h> &a.mike; 25 March 2002 &status.wip; &status.blank;
Implement <utmpx.h> to eventually replace <utmp.h>. &a.robert; 28 June 2002 &status.wip; &status.blank;
Add missing errnos to <errno.h> (actually <sys/errno.h>). &a.mike; 11 September 2002 &status.wip; &status.blank;
Implement the header <iconv.h>. &a.tjr; 7 October 2002 &status.wip; &status.blank;
Hide non-conforming portions, add missing types to <sys/stat.h>. &a.mike; 27 February 2003 &status.wip; &status.blank;
Fix sizes of members in glob_t, add restrict type-qualifiers in <glob.h>.   20 September 2002 &status.new; &status.blank;
Decide whether to remove const type-qualifiers in <libgen.h>.   20 September 2002 &status.new; &status.blank;
Add missing constants in <limits.h>.   20 September 2002 &status.new; &status.blank;
Fix sizes of members in datum, add missing types, fix namespace issues in <ndbm.h>.   2 October 2002 &status.new; &status.blank;
Fix size of si_addrlen in struct addrinfo, add missing types, fix namespace issues in <netdb.h>.   2 October 2002 &status.new; &status.blank;
Evaluate missing features of <pthread.h>.   2 October 2002 &status.new; &status.blank;
Add missing members to struct sigevent, fix type of ss_sp in struct sigstack, add SIGEV_THREAD constant, add ucontext_t and mcontext_t in <sys/signal.h>.   13 October 2002 &status.new; &status.blank;
Fix types for members of struct ipc_perm in <sys/ipc.h>.   16 October 2002 &status.new; &status.blank;


Task Responsible Last Updated Status
5.0 4.x
Miscellaneous
Obtain a copy of Proc. ACM SIGPLAN '90 (required for &man.printf.3; %'f). &a.fenner; 9 November 2001 &status.done; &status.n-a;
Upgrade system compiler to GCC 3.1. &a.obrien; 15 May 2002 &status.done; &status.n-a;
Add regression test for each function.   17 November 2001 &status.new; &status.blank;
Merge sys/posix4/* into regular kernel hierachy, and remove sys/posix4.   21 September 2002 &status.new; &status.blank;
Open an Aardvark on how to deal with no newline on the last line of a file in diff(1).   25 November 2002 &status.new; &status.blank;
Globally rename the `lint' macro to something in the implementation namespace so it can safely modify the implementation (reference).   25 November 2002 &status.new; &status.blank;
Globally rename the `LOCORE' macro to something in the implementation namespace so it can safely modify the implementation (reference).   25 November 2002 &status.new; &status.blank;


Task Responsible Last Updated Status
5.0 4.x
Utility Conformance
Add -o option and base64 decoding to the uudecode utility. &a.jmallett; 26 March 2002 &status.done; &status.done;
Add -m option and base64 encoding to the uuencode utility. &a.jmallett; 26 March 2002 &status.done; &status.done;
Require atleast one file argument in paste(1). (PR: 36074) &a.tjr; 1 April 2002 &status.done; &status.done;
Add the -i option to the patch utility. &a.jmallett; 9 April 2002 &status.done; &status.done;
Add -r and -t options to the at utility. &a.joe.halpin; 16 April 2002 &status.done; &status.n-a;
Add the -f and -p options to the pr utility. (PR: 36243) &a.tjr; 16 April 2002 &status.done; &status.done;
Add the -s option to the m4 utility. (PR: 36075) &a.tjr; 24 April 2002 &status.done; &status.done;
Make printf(1) utility conform to POSIX.2 (1992). (PR: 35616) &a.tjr; 2 May 2002 &status.done; &status.done;
Correct output stream and exit status of the mesg(1) utility. &a.tjr; 6 May 2002 &status.done; &status.n-a;
Implement the asa utility. (PR: 36130) &a.tjr; 15 May 2002 &status.done; &status.n-a;
Add the tabs utility. (PR: 36126) &a.tjr; 20 May 2002 &status.done; &status.n-a;
Restore sccs utility from CVS attic. &a.jmallett; 22 May 2002 &status.done; &status.n-a;
Make expr(1) conform to POSIX.1-2001. &a.wollman; 22 May 2002 &status.done; &status.n-a;
Add the newgrp utility. (PR: 36190) &a.tjr; 28 May 2002 &status.done; &status.n-a;
Fix ctags(1)'s -t option; fix ordering with -x. &a.tjr; 2 June 2002 &status.done; &status.n-a;
Add -L option to the pwd utility. &a.tjr; 20 June 2002 &status.done; &status.done;
Fix exit status of the env(1) utility. &a.tjr; 20 June 2002 &status.done; &status.done;
Add the -b and -s option to the fold utility. (PR: 36245) &a.tjr; 20 June 2002 &status.done; &status.done;
Add -I and -L options to the xargs utility. &a.jmallett; 20 June 2002 &status.done; &status.done;
Implement the csplit utility. (PR: 36191) &a.tjr; 20 June 2002 &status.done; &status.n-a;
Fix exit status of the nice(1) utility. &a.tjr; 20 June 2002 &status.done; &status.done;
Add -n option to the nice utility. &a.pavalos; 20 June 2002 &status.done; &status.done;
Add -n option and resolve other issues in the renice utility. (PR: 36950) &a.pavalos;,
&a.maxim;
20 June 2002 &status.done; &status.done;
Add -t option to unexpand(1) utility. (PR: 35621) &a.tjr; 20 June 2002 &status.done; &status.done;
Make the uniq(1) utility accept `-' as a stdin specifier. &a.tjr; 28 June 2002 &status.done; &status.done;
Improve join(1)'s POSIX.1-2001 conformance. (PR: 36072) &a.tjr; 28 June 2002 &status.done; &status.done;
Add -C option to the tr utility. &a.tjr; 28 June 2002 &status.done; &status.n-a;
Implement the -m, -p, and -x options in the ls utility. &a.mkm; 8 July 2002 &status.done; &status.done;
Reimplement the who utility. (PR: 36128) &a.tjr; 14 July 2002 &status.done; &status.done;
Fix exit status, stdout/stderr confusion, and add `-' stdin support to the compress(1) utility. &a.tjr; 17 July 2002 &status.done; &status.done;
Add the -s, -A, -j, -N, and -t options to the od utility. (PR: 36783) &a.tjr; 24 July 2002 &status.done; &status.done;
Add -a option to the split utility. &a.tjr; 30 July 2002 &status.done; &status.done;
Add -m option to the wc utility. &a.tjr; 29 August 2002 &status.done; &status.done;
Add -L and -P options to the cd utility (shell built-in). &a.tjr; 7 October 2002 &status.done; &status.done;
Reimplement command(1) (shell built-in). &a.tjr; 7 October 2002 &status.done; &status.done;
Add the c99 utility (similar to c89). (PR: 36087) &a.tjr; 8 October 2002 &status.done; &status.n-a;
Update getconf(1) for POSIX.1-2001. &a.wollman; 12 November 2002 &status.done; &status.done;
Add the pathchk utility. &a.tjr; 12 November 2002 &status.done; &status.done;
Document the -n option in the echo utility as being implementation-defined. &a.schweikh; 8 May 2003 &status.done; &status.done;
Add missing options to the mailx utility. &a.mikeh; 22 December 2001 &status.wip; &status.blank;
Add missing components to the jobs utility. &a.mkm; 5 March 2002 &status.wip; &status.blank;
Work out conflicting -t option in the df utility. &a.tjr; 22 April 2002 &status.wip; &status.blank;
Add unimplemented features to the sh utility. &a.tjr; 20 May 2002 &status.wip; &status.blank;
Implement the -m, -w, and -t options in the lp utility. &a.gad; 23 May 2002 &status.wip; &status.blank;
Implement/import the SCCS development utilities: admin, delta, get, prs, rmdel, sact, unget, val &a.jmallett; 23 May 2002 &status.wip; &status.blank;
Investigate adopting some of the POSIX options in the ps utility. &a.jmallett; 6 June 2002 &status.wip; &status.blank;
Add missing options and resolve conflicting options in the nm utility. &a.robert; 2 August 2002 &status.wip; &status.blank;
Implement the iconv utility. &a.tjr; 9 October 2002 &status.wip; &status.blank;
Implement the locale and localedef utilities. &a.phantom; 16 October 2002 &status.wip; &status.blank;
Add -C and -T options to the ar utility.   30 November 2001 &status.new; &status.blank;
Investigate importing the cflow utility from the ports collection.   30 November 2001 &status.new; &status.blank;
Add -p, -v, and -V options to the command utility (shell built-in).   30 November 2001 &status.new; &status.blank;
Bring the cp utility up to conformance.   30 November 2001 &status.new; &status.blank;
Implement the cxref utility.   30 November 2001 &status.new; &status.blank;
Add the -d, -h, and -M options and fix conflicting -i option in the file utility.   30 November 2001 &status.new; &status.blank;
Bring the make utility up to conformance.   30 November 2001 &status.new; &status.blank;
Add -p option to the more utility.   30 November 2001 &status.new; &status.blank;
Add the qsub utility.   30 November 2001 &status.new; &status.blank;
Make printf(1) utility conform to SUSv3.   23 April 2002 &status.new; &status.blank;
Implement the fuser utility. (PR: 36076)   4 February 2003 &status.new; &status.blank;


Task Responsible Last Updated Status
5.0 4.x
Wide Character/String Support
Implement basic support for wide character I/O: getwc(), fgetwc(), getwchar(), putwc(), fputwc(), putwchar(), ungetwc(), fwide(). &a.tjr; 16 August 2002 &status.done; &status.n-a;
Add stubs for reentrant wc handling functions btowc(), mbrlen(), mbrtowc(), mbsrtowcs(), wcrtomb(), wcsrtombs(), wctob(), wctype(). &a.tjr; 23 August 2002 &status.done; &status.n-a;
Add stubs for reentrant wc handling functions iswalnum(), iswalpha(), iswcntrl(), iswctype(), iswdigit(), iswgraph(), iswlower(), iswprint(), iswpunct(), iswspace(), iswupper(), iswxdigit(). &a.tjr; 23 August 2002 &status.done; &status.n-a;
Implement wcwidth(). &a.keichii; 23 August 2002 &status.done; &status.n-a;
Implement wcswidth(). &a.ache; 23 August 2002 &status.done; &status.n-a;
Implement wcstok(). &a.tjr; 9 September 2002 &status.done; &status.n-a;
Implement wcstod(), wcstol(), wcstoul(). &a.tjr; 15 September 2002 &status.done; &status.n-a;
Implement wcsftime(). &a.tjr; 15 September 2002 &status.done; &status.n-a;
Implement fwprintf(), swprintf(), vfwprintf(), vswprintf(), vwprintf(), wprintf(). &a.tjr; 23 September 2002 &status.done; &status.n-a;
Implement fwscanf(), swscanf(), vfwscanf(), vswscanf(), vwscanf(), wscanf(). &a.tjr; 23 September 2002 &status.done; &status.n-a;
Implement wcstoimax(), wcstoll(), wcstoumax(), wcstoull(). &a.tjr; 23 September 2002 &status.done; &status.n-a;
Implement wide character format types (%C, %S, %lc, %ls) in &man.printf.3;. &a.tjr; 16 October 2002 &status.done; &status.n-a;
Implement wcscoll(), wcsxfrm(). &a.tjr; 7 June 2004 &status.done; &status.n-a;
Implement wide character format types (%C, %S, %lc, %ls) in &man.scanf.3;. &a.tjr; 7 June 2004 &status.done; &status.n-a;


Legend
&status.new; Not yet started
&status.blocked; Blocked awaiting completion of another task
&status.wip; Work in progress
&status.done; Task completed
&status.n-a; Not planned

News

The remainder of this page is structured as a reverse-chronological log.

31 December 2002 13 December 2002 9 October 2002 16 August 2002 1 August 2002 22 May 2002 3 March 2002 30 January 2002 14 December 2001 6 December 2001 28 November 2001 19 October 2001 10 October 2001

The original layout for this web page was borrowed from the FreeBSD SMPng Project. BSD Daemon Copyright 1988 by Marshall Kirk McKusick. All Rights Reserved.

&footer; diff --git a/en/releases/2.1.5R/notes.sgml b/en/releases/2.1.5R/notes.sgml index e65af91df6..740d566c37 100644 --- a/en/releases/2.1.5R/notes.sgml +++ b/en/releases/2.1.5R/notes.sgml @@ -1,551 +1,551 @@ - + %includes; ]> - + &header;
                                  RELEASE NOTES
                              FreeBSD 2.1.5 RELEASE
 
 0. What is this release?
 ------------------------
 FreeBSD 2.1.5R is the follow-on release to 2.1R and focuses primarily
 on fixing bugs, closing security holes and conservative enhancements.
 For more information on bleeding-edge development, please see
 http://www.FreeBSD.org/handbook/current.html.
 
 
 1. What's New since 2.1.0-RELEASE?
 ----------------------------------
 Quite a few things have changed since the last major release
 of FreeBSD.  To make it easier to identify specific changes,
 we've broken them into several major categories:
 
 
 Device Drivers:
 ---------------
 Support for the Adaptec AIC7850 on-board SCSI adapter.
 
 Support for Specialix SI and XIO serial cards.
 
 Support for the Stallion EasyIO, EasyConnection 8/32 and
 EasyConnection 8/64, as well as the older Onboard and Brumby serial
 cards.
 
 Support for the Intel EtherExpress Pro/100B PCI ethernet card.
 
 Real PCI Buslogic support (new driver and probing order).
 
 Support for the ARNET (now Digiboard) Sync 570i high-speed serial card.
 
 Better support for the Matrox Meteor frame grabber card.
 
 Support for the Connectix Quickcam (parallel port camera).
 
 Worm driver - it is now possible to burn CDROMs using the Plasmon or
 HP 4080i CDR drives (see
 
 wormcontrol(1)).  NOTE: If your drive
 probes as a CD rather than a WORM, some additional patches may be
 required from -current to get it working for you.  We decided not to
 bring these changes over by default as they make too many changes to
 the SCSI subsystem (not necessarily bad changes, but more risky).
 
 
 Kernel features:
 ----------------
 Various VM system enhancements and more than a few bugs fixed.
 
 A concatenated disk driver for simple types of RAID applications.
 See the man page for 
 ccd(4)>
 for more information.
 
 Real PCI bus probing (before ISA) and support for various PCI bridges.
 
 The Linux emulation is now good enough to run the Linux version of
 Netscape, with JAVA support (as well as a number of other Linux
 utilities).
 
 
 
 Userland code updates:
 ----------------------
 
 The system installation tool has been revamped with slightly different
 menu behavior and a number of bugs have been fixed.  It's hoped that
 this installation will be more intuitive for new users than previous
 ones (feedback welcomed, of course) as well as more useful in the
 post-install scenario (I know, I keep saying this :-).
 
 Many improvements to the NIS code.
 
 The ncftp program is no longer part of the default system - it has been
 replaced by a library (/usr/src/lib/libftpio) and a more powerful program
 which uses it called ``fetch'' (/usr/src/usr.bin/fetch).  You may find
 ncftp as part of the ports collection (in /usr/ports/net/ncftp) if you
 still wish to use it, though fetch is slightly more capable in that
 it can fetch from both FTP and HTTP servers (ftp://... or http://... URLs).
 See the man page for more details.
 
 
 2. Technical overview
 ---------------------
 
 FreeBSD is a freely available, full source 4.4 BSD Lite based release
 for Intel i386/i486/Pentium (or compatible) based PC's.  It is based
 primarily on software from U.C. Berkeley's CSRG group, with some
 enhancements from NetBSD, 386BSD, and the Free Software Foundation.
 
 Since our release of FreeBSD 2.0 over a year ago, the performance,
 feature set and stability of FreeBSD has improved dramatically.  The
 largest change is a revamped VM system with a merged VM/file buffer
 cache that not only increases performance but reduces FreeBSD's memory
 footprint, making a 5MB configuration a more acceptable minimum.
 Other enhancements include full NIS client and server support,
 transaction TCP support, dial-on-demand PPP, an improved SCSI
 subsystem, early ISDN support, support for FDDI and Fast Ethernet
 (100Mbit) adapters, improved support for the Adaptec 2940 (WIDE and
 narrow) and 3940 SCSI adaptors along with many hundreds of bug fixes.
 
 We've taken the comments and suggestions of many of our users to
 heart and have attempted to provide what we hope is a more sane and
 easily understood installation process.  Your feedback on this
 (constantly evolving) process is especially welcome!
 
 In addition to the base distributions, FreeBSD offers a new ported
 software collection with over 450 commonly sought-after programs.  The
 list of ports ranges from http (WWW) servers, to games, languages,
 editors and almost everything in between.  The entire ports collection
 requires only 10MB of storage, all ports being expressed as "deltas"
 to their original sources.  This makes it much easier for us to update
 ports and greatly reduces the disk space demands made by the ports
 collection.  To compile a port, you simply change to the directory of
 the program you wish to install, type make and let the system do the
 rest.  The full original distribution for each port you build is
 retrieved dynamically off of CDROM or a local ftp site, so you need
 only enough disk space to build the ports you want.  (Almost) every
 port is also provided as a pre-compiled "package" which can be
 installed with a simple command (pkg_add).  See also the new Packages
 option in the Configuration menu for an especially convenient interface
 to the package collection.
 
 
 A number of additional documents which you may find helpful in the
 process of installing and using FreeBSD may now also be found in the
 /usr/share/doc directory.  You may view the manuals with any HTML
 capable browser by saying:
 
   To read the handbook:
       <browser> file:/usr/share/doc/handbook/handbook.html
 
   To read the FAQ:
       <browser> file:/usr/share/doc/FAQ/freebsd-faq.html
 
 You can also visit the master (and most frequently updated) copies at
 http://www.FreeBSD.org.
 
 The export version of FreeBSD does not contain DES code which would
 inhibit its being exported outside the United States.  There is an
 add-on package to the core distribution which contains the programs
 and libraries that normally use DES.  A freely exportable (from
 outside the U.S.)  distribution of DES for our non-U.S. users also
 exists at ftp://ftp.internat.FreeBSD.org/pub/FreeBSD.
 
 If password security for FreeBSD is all you need and you have no
 requirement for copying encrypted passwords from different hosts
 (Suns, DEC machines, etc) into FreeBSD password entries, then
 FreeBSD's MD5 based security may be all you require!  We feel that our
 default security model is more than a match for DES, and without any
 messy export issues to deal with.  If you're outside (or even inside)
 the U.S., give it a try!  This snapshot also includes support for
 mixed password files - either DES or MD5 passwords will be accepted,
 making it easier to transition from one scheme to the other.
 
 
 3. Supported Configurations
 ---------------------------
 
 FreeBSD currently runs on a wide variety of ISA, VLB, EISA and PCI bus
 based PC's, ranging from 386sx to Pentium Pro class machines (though the
 386sx is not recommended).  Support for generic IDE or ESDI drive
 configurations, various SCSI controller, network and serial cards is
 also provided.
 
 What follows is a list of all disk controllers and ethernet cards
 currently known to work with FreeBSD.  Other configurations may also
 work, but we have simply not received any confirmation of this.
 
 
 3.1. Disk Controllers
 ---------------------
 
 WD1003 (any generic MFM/RLL)
 WD1007 (any generic IDE/ESDI)
 IDE
 ATA
 
 Adaptec 152x series ISA SCSI controllers
 Adaptec 154x series ISA SCSI controllers
 Adaptec 174x series EISA SCSI controller in standard and enhanced mode.
 Adaptec 274X/284X/2940/3940 (Narrow/Wide/Twin) series ISA/EISA/PCI SCSI
 controllers.
 Adaptec AIC-6260 and AIC-6360 based boards, which includes
 Adaptec AIC7850 on-board SCSI controllers.
 the AHA-152x and SoundBlaster SCSI cards.
 
 ** Note: You cannot boot from the SoundBlaster cards as they have no
    on-board BIOS, such being necessary for mapping the boot device into the
    system BIOS I/O vectors.  They're perfectly usable for external tapes,
    CDROMs, etc, however.  The same goes for any other AIC-6x60 based card
    without a boot ROM.  Some systems DO have a boot ROM, which is generally
    indicated by some sort of message when the system is first powered up
    or reset, and in such cases you *will* also be able to boot from them.
    Check your system/board documentation for more details.
 
 [Note that Buslogic was formerly known as "Bustec"]
-Buslogic 545S & 545c
+Buslogic 545S & 545c
 Buslogic 445S/445c VLB SCSI controller
 Buslogic 742A, 747S, 747c EISA SCSI controller.
 Buslogic 946c PCI SCSI controller
 Buslogic 956c PCI SCSI controller
 
 NCR 53C810 and 53C825 PCI SCSI controller.
 NCR5380/NCR53400 ("ProAudio Spectrum") SCSI controller. 
 
 DTC 3290 EISA SCSI controller in 1542 emulation mode.
 
 UltraStor 14F, 24F and 34F SCSI controllers.
 
 Seagate ST01/02 SCSI controllers.
 
 Future Domain 8xx/950 series SCSI controllers.
 
 WD7000 SCSI controller.
 
 With all supported SCSI controllers, full support is provided for
-SCSI-I & SCSI-II peripherals, including Disks, tape drives (including
+SCSI-I & SCSI-II peripherals, including Disks, tape drives (including
 DAT) and CD ROM drives.
 
 The following CD-ROM type systems are supported at this time:
 (cd)    SCSI interface (also includes ProAudio Spectrum and
         SoundBlaster SCSI)
 (mcd)   Mitsumi proprietary interface (all models)
 (matcd) Matsushita/Panasonic (Creative SoundBlaster) proprietary
         interface (562/563 models)
 (scd)   Sony proprietary interface (all models)
 (wcd)   ATAPI IDE interface (experimental and should be considered ALPHA
         quality!).
 
 
 3.2. Ethernet cards
 -------------------
 
 Allied-Telesis AT1700 and RE2000 cards
 SMC Elite 16 WD8013 ethernet interface, and most other WD8003E,
 WD8003EBT, WD8003W, WD8013W, WD8003S, WD8003SBT and WD8013EBT
 based clones.  SMC Elite Ultra is also supported.
 
 DEC EtherWORKS III NICs (DE203, DE204, and DE205)
 DEC EtherWORKS II NICs (DE200, DE201, DE202, and DE422)
 DEC DC21040, DC21041, or DC21140 based NICs (SMC???? DE???)
 DEC FDDI (DEFPA/DEFEA) NICs
 Fujitsu MB86960A/MB86965A
 
 Intel EtherExpress (not recommended due to driver instability)
 Intel EtherExpress Pro/100B PCI Fast Ethernet
 
 Isolan AT 4141-0 (16 bit)
 Isolink 4110     (8 bit)
 
 Novell NE1000, NE2000, and NE2100 ethernet interface.
 
 3Com 3C501 cards
 
 3Com 3C503 Etherlink II
 
 3Com 3c505 Etherlink/+
 
 3Com 3C507 Etherlink 16/TP
 
 3Com 3C509, 3C579, 3C589 (PCMCIA) Etherlink III
 
 Toshiba ethernet cards
 
 PCMCIA ethernet cards from IBM and National Semiconductor are also
 supported.
 
 Note that NO token ring cards are supported at this time as we're
 still waiting for someone to donate a driver for one of them.  Any
 takers?
 
 
 3.3. Misc
 ---------
 
 AST 4 port serial card using shared IRQ.
 
 ARNET 8 port serial card using shared IRQ.
 ARNET (now Digiboard) Sync 570/i high-speed serial.
 
 BOCA ATIO66 6 port serial card using shared IRQ.
 
 Cyclades Cyclom-y Serial Board.
 
 STB 4 port card using shared IRQ.
 
 SDL Communications Riscom/8 Serial Board.
 
 Adlib, SoundBlaster, SoundBlaster Pro, ProAudioSpectrum, Gravis UltraSound
 and Roland MPU-401 sound cards.
 
 FreeBSD currently does NOT support IBM's microchannel (MCA) bus.
 
 
 
 4. Obtaining FreeBSD
 --------------------
 
 You may obtain FreeBSD in a variety of ways:
 
 4.1. FTP/Mail
 
 You can ftp FreeBSD and any or all of its optional packages from
 `ftp.FreeBSD.org' - the official FreeBSD release site.
 
 For other locations that mirror the FreeBSD software see the file
 MIRROR.SITES.  Please ftp the distribution from the site closest (in
 networking terms) to you.  Additional mirror sites are always welcome!
 Contact admin@FreeBSD.org for more details if you'd like to become an
 official mirror site.
 
 If you do not have access to the internet and electronic mail is your
 only recourse, then you may still fetch the files by sending mail to
 `ftpmail@decwrl.dec.com' - putting the keyword "help" in your message
 to get more information on how to fetch files using this mechanism.
 Please do note, however, that this will end up sending many *tens of
 megabytes* through the mail and should only be employed as an absolute
 LAST resort!
 
 
 4.2. CDROM
 
 FreeBSD 2.1-RELEASE and these 2.2 SNAPSHOT CDs may be ordered on CDROM from:
 
         Walnut Creek CDROM
         4041 Pike Lane, Suite D
         Concord CA  94520
         1-800-786-9907, +1-510-674-0783, +1-510-674-0821 (fax)
 
 Or via the internet from orders@cdrom.com or http://www.cdrom.com.
 Their current catalog can be obtained via ftp as:
         ftp://ftp.cdrom.com/cdrom/catalog.
 
 Cost per -RELEASE CD is $39.95 or $24.95 with a FreeBSD subscription.
 FreeBSD 2.2-SNAP CDs are $29.95 or $14.95 with a FreeBSD-SNAP subscription
 (-RELEASE and -SNAP subscriptions are entirely separate).  With a
 subscription, you will automatically receive updates as they are released.
 Your credit card will be billed when each disk is shipped and you may cancel
 your subscription at any time without further obligation.
 
 Walnut Creek CDROM also sells a full line of FreeBSD related
 merchandise such as T-shirts ($14.95, available in "child", Large and
 XL sizes), coffee mugs ($9.95), tattoos ($0.25 each) and posters
 ($3.00).
 
 Shipping (per order not per disc) is $5 in the US, Canada or Mexico
 and $9.00 overseas.  They accept Visa, Mastercard, Discover, American
 Express or checks in U.S. Dollars and ship COD within the United
 States.  California residents please add 8.25% sales tax.
 
 Should you be dissatisfied for any reason, the CD comes with an
 unconditional return policy.
 
 
 Reporting problems, making suggestions, submitting code
 -------------------------------------------------------
 
 Your suggestions, bug reports and contributions of code are always
 valued - please do not hesitate to report any problems you may find
 (preferably with a fix attached, if you can!).
 
 The preferred method to submit bug reports from a machine with
 internet mail connectivity is to use the send-pr command.  Bug reports
 will be dutifully filed by our faithful bugfiler program and you can
 be sure that we'll do our best to respond to all reported bugs as soon
 as possible.  Bugs filed in this way are also visible on our WEB site
 in the support section and are therefore valuable both as bug reports
 and as "signposts" for other users concerning potential problems to
 watch out for.
 
 If, for some reason, you are unable to use the send-pr command to
 submit a bug report, you can try to send it to:
 
                 bugs@FreeBSD.org
 
 
 Otherwise, for any questions or suggestions, please send mail to:
 
                 questions@FreeBSD.org
 
 
 Additionally, being a volunteer effort, we are always happy to have
 extra hands willing to help - there are already far more desired
 enhancements than we'll ever be able to manage by ourselves!  To
 contact us on technical matters, or with offers of help, please send
 mail to:
 
                 hackers@FreeBSD.org
 
 
 Please note that these mailing lists can experience *significant*
 amounts of traffic and if you have slow or expensive mail access and
 are only interested in keeping up with significant FreeBSD events, you
 may find it preferable to subscribe instead to:
 
                 announce@FreeBSD.org
 
 
 All but the freebsd-bugs groups can be freely joined by anyone wishing
 to do so.  Send mail to MajorDomo@FreeBSD.org and include the keyword
 `help' on a line by itself somewhere in the body of the message.  This
 will give you more information on joining the various lists, accessing
 archives, etc.  There are a number of mailing lists targeted at
 special interest groups not mentioned here, so send mail to majordomo
 and ask about them!
 
 
 6. Acknowledgements
 -------------------
 
 FreeBSD represents the cumulative work of many dozens, if not
 hundreds, of individuals from around the world who have worked very
 hard to bring you this release.  It would be very difficult, if not
 impossible, to enumerate everyone who's contributed to FreeBSD, but
 nonetheless we shall try (in alphabetical order, of course). If you've
 contributed something substantive to us and your name is not mentioned
 here, please be assured that its omission is entirely accidental.
 Please contact hackers@FreeBSD.org for any desired updates to the
 lists that follow:
 
 
 The Computer Systems Research Group (CSRG), U.C. Berkeley.
 
 Bill Jolitz, for his initial work with 386BSD.
 
 The FreeBSD Core Team
 (in alphabetical order by last name):
 
         Satoshi Asami <asami@FreeBSD.org>
         Andrey A. Chernov <ache@FreeBSD.org>
         John Dyson <dyson@FreeBSD.org>
         Bruce Evans <bde@FreeBSD.org>
         Justin Gibbs <gibbs@FreeBSD.org>
         David Greenman <davidg@FreeBSD.org>
         Jordan K. Hubbard <jkh@FreeBSD.org>
         Poul-Henning Kamp <phk@FreeBSD.org>
         Rich Murphey <rich@FreeBSD.org>
         Gary Palmer <gpalmer@FreeBSD.org>
         Søren Schmidt <sos@FreeBSD.org>
         Peter Wemm <peter@FreeBSD.org>
         Garrett A. Wollman <wollman@FreeBSD.org>
         Jörg Wunsch <joerg@FreeBSD.org>
 
 
 The FreeBSD Development Team, excluding core team members
 (in alphabetical order by last name):
 
         Ugen J.S. Antsilevich <ugen@FreeBSD.org>
         Torsten Blum <torstenb@FreeBSD.org>
         Gary Clark II <gclarkii@FreeBSD.org>
         Adam David <adam@FreeBSD.org>
         Peter Dufault <dufault@FreeBSD.org>
         Frank Durda IV <uhclem@FreeBSD.org>
         Julian Elischer <julian@FreeBSD.org>
         Sean Eric Fagan <sef@FreeBSD.org>
         Stefan Esser <se@FreeBSD.org>
         Bill Fenner <fenner@FreeBSD.org>
         John Fieber <jfieber@FreeBSD.org>
 	Marc G. Fournier <scrappy@FreeBSD.org>
         Lars Fredriksen <lars@freeBSD.org>
         Thomas Gellekum <tg@FreeBSD.org>
         Thomas Graichen <graichen@FreeBSD.org>
         Rod Grimes <rgrimes@FreeBSD.org>
 	John Hay <jhay@FreeBSD.org>
         Eric L. Hernes <erich@FreeBSD.org>
         Jeffrey Hsu <hsu@FreeBSD.org>
         Gary Jennejohn <gj@FreeBSD.org>
 	Andreas Klemm <andreas@FreeBSD.org>
         L Jonas Olsson <ljo@FreeBSD.org>
         Scott Mace <smace@FreeBSD.org>
         Atsushi Murai <amurai@FreeBSD.org>
         Mark Murray <markm@FreeBSD.org>
 	Alex Nash <alex@FreeBSD.org>
 	Sujal Patel <smpatel@FreeBSD.org>
         Bill Paul <wpaul@FreeBSD.org>
         Joshua Peck Macdonald <jmacd@FreeBSD.org>
         John Polstra <jdp@FreeBSD.org>
         Mike Pritchard <mpp@FreeBSD.org>
         Doug Rabson <dfr@FreeBSD.org>
 	James Raynard <jraynard@FreeBSD.org>
         Geoff Rehmet <csgr@FreeBSD.org>
         Martin Renters <martin@FreeBSD.org>
         Paul Richards <paul@FreeBSD.org>
         Ollivier Robert <roberto@FreeBSD.org>
         Dima Ruban <dima@FreeBSD.org>
         Wolfram Schneider <wosch@FreeBSD.org>
         Andreas Schulz <ats@FreeBSD.org>
         Karl Strickland <karl@FreeBSD.org>
         Paul Traina <pst@FreeBSD.org>
         Guido van Rooij <guido@FreeBSD.org>
         Steven Wallace <swallace@FreeBSD.org>
         Nate Williams <nate@FreeBSD.org>
         Jean-Marc Zucconi <jmz@FreeBSD.org>
 
 
 Additional FreeBSD helpers and beta testers:
 
         Coranth Gryphon            Dave Rivers 
         Kaleb S. Keithley	   Michael Smith
         Terry Lambert		   David Dawes
         Troy Curtis
 
 
 Special mention to:
 
         Walnut Creek CDROM, without whose help (and continuing support)
         this release would never have been possible.
 
         Dermot McDonnell for his donation of a Toshiba XM3401B CDROM
         drive.
 
         Chuck Robey for his donation of a floppy tape streamer for
         testing.
 
         Larry Altneu and Wilko Bulte for providing us with Wangtek
         and Archive QIC-02 tape drives for testing and driver hacking.
 
         CalWeb Internet Services for the loan of a P6/200 machine for
         speedy package building.
 
         Everyone at Montana State University for their initial support.
 
         And to the many thousands of FreeBSD users and testers all over the
         world, without whom this release simply would not have been possible.
 
 We sincerely hope you enjoy this release of FreeBSD!
 
                         The FreeBSD Core Team
 

Release Home &footer; diff --git a/en/releases/2.2.2R/errata.sgml b/en/releases/2.2.2R/errata.sgml index 7dd33c1b2e..e0f4d89107 100644 --- a/en/releases/2.2.2R/errata.sgml +++ b/en/releases/2.2.2R/errata.sgml @@ -1,79 +1,79 @@ - + %includes; ]> - + &header;
 Last minute errata:
 -------------------
 o login as root produces "login_getclass: unknown class 'root'" on system console.
 
 Fix:  If you have the source distribution installed, simply
       cp /usr/src/etc/login.conf /etc
       otherwise, get it from the FreeBSD FTP site using this URL:
       ftp://ftp.FreeBSD.org/pub/FreeBSD/FreeBSD-current/src/etc/login.conf
       instead.  Simply cd to /etc and then run fetch(1) with the provided URL.
 
 
 o sysconfig scrambles rc.conf if run again.
 
 Fix:  Get updated /usr/src from RELENG_2_2 branch and build
       /usr/src/release/sysinstall, copying the new binary to /stand.
 
       If you do not have enough space for src then you could also
       use the boot/fixit floppy combo from a later 2.2-YYMMDD-RELENG
       release to simply mount your root partition (using the Fixit
       option) and copy /stand/sysinstall from the floppy to /stand on
       your root fs.
 
 
 o Installation floppy does not boot at all - whereas the 2.2.1 floppy
   worked fine.  I get a "panic: double fault" right after it tries to
   change the root device to fd0c.
 
 Fix:  The problem is that you have 48MB of RAM and something very
       mysterious has happened to FreeBSD twixt 2.2.1 and 2.2.2 which makes
       it fail with just that exact memory size.  Given the popularity of
       16MB simms, it also explains why none of us have seen it since we
       typically have either 16MB, 32MB or 64MB of memory in our systems. :)
 
       We're working on finding and fixing this problem, but until then
       the following work-around is in effect for 48MB systems:
 
       1. Boot the 2.2.2 boot floppy and when it comes to the first menu which
          asks you whether or not you want to go into the kernel configuration
          editor, choose the "experts only" CLI mode option.  Now type:
 
 	      iosize npx0 32768
 	      visual
-	      < and do your visual kernel configuration as normal then exit>
+	      < and do your visual kernel configuration as normal then exit>
 
          If you can get through to the installation, go to step 3.
 
       2. If the above does not work, physically remove all but 32MB of memory
          from your machine and then boot the boot floppy.  Unless your problem
          is totally weird and something we've not seen at all before, you
          should now be able to go on to step 3.
 
       3. Complete the installation and then boot off your hard disk.  This
          boot should work fine, since you are no longer using the memory
          filesystem that the installation uses and which seems to interact
          badly with these memory size issues to create the failure you saw.
 
          You will also want to boot with the -c flag at some point and
          say "iosize npx0 0" to get the full use of all your memory back
          since the old value of 32768 will have been saved to disk during
          the initial installation.  If you already plan on building a custom
          kernel, you can skip this step since the value will be reset anyway.
 

Release Home &footer; diff --git a/en/releases/2.2.8R/notes.sgml b/en/releases/2.2.8R/notes.sgml index b6681f52ce..80456c037a 100644 --- a/en/releases/2.2.8R/notes.sgml +++ b/en/releases/2.2.8R/notes.sgml @@ -1,396 +1,396 @@ - + %includes; ]> &header;
 
 ================================================================
                          RELEASE NOTES
                  FreeBSD 2.2.8-RELEASE VERSION
 ================================================================
 
 1. What's new since 2.2.7
 -------------------------
 
 Kernel features:
 ----------------
 o Add support for >8G IDE drives.
 
 o Add support for 3Com 3c905B ethernet adapters
 
 o Add support for PCI ThunderLAN-based ethernet adapters (Compaq/Olicom)
 
 o Significantly improve Linux emulator again.  Things like QuakeII should
   just run out-of-the-box now (given the rest of their requirements).
 
 o Major changes from -current's pthread implementation merged: This includes
   file locking based on FILE *, signal fixes, read/write-locks, better POSIX
   compliance and better performance.
 
 o Add a new flexible bandwidth limiter/delay emulator called
   dummynet. See dummynet(4).
 
 o Add support for bridging on multiple interfaces (10 and 100 Mbit/s).
   See bridge(4).
 
 o NFS client accelerator added.  See 'nfs_access_cache' in rc.conf(5).
 
 
 Userland features:
 ------------------
 
 o /bin/sh signal and trap handling reworked. Among other things, this
   makes tty-mode emacs work when called from system(2), i.e. by a mail
   agent.
 
 o ppp(8) merged from 3.0, adding features like multilink and VPN
   support as well as fixing a number of known bugs.
 
 
 Security issues:
 ----------------
 
 o All open CERT/Bugtraq advisories reported since 2.2.7's release
   have been dealt with.
 
 
 2. Supported Configurations
 ---------------------------
 
 FreeBSD currently runs on a wide variety of ISA, VLB, EISA and PCI bus
 based PC's, ranging from 386sx to Pentium class machines (though the
 386sx is not recommended).  Support for generic IDE or ESDI drive
 configurations, various SCSI controller, network and serial cards is
 also provided.
 
 What follows is a list of all peripherals currently known to work with
 FreeBSD.  Other configurations may also work, we have simply not as yet
 received confirmation of this.
 
 
 2.1. Disk Controllers
 ---------------------
 
 WD1003 (any generic MFM/RLL)
 WD1007 (any generic IDE/ESDI)
 IDE
 ATA
 
 Adaptec 1535 ISA SCSI controllers
 Adaptec 154x series ISA SCSI controllers
 Adaptec 174x series EISA SCSI controller in standard and enhanced mode.
 Adaptec 274X/284X/2940/3940 (Narrow/Wide/Twin) series ISA/EISA/PCI SCSI
 controllers.
 Adaptec AIC7850 on-board SCSI controllers.
 
 ** Note: You cannot boot from the SoundBlaster cards as they have no
    on-board BIOS, such being necessary for mapping the boot device into the
    system BIOS I/O vectors.  They're perfectly usable for external tapes,
    CDROMs, etc, however.  The same goes for any other AIC-6x60 based card
    without a boot ROM.  Some systems DO have a boot ROM, which is generally
    indicated by some sort of message when the system is first powered up
    or reset, and in such cases you *will* also be able to boot from them.
    Check your system/board documentation for more details.
 
-Buslogic 545S & 545c
+Buslogic 545S & 545c
 Buslogic 445S/445c VLB SCSI controller
 Buslogic 742A, 747S, 747c EISA SCSI controller.
 Buslogic 946c PCI SCSI controller
 Buslogic 956c PCI SCSI controller
 
 SymBios (formerly NCR) 53C810, 53C825, 53c860 and 53c875 PCI SCSI
 controllers:
 	ASUS SC-200
   	Data Technology DTC3130 (all variants)
 	NCR cards (all)
 	Symbios cards (all)
 	Tekram DC390W, 390U and 390F
 	Tyan S1365
 
 Tekram DC390 and DC390T controllers (maybe other cards based on the
 AMD 53c974 as well).
 
 NCR5380/NCR53400 ("ProAudio Spectrum") SCSI controller. 
 
 DTC 3290 EISA SCSI controller in 1542 emulation mode.
 
 UltraStor 14F, 24F and 34F SCSI controllers.
 
 Seagate ST01/02 SCSI controllers.
 
 Future Domain 8xx/950 series SCSI controllers.
 
 WD7000 SCSI controller.
 
 With all supported SCSI controllers, full support is provided for
-SCSI-I & SCSI-II peripherals, including Disks, tape drives (including
+SCSI-I & SCSI-II peripherals, including Disks, tape drives (including
 DAT and 8mm Exabyte) and CD ROM drives.
 
 The following CD-ROM type systems are supported at this time:
 (cd)    SCSI interface (also includes ProAudio Spectrum and
         SoundBlaster SCSI)
 (matcd) Matsushita/Panasonic (Creative SoundBlaster) proprietary
         interface (562/563 models)
 (scd)   Sony proprietary interface (all models)
 (wcd)   ATAPI CDROM interface
 (acd)	ATAPI CD-R interface (alternative to 'wcd')
 
 
 Unmaintained drivers, they might or might not work for your hardware:
 
   Adaptec 1510 series ISA SCSI controllers (not for bootable devices)
   Adaptec 152x series ISA SCSI controllers
   Adaptec AIC-6260 and AIC-6360 based boards, which includes the AHA-152x
   and SoundBlaster SCSI cards.
 
   Floppy tape interface (Colorado/Mountain/Insight)
 
   (mcd)   Mitsumi proprietary CD-ROM interface (all models)
 
 2.2. Ethernet cards
 -------------------
 
 Allied-Telesis AT1700 and RE2000 cards
 
-AMD PCnet/PCI (79c970 & 53c974 or 79c974)
+AMD PCnet/PCI (79c970 & 53c974 or 79c974)
 
 SMC Elite 16 WD8013 ethernet interface, and most other WD8003E,
 WD8003EBT, WD8003W, WD8013W, WD8003S, WD8003SBT and WD8013EBT
 based clones.  SMC Elite Ultra.  SMC Etherpower II.
 
 Texas Instruments ThunderLAN PCI NICs, including the following:
  Compaq Netelligent 10, 10/100, 10/100 Proliant, 10/100 Dual-Port
  Compaq Netelligent 10/100 TX Embedded UTP, 10 T PCI UTP/Coax, 10/100 TX UTP
  Compaq NetFlex 3P, 3P Integrated, 3P w/ BNC
  Olicom OC-2135/2138, OC-2325, OC-2326 10/100 TX UTP
 
 DEC EtherWORKS III NICs (DE203, DE204, and DE205)
 DEC EtherWORKS II NICs (DE200, DE201, DE202, and DE422)
 DEC DC21040, DC21041, or DC21140 based NICs (SMC Etherpower 8432T, DE245, etc)
 DEC FDDI (DEFPA/DEFEA) NICs
 
 Fujitsu MB86960A/MB86965A
 
 HP PC Lan+ cards (model numbers: 27247B and 27252A).
 
 Intel EtherExpress (not recommended due to driver instability)
 Intel EtherExpress Pro/10
 Intel EtherExpress Pro/100B PCI Fast Ethernet
 
 Isolan AT 4141-0 (16 bit)
 Isolink 4110     (8 bit)
 
 Novell NE1000, NE2000, and NE2100 ethernet interface.
 
 3Com 3C501 cards
 
 3Com 3C503 Etherlink II
 
 3Com 3c505 Etherlink/+
 
 3Com 3C507 Etherlink 16/TP
 
 3Com 3C509, 3C579, 3C589 (PCMCIA), 3C590/592/595/900/905/905B PCI and EISA
 (Fast) Etherlink III / (Fast) Etherlink XL
 
 Toshiba ethernet cards
 
 PCMCIA ethernet cards from IBM and National Semiconductor are also
 supported.
 
 No token ring cards are supported at this time.
 
 
 2.3. Misc
 ---------
 
 AST 4 port serial card using shared IRQ.
 
 ARNET 8 port serial card using shared IRQ.
 ARNET (now Digiboard) Sync 570/i high-speed serial.
 
 Boca BB1004 4-Port serial card (Modems NOT supported)
 Boca IOAT66 6-Port serial card (Modems supported)
 Boca BB1008 8-Port serial card (Modems NOT supported)
 Boca BB2016 16-Port serial card (Modems supported)
 
 Comtrol Rocketport card.
 
 Cyclades Cyclom-y Serial Board.
 
 STB 4 port card using shared IRQ.
 
 SDL Communications Riscom/8 Serial Board.
 SDL Communications RISCom/N2 and N2pci high-speed sync serial boards.
 
-Stallion multiport serial boards: EasyIO, EasyConnection 8/32 & 8/64,
+Stallion multiport serial boards: EasyIO, EasyConnection 8/32 & 8/64,
 ONboard 4/16 and Brumby.
 
 Adlib, SoundBlaster, SoundBlaster Pro, ProAudioSpectrum, Gravis UltraSound
 and Roland MPU-401 sound cards.
 
 Connectix QuickCam
 Matrox Meteor Video frame grabber
 Creative Labs Video Spigot frame grabber
 Cortex1 frame grabber
 Hauppauge Wincast/TV boards (PCI)
 STB TV PCI
 Intel Smart Video Recorder III
 Various Frame grabbers based on Brooktree Bt848 chip.
 
 HP4020, HP6020, Philips CDD2000/CDD2660 and Plasmon CD-R drives.
 
 PS/2 mice
 
 Standard PC Joystick
 
 X-10 power controllers
 
 GPIB and Transputer drivers.
 
 Genius and Mustek hand scanners.
 
 
 FreeBSD currently does NOT support IBM's microchannel (MCA) bus.
 
 
 3. Obtaining FreeBSD
 --------------------
 
 You may obtain FreeBSD in a variety of ways:
 
 3.1. FTP/Mail
 -------------
 
 You can ftp FreeBSD and any or all of its optional packages from
 `ftp.FreeBSD.org' - the official FreeBSD release site.
 
 For other locations that mirror the FreeBSD software see the file
 MIRROR.SITES.  Please ftp the distribution from the site closest (in
 networking terms) to you.  Additional mirror sites are always welcome!
 Contact freebsd-admin@FreeBSD.org for more details if you'd like to 
 become an official mirror site.
 
 
 3.2. CDROM
 ----------
 
 FreeBSD 3.0-SNAP and 2.2.x-RELEASE CDs may be ordered on CDROM from:
 
         Walnut Creek CDROM
         4041 Pike Lane, Suite D
         Concord CA  94520
         1-800-786-9907, +1-925-674-0783, +1-925-674-0821 (FAX)
 
 Or via the Internet from orders@cdrom.com or http://www.cdrom.com.
 Their current catalog can be obtained via ftp from:
 
         ftp://ftp.cdrom.com/cdrom/catalog
 
 Cost per -RELEASE CD is $39.95 or $24.95 with a FreeBSD subscription.
 FreeBSD SNAPshot CDs are $39.95 or $14.95 with a FreeBSD-SNAP subscription
 (-RELEASE and -SNAP subscriptions are entirely separate).  With a
 subscription, you will automatically receive updates as they are released.
 Your credit card will be billed when each disk is shipped and you may cancel
 your subscription at any time without further obligation.
 
 Shipping (per order not per disc) is $5 in the US, Canada or Mexico
 and $9.00 overseas.  They accept Visa, Mastercard, Discover, American
 Express or checks in U.S. Dollars and ship COD within the United
 States.  California residents please add 8.25% sales tax.
 
 Should you be dissatisfied for any reason, the CD comes with an
 unconditional return policy.
 
 
 4. Reporting problems, making suggestions, submitting code.
 -----------------------------------------------------------
 
 Your suggestions, bug reports and contributions of code are always
 valued - please do not hesitate to report any problems you may find
 (preferably with a fix attached, if you can!).
 
 The preferred method to submit bug reports from a machine with
 Internet mail connectivity is to use the send-pr command or use the CGI
 script at http://www.FreeBSD.org/send-pr.html.  Bug reports
 will be dutifully filed by our faithful bugfiler program and you can
 be sure that we'll do our best to respond to all reported bugs as soon
 as possible.  Bugs filed in this way are also visible on our WEB site
 in the support section and are therefore valuable both as bug reports
 and as "signposts" for other users concerning potential problems to
 watch out for.
 
 If, for some reason, you are unable to use the send-pr command to
 submit a bug report, you can try to send it to:
  
                freebsd-bugs@FreeBSD.org
  
 Note that send-pr itself is a shell script that should be easy to move
 even onto a totally different system.  We much prefer if you could use
 this interface, since it make it easier to keep track of the problem
 reports.  However, before submitting, please try to make sure whether
 the problem might have already been fixed since.
  
 Otherwise, for any questions or tech support issues, please send mail to:
  
                freebsd-questions@FreeBSD.org
  
 Additionally, being a volunteer effort, we are always happy to have
 extra hands willing to help - there are already far more desired
 enhancements than we'll ever be able to manage by ourselves!  To
 contact us on technical matters, or with offers of help, please send
 mail to:
  
                freebsd-hackers@FreeBSD.org
  
 Please note that these mailing lists can experience *significant*
 amounts of traffic and if you have slow or expensive mail access and
 are only interested in keeping up with significant FreeBSD events, you
 may find it preferable to subscribe instead to:
  
                freebsd-announce@FreeBSD.org
  
 All of the mailing lists can be freely joined by anyone wishing
 to do so.  Send mail to MajorDomo@FreeBSD.org and include the keyword
 `help' on a line by itself somewhere in the body of the message.  This
 will give you more information on joining the various lists, accessing
 archives, etc.  There are a number of mailing lists targeted at
 special interest groups not mentioned here, so send mail to majordomo
 and ask about them!
  
 5. Acknowledgements
 -------------------
  
 FreeBSD represents the cumulative work of many dozens, if not
 hundreds, of individuals from around the world who have worked very
 hard to bring you this release.  For a complete list of FreeBSD
 project staffers, please see:
  
         http://www.FreeBSD.org/handbook/staff.html
  
 or, if you've loaded the doc distribution:
  
         file:/usr/share/doc/handbook/staff.html
  
 Special mention to:
  
         The donors listed at http://www.FreeBSD.org/handbook/donors.html
  
         Everyone at Montana State University for their initial support.
  
         And to the many thousands of FreeBSD users and testers all over the
         world, without whom this release simply would not have been possible.
  
 We sincerely hope you enjoy this release of FreeBSD!
  
 
                         The FreeBSD Project
 

Release Home &footer;