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