From patchwork Thu Apr 25 22:54:08 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marek Vasut X-Patchwork-Id: 1927967 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=denx.de header.i=@denx.de header.a=rsa-sha256 header.s=phobos-20191101 header.b=MRnhmzf1; dkim=pass (2048-bit key) header.d=denx.de header.i=@denx.de header.a=rsa-sha256 header.s=phobos-20191101 header.b=hkoIsytL; dkim-atps=neutral Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.denx.de (client-ip=2a01:238:438b:c500:173d:9f52:ddab:ee01; helo=phobos.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=patchwork.ozlabs.org) Received: from phobos.denx.de (phobos.denx.de [IPv6:2a01:238:438b:c500:173d:9f52:ddab:ee01]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4VQWQt3YYFz1ybC for ; Fri, 26 Apr 2024 08:55:18 +1000 (AEST) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 213D389073; Fri, 26 Apr 2024 00:55:08 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1714085708; bh=USde/yJLp2BkriOXtMmdOMKP7C9qrkXGy6oqbKaMvZ0=; h=From:To:Cc:Subject:Date:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:List-Subscribe:From; b=MRnhmzf1IxE0M62IWO1BZQoTVe87xSAFelAwheKglzRxm7iVCzZiE6VyEzGmFj8Ds gCxcvudNRs1hBurF+ylmJXTAcFL6dMV4jPoh8Tui9Q33WAStnYkTedQ7Eh1s4kAc0a 9oClo7ddL5CV9U+IZf4+Nt+H/6HUm5r61RPqXGuunW3jXIs1/EEMnfn3bV9s+XHjj6 2qIo1IEUHEz+FZwhouJdjVMJd9THofzfo8l3iV0p4UYLSlCAtnKAY+a2/5RxDGO5/5 FXree2W0FLnMuhC7lwqpJVdz8lPYborbH2xfCDANi8p0uBms94hUl7iKcDnvH8/u0n HRQlgNWY+WdMA== Received: from tr.lan (ip-86-49-120-218.bb.vodafone.cz [86.49.120.218]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: marex@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id 0D4CD87F2A; Fri, 26 Apr 2024 00:55:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1714085706; bh=USde/yJLp2BkriOXtMmdOMKP7C9qrkXGy6oqbKaMvZ0=; h=From:To:Cc:Subject:Date:From; b=hkoIsytLvVpisd/10p4ZSSiSvjWcqQenFXtNJgyHB4XVr2umS8m3RYeFKsfhXE65t dR5bPvUUgd0ceJp9Chz8ymWfN0ruTDT/dTS7LBll52mQLmDZHmkuKJitJIRj9Gqm7g TauEhrsgMI1Dgsrg+djb9eAeFPADsOidmDH9T3MeZNDjiV2YBsL8FgyakSbhNutpG6 J/NvhSKEc2Qj1cBUDfKqvWMTOK21wJdOEkcazTb/CU5ODN4zIkNmUpokBxyqaKgBEW zhWFNpIfI3IdUGNAzh88fvKcfTZGYiJ0HRdDr9mGEXvGRi1yjXUIroqAKCbqTVelbF imv4s4cuJ6NRg== From: Marek Vasut To: u-boot@lists.denx.de Cc: Marek Vasut , Alper Nebi Yasak , Simon Glass , Tom Rini Subject: [PATCH] binman: Fix typo in mkimage etype description Date: Fri, 26 Apr 2024 00:54:08 +0200 Message-ID: <20240425225452.496150-1-marex@denx.de> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 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.8 at phobos.denx.de X-Virus-Status: Clean Fix a typo, no functional change. Signed-off-by: Marek Vasut Reviewed-by: Quentin Schulz --- Cc: Alper Nebi Yasak Cc: Simon Glass Cc: Tom Rini Cc: u-boot@lists.denx.de --- tools/binman/btool/mkimage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/binman/btool/mkimage.py b/tools/binman/btool/mkimage.py index d5b407c5547..39a4c8c1432 100644 --- a/tools/binman/btool/mkimage.py +++ b/tools/binman/btool/mkimage.py @@ -11,7 +11,7 @@ class Bintoolmkimage(bintool.Bintool): """Image generation for U-Boot This bintool supports running `mkimage` with some basic parameters as - neeed by binman. + needed by binman. Normally binman uses the mkimage built by U-Boot. But when run outside the U-Boot build system, binman can use the version installed in your system.