/
githubmirror
/
kmod
ОбзорДокументацияВойти
/
githubmirror
/
kmod
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
kmod/
testsuite/module-playground/
..
Kbuild

Added the test case of using multiple softdep for a module

год назад
Makefile

testsuite: Handle KDIR=any

год назад
Makefile.arch

module-playground: allow to cross-compile modules

11 лет назад
README

testsuite: leave arch-specific modules in tree

11 лет назад
dummy.pkcs7

testsuite: add modinfo pkcs7 signature test

8 лет назад
dummy.sha1

testsuite: port signature-check modules to module-playground

11 лет назад
dummy.sha256

testsuite: port signature-check modules to module-playground

11 лет назад
mod-fake-cciss.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-fake-hpsa.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-fake-scsi-mod.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-foo-a.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-foo-b.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-foo-c.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-foo.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-a.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-b.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-c.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-d.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-e.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-f.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-g.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-h.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-i.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-j.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop-k.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-loop.h

testsuite: depmod: check netsted loops reporting

9 лет назад
mod-simple.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-softdep-a.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-softdep-b.c

testsuite: Fix build warning on kernel 6.15

год назад
mod-weakdep.c

testsuite: Fix build warning on kernel 6.15

год назад
README
Pre-compiled modules
====================
 
Some modules are pre-compiled due to needing cross-compilers present on the
build/dev machine which is inconvenient. Makefile is ready to compile them again
in case they are missing:
 
1) Prepare the linux kernel trees to build external modules, i.e.:
 
kernel $ make ARCH=<arch> CROSS_COMPILER=<cross-compiler-prefix> defconfig
kernel $ make ARCH=<arch> CROSS_COMPILER=<cross-compiler-prefix> modules_prepare
 
For each architecture. See the Makefile to check which are the supported architectures.
 
2) Export the variables below to point to the right place:
 
KDIR_<arch>: for each architecture it needs to point to a
kernel tree configured as in (1)
 
CROSS_COMPILER_<arch: for each architecture it needs to point to the
correct toolchain prefix. Leave it blank if a
cross-compiler is not needed (example: you are
building a 32b module with a multilib compiler).
 
 
3) Remove every %-<arch>.ko. After this the build system will recreate them.