From patchwork Wed Oct 23 05:40:42 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: linux-kernel-dev X-Patchwork-Id: 1181834 X-Patchwork-Delegate: sbabic@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=beckhoff.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 46yfRg3Rf1z9sPf for ; Wed, 23 Oct 2019 16:43:11 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 1A63AC21DE8; Wed, 23 Oct 2019 05:41:52 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 9F689C21DAF; Wed, 23 Oct 2019 05:41:41 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 351FFC21DAF; Wed, 23 Oct 2019 05:41:24 +0000 (UTC) Received: from netsrv01.beckhoff.com (internet2.beckhoff.com [194.25.186.210]) by lists.denx.de (Postfix) with ESMTPS id 77217C21DAF for ; Wed, 23 Oct 2019 05:41:21 +0000 (UTC) Received: from std-ryzen.beckhoff.com (172.17.66.173) by NT-Mail06.beckhoff.com (10.1.0.30) with Microsoft SMTP Server (TLS) id 14.3.301.0; Wed, 23 Oct 2019 07:41:20 +0200 From: To: Date: Wed, 23 Oct 2019 07:40:42 +0200 Message-ID: <20191023054043.22984-4-linux-kernel-dev@beckhoff.com> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20191023054043.22984-1-linux-kernel-dev@beckhoff.com> References: <20191023054043.22984-1-linux-kernel-dev@beckhoff.com> MIME-Version: 1.0 X-Originating-IP: [172.17.66.173] X-OLX-Disclaimer: Done Cc: Steffen Dirkwinkel , Patrick Bruenn Subject: [U-Boot] [PATCH 3/4] imx: cx9020: enable vidconsole by default X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" From: Steffen Dirkwinkel Acked-by: Patrick Bruenn Signed-off-by: Steffen Dirkwinkel --- configs/mx53cx9020_defconfig | 1 + include/configs/mx53cx9020.h | 3 +++ 2 files changed, 4 insertions(+) diff --git a/configs/mx53cx9020_defconfig b/configs/mx53cx9020_defconfig index 6087ed81ec9..d9c0637110e 100644 --- a/configs/mx53cx9020_defconfig +++ b/configs/mx53cx9020_defconfig @@ -43,3 +43,4 @@ CONFIG_PINCTRL_IMX5=y CONFIG_MXC_UART=y CONFIG_DM_VIDEO=y CONFIG_VIDEO_IPUV3=y +CONFIG_SYS_WHITE_ON_BLACK=y diff --git a/include/configs/mx53cx9020.h b/include/configs/mx53cx9020.h index f1007915118..5f35be5ab00 100644 --- a/include/configs/mx53cx9020.h +++ b/include/configs/mx53cx9020.h @@ -53,6 +53,9 @@ "pxefile_addr_r=0x73000000\0" \ "ramdisk_addr_r=0x72000000\0" \ "console=ttymxc1,115200\0" \ + "stdin=serial\0" \ + "stdout=serial,vidconsole\0" \ + "stderr=serial,vidconsole\0" \ "uenv=/boot/uEnv.txt\0" \ "optargs=\0" \ "cmdline=\0" \