From: Eric Nelson Date: Thu, 2 Oct 2014 19:16:22 +0000 (-0700) Subject: nitrogen6x: implement board_cfb_skip() to disable text output X-Git-Tag: v2014.10~3^2~19^2~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c9c86bde3d8d24a9eee06f64eaa2e14206c76d77;p=platform%2Fkernel%2Fu-boot.git nitrogen6x: implement board_cfb_skip() to disable text output Several customers have asked to leave the display quiet during boot, so allow the user to express this request by the presence of environment variable "novideo". Signed-off-by: Eric Nelson --- diff --git a/board/boundary/nitrogen6x/nitrogen6x.c b/board/boundary/nitrogen6x/nitrogen6x.c index 60a09f4..1a6edac 100644 --- a/board/boundary/nitrogen6x/nitrogen6x.c +++ b/board/boundary/nitrogen6x/nitrogen6x.c @@ -558,6 +558,11 @@ struct display_info_t const displays[] = {{ } } }; size_t display_count = ARRAY_SIZE(displays); +int board_cfb_skip(void) +{ + return NULL != getenv("novideo"); +} + static void setup_display(void) { struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;