Skip to content
Snippets Groups Projects
Commit c9c86bde authored by Eric Nelson's avatar Eric Nelson Committed by Stefano Babic
Browse files

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: default avatarEric Nelson <eric.nelson@boundarydevices.com>
parent 39d09733
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment