From patchwork Tue May 7 21:53:48 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pierre-Jean Texier X-Patchwork-Id: 1096571 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 (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=fail (p=quarantine dis=none) header.from=koncepto.io Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=koncepto.io header.i=@koncepto.io header.b="AA0IPFQM"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 44zD1P1sgXz9s4Y for ; Wed, 8 May 2019 07:55:19 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id F2C86C21EA6; Tue, 7 May 2019 21:55:09 +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=SPF_HELO_PASS, T_DKIM_INVALID 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 0E762C21C57; Tue, 7 May 2019 21:55:07 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id A23AEC21C57; Tue, 7 May 2019 21:55:05 +0000 (UTC) Received: from koncepto.io (koncepto.io [195.154.119.111]) by lists.denx.de (Postfix) with ESMTPS id 51E68C21C50 for ; Tue, 7 May 2019 21:55:05 +0000 (UTC) Received: from localhost.localdomain (lfbn-1-8938-37.w193-250.abo.wanadoo.fr [193.250.79.37]) by koncepto.io (Postfix) with ESMTPSA id 0837B600BB; Tue, 7 May 2019 23:55:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=koncepto.io; s=default; t=1557266104; bh=QrLCzY1LxhlI/7TB4Vzikn5tmKbc8Jjj37QuM+XQK5o=; h=From:To:Cc:Subject:Date:From; b=AA0IPFQMA+ZlKJoWOgK86fwP9JrpuDVg4f7QYrMyUd3IsPIKPJt7ARnc2lhsgsWdT YsAkGW0pKtEpP6pOBjIIiJ2XZyHVea7V+Jd82fOvoY71FOAGyP/wXdKF1qAT6rGlGZ 7YCkWXcFsyJyGzPFUgK8efGBonP6lmSyQM/fjFlTQqeGh6CdNN72zCU7GcAj6m/siO 0QXzOPQaVXQ5yjpvVYF1NjfzlXt4E2MWzRZS9O3qiNATGWcssysM2pH6SvRGNReAEL 0DxoBy+wskCypHF1n8JXsLNdYsyv7EvjGw3klKXnOAusg6n4fwhCt5tAezcuUvaXbc 1LceZQeLWpMEg== From: Pierre-Jean Texier To: u-boot@lists.denx.de Date: Tue, 7 May 2019 23:53:48 +0200 Message-Id: <1557266028-28294-1-git-send-email-pjtexier@koncepto.io> X-Mailer: git-send-email 2.7.4 Cc: fabio.estevam@nxp.com, vanessa.maegima@nxp.com Subject: [U-Boot] [PATCH] pico-imx7d: remove unused 'script' variable 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" Since the pico-pi uses the distroboot, this commit remove the 'script' variable (cf boot_scripts). Signed-off-by: Pierre-Jean Texier Reviewed-by: Fabio Estevam --- include/configs/pico-imx7d.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/pico-imx7d.h b/include/configs/pico-imx7d.h index 365a598..a6838b3 100644 --- a/include/configs/pico-imx7d.h +++ b/include/configs/pico-imx7d.h @@ -61,7 +61,6 @@ #define CONFIG_SYS_MMC_IMG_LOAD_PART 1 #define CONFIG_EXTRA_ENV_SETTINGS \ - "script=boot.scr\0" \ "image=zImage\0" \ "splashpos=m,m\0" \ "console=ttymxc4\0" \