Skip to content

Commit

Permalink
Script: updated kernel modules dependency generation
Browse files Browse the repository at this point in the history
  • Loading branch information
ppaulweber committed Aug 28, 2019
1 parent 153357d commit 3c79c44
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
VERSION=5.1.5
PREFIX=linux
POSTFIX=mba
KERNEL=$(PREFIX)-$(VERSION)-$(POSTFIX)+
MODULE=/lib/modules/$(VERSION)-$(POSTFIX)
UNAME=$(VERSION)-$(POSTFIX)+
KERNEL=$(PREFIX)-$(UNAME)
MODULE=/lib/modules/$(UNAME)

BCE_SOURCES=https://github.com/MCMrARM/mbp2018-bridge-drv
BCE_VERSION=master
Expand Down Expand Up @@ -77,7 +78,7 @@ install-modules: $(MODULE)/kernel/extra
@echo "-- Installing applespi module"
cp -f linux-module-applespi/applespi.ko $(MODULE)/kernel/extra/
@echo "-- Updating Linux kernel module dependencies"
depmod -a
depmod -a $(UNAME)

install-systemd:
@echo "-- Installing systemd configuration"
Expand Down

0 comments on commit 3c79c44

Please sign in to comment.