From owner-svn-doc-projects@FreeBSD.ORG Thu Feb 13 22:53:28 2014 Return-Path: Delivered-To: svn-doc-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F28E2F09; Thu, 13 Feb 2014 22:53:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D18241D3B; Thu, 13 Feb 2014 22:53:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1DMrRLw002107; Thu, 13 Feb 2014 22:53:27 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1DMrQEm002096; Thu, 13 Feb 2014 22:53:26 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201402132253.s1DMrQEm002096@svn.freebsd.org> From: Glen Barber Date: Thu, 13 Feb 2014 22:53:26 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-projects@freebsd.org Subject: svn commit: r43910 - in projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases: . CURRENT CURRENT/errata CURRENT/hardware CURRENT/readme CURRENT/relnotes X-SVN-Group: doc-projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-projects@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for doc projects trees List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Feb 2014 22:53:28 -0000 Author: gjb Date: Thu Feb 13 22:53:26 2014 New Revision: 43910 URL: http://svnweb.freebsd.org/changeset/doc/43910 Log: Flatten the tree in releases/CURRENT/, now errata.xml, readme.xml, and relnotes.xml are all taken out of SUBDIR. hardware.xml is a bit trickier, so it remains in a SUBDIR, and unlinked from the build. Fix Makefile.inc inclusion. Include CURRENT in releases/Makefile. Sponsored by: The FreeBSD Foundation Added: projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/docbook.css projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/errata.xml - copied unchanged from r43909, projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/errata/errata.xml projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/readme.xml - copied unchanged from r43909, projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/readme/readme.xml projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/relnotes.xml - copied unchanged from r43909, projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/relnotes/relnotes.xml Deleted: projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/errata/ projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/readme/ projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/relnotes/ Modified: projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/Makefile projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/Makefile.inc projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/hardware/Makefile projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/Makefile projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/Makefile.inc Modified: projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/Makefile ============================================================================== --- projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/Makefile Thu Feb 13 22:45:31 2014 (r43909) +++ projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/Makefile Thu Feb 13 22:53:26 2014 (r43910) @@ -3,18 +3,15 @@ DOC_PREFIX?= ${.CURDIR}/../../../.. RELN_ROOT?= ${.CURDIR}/../../relnotes -.if exists(${RELN_ROOT}/Makefile.inc) -.include "${RELN_ROOT}/Makefile.inc" -.endif .if exists(${.CURDIR}/Makefile.inc) .include "${.CURDIR}/Makefile.inc" .endif -MAN4DIR?= ${DOC_PREFIX}/../src/share/man/man4 +DOCS?= errata.xml \ + readme.xml \ + relnotes.xml -SUBDIR= errata \ - hardware \ - readme \ - relnotes +SUBDIR= hardware -.include "${DOC_PREFIX}/share/mk/doc.subdir.mk" +.include "${RELN_ROOT}/share/mk/doc.relnotes.mk" +.include "${DOC_PREFIX}/share/mk/web.site.mk" Modified: projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/Makefile.inc ============================================================================== --- projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/Makefile.inc Thu Feb 13 22:45:31 2014 (r43909) +++ projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/Makefile.inc Thu Feb 13 22:53:26 2014 (r43910) @@ -1,3 +1,10 @@ # $FreeBSD$ +.if exists(../Makefile.inc) +.include "../Makefile.inc" +.endif + BRANCH?= CURRENT +WEBBASE?= /data/releases +DOC_PREFIX?= ${.CURDIR}/../../../.. +RELN_ROOT?= ${.CURDIR}/../../relnotes Added: projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/docbook.css ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/docbook.css Thu Feb 13 22:53:26 2014 (r43910) @@ -0,0 +1,208 @@ +/* + * Copyright (c) 2001, 2003, 2010 The FreeBSD Documentation Project + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + +BODY ADDRESS { + line-height: 1.3; + margin: .6em 0; +} + +BODY BLOCKQUOTE { + margin-top: .75em; + line-height: 1.5; + margin-bottom: .75em; +} + +HTML BODY { + margin: 1em 8% 1em 10%; + line-height: 1.2; +} + +.LEGALNOTICE { + font-size: small; + font-variant: small-caps; +} + +BODY DIV { + margin: 0; +} + +DL { + margin: .8em 0; + line-height: 1.2; +} + +BODY FORM { + margin: .6em 0; +} + +H1, H2, H3, H4, H5, H6, +DIV.EXAMPLE P B, +.QUESTION, +DIV.TABLE P B, +DIV.PROCEDURE P B { + color: #990000; +} + +BODY H1, BODY H2, BODY H3, BODY H4, BODY H5, BODY H6 { + line-height: 1.3; + margin-left: 0; +} + +BODY H1, BODY H2 { + margin: .8em 0 0 -4%; +} + +BODY H3, BODY H4 { + margin: .8em 0 0 -3%; +} + +BODY H5 { + margin: .8em 0 0 -2%; +} + +BODY H6 { + margin: .8em 0 0 -1%; +} + +BODY HR { + margin: .6em; + border-width: 0 0 1px 0; + border-style: solid; + border-color: #cecece; +} + +BODY IMG.NAVHEADER { + margin: 0 0 0 -4%; +} + +OL { + margin: 0 0 0 5%; + line-height: 1.2; +} + +BODY PRE { + margin: .75em 0; + line-height: 1.0; + font-family: monospace; +} + +BODY TD, BODY TH { + line-height: 1.2; +} + +UL, BODY DIR, BODY MENU { + margin: 0 0 0 5%; + line-height: 1.2; +} + +HTML { + margin: 0; + padding: 0; +} + +BODY P B.APPLICATION { + color: #000000; +} + +.FILENAME { + color: #007a00; +} + +.GUIMENU, .GUIMENUITEM, .GUISUBMENU, +.GUILABEL, .INTERFACE, +.SHORTCUT, .SHORTCUT .KEYCAP { + font-weight: bold; +} + +.GUIBUTTON { + background-color: #CFCFCF; + padding: 2px; +} + +.ACCEL { + background-color: #F0F0F0; + text-decoration: underline; +} + +.SCREEN { + padding: 1ex; +} + +.PROGRAMLISTING { + padding: 1ex; + background-color: #eee; + border: 1px solid #ccc; +} + +@media screen { /* hide from IE3 */ + a[href]:hover { background: #ffa } +} + +BLOCKQUOTE.NOTE { + color: #222; + background: #eee; + border: 1px solid #ccc; + padding: 0.4em 0.4em; + width: 85%; +} + +BLOCKQUOTE.TIP { + color: #004F00; + background: #d8ecd6; + border: 1px solid green; + padding: 0.2em 2em; + width: 85%; +} + +BLOCKQUOTE.IMPORTANT { + font-style:italic; + border: 1px solid #a00; + border-left: 12px solid #c00; + padding: 0.1em 1em; +} + +BLOCKQUOTE.WARNING { + color: #9F1313; + background: #f8e8e8; + border: 1px solid #e59595; + padding: 0.2em 2em; + width: 85%; +} + +.EXAMPLE { + background: #fefde6; + border: 1px solid #f1bb16; + margin: 1em 0; + padding: 0.2em 2em; + width: 90%; +} + +.INFORMALTABLE TABLE.CALSTABLE TR TD { + padding-left: 1em; + padding-right: 1em; +} Copied: projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/errata.xml (from r43909, projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/errata/errata.xml) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/errata.xml Thu Feb 13 22:53:26 2014 (r43910, copy of r43909, projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/errata/errata.xml) @@ -0,0 +1,93 @@ + + +%release; +]> + +
+ + &os; &release; Errata + + The &os; Project + + $FreeBSD$ + + + 2014 + + The &os; Documentation Project + + + + &tm-attrib.freebsd; + &tm-attrib.intel; + &tm-attrib.sparc; + &tm-attrib.general; + + + + This document lists errata items for &os; &release;, + containing significant information discovered after the release + or too late in the release cycle to be otherwise included in the + release documentation. + This information includes security advisories, as well as news + relating to the software or documentation that could affect its + operation or usability. An up-to-date version of this document + should always be consulted before installing this version of + &os;. + + This errata document for &os; &release; + will be maintained until the release of &os; &release.next;. + + + + + Introduction + + This errata document contains late-breaking news + about &os; &release; + Before installing this version, it is important to consult this + document to learn about any post-release discoveries or problems + that may already have been found and fixed. + + Any version of this errata document actually distributed + with the release (for example, on a CDROM distribution) will be + out of date by definition, but other copies are kept updated on + the Internet and should be consulted as the current + errata for this release. These other copies of the + errata are located at + , + plus any sites + which keep up-to-date mirrors of this location. + + Source and binary snapshots of &os; &release.branch; also + contain up-to-date copies of this document (as of the time of + the snapshot). + + For a list of all &os; CERT security advisories, see + + or . + + + + Security Advisories + + No advisory. + + + + Open Issues + + No open issues. + + + + Late-Breaking News + + No news. + +
Modified: projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/hardware/Makefile ============================================================================== --- projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/hardware/Makefile Thu Feb 13 22:45:31 2014 (r43909) +++ projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/hardware/Makefile Thu Feb 13 22:53:26 2014 (r43910) @@ -5,14 +5,14 @@ RELN_ROOT?= ${.CURDIR}/../../../relnotes DOC= hardware -.if exists(${RELN_ROOT}/Makefile.inc) -.include "${RELN_ROOT}/Makefile.inc" +.if exists(${.CURDIR}/../../../Makefile.inc) +.include "${.CURDIR}/../../../Makefile.inc" .endif .if exists(${.CURDIR}/../Makefile.inc) .include "${.CURDIR}/../Makefile.inc" .endif -DESTDIR?= ${DOCDIR}/relnotes/${BRANCH}/${DOC} +#DESTDIR?= ${DOCDIR}/relnotes/${BRANCH}/${DOC} FORMATS?= html INSTALL_COMPRESSED?=gz Copied: projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/readme.xml (from r43909, projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/readme/readme.xml) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/readme.xml Thu Feb 13 22:53:26 2014 (r43910, copy of r43909, projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/readme/readme.xml) @@ -0,0 +1,414 @@ + + +%release; +]> + +
+ &os; &release.current; README + + + The &os; Project + + $FreeBSD$ + + + 2000 + 2001 + 2002 + 2003 + 2004 + 2005 + 2006 + 2007 + 2008 + 2009 + 2010 + 2011 + 2012 + 2013 + The &os; Documentation Project + + + + &tm-attrib.freebsd; + &tm-attrib.intel; + &tm-attrib.opengroup; + &tm-attrib.sparc; + &tm-attrib.general; + + + + This document gives a brief introduction to &os; + &release.current;. It includes some information on how to + obtain &os;, a listing of various ways to contact the &os; + Project, and pointers to some other sources of + information. + + + + + Introduction + + This distribution is a &release.type; of &os; &release.current;, the + latest point along the &release.branch; branch. + + + About &os; + + &os; is an operating system based on 4.4 BSD Lite for + AMD64 and Intel EM64T based PC hardware (&arch.amd64;), + Intel, AMD, Cyrix or NexGen x86 based PC hardware (&arch.i386;), + Intel Itanium Processor based computers (&arch.ia64;), + NEC PC-9801/9821 series PCs and compatibles (&arch.pc98;), + and &ultrasparc; machines (&arch.sparc64;). Versions + for the &arm; (&arch.arm;), &mips; (&arch.mips;), and + &powerpc; (&arch.powerpc;) architectures are currently under + development as well. &os; works with a wide variety of + peripherals and configurations and can be used for everything + from software development to games to Internet Service + Provision. + + This release of &os; contains everything you need to run + such a system, including full source code for the kernel and + all utilities in the base distribution. With the source + distribution installed, you can literally recompile the entire + system from scratch with one command, making it ideal for + students, researchers, or users who simply want to see how it + all works. + + A large collection of third-party ported software (the + Ports Collection) is also provided to make it + easy to obtain and install all your favorite traditional &unix; + utilities for &os;. Each port consists of a + set of scripts to retrieve, configure, build, and install a + piece of software, with a single command. Over &os.numports; + ports, from editors to programming languages to graphical + applications, make &os; a powerful and comprehensive operating + environment that extends far beyond what's provided by many + commercial versions of &unix;. Most ports are also available as + pre-compiled packages, which can be quickly + installed from the installation program. + + + + Target Audience + + This &release.type; is aimed primarily at early adopters + and various other users who want to get involved with the + ongoing development of &os;. While the &os; development team + tries its best to ensure that each &release.type; works as + advertised, &release.branch; is very much a + work-in-progress. + + The basic requirements for using this &release.type; are + technical proficiency with &os; and an understanding of the + ongoing development process of &os; &release.branch; (as + discussed on the &a.current;). + + For those more interested in doing business with &os; than + in experimenting with new &os; technology, formal releases + (such as &release.prev.stable;) are frequently more appropriate. + Releases undergo a period of testing and quality assurance + checking to ensure high reliability and dependability. + + This &release.type; is aimed primarily at early adopters + and various other users who want to get involved with the + ongoing development of &os;. While the &os; development team + tries its best to ensure that each &release.type; works as + advertised, &release.branch; is very much a + work-in-progress. + + The basic requirements for using this &release.type; are + technical proficiency with &os; and an understanding of the + ongoing development process of &os; &release.branch; (as + discussed on the &a.current;). + + For those more interested in doing business with &os; than + in experimenting with new &os; technology, formal releases + (such as &release.prev.stable;) are frequently more appropriate. + Releases undergo a period of testing and quality assurance + checking to ensure high reliability and dependability. + + This &release.type; of &os; is suitable for all users. It + has undergone a period of testing and quality assurance + checking to ensure the highest reliability and + dependability. + + + + + Obtaining &os; + + &os; may be obtained in a variety of ways. This section + focuses on those ways that are primarily useful for obtaining a + complete &os; distribution, rather than updating an existing + installation. + + + CDROM and DVD + + &os; -RELEASE distributions may be ordered on CDROM or DVD + from several publishers. This is frequently the most + convenient way to obtain &os; for new installations, as it + provides a convenient way to quickly reinstall the system if + necessary. Some distributions include some of the optional, + precompiled packages from the &os; Ports + Collection, or other extra material. + + A list of the CDROM and DVD publishers known to the + project are listed in the Obtaining + &os; appendix to the Handbook. + + + + FTP + + You can use FTP to retrieve &os; and any or all of its + optional packages from ftp://ftp.FreeBSD.org/, which is the official + &os; release site, or any of its + mirrors. + + Lists of locations that mirror &os; can be found in the + FTP + Sites section of the Handbook. + Finding a close (in networking terms) mirror from which to + download the distribution is highly recommended. + + Additional mirror sites are always welcome. Contact + freebsd-admin@FreeBSD.org for more details on + becoming an official mirror site. You can also find useful + information for mirror sites at the Mirroring + &os; article. + + Mirrors generally contain the ISO images generally used to + create a CDROM of a &os; release. They usually also contain + floppy disk images (for applicable platforms), as well as the + files necessary to do an installation over the network. + Finally mirrors sites usually contain a set of packages for + the most current release. + + + + + Contacting the &os; Project + + + Email and Mailing Lists + + For any questions or general technical support issues, + please send mail to the &a.questions;. + + If you're tracking the &release.branch; development efforts, you + must join the &a.current;, in order to + keep abreast of recent developments and changes that may + affect the way you use and maintain the system. + + Being a largely-volunteer effort, the &os; + Project is always happy to have extra hands willing to help—there are already far more desired enhancements than + there is time to implement them. To contact the developers on + technical matters, or with offers of help, please send mail to + the &a.hackers;. + + Please note that these mailing lists can experience + significant amounts of traffic. If you + have slow or expensive mail access, or are only interested in + keeping up with major &os; events, you may find it + preferable to subscribe instead to the &a.announce;. + + All of the mailing lists can be freely joined by anyone + wishing to do so. Visit the + &os; Mailman Info Page. 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; more information can be + obtained either from the Mailman pages or the mailing + lists section of the &os; Web site. + + + Do not send email to the lists + asking to be subscribed. Use the Mailman interface + instead. + + + + + Submitting Problem Reports + + Suggestions, bug reports and contributions of code are + always valued—please do not hesitate to report any + problems you may find. Bug reports with attached fixes are of + course even more welcome. + + The preferred method to submit bug reports from a machine + with Internet mail connectivity is to use the &man.send-pr.1; + command. + Problem Reports (PRs) submitted in this way + will be filed and their progress tracked; the &os; developers + will do their best to respond to all reported bugs as soon as + possible. A list + of all active PRs is available on the &os; Web site; + this list is useful to see what potential problems other users + have encountered. + + Note that &man.send-pr.1; itself is a shell script that + should be easy to move even onto a non-&os; system. Using + this interface is highly preferred. If, for some reason, you + are unable to use &man.send-pr.1; to submit a bug report, you + can try to send it to the &a.bugs;. + + For more information, Writing + &os; Problem Reports, available on the &os; Web + site, has a number of helpful hints on writing and submitting + effective problem reports. + + + + + Further Reading + + There are many sources of information about &os;; some are + included with this distribution, while others are available + on-line or in print versions. + + + Release Documentation + + A number of other files provide more specific information + about this &release.type; distribution. These files are + provided in various formats. Most distributions will include + both ASCII text (.TXT) and HTML + (.HTM) renditions. Some distributions + may also include other formats such as Portable Document Format + (.PDF). + + + + README.TXT: This file, which + gives some general information about &os; as well as + some cursory notes about obtaining a + distribution. + + + + RELNOTES.TXT: The release + notes, showing what's new and different in &os; + &release.current; compared to the previous release (&os; + &release.prev;). + + + + HARDWARE.TXT: The hardware + compatibility list, showing devices with which &os; has + been tested and is known to work. + + + + ERRATA.TXT: Release errata. + Late-breaking, post-release information can be found in + this file, which is principally applicable to releases + (as opposed to snapshots). It is important to consult + this file before installing a release of &os;, as it + contains the latest information on problems which have + been found and fixed since the release was + created. + + + + + On platforms that support &man.bsdinstall.8; (currently + &arch.amd64;, &arch.i386;, &arch.ia64;, &arch.pc98;, and &arch.sparc64;), these documents are generally available via the + Documentation menu during installation. Once the system is + installed, you can revisit this menu by re-running the + &man.bsdinstall.8; utility. + + + It is extremely important to read the errata for any + given release before installing it, to learn about any + late-breaking news or post-release problems. + The errata file accompanying each release (most likely right + next to this file) is already out of date by definition, but + other copies are kept updated on the Internet and should be + consulted as the current errata for this + release. These other copies of the errata are located at + &url.base;/releases/ (as + well as any sites which keep up-to-date mirrors of this + location). + + + + + Manual Pages + + As with almost all &unix; like operating systems, &os; comes + with a set of on-line manual pages, accessed through the + &man.man.1; command or through the hypertext manual + pages gateway on the &os; Web site. In general, the + manual pages provide information on the different commands and + APIs available to the &os; user. + + In some cases, manual pages are written to give + information on particular topics. Notable examples of such + manual pages are &man.tuning.7; (a guide to performance tuning), + &man.security.7; (an introduction to &os; security), and + &man.style.9; (a style guide to kernel coding). + + + + Books and Articles + + Two highly-useful collections of &os;-related information, + maintained by the &os; Project, + are the &os; Handbook and &os; FAQ (Frequently Asked + Questions document). On-line versions of the Handbook + and FAQ + are always available from the &os; Documentation + page or its mirrors. If you install the + doc distribution set, you can use a Web + browser to read the Handbook and FAQ locally. In particular, + note that the Handbook contains a step-by-step guide to + installing &os;. + + A number of on-line books and articles, also maintained by + the &os; Project, cover more-specialized, &os;-related topics. + This material spans a wide range of topics, from effective use + of the mailing lists, to dual-booting &os; with other + operating systems, to guidelines for new committers. Like the + Handbook and FAQ, these documents are available from the &os; + Documentation Page or in the doc + distribution set. + + A listing of other books and documents about &os; can be + found in the bibliography + of the &os; Handbook. Because of &os;'s strong &unix; heritage, + many other articles and books written for &unix; systems are + applicable as well, some of which are also listed in the + bibliography. + + + + + Acknowledgments + + &os; represents the cumulative work of many hundreds, if not + thousands, of individuals from around the world who have worked + countless hours to bring about this &release.type;. For a + complete list of &os; developers and contributors, please see + Contributors + to &os; on the &os; Web site or any of its + mirrors. + + Special thanks also go to the many thousands of &os; users + and testers all over the world, without whom this &release.type; + simply would not have been possible. + +
Copied: projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/relnotes.xml (from r43909, projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/relnotes/relnotes.xml) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/relnotes.xml Thu Feb 13 22:53:26 2014 (r43910, copy of r43909, projects/relnotes-restructure/en_US.ISO8859-1/htdocs/releases/CURRENT/relnotes/relnotes.xml) @@ -0,0 +1,305 @@ + + +%release; +]> +
+ &os; &release.current; Release Notes + + The &os; Project + + $FreeBSD$ + + + 2014 + The &os; Documentation + Project + + + + &tm-attrib.freebsd; + &tm-attrib.ibm; + &tm-attrib.ieee; + &tm-attrib.intel; + &tm-attrib.sparc; + &tm-attrib.general; + + + + The release notes for &os; &release.current; contain + a summary of the changes made to the &os; base system on the + &release.branch; development line. This document lists + applicable security advisories that were issued since the last + release, as well as significant changes to the &os; kernel and + userland. Some brief remarks on upgrading are also + presented. + + + + + Introduction + + This document contains the release notes for &os; + &release.current;. It describes recently added, changed, or + deleted features of &os;. It also provides some notes on + upgrading from previous versions of &os;. + + The &release.type; distribution to which + these release notes apply represents the latest point along the + &release.branch; development branch since &release.branch; was + created. Information regarding pre-built, binary &release.type; + distributions along this branch can be found at &release.url;. + + The &release.type; distribution to + which these release notes apply represents a point along the + &release.branch; development branch between &release.prev; and the + future &release.next;. Information regarding pre-built, binary + &release.type; distributions along this branch can be found at + &release.url;. + + This distribution of &os; + &release.current; is a &release.type; distribution. It can be + found at &release.url; or + any of its mirrors. More information on obtaining this (or other) + &release.type; distributions of &os; can be found in the Obtaining + &os; appendix to the &os; Handbook. + + All users are encouraged to consult the release errata before + installing &os;. The errata document is updated with + late-breaking information discovered late in the + release cycle or after the release. Typically, it contains + information on known bugs, security advisories, and corrections to + documentation. An up-to-date copy of the errata for &os; + &release.current; can be found on the &os; Web site. + + + + What's New + + This section describes the most user-visible new or changed + features in &os; since &release.prev;. In general, changes + described here are unique to the &release.branch; branch unless + specifically marked as &merged; features. + + Typical release note items document recent security advisories + issued after &release.prev;, new drivers or hardware support, new + commands or options, major bug fixes, or contributed software + upgrades. They may also list changes to major ports/packages or + release engineering practices. Clearly the release notes cannot + list every single change made to &os; between releases; this + document focuses primarily on security advisories, user-visible + changes, and major architectural improvements. + + + Security Advisories + + No advisories. + + + + + Kernel Changes + + Support for GPS ports has been added to + &man.uhso.4;. + + The VT kernel + configuration file has been added, which enables the new + vt console driver. + + + Virtualization support + + The &man.virtio_random.4; driver has + been added to harvest entropy from the host system. + + Unmapped IO support has been added to + &man.virtio_scsi.4;. + + Unmapped IO support has been added to + &man.virtio_blk.4;. + + Support for Posted Interrupt + Processing is enabled if supported by the CPU. This + feature can be disabled by running sysctl + hw.vmm.vmx.use_apic_pir=0. Additionally, to + persist this setting across reboots, add + hw.vmm.vmx.use_apic_pir=0 to + /etc/sysctl.conf. + + Support for the Virtual Interrupt + Delivery feature of &intel; VT-x is enabled if + supported by the CPU. This feature can be disabled by running + sysctl hw.vmm.vmx.use_apic_vid=0. + Additionally, to persist this setting across reboots, add + hw.vmm.vmx.use_apic_vid=0 to + /etc/sysctl.conf. + + + + ARM support + + The &man.nand.4; device is enabled for + ARM devices by default. + + + + Boot Loader Changes + +   + + + + Hardware Support + + + Multimedia Support + +   + + + + Network Interface Support + + Firmware for &intel; + Centrino™ Wireless-N 105 devices has been added + to the base system. + + Support for the &intel; + Centrino™ Wireless-N 135 chipset has been + added. + + Support for Broadcom chipsets + BCM57764, BCM57767, BCM57782, BCM57786 and BCM57787 has + been added to &man.bge.4;. + + + + + Network Protocols + +   + + + + Disks and Storage + +   + + + + File Systems + +   + + + ZFS + +   + + + + + + Userland Changes + + Support for displaying VPD for PCI devices + via &man.pciconf.8; has been added. + *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***