Name Date Size #Lines LOC

..--

bin/H13-Sep-2018-80,91458,611

contrib/H14-Sep-2021-7,972,1045,665,639

crypto/H05-May-2020-573,449433,965

doc/H14-Sep-2021-272187

dports.base/H23-Jan-2025-10071

etc/H23-Jan-2025-32,26122,545

games/H31-Dec-2022-246,561204,777

gnu/H13-Sep-2018-153,505116,401

include/H23-Jan-2025-24,24512,498

initrd/H31-Dec-2022-1,127751

lib/H14-Sep-2021-472,857355,371

libexec/H23-Jan-2025-57,88740,733

nrelease/H23-Jan-2025-4,9234,259

sbin/H05-May-2020-216,896169,291

share/H05-May-2020-1,398,7851,383,722

stand/H23-Jan-2025-87,59347,143

sys/H14-Sep-2021-4,748,5723,470,175

test/H14-Sep-2021-72,62751,758

tools/H23-Jan-2025-725,593709,604

usr.bin/H23-Jan-2025-317,098240,394

usr.sbin/H14-Sep-2021-381,123285,205

.gitattributesHD13-Sep-201832 32

.gitignoreHD31-Dec-2022764 3129

COPYRIGHTHD23-Jan-20256.4 KiB149115

MakefileHD23-Jan-20259.4 KiB239105

Makefile.inc1HD23-Jan-202545 KiB1,342896

Makefile_upgrade.incHD23-Jan-2025165.3 KiB3,9733,967

READMEHD23-Jan-20252.5 KiB7952

UPDATINGHD31-Dec-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