diff options
author | Ye Li <ye.li@nxp.com> | 2017-02-15 17:45:17 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2017-04-05 17:24:35 +0800 |
commit | be3d3d5c140a1617c1ce35e8657f2d45bc8c70eb (patch) | |
tree | 750bfe36238116f16eceba048b2160b77376aadb /arch | |
parent | fce3f6e59f6ae5a171bbb6581420712c4aaa14c3 (diff) | |
download | u-boot-imx-be3d3d5c140a1617c1ce35e8657f2d45bc8c70eb.zip u-boot-imx-be3d3d5c140a1617c1ce35e8657f2d45bc8c70eb.tar.gz u-boot-imx-be3d3d5c140a1617c1ce35e8657f2d45bc8c70eb.tar.bz2 |
MLK-13929-6 mx7ulp_evk: Enable the MIPI DSI splashscreen
Enable and setup board level codes for MIPI DSI splashscreen on EVK board.
User needs set env variable"panel=HX8363_WVGA" for displaying.
Signed-off-by: Ye Li <ye.li@nxp.com>
(cherry picked from commit 49cb68f5c17e42f9290336e1252ace6ac7d0b5ce)
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/imx-common/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/imx-common/Makefile b/arch/arm/imx-common/Makefile index f428d82..d862258 100644 --- a/arch/arm/imx-common/Makefile +++ b/arch/arm/imx-common/Makefile @@ -17,7 +17,7 @@ endif ifeq ($(SOC),$(filter $(SOC),mx5)) obj-y += timer.o endif -ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs)) +ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs mx7ulp)) obj-y += misc.o obj-$(CONFIG_SPL_BUILD) += spl.o endif @@ -37,6 +37,7 @@ obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o endif ifeq ($(SOC),$(filter $(SOC),mx7ulp)) obj-y += cache.o +obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o obj-$(CONFIG_SECURE_BOOT) += hab.o endif ifeq ($(SOC),$(filter $(SOC),vf610)) |