maikelmeyers79
maikelmeyers79
I used the same u-boot with both firmwares and I see the difference. So u-boot does not set Bit 10, but the firmware 20250915 seems to set it. After a...
> I've just seen and approved the patch from [@timg236](https://github.com/timg236) that fixes this issue. It must have taken some tracking down because the error is very easy to miss. I...
u-boot patch: ``` diff --git a/arch/arm/mach-bcm283x/reset.c b/arch/arm/mach-bcm283x/reset.c index f13ac0c6375..5d4968c166c 100644 --- a/arch/arm/mach-bcm283x/reset.c +++ b/arch/arm/mach-bcm283x/reset.c @@ -25,6 +25,8 @@ /* max ticks timeout */ #define BCM2835_WDOG_MAX_TIMEOUT 0x000fffff +#define BCM2835_RSTS_PARTITION_CLR 0xfffffaaa +...