From patchwork Thu Sep 19 17:30:12 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anatolij Gustschin X-Patchwork-Id: 1164782 X-Patchwork-Delegate: agust@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) 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=denx.de Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 46Z3sb0TqVz9s4Y for ; Fri, 20 Sep 2019 03:35:46 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id BBE7FC21E13; Thu, 19 Sep 2019 17:32:35 +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 3E038C21DD3; Thu, 19 Sep 2019 17:32:34 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 256E4C21E2F; Thu, 19 Sep 2019 17:30:25 +0000 (UTC) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.10]) by lists.denx.de (Postfix) with ESMTPS id 0EAFBC21DF9 for ; Thu, 19 Sep 2019 17:30:22 +0000 (UTC) Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 46Z3lK6C3xz1rGRc; Thu, 19 Sep 2019 19:30:21 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 46Z3lK5yXpz1qqkM; Thu, 19 Sep 2019 19:30:21 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id YfwoyDqQE-P0; Thu, 19 Sep 2019 19:30:20 +0200 (CEST) X-Auth-Info: bUdIKdE6kL9RnKkcNdpT7KTpXhAziRPE+k6dcXMt9MQ= Received: from crub.agik.hopto.org (p54833695.dip0.t-ipconnect.de [84.131.54.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Thu, 19 Sep 2019 19:30:20 +0200 (CEST) From: Anatolij Gustschin To: u-boot@lists.denx.de Date: Thu, 19 Sep 2019 19:30:12 +0200 Message-Id: <20190919173015.18692-5-agust@denx.de> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190919173015.18692-1-agust@denx.de> References: <20190919173015.18692-1-agust@denx.de> Cc: Fabio Estevam , Max Krummenacher Subject: [U-Boot] [PATCH 4/7] imx: apalis_imx6: fix splash logo drawing 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: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Define "splashimage" variable in the default environment to enable splash screen drawing. Signed-off-by: Anatolij Gustschin --- include/configs/apalis_imx6.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/apalis_imx6.h b/include/configs/apalis_imx6.h index 4eceb10e8f..c3bc3943f4 100644 --- a/include/configs/apalis_imx6.h +++ b/include/configs/apalis_imx6.h @@ -213,6 +213,7 @@ "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \ "source ${loadaddr}\0" \ "splashpos=m,m\0" \ + "splashimage=" __stringify(CONFIG_LOADADDR) "\0" \ "vidargs=mxc_hdmi.only_cea=1 " \ "video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24 " \ "video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off " \