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 BD17EC83F1B for ; Fri, 11 Jul 2025 20:57:30 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 2953F8277D; Fri, 11 Jul 2025 22:57:29 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=reject dis=none) header.from=dh-electronics.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=dh-electronics.com header.i=@dh-electronics.com header.b="uJSzmkTl"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id C0F7B82C84; Fri, 11 Jul 2025 22:57:28 +0200 (CEST) Received: from mx3.securetransport.de (mx3.securetransport.de [IPv6:2a01:4f8:c0c:92be::1]) (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 8B0E881FEE for ; Fri, 11 Jul 2025 22:57:26 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=reject dis=none) header.from=dh-electronics.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=cniedermaier@dh-electronics.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=dh-electronics.com; s=dhelectronicscom; t=1752267410; bh=8XfZfPmSIIgSkeq89KffUGN3mKxoHtKCPWTI0Wu+bpk=; h=From:To:CC:Subject:Date:References:In-Reply-To:From; b=uJSzmkTlC2k6oPQHduNiDVK0P+g/FIkm0MG05uYjWMhJV00YTIPkrh8lBa0wzm2Lr wUBa9udnxQr/SJ7bprNu+6FoLwkfXiJywWLvTbQjTLWmjHU8eUkD6q8OohLGn1YwQt 5PKMTKB8n4AXAFamd+dlInSLXeUv8zAzH66+BrwCiNdBPz3EyMMv7z0hWzO6ns1o5b eQyBf/vneLmWug0vP2hrT2UKJAQOSM+YRgwK0NcnYy32Jhc0S1Pg3pQlfPxywwBHAV DI1h12dLgwR61TBB85qgtulvsAEqtuXfr3BHdy2W3JPtouj23v8kzjMqSsYXkv1Vtz yA3RTr4KCTQXw== X-secureTransport-forwarded: yes From: Christoph Niedermaier Complaints-To: abuse@cubewerk.de To: Tom Rini CC: "u-boot@lists.denx.de" , Andy Shevchenko , Christian Marangi , Heinrich Schuchardt , "Ilias Apalodimas" , Jerome Forissier , Joe Hershberger , Marek Vasut , Michal Simek , "Patrick Delaunay" , Rasmus Villemoes , Simon Glass , Venkatesh Yadav Abbarapu Subject: RE: [PATCH V4 0/3] cmd: env: select: Add output for available environment targets Thread-Topic: [PATCH V4 0/3] cmd: env: select: Add output for available environment targets Thread-Index: AQHb6dGg1PMbxiI2V0e6dQQ7cHE56LQqhxUAgAKY0NCAAADmgIAANquw Date: Fri, 11 Jul 2025 20:56:47 +0000 Message-ID: <073f00355c2d490ab8242e129d662ecf@dh-electronics.com> References: <20250630151232.39100-1-cniedermaier@dh-electronics.com> <20250710015826.GY6424@bill-the-cat> <7d8b712b9e71485ca6f057e95f19af1e@dh-electronics.com> <20250711174107.GK6424@bill-the-cat> In-Reply-To: <20250711174107.GK6424@bill-the-cat> Accept-Language: de-DE, en-US Content-Language: de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable 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 From: Tom Rini Sent: Friday, July 11, 2025 7:41 PM > On Fri, Jul 11, 2025 at 05:37:55PM +0000, Christoph Niedermaier wrote: >> From: Tom Rini >> Sent: Thursday, July 10, 2025 3:58 AM >>> Subject: Re: [PATCH V4 0/3] cmd: env: select: Add output for available = environment targets >>> >>> On Mon, Jun 30, 2025 at 05:12:29PM +0200, Christoph Niedermaier wrote: >>> >>>> Add the "-l" parameter to the "env select" command to print the availa= ble >>>> environment targets, convert all argument parsing in the file nvedit.c= to >>>> getopt() and check that with unit tests. >>>> >>>> The first patch converts the parsing of arguments to getopt() for all = env >>>> commands. The second one adds unit tests for checking the env command. >>>> These were used to check the env commands before and after the convers= ion. >>>> The third patch adds the actual new parameter "-l" for the "env select= " >>>> command. >>>> >>>> Christoph Niedermaier (3): >>>> cmd: nvedit: Convert the parsing of arguments to getopt() >>>> test: cmd: nvedit: Add basic unit tests >>>> cmd: env: select: Add output for available environment targets >>> >>> Can you please make a v5 that's run through CI? I saw that am64x_evm_a5= 3 >>> fails to build now and I'm seeing the tests fail too: >>> https://source.denx.de/u-boot/u-boot/-/jobs/1196652 >> >> Sorry, I will have a look at it and make a new version. >> Are my patches also the cause of the build issue with am64x_evm_a53? >=20 > Yes, something in the series was leading to at least that platform and > likely many others (I saw that in my local board testing, CI failed the > pipeline before getting to the world stage so I don't know all of the > ones that failed). OK, then I will also have a look at it. Thanks for the clarification. Regards Christoph