Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/actions/setup-os/setup-alpine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ apk update
apk add \
bash \
build-base \
coreutils \
clang \
git \
gtk-doc \
Expand Down
23 changes: 0 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,9 @@
*.o
*.gcda
*.gcno
*.pc
/*.tar.xz
/*.md5sum
/*.mbx
/*.cover
.deps/
.libs/
/Makefile
/Makefile.in

/aclocal.m4
/autom4te.cache/
/build-aux/
/config.h
/config.h.in
/config.log
/config.status
/configure
/cov-int
/coverage
/gtk-doc.make
/gtk-doc.m4
/kmod-*.tar.*
/libtool
/stamp-h1
/test-suite.log
/build
/build-*

Expand Down
6 changes: 0 additions & 6 deletions libkmod/.gitignore

This file was deleted.

14 changes: 0 additions & 14 deletions libkmod/docs/.gitignore

This file was deleted.

8 changes: 4 additions & 4 deletions libkmod/docs/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ built_docs = gnome.gtkdoc(
'libkmod',
content_files : version_file,
ignore_headers : [
'@0@/libkmod/libkmod-index.h'.format(meson.project_source_root()),
'@0@/libkmod/libkmod-internal-file.h'.format(meson.project_source_root()),
'@0@/libkmod/libkmod-internal.h'.format(meson.project_source_root()),
f'@project_source_root@/libkmod/libkwod-index.h',
f'@project_source_root@/libkmod/libkmod-internal-file.h',
f'@project_source_root@/libkmod/libkmod-internal.h',
],
scan_args : '--ignore-decorators="KMOD_EXPORT"',
src_dir : '@0@/libkmod/'.format(meson.project_source_root()),
src_dir : f'@project_source_root@/libkmod/',
namespace : 'kmod',
module_version : '3',
main_xml : 'libkmod-docs.xml',
Expand Down
4 changes: 0 additions & 4 deletions man/.gitignore

This file was deleted.

23 changes: 1 addition & 22 deletions man/depmod.8.scd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ depmod - Generate modules.dep and map files.
\ \ \ \ \ \ \ \[*-F* _System.map_] [*-n*] [*-v*] [*-A*] [*-P* _prefix_] [*-w*] [_version_]

*depmod* [*-e*] [*-E* _Module.symvers_] [*-F* _System.map_] [*-n*] [*-v*] [*-P* _prefix_]
\ \ \ \ \ \ \ \[*-w*] [_version_] [_filename_...]
\ \ \ \ \ \ \ \[*-w*] [_version_] [_filename_]

# DESCRIPTION

Expand Down Expand Up @@ -155,27 +155,6 @@ depmod -b /tmp/build -m kernel-modules
*-w*
Warn on duplicate dependencies, aliases, symbol versions, etc.

# COPYRIGHT

This manual page originally Copyright 2002, Rusty Russell, IBM Corporation.
Portions Copyright Jon Masters, and others.

# SEE ALSO

*depmod.d*(5), *modprobe*(8), *modules.dep*(5)

# BUGS

Please direct any bug reports to kmod's issue tracker at
https://github.com/kmod-project/kmod/issues/ alongside with version used, steps
to reproduce the problem and the expected outcome.

# AUTHORS

Numerous contributions have come from the linux-modules mailing list
<linux-modules@vger.kernel.org> and Github. If you have a clone of kmod.git
itself, the output of *git-shortlog*(1) and *git-blame*(1) can show you the
authors for specific parts of the project.

*Lucas De Marchi* <lucas.de.marchi@gmail.com> is the current maintainer of the
project.
20 changes: 2 additions & 18 deletions man/depmod.d.5.scd
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ later).

# COMMANDS

search _subdirectory..._
search _subdirectory_
This allows you to specify the order in which @MODULE_DIRECTORY@ (or
other configured module location) subdirectories will be processed by
*depmod*. Directories are listed in order, with the highest priority
Expand Down Expand Up @@ -79,7 +79,7 @@ override _modulename_ _kernelversion_ _modulesubdirectory_
module location) will take priority over any likenamed module already
provided by the kernel.

external _kernelversion_ _absolutemodulesdirectory..._
external _kernelversion_ _absolutemodulesdirectory_
This specifies a list of directories, which will be checked according to
the priorities in the *search* command. The order matters also, the
first directory has the higher priority.
Expand All @@ -100,19 +100,3 @@ This manual page Copyright 2006-2010, Jon Masters, Red Hat, Inc.
# SEE ALSO

*depmod*(8)

# BUGS

Please direct any bug reports to kmod's issue tracker at
https://github.com/kmod-project/kmod/issues/ alongside with version used, steps
to reproduce the problem and the expected outcome.

# AUTHORS

Numerous contributions have come from the linux-modules mailing list
<linux-modules@vger.kernel.org> and Github. If you have a clone of kmod.git
itself, the output of *git-shortlog*(1) and *git-blame*(1) can show you the
authors for specific parts of the project.

*Lucas De Marchi* <lucas.de.marchi@gmail.com> is the current maintainer of the
project.
18 changes: 1 addition & 17 deletions man/insmod.8.scd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ insmod - Simple program to insert a module into the Linux Kernel

# SYNOPSIS

*insmod* [_OPTIONS_] [_filename_] [_module options_]
*insmod* [_OPTIONS_] _filename_ [_module options_]

# DESCRIPTION

Expand Down Expand Up @@ -62,19 +62,3 @@ This manual page originally Copyright 2002, Rusty Russell, IBM Corporation.
# SEE ALSO

*modprobe*(8), *rmmod*(8), *lsmod*(8), *modinfo*(8), *depmod*(8)

# BUGS

Please direct any bug reports to kmod's issue tracker at
https://github.com/kmod-project/kmod/issues/ alongside with version used, steps
to reproduce the problem and the expected outcome.

# AUTHORS

Numerous contributions have come from the linux-modules mailing list
<linux-modules@vger.kernel.org> and Github. If you have a clone of kmod.git
itself, the output of *git-shortlog*(1) and *git-blame*(1) can show you the
authors for specific parts of the project.

*Lucas De Marchi* <lucas.de.marchi@gmail.com> is the current maintainer of the
project.
22 changes: 1 addition & 21 deletions man/kmod.8.scd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ kmod - Program to manage Linux Kernel modules

# SYNOPSIS

*kmod* [*OPTIONS...*] [_COMMAND_] [*COMMAND_OPTIONS...*]
*kmod* [*OPTIONS*] [_COMMAND_] [*COMMAND_OPTIONS*]

# DESCRIPTION

Expand Down Expand Up @@ -40,23 +40,3 @@ This manual page originally Copyright 2014, Marco d'Itri.
# SEE ALSO

*lsmod*(8), *rmmod*(8), *insmod*(8), *modinfo*(8), *modprobe*(8), *depmod*(8)

# BUGS

Please direct any bug reports to kmod's issue tracker at
https://github.com/kmod-project/kmod/issues/ alongside with version used, steps
to reproduce the problem and the expected outcome.

# AUTHOR

*kmod* project was started by Lucas De Marchi as a drop-in replacement to
module-init-tools that was maintained by Jon Masters, adding a library (libkmod)
and additional features.

Numerous contributions have come from the linux-modules mailing list
<linux-modules@vger.kernel.org> and Github. If you have a clone of kmod.git
itself, the output of *git-shortlog*(1) and *git-blame*(1) can show you the
authors for specific parts of the project.

*Lucas De Marchi* <lucas.de.marchi@gmail.com> is the current maintainer of the
project.
16 changes: 0 additions & 16 deletions man/lsmod.8.scd
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,3 @@ This manual page originally Copyright 2002, Rusty Russell, IBM Corporation.
# SEE ALSO

*insmod*(8), *modprobe*(8), *modinfo*(8), *depmod*(8)

# BUGS

Please direct any bug reports to kmod's issue tracker at
https://github.com/kmod-project/kmod/issues/ alongside with version used, steps
to reproduce the problem and the expected outcome.

# AUTHORS

Numerous contributions have come from the linux-modules mailing list
<linux-modules@vger.kernel.org> and Github. If you have a clone of kmod.git
itself, the output of *git-shortlog*(1) and *git-blame*(1) can show you the
authors for specific parts of the project.

*Lucas De Marchi* <lucas.de.marchi@gmail.com> is the current maintainer of the
project.
24 changes: 11 additions & 13 deletions man/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,20 @@ foreach tuple : _man_pages
man = tuple[1]

custom_target(
'man_@0@_@1@'.format(section, man),
f'man_@section@_@man@',
command : [
build_scdoc,
scdoc,
'@INPUT@',
's|@SYSCONFDIR@|@0@|g;'.format(sysconfdir) +
's|@DISTCONFDIR@|@0@|g;'.format(distconfdir) +
's|@MODULE_DIRECTORY@|@0@|g;'.format(moduledir),
'@INPUT@',
],
input : '@0@.@1@.scd'.format(man, section),
output : '@0@.@1@'.format(man, section),
input : [f'@man@.@section@.scd', files('trailer.scd')],
output : f'@man@.@section@',
capture : true,
build_by_default : get_option('manpages'),
install : true,
install_dir : get_option('mandir') / 'man@0@'.format(section)
install : get_option('manpages'),
install_dir : get_option('mandir') / f'man@section@',
)
endforeach

Expand All @@ -46,12 +45,11 @@ foreach tuple : _man_aliases
dest = tuple[2]

custom_target(
'man_@0@_@1@'.format(section, man),
command : ['echo', '.so @0@'.format(dest)],
output : '@0@.@1@'.format(man, section),
f'man_@section@_@man@',
command : ['echo', f'.so @dest@'],
output : f'@man@.@section@',
capture : true,
build_by_default : get_option('manpages'),
install : true,
install_dir : get_option('mandir') / 'man@0@'.format(section)
install : get_option('manpages'),
install_dir : get_option('mandir') / f'man@section@',
)
endforeach
18 changes: 1 addition & 17 deletions man/modinfo.8.scd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ modinfo - Show information about a Linux Kernel module

# SYNOPSIS

*modinfo* [*-0*] [*-F* _field_] [*-k* _kernel_] [modulename|filename...]
*modinfo* [*-0*] [*-F* _field_] [*-k* _kernel_] _modulename_|_filename_

*modinfo* *-V*

Expand Down Expand Up @@ -69,19 +69,3 @@ This manual page originally Copyright 2003, Rusty Russell, IBM Corporation.
# SEE ALSO

*modprobe*(8)

# BUGS

Please direct any bug reports to kmod's issue tracker at
https://github.com/kmod-project/kmod/issues/ alongside with version used, steps
to reproduce the problem and the expected outcome.

# AUTHORS

Numerous contributions have come from the linux-modules mailing list
<linux-modules@vger.kernel.org> and Github. If you have a clone of kmod.git
itself, the output of *git-shortlog*(1) and *git-blame*(1) can show you the
authors for specific parts of the project.

*Lucas De Marchi* <lucas.de.marchi@gmail.com> is the current maintainer of the
project.
24 changes: 4 additions & 20 deletions man/modprobe.8.scd
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ modprobe - Add and remove modules from the Linux Kernel

# SYNOPSIS

*modprobe* [*-v*] [*-V*] [*-C* _config-file_] [*-n*] [*-i*] [*-q*] [*-b*] [_modulename_]
\ \ \ \ \ \ \ \ \ \[_module parameters_...]
*modprobe* [*-v*] [*-V*] [*-C* _config-file_] [*-n*] [*-i*] [*-q*] [*-b*] _modulename_
\ \ \ \ \ \ \ \ \ \[_module parameters_]

*modprobe* [*-r*] [*-v*] [*-n*] [*-i*] [_modulename_...]
*modprobe* [*-r*] [*-v*] [*-n*] [*-i*] _modulename_

*modprobe* [*-c*]

*modprobe* [*--show-modversions*] [_filename_]
*modprobe* [*--show-modversions*] _filename_

# DESCRIPTION

Expand Down Expand Up @@ -229,19 +229,3 @@ This manual page originally Copyright 2002, Rusty Russell, IBM Corporation.
# SEE ALSO

*modprobe.d*(5), *insmod*(8), *rmmod*(8), *lsmod*(8), *modinfo*(8), *depmod*(8)

# BUGS

Please direct any bug reports to kmod's issue tracker at
https://github.com/kmod-project/kmod/issues/ alongside with version used, steps
to reproduce the problem and the expected outcome.

# AUTHORS

Numerous contributions have come from the linux-modules mailing list
<linux-modules@vger.kernel.org> and Github. If you have a clone of kmod.git
itself, the output of *git-shortlog*(1) and *git-blame*(1) can show you the
authors for specific parts of the project.

*Lucas De Marchi* <lucas.de.marchi@gmail.com> is the current maintainer of the
project.
1 change: 0 additions & 1 deletion man/modprobe.conf.5

This file was deleted.

Loading
Loading