From: Peter Korsgaard Date: Sun, 4 Oct 2015 18:12:41 +0000 (+0200) Subject: linux: install dtc binary as linux-dtc X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ab74e09eb4e28dab8bed8d783c5f0464d39a32e7;p=buildroot.git linux: install dtc binary as linux-dtc So it doesn't conflict with host-dtc. The Linux kernel version may be a patched version supporting E.G. overlays. Signed-off-by: Peter Korsgaard --- diff --git a/linux/linux.mk b/linux/linux.mk index 231957628a..c98459f330 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -294,7 +294,7 @@ endif define LINUX_INSTALL_HOST_TOOLS # Installing dtc (device tree compiler) as host tool, if selected if grep -q "CONFIG_DTC=y" $(@D)/.config; then \ - $(INSTALL) -D -m 0755 $(@D)/scripts/dtc/dtc $(HOST_DIR)/usr/bin/dtc ; \ + $(INSTALL) -D -m 0755 $(@D)/scripts/dtc/dtc $(HOST_DIR)/usr/bin/linux-dtc ; \ fi endef