Re: Problem with U-boot | Configuration Signature not being checked while booting

2021-09-18 Thread Moiz Imtiaz
the moment we don't have any public doc on how to achieve signature validation on Pi-4. I know it won't be a complete secure boot, but will do a PR nonetheless. :) We can then improve the writeup, with the passage of time,if needs required. On Sat, 18 Sep 2021, 18:24 Moiz Imtiaz, wrote

Re: Problem with U-boot | Configuration Signature not being checked while booting

2021-09-18 Thread Moiz Imtiaz
Tbh, the reason why I didn't do overlay is that I am not comfortable with it. I still have to learn how to do dtbo, and that is why I didn't add a PR to the documentation. I understand adding a dtbo is more robust and better way. What I replaced with was a copy of the original device tree that cam

Re: Problem with U-boot | Configuration Signature not being checked while booting

2021-09-18 Thread Moiz Imtiaz
wrote: > > > > > > > > > From: Simon Glass > > > > > Date: Wed, 15 Sep 2021 04:13:24 -0600 > > > > > > > > Hi Simon, > > > > > > > > > Hi Mark, > > > > > > > > > > On Sat

Re: Problem with U-boot | Configuration Signature not being checked while booting

2021-09-12 Thread Moiz Imtiaz
th bootm? Currently, I am using the following in my boot script. setenv bootargs 8250.nr_uarts=1 console=ttyS0,115200 root=/dev/mmcblk0p2 > rootwait rw; > fatload mmc 0:1 0x2000 image.itb; > bootm 0x2000; Again, thanks a lot and appreciate your input and suggestions. Best, Moiz I

Re: Problem with U-boot | Configuration Signature not being checked while booting

2021-09-11 Thread Moiz Imtiaz
s wrote: > > > Date: Sat, 11 Sep 2021 17:05:45 -0400 > > > From: Tom Rini > > > > > > On Sat, Sep 11, 2021 at 09:18:46PM +0200, Mark Kettenis wrote: > > > > > From: Moiz Imtiaz > > > > > Date: Sat, 11 Sep 2021 23:19:05 +0500 >

Re: Problem with U-boot | Configuration Signature not being checked while booting

2021-09-11 Thread Moiz Imtiaz
oot still didn't read the Control FDT. Can anyone please help with enabling verified boot (signature check) support for Raspberry Pi4. It's a very mainstream board and support for it would be great to have. I am willing to contribute, whatever I can. Best, Moiz Imtiaz On Fri, Sep 10,

Problem with U-boot | Configuration Signature not being checked while booting

2021-09-09 Thread Moiz Imtiaz
Hope you are doing well and everything is going good at your end. I am using Raspi 4B and Compute Model 4 and trying to configure U-boot with Verified boot support, *but while booting the signing of the configuration is not being checked*. I am using the latest master branch from GitHub.