Re: [PATCH v3 1/2] binman: cosmetic: code formatting fixes

2024-10-02 Thread Brian Ruley
30 Sept 2024 at 10:10, Brian Ruley > wrote: > > > > Conform to the style guide used in the project by making the following > > changes: > > * Use single quotes for multiline strings (except docstrings) > > * Fix line width to 79 cols > > * Use f-string inste

[PATCH v4 2/2] binman: add fast authentication method for i.MX8M signing

2024-10-01 Thread Brian Ruley
.com/pwmxy87654/attachments/pwmxy87654/imx-processors/202591/1/CST_UG.pdf Signed-off-by: Brian Ruley Cc: Marek Vasut --- Changes for v2: - fixed default key length (s/2048/4096) for srk-crt node Changes for v3: - code formatting Changes for v4: - fix spelling in commit message - code formatting too

[PATCH v4 1/2] binman: cosmetic: refactor `nxp_imx8mcst' etype code

2024-10-01 Thread Brian Ruley
concatenation * Move common suffix used in keys to a global variable "KEY_NAME" to reduce the likelihood of typos and making future changes easier Signed-off-by: Brian Ruley Cc: Marek Vasut --- Changes for v4: - expand f-string usage, add common information to variable, capitalize

[PATCH v3 2/2] binman: add fast authentication method for i.MX8M signing

2024-09-30 Thread Brian Ruley
.com/pwmxy87654/attachments/pwmxy87654/imx-processors/202591/1/CST_UG.pdf Signed-off-by: Brian Ruley Cc: Marek Vasut tools/binman/etype/nxp_imx8mcst.py | 23 +++ 1 file changed, 19 insertions(+), 4 deletions(-) --- tools/binman/etype/nxp_imx8mcst.py | 44 ++-

[PATCH v3 1/2] binman: cosmetic: code formatting fixes

2024-09-30 Thread Brian Ruley
Conform to the style guide used in the project by making the following changes: * Use single quotes for multiline strings (except docstrings) * Fix line width to 79 cols * Use f-string instead of formatting a regular string Signed-off-by: Brian Ruley --- tools/binman/etype/nxp_imx8mcst.py | 28

Re: [PATCH] binman: add fast authentication method for i.MX8M signing

2024-09-30 Thread Brian Ruley
On Mon, Sep 30, 2024 at 08:10:49AM -0600, Simon Glass wrote: > > WARNING: This email originated from outside of GE HealthCare. Please validate > the sender's email address before clicking on links or attachments as they > may not be safe. > > Hi Brian, > > On Mon,

Re: [PATCH] binman: add fast authentication method for i.MX8M signing

2024-09-30 Thread Brian Ruley
On Sun, Sep 29, 2024 at 06:46:23PM -0600, Tom Rini wrote: > On Sun, Sep 29, 2024 at 04:49:17PM -0600, Simon Glass wrote: > > Hi Fabio, > > > > On Sun, 29 Sept 2024 at 14:53, Fabio Estevam wrote: > > > > > > Hi Simon, Marek, and Tom, > > > > > > On Fri, Sep 27, 2024 at 5:47???PM Tom Rini wrote: >

[PATCH v2] binman: add fast authentication method for i.MX8M signing

2024-09-30 Thread Brian Ruley
.com/pwmxy87654/attachments/pwmxy87654/imx-processors/202591/1/CST_UG.pdf Signed-off-by: Brian Ruley Cc: Marek Vasut --- Changes for v2: - fixed default key length (s/2048/4096) for srk-crt node tools/binman/etype/nxp_imx8mcst.py | 23 +++ 1 file changed, 19 insertions(

[PATCH] binman: add fast authentication method for i.MX8M signing

2024-09-27 Thread Brian Ruley
.com/pwmxy87654/attachments/pwmxy87654/imx-processors/202591/1/CST_UG.pdf Signed-off-by: Brian Ruley Cc: Marek Vasut tools/binman/etype/nxp_imx8mcst.py | 23 +++ 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/tools/binman/etype/nxp_imx8mcst.py b/too