Re: [PATCH 1/3] test_fs: Allow running unprivileged

2024-08-18 Thread Richard Weinberger
Am Freitag, 16. August 2024, 00:14:18 CEST schrieb Tom Rini: > This brings two new pylint errors: > test/py/tests/fs_helper.py:47:12: E0704: The raise statement is not inside an > except clause (misplaced-bare-raise) This raise was on purpose, I wanted the test to fail when an unsupported filesy

Re: [PATCH] Kconfig: clean up the efi configuration status

2024-08-18 Thread Simon Glass
Hi Ilias, On Fri, 16 Aug 2024 at 19:49, Ilias Apalodimas wrote: > > Hi Simon > > On mobile apologies for any weird formatting in advance. > > On Fri, Aug 16, 2024, 04:34 Simon Glass wrote: >> >> Hi Ilias, >> >> On Thu, 15 Aug 2024 at 15:11, Ilias Apalodimas >> wrote: >> > >> > >> > >> > On Thu,

Re: [PATCH 1/3] test_fs: Allow running unprivileged

2024-08-18 Thread Simon Glass
Hi Richard, On Sun, Aug 18, 2024, 03:11 Richard Weinberger wrote: > > Am Freitag, 16. August 2024, 00:14:18 CEST schrieb Tom Rini: > > This brings two new pylint errors: > > test/py/tests/fs_helper.py:47:12: E0704: The raise statement is not inside > > an except clause (misplaced-bare-raise) > >

Re: [PATCH v3 1/1] ata: sata_rescan must scan for block devices

2024-08-18 Thread Simon Glass
Hi Tony, On Sun, 18 Aug 2024 at 06:01, Tony Dinh wrote: > > Hi Simon, > > On Fri, Aug 16, 2024 at 3:32 AM Simon Glass wrote: > > > > Hi Heinrich, > > > > On Wed, 14 Aug 2024 at 06:53, Heinrich Schuchardt > > wrote: > > > > > > On 14.08.24 14:40, Simon Glass wrote: > > > > On Wed, 14 Aug 2024 at

Re: [PATCH 1/3] test_fs: Allow running unprivileged

2024-08-18 Thread Richard Weinberger
Simon, Am Sonntag, 18. August 2024, 17:25:37 CEST schrieb Simon Glass: > > So, can we please have mkimage inside the Docker image? > > Sorry about all your trouble. Perhaps we should add a comment about No need to worry. :) > specifically what the code is for. Also, once you get all this in, we

Re: [PATCH 1/3] test_fs: Allow running unprivileged

2024-08-18 Thread Simon Glass
Hi Richard, On Sun, 18 Aug 2024 at 16:37, Richard Weinberger wrote: > > Simon, > > Am Sonntag, 18. August 2024, 17:25:37 CEST schrieb Simon Glass: > > > So, can we please have mkimage inside the Docker image? > > > > Sorry about all your trouble. Perhaps we should add a comment about > > No need

Re: [PATCH v3 8/9] ubi: implement support for LED activity

2024-08-18 Thread Christian Marangi
On Wed, Aug 14, 2024 at 06:33:12AM +0200, Heiko Schocher wrote: > Hello Christian, > > On 12.08.24 12:32, Christian Marangi wrote: > > Implement support for LED activity. If the feature is enabled, > > make the defined ACTIVITY LED to signal ubi write operation. > > > > Signed-off-by: Christian M

Re: [PATCH v3 8/9] ubi: implement support for LED activity

2024-08-18 Thread Christian Marangi
On Wed, Aug 14, 2024 at 10:17:18AM +0200, Michael Nazzareno Trimarchi wrote: > Hi all > > On Wed, Aug 14, 2024 at 6:34 AM Heiko Schocher wrote: > > > > Hello Christian, > > > > On 12.08.24 12:32, Christian Marangi wrote: > > > Implement support for LED activity. If the feature is enabled, > > > m

