From e1dc579ddef674984c6fcb682ba94f6781572a14 Mon Sep 17 00:00:00 2001 From: Ji Luo Date: Thu, 1 Aug 2019 18:59:03 +0800 Subject: [PATCH] MA-15282 Set AIY display as 720p mode Setting the "androidboot.gui_resolution" will not make AIY use 720p ui resolution, set the "androidboot.displaymode" instead. Test: boot on AIY. Change-Id: I6575a77e23308946d02cf5faf56105fccc0b25b8 Signed-off-by: Ji Luo --- board/freescale/imx8mq_aiy/imx8m_aiy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/freescale/imx8mq_aiy/imx8m_aiy.c b/board/freescale/imx8mq_aiy/imx8m_aiy.c index cb48fc33ec..c6a413c686 100644 --- a/board/freescale/imx8mq_aiy/imx8m_aiy.c +++ b/board/freescale/imx8mq_aiy/imx8m_aiy.c @@ -439,9 +439,9 @@ int board_late_init(void) if ((baseboard_id == AIY_MICRON_1G) || (baseboard_id == AIY_HYNIX_1G)) { /* 1G DDR size */ - env_set("bootargs_ram_capacity", "cma=296M galcore.contiguousSize=33554432 androidboot.gui_resolution=720p"); + env_set("bootargs_ram_capacity", "cma=296M galcore.contiguousSize=33554432 androidboot.displaymode=720p"); } else { - env_set("bootargs_ram_capacity", "cma=384M androidboot.gui_resolution=1080p"); + env_set("bootargs_ram_capacity", "cma=384M"); } return 0; -- 2.17.1