Deleted Added
sdiff udiff text old ( 60750 ) new ( 68716 )
full compact
1.\" Copyright (c) 1993 Christopher G. Demetriou
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 9 unchanged lines hidden (view full) ---

18.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25.\"
26.\" $FreeBSD: head/share/man/man4/kld.4 60750 2000-05-21 03:16:35Z hoek $
27.\"
28.Dd November 08, 1998
29.Dt KLD 4
30.\".Os FreeBSD 3.0
31.Sh NAME
32.Nm kld
33.Nd dynamic kernel linker facility
34.Sh DESCRIPTION
35The LKM (Loadable Kernel Modules) facility has been deprecated in FreeBSD
363.0 and above in favor of the
37.Nm
38interface.
39This interface, like its
40predecessor, allows the system administrator to dynamically add and remove
41functionality from a running system. This ability also helps software
42developers to develop new parts of the kernel without constantly rebooting
43to test their changes.
44.Pp
45Various types of modules can be loaded into the system.
46There are several defined module types, listed below, which can
47be added to the system in a predefined way. In addition, there
48is a generic type, for which the module itself handles loading and
49unloading.
50.Pp
51The
52.Tn FreeBSD
53system makes extensive use of loadable kernel modules, and provides loadable
54versions of most filesystems, the
55.Tn NFS
56client and server, all the screen-savers, and the
57.Tn iBCS2
58and
59.Tn Linux
60emulators.

--- 111 unchanged lines hidden ---