forked from jonsmirl/mpc5200
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
Move dtbs install rules to Makefile.dtbinst. This change is needed to implement support for dts vendor subdirs. The change makes Makefiles easier and smaller as no longer the dtbs_install rule needs to be defined. Another advantage is that install goals are not encoded in targets anymore (%.dtb_dtbinst_). Signed-off-by: Robert Richter <[email protected]>
- Loading branch information
Robert Richter
committed
Oct 21, 2014
1 parent
862f464
commit 9fb5e53
Showing
7 changed files
with
54 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# ========================================================================== | ||
# Installing dtb files | ||
# | ||
# Installs all dtb files listed in $(dtb-y) either in the | ||
# INSTALL_DTBS_PATH directory or the default location: | ||
# | ||
# $INSTALL_PATH/dtbs/$KERNELRELEASE | ||
# | ||
# ========================================================================== | ||
|
||
src := $(obj) | ||
|
||
PHONY := __dtbs_install | ||
__dtbs_install: | ||
|
||
include include/config/auto.conf | ||
include scripts/Kbuild.include | ||
include $(srctree)/$(obj)/Makefile | ||
|
||
PHONY += __dtbs_install_prep | ||
__dtbs_install_prep: | ||
$(Q)if [ -d $(INSTALL_DTBS_PATH).old ]; then rm -rf $(INSTALL_DTBS_PATH).old; fi | ||
$(Q)if [ -d $(INSTALL_DTBS_PATH) ]; then mv $(INSTALL_DTBS_PATH) $(INSTALL_DTBS_PATH).old; fi | ||
$(Q)mkdir -p $(INSTALL_DTBS_PATH) | ||
|
||
dtbinst-files := $(dtb-y) | ||
|
||
# Helper targets for Installing DTBs into the boot directory | ||
quiet_cmd_dtb_install = INSTALL $< | ||
cmd_dtb_install = cp $< $(2) | ||
|
||
$(dtbinst-files): %.dtb: $(obj)/%.dtb | __dtbs_install_prep | ||
$(call cmd,dtb_install,$(INSTALL_DTBS_PATH)) | ||
|
||
PHONY += $(dtbinst-files) | ||
__dtbs_install: $(dtbinst-files) | ||
|
||
.PHONY: $(PHONY) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters