mirror of
https://github.com/dynup/kpatch
synced 2024-12-22 05:10:01 +00:00
kmod: Fix install path
When building against a different kernel from the one that is currently running, install the kernel module to a directory based on the version of the target kernel rather than the currently running kernel. Signed-off-by: Ross Lagerwall <ross.lagerwall@citrix.com>
This commit is contained in:
parent
71afb17143
commit
075c4745f0
@ -1,4 +1,6 @@
|
||||
include ../Makefile.inc
|
||||
KPATCH_BUILD ?= /lib/modules/$(shell uname -r)/build
|
||||
KERNELRELEASE := $(lastword $(subst /, , $(dir $(KPATCH_BUILD))))
|
||||
|
||||
all: clean
|
||||
ifeq ($(BUILDMOD),yes)
|
||||
@ -7,9 +9,9 @@ endif
|
||||
|
||||
install:
|
||||
ifeq ($(BUILDMOD),yes)
|
||||
$(INSTALL) -d $(MODULESDIR)/$(shell uname -r)
|
||||
$(INSTALL) -m 644 core/kpatch.ko $(MODULESDIR)/$(shell uname -r)
|
||||
$(INSTALL) -m 644 core/Module.symvers $(MODULESDIR)/$(shell uname -r)
|
||||
$(INSTALL) -d $(MODULESDIR)/$(KERNELRELEASE)
|
||||
$(INSTALL) -m 644 core/kpatch.ko $(MODULESDIR)/$(KERNELRELEASE)
|
||||
$(INSTALL) -m 644 core/Module.symvers $(MODULESDIR)/$(KERNELRELEASE)
|
||||
endif
|
||||
$(INSTALL) -d $(DATADIR)/patch
|
||||
$(INSTALL) -m 644 patch/* $(DATADIR)/patch
|
||||
|
Loading…
Reference in New Issue
Block a user