Skip to content

Commit

Permalink
Tested it now
Browse files Browse the repository at this point in the history
  • Loading branch information
neggles committed May 11, 2021
1 parent 1832f1e commit 3207b4d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ all: check_dkms $(BUILDDIRS)
modules_install: $(BUILDDIRS)
$(DIRS): $(BUILDDIRS)
$(BUILDDIRS):
$(MAKE) -C $(@:build-%=%) $(MAKECMDGOALS)
$(MAKE) -C $(@:build-%=%) $(MAKECMDGOALS) KERNELRELEASE=$(KERNELRELEASE)

clean: $(CLEANDIRS) clean_dtbo
clean: $(CLEANDIRS)
$(CLEANDIRS):
$(MAKE) -C $(@:clean-%=%) $(MAKECMDGOALS)
$(MAKE) -C $(@:clean-%=%) $(MAKECMDGOALS) KERNELRELEASE=$(KERNELRELEASE)

install: $(INSTALLDIRS)
modules_install: $(INSTALLDIRS)
Expand Down
6 changes: 3 additions & 3 deletions overlays/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ always-y += $(dtbo-y)
clean-files := $(dtbo-y)

all:
$(MAKE) -C $(KDIR) M=$(PWD) DTC_INCLUDE=$(DTC_INCLUDE)
$(MAKE) -C $(KDIR) M=$(PWD) DTC_INCLUDE=$(DTC_INCLUDE)

clean:
$(MAKE) -C $(KDIR) M=$(PWD) clean
$(MAKE) -C $(KDIR) M=$(PWD) clean

install: $(modules_install)
modules_install:
cp $(dtbo-y) /boot/overlays/
cp $(dtbo-y) /boot/overlays/

0 comments on commit 3207b4d

Please sign in to comment.