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 68716 2000-11-14 11:20:58Z ru $
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
36.Fx 3.0
37and above in favor of the
38.Nm
39interface.
40This interface, like its
41predecessor, allows the system administrator to dynamically add and remove
42functionality from a running system. This ability also helps software
43developers to develop new parts of the kernel without constantly rebooting
44to test their changes.
45.Pp
46Various types of modules can be loaded into the system.
47There are several defined module types, listed below, which can
48be added to the system in a predefined way. In addition, there
49is a generic type, for which the module itself handles loading and
50unloading.
51.Pp
52The
53.Fx
54system makes extensive use of loadable kernel modules, and provides loadable
55versions of most filesystems, the
56.Tn NFS
57client and server, all the screen-savers, and the
58.Tn iBCS2
59and
60.Tn Linux
61emulators.

--- 111 unchanged lines hidden ---