Skip to content

Commit

Permalink
fix: support kernel >= 5.4
Browse files Browse the repository at this point in the history
Fixed according to https://patchwork.kernel.org/patch/10690487/ . Tested on 4.15 and 5.4
  • Loading branch information
dingelish committed Aug 28, 2020
1 parent fa6ec07 commit 446b059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,6 +1,6 @@
obj-m += enable_rdfsbase.o

KERNEL_MAKE := $(MAKE) -C /lib/modules/$(shell uname -r)/build SUBDIRS=$(PWD)
KERNEL_MAKE := $(MAKE) -C /lib/modules/$(shell uname -r)/build M=$(shell pwd)

all:
$(KERNEL_MAKE) modules
Expand Down

0 comments on commit 446b059

Please sign in to comment.