Name Date Size #Lines LOC

..12-May-2022-

bin/H08-May-2022-80,91458,611

contrib/H08-May-2022-7,971,7665,651,604

crypto/H08-May-2022-503,339373,024

doc/H08-May-2022-272187

dports.base/H17-Jan-2024-10071

etc/H03-Feb-2023-32,24122,535

games/H08-May-2022-246,561204,777

gnu/H08-May-2022-162,615121,095

include/H04-Apr-2024-24,24512,498

initrd/H08-May-2022-1,133757

lib/H08-May-2022-472,806355,333

libexec/H08-May-2022-57,09540,197

nrelease/H20-Apr-2024-4,9344,266

sbin/H08-May-2022-216,872169,288

share/H08-May-2022-1,398,7421,383,679

stand/H11-May-2023-87,59347,143

sys/H08-May-2022-4,913,1853,608,563

test/H08-May-2022-72,62751,758

tools/H03-Feb-2023-725,593709,604

usr.bin/H13-Oct-2023-312,399236,772

usr.sbin/H08-May-2022-381,226285,232

.gitattributesH A D08-May-202232 32

.gitignoreH A D08-May-2022764 3129

COPYRIGHTH A D06-Mar-20246.4 KiB149115

MakefileH A D17-Jan-20249.4 KiB239105

Makefile.inc1H A D17-Jan-202445 KiB1,342896

Makefile_upgrade.incH A D13-Oct-2023165.3 KiB3,9723,966

READMEH A D20-Feb-20232.5 KiB7952

UPDATINGH A D08-May-202238.9 KiB1,044775

README

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