Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
cache/ | 03-May-2024 | - | ||||
.gitignore | D | 03-May-2024 | 178 | 17 | 15 | |
Makefile | D | 03-May-2024 | 2 KiB | 84 | 55 | |
Makefile.arch | D | 03-May-2024 | 458 | 15 | 12 | |
README | D | 03-May-2024 | 1.1 KiB | 27 | 17 | |
dummy.pkcs7 | D | 03-May-2024 | 721 | |||
dummy.sha1 | D | 03-May-2024 | 100 KiB | |||
dummy.sha256 | D | 03-May-2024 | 100 KiB | |||
mod-fake-cciss.c | D | 03-May-2024 | 1.6 KiB | 38 | 33 | |
mod-fake-hpsa.c | D | 03-May-2024 | 1.4 KiB | 37 | 31 | |
mod-fake-scsi-mod.c | D | 03-May-2024 | 353 | 22 | 17 | |
mod-foo-a.c | D | 03-May-2024 | 353 | 21 | 16 | |
mod-foo-b.c | D | 03-May-2024 | 353 | 21 | 16 | |
mod-foo-c.c | D | 03-May-2024 | 353 | 21 | 16 | |
mod-foo.c | D | 03-May-2024 | 396 | 24 | 17 | |
mod-loop-a.c | D | 03-May-2024 | 439 | 28 | 21 | |
mod-loop-b.c | D | 03-May-2024 | 439 | 28 | 21 | |
mod-loop-c.c | D | 03-May-2024 | 417 | 26 | 19 | |
mod-loop-d.c | D | 03-May-2024 | 417 | 26 | 19 | |
mod-loop-e.c | D | 03-May-2024 | 417 | 26 | 19 | |
mod-loop-f.c | D | 03-May-2024 | 406 | 25 | 18 | |
mod-loop-g.c | D | 03-May-2024 | 406 | 25 | 18 | |
mod-loop-h.c | D | 03-May-2024 | 417 | 26 | 19 | |
mod-loop-i.c | D | 03-May-2024 | 417 | 26 | 19 | |
mod-loop-j.c | D | 03-May-2024 | 428 | 27 | 20 | |
mod-loop-k.c | D | 03-May-2024 | 417 | 26 | 19 | |
mod-loop.h | D | 03-May-2024 | 223 | 14 | 12 | |
mod-simple-i386.ko | D | 03-May-2024 | 1.9 KiB | |||
mod-simple-sparc64.ko | D | 03-May-2024 | 2.9 KiB | |||
mod-simple-x86_64.ko | D | 03-May-2024 | 2.7 KiB | |||
mod-simple.c | D | 03-May-2024 | 295 | 17 | 13 |
README
1Pre-compiled modules 2==================== 3 4Some modules are pre-compiled due to needing cross-compilers present on the 5build/dev machine which is inconvenient. Makefile is ready to compile them again 6in case they are missing: 7 81) Prepare the linux kernel trees to build external modules, i.e.: 9 10 kernel $ make ARCH=<arch> CROSS_COMPILER=<cross-compiler-prefix> defconfig 11 kernel $ make ARCH=<arch> CROSS_COMPILER=<cross-compiler-prefix> modules_prepare 12 13 For each architecture. See the Makefile to check which are the supported architectures. 14 152) Export the variables below to point to the right place: 16 17 KDIR_<arch>: for each architecture it needs to point to a 18 kernel tree configured as in (1) 19 20 CROSS_COMPILER_<arch: for each architecture it needs to point to the 21 correct toolchain prefix. Leave it blank if a 22 cross-compiler is not needed (example: you are 23 building a 32b module with a multilib compiler). 24 25 263) Remove every %-<arch>.ko. After this the build system will recreate them. 27