From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from attila.bofh.it ([85.94.204.146]:53070 "EHLO attila.bofh.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754251AbaIQDWh (ORCPT ); Tue, 16 Sep 2014 23:22:37 -0400 Message-Id: <20140917031328.089606663@bongo.bofh.it> Date: Wed, 17 Sep 2014 05:12:27 +0200 To: linux-modules@vger.kernel.org Subject: [patch 2/2] Add the man page for kmod(8) References: <20140917031225.559902121@bongo.bofh.it> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 From: md@Linux.IT (Marco d'Itri) Sender: linux-modules-owner@vger.kernel.org List-ID: --- /dev/null +++ b/man/kmod.xml @@ -0,0 +1,126 @@ + + + + + + kmod + kmod + + + + Developer + Jon + Masters + jcm@jonmasters.org + + + 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 Jon Masters 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))