diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-04-21 20:29:16 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-04-21 20:29:16 +0200 |
commit | a12a235e206e091a6bfdee261ca142b70d683b34 (patch) | |
tree | 866360c8e158bd56cfbbd7fcbaac32912a4aa6ab /meta-elisa/recipes-kernel/linux/files/Makefile | |
parent | 33ecec083876b8fc1484f36bdf5938b26bfb5799 (diff) |
RFC/WIP: Add edac-inject-modulesandbox/jsmoeller/edac
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: Ice3c4f9e6ce1d0b6b30fd4d21546fc5aec99ac06
Diffstat (limited to 'meta-elisa/recipes-kernel/linux/files/Makefile')
-rw-r--r-- | meta-elisa/recipes-kernel/linux/files/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meta-elisa/recipes-kernel/linux/files/Makefile b/meta-elisa/recipes-kernel/linux/files/Makefile new file mode 100644 index 00000000..017577c7 --- /dev/null +++ b/meta-elisa/recipes-kernel/linux/files/Makefile @@ -0,0 +1,12 @@ +obj-m += edac_inject.o + +export KDIR := /lib/modules/$(shell uname -r)/build + +allofit: modules +modules: + @$(MAKE) -C $(KDIR) M=$(shell pwd) modules +kernel_clean: + @$(MAKE) -C $(KDIR) M=$(shell pwd) clean + +clean: kernel_clean + rm -rf Module.symvers modules.order |