Răsfoiți Sursa

lkdtm: split build into multiple source files

Kbuild lacks a way to do in-place objcopy or other modifications of
built targets, so in order to move functions into non-text sections
without renaming the kernel module, the build of lkdtm must be split
into separate source files. This renames lkdtm.c to lkdtm_core.c in
preparation for adding the source file for the .rodata section.

Signed-off-by: Kees Cook <keescook@chromium.org>
Kees Cook 9 ani în urmă
părinte
comite
9e197e2f89
2 a modificat fișierele cu 2 adăugiri și 0 ștergeri
  1. 2 0
      drivers/misc/Makefile
  2. 0 0
      drivers/misc/lkdtm_core.c

+ 2 - 0
drivers/misc/Makefile

@@ -57,3 +57,5 @@ obj-$(CONFIG_ECHO)		+= echo/
 obj-$(CONFIG_VEXPRESS_SYSCFG)	+= vexpress-syscfg.o
 obj-$(CONFIG_CXL_BASE)		+= cxl/
 obj-$(CONFIG_PANEL)             += panel.o
+
+lkdtm-$(CONFIG_LKDTM)		+= lkdtm_core.o

+ 0 - 0
drivers/misc/lkdtm.c → drivers/misc/lkdtm_core.c