Name Date Size #Lines LOC

..--

cache/H25-Apr-2025-

.gitignoreH A D25-Apr-2025177 1715

MakefileH A D25-Apr-20252 KiB8455

Makefile.archH A D25-Apr-2025458 1512

READMEH A D25-Apr-20251.1 KiB2717

dummy.pkcs7HD25-Apr-2025721

dummy.sha1HD25-Apr-2025100 KiB

dummy.sha256HD25-Apr-2025100 KiB

mod-fake-cciss.cH A D25-Apr-20251.6 KiB3833

mod-fake-hpsa.cH A D25-Apr-20251.4 KiB3731

mod-fake-scsi-mod.cH A D25-Apr-2025353 2217

mod-foo-a.cH A D25-Apr-2025353 2116

mod-foo-b.cH A D25-Apr-2025353 2116

mod-foo-c.cH A D25-Apr-2025353 2116

mod-foo.cH A D25-Apr-2025396 2417

mod-loop-a.cH A D25-Apr-2025439 2821

mod-loop-b.cH A D25-Apr-2025439 2821

mod-loop-c.cH A D25-Apr-2025417 2619

mod-loop-d.cH A D25-Apr-2025417 2619

mod-loop-e.cH A D25-Apr-2025417 2619

mod-loop-f.cH A D25-Apr-2025406 2518

mod-loop-g.cH A D25-Apr-2025406 2518

mod-loop-h.cH A D25-Apr-2025417 2619

mod-loop-i.cH A D25-Apr-2025417 2619

mod-loop-j.cH A D25-Apr-2025428 2720

mod-loop-k.cH A D25-Apr-2025417 2619

mod-loop.hH A D25-Apr-2025223 1412

mod-simple-i386.koHD25-Apr-20251.9 KiB

mod-simple-sparc64.koHD25-Apr-20252.9 KiB

mod-simple-x86_64.koHD25-Apr-20252.7 KiB

mod-simple.cH A D25-Apr-2025644 3324

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