diff options
author | 2013-03-27 23:01:15 +0000 | |
---|---|---|
committer | 2013-08-01 17:39:43 +0200 | |
commit | 235535405cd076b31eb9d355a0e00ba663eca705 (patch) | |
tree | b6a8605906d03c181dad8aa1a2de7aa424800d06 | |
parent | 1ac04c321f892f6b93c0fb548b34be85f8426dc8 (diff) | |
download | buildroot-235535405cd076b31eb9d355a0e00ba663eca705.tar.gz buildroot-235535405cd076b31eb9d355a0e00ba663eca705.tar.bz2 |
Install DTB as part of images install command
When installing DTB to the images directory, do this as part of the image
install commands rather than the target install commands.
Signed-off-by: Reuben Dowle <reuben.dowle@4rf.com.az>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | linux/linux.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/linux.mk b/linux/linux.mk index fc379ec499..578d535c3c 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -265,11 +265,11 @@ endef define LINUX_INSTALL_IMAGES_CMDS cp $(LINUX_IMAGE_PATH) $(BINARIES_DIR) + $(LINUX_INSTALL_DTB) endef define LINUX_INSTALL_TARGET_CMDS $(LINUX_INSTALL_KERNEL_IMAGE_TO_TARGET) - $(LINUX_INSTALL_DTB) # Install modules and remove symbolic links pointing to build # directories, not relevant on the target @if grep -q "CONFIG_MODULES=y" $(@D)/.config; then \ |