summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>2012-06-29 10:54:43 +0200
committerBernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>2012-06-29 10:54:43 +0200
commit63867ceb01f8f6ffe8bc4cad5afb94b87583d477 (patch)
tree10449e4672857a5d7119cdf4d3c2bb6dfcaa2558
parent13e1957d2a2383fc8f42cc173de9d1f591a1bc05 (diff)
downloadimx6-63867ceb01f8f6ffe8bc4cad5afb94b87583d477.tar.gz
imx6: Fix DT detection, the Makefile is run relative to the toplevel dirlinaro-ics
Change-Id: I680580b67ab36cbd9d5ed31b07c030631e9206f4 Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
-rw-r--r--BoardConfig.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk
index 1f1e845..3fe2807 100644
--- a/BoardConfig.mk
+++ b/BoardConfig.mk
@@ -7,7 +7,7 @@ TARGET_BOARD_PLATFORM := imx6
TARGET_NO_BOOTLOADER := true # Uses u-boot instead
TARGET_NO_KERNEL := false
KERNEL_CONFIG := imx6_android_defconfig
-DT_SUPPORT := $(shell if test -e ../../../kernel/arch/arm/boot/dts/imx6q-sabrelite.dts; then echo -n yes; else echo -n no; fi )
+DT_SUPPORT := $(shell if test -e kernel/arch/arm/boot/dts/imx6q-sabrelite.dts; then echo -n yes; else echo -n no; fi )
ifneq ($(DT_SUPPORT),no)
DEVICE_TREES := imx6q-sabrelite:board.dtb
endif