mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 12:49:34 +02:00
lib/oeqa/runtime: build kernel module on target test
Builds a simple Hello World module on target. Added to the defaults for core-image-sato-sdk. (From OE-Core rev: c61c3dee162aa1f5bf31b2a09d8b916dc1712056) Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
67378fbcbe
commit
d3cb369365
8
meta/lib/oeqa/runtime/files/hellomod_makefile
Normal file
8
meta/lib/oeqa/runtime/files/hellomod_makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
obj-m := hellomod.o
|
||||
KDIR := /usr/src/kernel
|
||||
|
||||
all:
|
||||
$(MAKE) -C $(KDIR) M=$(PWD) modules
|
||||
|
||||
clean:
|
||||
$(MAKE) -C $(KDIR) M=$(PWD) clean
|
||||
Reference in New Issue
Block a user