From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Sat, 20 Sep 2014 21:10:52 +0200 From: Marco d'Itri To: Lucas De Marchi Cc: linux-modules Subject: Re: [patch 2/2] Add the man page for kmod(8) Message-ID: <20140920191052.GA8101@bongo.bofh.it> References: <20140917031225.559902121@bongo.bofh.it> <20140917031328.089606663@bongo.bofh.it> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="oyUTqETQ0mS9luUI" In-Reply-To: List-ID: --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sep 20, Lucas De Marchi wrote: > I can't see how he could be an author of the kmod tool. Better? -- ciao, Marco --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=add_kmod_man Add the man page for kmod(8) --- /dev/null +++ b/man/kmod.xml @@ -0,0 +1,126 @@ + + + + + + kmod + kmod + + + + Developer + Lucas + De Marchi + lucas.de.marchi@gmail.com + + + Developer + Lucas + De Marchi + lucas.de.marchi@gmail.com + + + + + + kmod + 8 + + + + kmod + Program to manage Linux Kernel modules + + + + + kmod + + COMMAND + + + + + DESCRIPTION + + kmod is a multi-call binary which implements the + programs used to control Linux Kernel modules. Most users will only + run it using its other names. + + + + OPTIONS + + + + + + Show the program version and exit. + + + + + + + Show the help message. + + + + + + COMMANDS + + + help + + Show the help message. + + + + list + + List the currently loaded modules. + + + + static-nodes + + Output the static device nodes information provided by + the modules of the currently running kernel version. + + + + + + + COPYRIGHT + + This manual page originally Copyright 2014, Marco d'Itri. + Maintained by Lucas De Marchi and others. + + + + SEE ALSO + + + lsmod8 + , + + rmmod8 + , + + insmod8 + , + + modinfo8 + , + + modprobe8 + , + + depmod8 + + + + --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,5 +1,5 @@ MAN5 = depmod.d.5 modprobe.d.5 modules.dep.5 -MAN8 = depmod.8 insmod.8 lsmod.8 rmmod.8 modprobe.8 modinfo.8 +MAN8 = kmod.8 depmod.8 insmod.8 lsmod.8 rmmod.8 modprobe.8 modinfo.8 MAN_STUB = modules.dep.bin.5 AM_V_XSLT = $(AM_V_XSLT_$(V)) --oyUTqETQ0mS9luUI--