Skip to content

Commit

Permalink
[kbuild] Match the module name to what is in dkms.conf
Browse files Browse the repository at this point in the history
Kbuild generates the .ko name from the contents of the
Kbuild file, but these lines do not match the module
name defined in dkms.conf. This commit aligns the two.

Signed-off-by: Nicholas Tsirakis <[email protected]>
  • Loading branch information
Nicholas Tsirakis committed Oct 24, 2022
1 parent 35b0a67 commit 894655f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions argo-linux/Kbuild
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
obj-m += xen-argo.o
obj-m += argo.o

xen-argo-y := argo-module.o
xen-argo-$(CONFIG_ARM) += argo-hypercall.o
argo-y := argo-module.o
argo-$(CONFIG_ARM) += argo-hypercall.o

ccflags-y := -I$(src)/include

0 comments on commit 894655f

Please sign in to comment.