Go to file
Eugene Grosbein 4a18c56d33 MFC r339816: mount_msdosfs
mount_msdosfs: do not fail mounts requiring locale name conversion table
  that is already present in a kernel statically.

  For example, the command "mount_msdosfs -L ru_RU.KOI8-R" fails with error
  "mount_msdosfs: msdosfs_iconv: File exists" for a kernel having
  options LIBICONV and MSDOSFS_ICONV. After this change, it mounts
  successfully.

MFC after:		1 month
Differential Revision:	https://reviews.freebsd.org/D16951
2018-11-26 11:22:04 +00:00
bin MFC r338646: dd(1): Correct padding in status=progress 2018-10-03 17:20:30 +00:00
cddl MFC r337567 (by mmacy): 2018-10-03 17:10:32 +00:00
contrib MFC r340288: nvi: remove superfluous space before ^\ 2018-11-18 14:55:04 +00:00
crypto Merge OpenSSL 1.0.2q. 2018-11-20 21:26:25 +00:00
etc MFC r340254: 2018-11-19 09:46:47 +00:00
gnu MFC r336027 (andrew): Teach binutils that arm64 is a 64bit architecture. 2018-10-14 01:16:48 +00:00
include MFC r336017,r338799 2018-09-29 00:44:23 +00:00
kerberos5 MFC r337665: krb5-config build: Remove gratuitous escaping 2018-08-20 00:47:51 +00:00
lib MFC 338511: bhyve: Use MAP_GUARD when mapping guest memory ranges. 2018-11-18 00:11:19 +00:00
libexec MFC r340842: 2018-11-26 10:53:17 +00:00
release MFC r339684: 2018-10-25 15:14:16 +00:00
rescue MFC r315654: 2017-03-23 04:47:57 +00:00
sbin MFC r339816: mount_msdosfs 2018-11-26 11:22:04 +00:00
secure Merge OpenSSL 1.0.2q. 2018-11-20 21:26:25 +00:00
share MFC r340329: build(7): clarify buildenv target can be used for non-cross builds 2018-11-18 14:53:29 +00:00
stand MFC r339509: Fix loader.conf(5) "password" feature 2018-10-24 23:17:17 +00:00
sys MFC r339806: Prevent stf(4) from panicing due to unprotected access 2018-11-26 11:17:12 +00:00
targets MFC r303505, r303506, r303512, r303513, r303646, r320418, r323082, 2018-03-30 18:06:29 +00:00
tests MFC r336875: 2018-10-02 18:12:32 +00:00
tools MFC r334072, r334247 (eadler): Add the text '@generated' to src.conf.5 2018-10-10 13:12:52 +00:00
usr.bin MFC 338360,338415,338624,338630,338631,338725: Dynamic x86 IRQ layout. 2018-11-01 18:34:26 +00:00
usr.sbin MFC r340089: 2018-11-09 08:45:47 +00:00
.arcconfig MFC r306435: 2018-03-05 08:44:49 +00:00
.arclint MFC r326959: 2018-03-17 01:27:54 +00:00
.gitattributes MFC r327183: 2018-01-06 05:00:36 +00:00
.gitignore MFC r327183: 2018-01-06 05:00:36 +00:00
COPYRIGHT MFC r327435: 2017-12-31 16:52:29 +00:00
LOCKS Explicitly require Security Officer's approval for kernel PRNG bits. 2013-09-17 14:19:05 +00:00
MAINTAINERS MFC r314622: 2018-03-19 03:34:40 +00:00
Makefile MFC r320280,r320281,r320282,r320283,r320284,r320285,r320692,r322362,r322401,r322402,r336181: 2018-08-08 19:36:28 +00:00
Makefile.inc1 MFC r337559: Makefile.inc1: Add libl to -legacy as well 2018-08-17 01:52:15 +00:00
Makefile.libcompat MFC 337270: Install the 32-bit compat sanitizer libraries. 2018-09-20 16:43:58 +00:00
ObsoleteFiles.inc MFC r336568: 2018-08-12 08:42:06 +00:00
README MFC r325834,r325997,326502: Move sys/boot to stand/ 2018-02-12 01:08:44 +00:00
UPDATING MFC r335844: 2018-11-07 20:31:36 +00:00

This is the top level of the FreeBSD source directory.  This file
was last revised on:
$FreeBSD$

For copyright information, please see the file COPYRIGHT in this
directory (additional copyright information also exists for some
sources in this tree - please see the specific source directories for
more information).

The Makefile in this directory supports a number of targets for
building components (or all) of the FreeBSD source tree.  See build(7)
and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
for more information, including setting make(1) variables.

The `buildkernel` and `installkernel` targets build and install
the kernel and the modules (see below).  Please see the top of
the Makefile in this directory for more information on the
standard build targets and compile-time flags.

Building a kernel is a somewhat more involved process.  See build(7), config(8),
and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
for more information.

Note: If you want to build and install the kernel with the
`buildkernel` and `installkernel` targets, you might need to build
world before.  More information is available in the handbook.

The kernel configuration files reside in the sys/<arch>/conf
sub-directory.  GENERIC is the default configuration used in release builds.
NOTES contains entries and documentation for all possible
devices, not just those commonly used.


Source Roadmap:
---------------

bin		System/user commands.

cddl		Various commands and libraries under the Common Development
		and Distribution License.

contrib		Packages contributed by 3rd parties.

crypto		Cryptography stuff (see crypto/README).

etc		Template files for /etc.

gnu		Various commands and libraries under the GNU Public License.
		Please see gnu/COPYING* for more information.

include		System include files.

kerberos5	Kerberos5 (Heimdal) package.

lib		System libraries.

libexec		System daemons.

release		Release building Makefile & associated tools.

rescue		Build system for statically linked /rescue utilities.

sbin		System commands.

secure		Cryptographic libraries and commands.

share		Shared resources.

stand		Boot loader sources.

sys		Kernel sources.

tests		Regression tests which can be run by Kyua.  See tests/README
		for additional information.

tools		Utilities for regression testing and miscellaneous tasks.

usr.bin		User commands.

usr.sbin	System administration commands.


For information on synchronizing your source tree with one or more of
the FreeBSD Project's development branches, please see:

  https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-src.html