|
NAME
SYNOPSIS
DESCRIPTIONThe If a bare filename is requested it will only be loaded if it is
found within the module path as defined by the sysctl
kern.module_path. To load a module from the current
directory it must be specified as a full or relative path. The
The following options are available: NOTESThe kernel security level settings may prevent a module from being loaded or unloaded by giving Operation not permitted. FILES
EXIT STATUSThe EXAMPLESTo load by module name: > kldload foo To load by file name within the module path: > kldload foo.ko To load by relative path: > kldload ./foo.ko To load by full path: > kldload /boot/kernel/foo.ko AUTOMATICALLY LOADING MODULESSome modules (pf, ipfw, ipf, etc.) may be automatically loaded at boot time when the corresponding rc.conf(5) statement is used. Modules may also be auto-loaded through their addition to loader.conf(5) or kld_list in rc.conf(5). Only those modules necessary for booting the system, including those required for mounting the root filesystem, should be handled by loader.conf(5). SEE ALSOkenv(1), kldload(2), loader.conf(5), rc.conf(5), security(7), kldconfig(8), kldstat(8), kldunload(8), kldxref(8) HISTORYThe AUTHORSDoug Rabson <dfr@FreeBSD.org>
|