diff options
author | Peng Fan <van.freenix@gmail.com> | 2016-01-04 12:19:14 +0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-01-07 17:51:47 +0100 |
commit | ce2190f52523f36e42b702a5b59eb202aae565b2 (patch) | |
tree | ede27c181d5108520a11e47e06b0ce676f1a0ab3 /include/configs | |
parent | 7ea191aa10c43b5497d171ab6f48e633e6779468 (diff) | |
download | u-boot-imx-ce2190f52523f36e42b702a5b59eb202aae565b2.zip u-boot-imx-ce2190f52523f36e42b702a5b59eb202aae565b2.tar.gz u-boot-imx-ce2190f52523f36e42b702a5b59eb202aae565b2.tar.bz2 |
imx: mx6ul: disable VIDEO for SPL
With DEBUG macro enabled, SPL build failure:
"
arch/arm/cpu/armv7/built-in.o: In function `reset_misc':
~/uboot/arch/arm/cpu/armv7/mx6/soc.c:406: undefined reference to `lcdif_power_down'
scripts/Makefile.spl:244: recipe for target 'spl/u-boot-spl' failed
"
Wrap VIDEO settings with ifndef CONFIG_SPL_BUILD
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
Reviewed-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/mx6ul_14x14_evk.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/mx6ul_14x14_evk.h b/include/configs/mx6ul_14x14_evk.h index 2712b27..c946176 100644 --- a/include/configs/mx6ul_14x14_evk.h +++ b/include/configs/mx6ul_14x14_evk.h @@ -241,6 +241,7 @@ #define CONFIG_IMX_THERMAL +#ifndef CONFIG_SPL_BUILD #define CONFIG_VIDEO #ifdef CONFIG_VIDEO #define CONFIG_CFB_CONSOLE @@ -257,5 +258,6 @@ #define CONFIG_VIDEO_BMP_LOGO #define MXS_LCDIF_BASE MX6UL_LCDIF1_BASE_ADDR #endif +#endif #endif |