diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-10-09 06:46:54 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-10-09 06:46:54 +0000 |
commit | badf9d5c6c6521b30c4c09a5c1c020e565dfab8c (patch) | |
tree | 3f304054c5363889d92f7b2162d686e1a9b3040d /sbin/kldload | |
parent | 8cecf7b3e553377ad5bf3f32138afacbd5c28302 (diff) | |
download | FreeBSD-src-badf9d5c6c6521b30c4c09a5c1c020e565dfab8c.zip FreeBSD-src-badf9d5c6c6521b30c4c09a5c1c020e565dfab8c.tar.gz |
Update documentation for kldload(8)'s ability to load multiple modules.
Submitted by: Daniel O'Connor <doconnor@gsoft.com.au>
Diffstat (limited to 'sbin/kldload')
-rw-r--r-- | sbin/kldload/kldload.8 | 8 | ||||
-rw-r--r-- | sbin/kldload/kldload.c | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sbin/kldload/kldload.8 b/sbin/kldload/kldload.8 index 14e2a95..8456b09 100644 --- a/sbin/kldload/kldload.8 +++ b/sbin/kldload/kldload.8 @@ -34,13 +34,15 @@ .Sh SYNOPSIS .Nm .Op Fl v -.Ar filename +.Ar .Sh DESCRIPTION The .Nm -utility loads the file -.Ar filename Ns Pa .ko +utility loads +.Ar file Ns Pa .ko into the kernel using the kernel linker. +Note that if multiple modules are specified then an attempt will +be made to load them all, even if some fail. .Pp The following option is available: .Bl -tag -width indent diff --git a/sbin/kldload/kldload.c b/sbin/kldload/kldload.c index 567817a..1dd6591 100644 --- a/sbin/kldload/kldload.c +++ b/sbin/kldload/kldload.c @@ -39,7 +39,7 @@ static const char rcsid[] = static void usage(void) { - fprintf(stderr, "usage: kldload [-v] filename\n"); + fprintf(stderr, "usage: kldload [-v] file ...\n"); exit(1); } |