Fix some more the the typos.
[dragonfly.git] / README
1 For copyright information, please see the file COPYRIGHT in this
2 directory (additional copyright information also exists for some
3 sources in this tree - please see the specific source directories for
4 more information).
5
6 The Makefile in this directory supports a number of targets for
7 building components (or all) of the DragonFly source tree, the most
8 commonly used being ``buildworld'' and ``installworld'', which rebuild
9 and install everything in the DragonFly system from the source tree
10 except the kernel, the kernel-modules and the contents of /etc.  The
11 ``buildkernel'' and ``installkernel'' targets build and install
12 the kernel and the modules (see below).  Please see the top of
13 the Makefile in this directory for more information on the
14 standard build targets and compile-time flags.
15
16 Building a kernel is a somewhat involved process.  Documentation
17 for it can be found at:
18    http://www.dragonflybsd.org/docs/handbook/
19 Also see the build(7) and config(8) man pages.
20
21 Note: If you want to build and install the kernel with the
22 ``buildkernel'' and ``installkernel'' targets, you might need to build
23 world before.  More information is available in the DragonFly handbook.
24
25 The sample kernel configuration files reside in the sys/config
26 sub-directory (assuming that you've installed the kernel sources), the
27 file named GENERIC being the one used to build your initial installation
28 kernel.  The file LINT contains entries for all possible devices, not
29 just those commonly used, and is meant more as a general reference
30 than an actual kernel configuration file (a kernel built from it
31 wouldn't even run).
32
33
34 Source Roadmap:
35 ---------------
36 bin             System/user commands.
37
38 contrib         Packages contributed by 3rd parties.
39
40 crypto          Cryptography stuff (see crypto/README).
41
42 etc             Template files for /etc.
43
44 games           Amusements.
45
46 gnu             Various commands and libraries under the GNU Public License.
47                 Please see gnu/COPYING* for more information.
48
49 include         System include files.
50
51 lib             System libraries.
52
53 libexec         System daemons.
54
55 nrelease        Framework for building the ``live'' CD image.
56
57 sbin            System commands.
58
59 secure          Cryptographic libraries and commands.
60
61 share           Shared resources.
62
63 sys             Kernel sources.
64
65 test            System tests.
66
67 tools           Utilities for regression testing and miscellaneous tasks.
68
69 usr.bin         User commands.
70
71 usr.sbin        System administration commands.