From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DBC91C636CC for ; Thu, 16 Feb 2023 11:26:43 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 22F3885AEC; Thu, 16 Feb 2023 12:26:40 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=reject dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="FBuyZc4H"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 04C3F85AF5; Thu, 16 Feb 2023 12:26:38 +0100 (CET) Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 3B65F85AAF for ; Thu, 16 Feb 2023 12:26:35 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=reject dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=eugen.hristev@collabora.com Received: from [192.168.0.125] (unknown [82.76.24.202]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: ehristev) by madras.collabora.co.uk (Postfix) with ESMTPSA id F1EB866021A4; Thu, 16 Feb 2023 11:26:33 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1676546794; bh=HvjNq2aEAkGLEYX4ZvquPmMhvrNIg66YNwgLSZquLkQ=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=FBuyZc4HexGNItm+Y1yGmga59xev83v5dgBFrBx2vZfcqjH+yTcBaJqpKw6gMOSu1 BpL35NLHBqQsMhRmuWGV29a2FVGSQMPyA3s4yeu/b7WWKl3xPq1QpE5zTgHDTt44me vQIzdds2sJSZnK8xGMrrt1DLhVEo/yVOIINVDOnjwrinVYNh9ebsxMclzCzfVvJIV+ h37rvga/gAIstsvtc46m96mhM+ba3Df5s7nQlpZYESxgKqoXDXExjU70kNi+F2yDG0 KykF9WxC1Q4GrY8wRayj/H1cUkagZGTTKnf0/J164pLAzHiKnJTSyYs10ptEdQPN5I Dgo2wNUrS9P3w== Message-ID: <46eb9624-3234-e029-81cc-7bb8926de205@collabora.com> Date: Thu, 16 Feb 2023 13:26:31 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: [PATCH v2 1/6] binman: Add support for a rockchip-tpl entry Content-Language: en-US To: Jonas Karlman , Simon Glass , Philipp Tomsich , Kever Yang , Joseph Chen , Alper Nebi Yasak Cc: Quentin Schulz , Jagan Teki , Heinrich Schuchardt , u-boot@lists.denx.de References: <20230205202116.2891673-1-jonas@kwiboo.se> <20230214103300.690542-1-jonas@kwiboo.se> <20230214103300.690542-2-jonas@kwiboo.se> From: Eugen Hristev In-Reply-To: <20230214103300.690542-2-jonas@kwiboo.se> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean On 2/14/23 12:33, Jonas Karlman wrote: > The rockchip-tpl entry can be used when an external TPL binary should be > used instead of the normal U-Boot TPL. > > Signed-off-by: Jonas Karlman > --- > v2: > - rename external-tpl to rockchip-tpl > - missing message moved to this patch > > tools/binman/entries.rst | 14 ++++++++++++++ > tools/binman/etype/rockchip_tpl.py | 20 ++++++++++++++++++++ > tools/binman/ftest.py | 7 +++++++ > tools/binman/missing-blob-help | 5 +++++ > tools/binman/test/277_rockchip_tpl.dts | 16 ++++++++++++++++ > 5 files changed, 62 insertions(+) > create mode 100644 tools/binman/etype/rockchip_tpl.py > create mode 100644 tools/binman/test/277_rockchip_tpl.dts Hi Jonas, Is it possible to add the filename 'rockchip-tpl' to gitignore, such that it won't show up all the time when you do git status ? (in the case where you place the rockchip-tpl in the same dir ) Otherwise, I tested your series: Tested-by: Eugen Hristev Eugen