Re: [PATCH v3 8/9] ubi: implement support for LED activity

2024-08-18 Thread Michael Nazzareno Trimarchi
Hi On Sun, Aug 18, 2024 at 6:24 PM Christian Marangi wrote: > > On Wed, Aug 14, 2024 at 10:17:18AM +0200, Michael Nazzareno Trimarchi wrote: > > Hi all > > > > On Wed, Aug 14, 2024 at 6:34 AM Heiko Schocher wrote: > > > > > > Hello Christian, > > > > > > On 12.08.24 12:32, Christian Marangi wrot

[PATCH] treewide: Scrub trailing space

2024-08-18 Thread Marek Vasut
Remove all trailing space from the code base. No functional change. Implemented using the following one-liner: $ find . -name \*.c -o -name \*.h -exec sed -i 's@[ \t]\+$@@' {} \; Signed-off-by: Marek Vasut --- Cc: Francesco Dolcini Cc: Sean Anderson Cc: Simon Glass Cc: Tom Rini Cc: u-boot@lis

[PATCH] usb: gadget: ux500: Do not redefine ops if CONFIG_USB_MUSB_HOST set

2024-08-18 Thread Marek Vasut
In case CONFIG_USB_MUSB_HOST is set, the ux500_gadget_ops get overridden to musb_usb_ops . Simply set the ops one way or the other depending on whether CONFIG_USB_MUSB_HOST is set or not. Fixes: ac4bf5d48a9e ("usb: gadget: ux500: Convert interrupt handling to usb_gadget_generic_ops") Signed-off-b

Re: [PATCH 1/3] test_fs: Allow running unprivileged

2024-08-18 Thread Richard Weinberger
Simon, Am Sonntag, 18. August 2024, 17:47:01 CEST schrieb Simon Glass: > In that file, this is the line that builds the tools: > > ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} > -w --board tools-only > > and this adds the built scripts/dtc to the path, but you could just

Re: [PATCH 2/2] net: phy: Replace PHY_ANEG_TIMEOUT with Kconfig symbol

2024-08-18 Thread Marek Vasut
On 6/1/24 11:21 AM, Francesco Dolcini wrote: Hello Marek, Hello Francesco, On Fri, May 31, 2024 at 06:47:17PM +0200, Marek Vasut wrote: Switch PHY_ANEG_TIMEOUT to CONFIG_PHY_ANEG_TIMEOUT Kconfig symbol. This removes one more configuration headers option finalizes its Kconfig symbol conversio

Re: [PATCH v3 0/7] FUSB302 USB-C controller support

2024-08-18 Thread Marek Vasut
On 8/2/24 7:59 PM, Sebastian Reichel wrote: Hi, Hello everyone, On ROCK 5B power is usually supplied via it's USB-C port. This port has the data lines connected to RK3588, VBUS connected to the input regulator and CC pins connected to FUSB302. FUSB302 is a USB-C controller, which can be acces

Re: [PATCH v4 1/4] binman: Add nxp_imx8mcst etype for i.MX8M flash.bin signing

2024-08-18 Thread Marek Vasut
On 7/9/24 11:24 AM, Simon Glass wrote: Hi Marek, Hi, On Sun, 7 Jul 2024 at 01:55, Marek Vasut wrote: On 6/27/24 10:19 AM, Simon Glass wrote: Hi Marek, Hi, Add new binman etype which allows signing both the SPL and fitImage sections of i.MX8M flash.bin using CST. There are multiple DT

Re: [PATCH v3 0/7] FUSB302 USB-C controller support

2024-08-18 Thread Jonas Karlman
Hi Marek and Sebastian, On 2024-08-18 22:35, Marek Vasut wrote: > On 8/2/24 7:59 PM, Sebastian Reichel wrote: >> Hi, > > Hello everyone, > >> On ROCK 5B power is usually supplied via it's USB-C port. This port has the >> data lines connected to RK3588, VBUS connected to the input regulator and >