From patchwork Sat Oct 21 10:51:13 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 828925 X-Patchwork-Delegate: yamada.m@jp.panasonic.com 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; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b="VcyhokDw"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3yJzxZ65ZHz9t2t for ; Sat, 21 Oct 2017 21:51:45 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 569CAC21C39; Sat, 21 Oct 2017 10:51:36 +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=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 DC23DC21C39; Sat, 21 Oct 2017 10:51:33 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 74C9CC21C39; Sat, 21 Oct 2017 10:51:32 +0000 (UTC) Received: from conuserg-08.nifty.com (conuserg-08.nifty.com [210.131.2.75]) by lists.denx.de (Postfix) with ESMTPS id 224BEC21C26 for ; Sat, 21 Oct 2017 10:51:30 +0000 (UTC) Received: from grover.sesame (FL1-122-131-185-176.osk.mesh.ad.jp [122.131.185.176]) (authenticated) by conuserg-08.nifty.com with ESMTP id v9LApKnJ009310; Sat, 21 Oct 2017 19:51:20 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com v9LApKnJ009310 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1508583081; bh=TMeqi8jpZNZoYd/YUOvweWPxAKEHPsGyjxKYvlaci8U=; h=From:To:Cc:Subject:Date:From; b=VcyhokDwTIxKOQwS10iZVNi8J8n9nZDMIY94q9xwUpLJJBb/6F0MFxPT8LPpt7YJO aO6+TbJutAkmdd5EDLKT7xW6ikzb5avQ3O7bVB1KcISDvN6ghY1bZ2PyGEe8O0M/9v Jen1e9ZbpMDMUSmOIeZf3EwVdbP/gEDHC9mrlngtDETShNcQRbz9TdpSH0kz+1JrFV cPFLTTlkO6UY6Q+q9K2PpMCQl/X0rQZrx1ZUIdMSR8CbL9qVzgOSJO549B7u2dMBGa oIBZlko/CihH/SwerlBkwRP3Z/H3VXftm9aQmTGhMeVAJVIYdxOoYyQQzZV0ynhf+3 gUHt0m4BSrxkA== X-Nifty-SrcIP: [122.131.185.176] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Sat, 21 Oct 2017 19:51:13 +0900 Message-Id: <1508583073-11936-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Subject: [U-Boot] [PATCH] ARM: uniphier: remove verify=n from environments 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" If the environment "verify" is set to n, the image verification is entirely skipped. Remove it as a preparation for verified boot. Signed-off-by: Masahiro Yamada --- include/configs/uniphier.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h index abee461..83d3b09 100644 --- a/include/configs/uniphier.h +++ b/include/configs/uniphier.h @@ -199,7 +199,6 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "netdev=eth0\0" \ - "verify=n\0" \ "initrd_high=0xffffffffffffffff\0" \ "nor_base=0x42000000\0" \ "sramupdate=setexpr tmp_addr $nor_base + 0x50000 &&" \