mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-05-08 20:13:24 +00:00
- Add a test for the kernel config for each supported kernel - simplify YAML files: no need for ca certificates nor DHCP - Explicitly state that the kernel module tests are for the 4.9 kernel. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
7 lines
167 B
Makefile
7 lines
167 B
Makefile
obj-m += hello_world.o
|
|
KVER=$(shell basename /usr/src/linux-headers-*)
|
|
all:
|
|
make -C /usr/src/$(KVER) M=$(PWD) modules
|
|
clean:
|
|
make -C /usr/src/$(KVER) M=$(PWD) clean
|