Commit 025677de authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

greybus: Makefile: provide install target



Provide an install Makefile target for those that want to install the
kernel modules.

Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>

--
v3: resend to list, somehow this thread got taken private and v2 never
    made it there.

v2: add -a option to depmod, thanks to Mitchell
parent e2ed07f1
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -46,3 +46,7 @@ clean:
coccicheck:
	$(MAKE) -C $(KERNELDIR) M=$(PWD) coccicheck

install: module
	mkdir -p /lib/modules/$(KERNELVER)/kernel/drivers/greybus/
	cp -f *.ko /lib/modules/$(KERNELVER)/kernel/drivers/greybus/
	depmod -a $(KERNELVER)