You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker 7ee447c011
v811_spc009_project
4 months ago
..
cache v811_spc009_project 4 months ago
Makefile v811_spc009_project 4 months ago
Makefile.arch v811_spc009_project 4 months ago
README v811_spc009_project 4 months ago
dummy.pkcs7 v811_spc009_project 4 months ago
dummy.sha1 v811_spc009_project 4 months ago
dummy.sha256 v811_spc009_project 4 months ago
mod-fake-cciss.c v811_spc009_project 4 months ago
mod-fake-hpsa.c v811_spc009_project 4 months ago
mod-fake-scsi-mod.c v811_spc009_project 4 months ago
mod-foo-a.c v811_spc009_project 4 months ago
mod-foo-b.c v811_spc009_project 4 months ago
mod-foo-c.c v811_spc009_project 4 months ago
mod-foo.c v811_spc009_project 4 months ago
mod-loop-a.c v811_spc009_project 4 months ago
mod-loop-b.c v811_spc009_project 4 months ago
mod-loop-c.c v811_spc009_project 4 months ago
mod-loop-d.c v811_spc009_project 4 months ago
mod-loop-e.c v811_spc009_project 4 months ago
mod-loop-f.c v811_spc009_project 4 months ago
mod-loop-g.c v811_spc009_project 4 months ago
mod-loop-h.c v811_spc009_project 4 months ago
mod-loop-i.c v811_spc009_project 4 months ago
mod-loop-j.c v811_spc009_project 4 months ago
mod-loop-k.c v811_spc009_project 4 months ago
mod-loop.h v811_spc009_project 4 months ago
mod-simple-i386.ko v811_spc009_project 4 months ago
mod-simple-sparc64.ko v811_spc009_project 4 months ago
mod-simple-x86_64.ko v811_spc009_project 4 months ago
mod-simple.c v811_spc009_project 4 months ago

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.