fix: Generate secure keys in project dir instead of build dir

This commit is contained in:
Jan Beran
2024-06-28 10:06:38 +02:00
parent be05548666
commit 832c3f265a
2 changed files with 5 additions and 5 deletions

View File

@@ -467,7 +467,7 @@ class TestSecureCommands(TestWrapperCommands):
'secure-encrypt-flash-data',
'--aes-xts',
'--keyfile',
f'{self.flash_encryption_key}',
f'../{self.flash_encryption_key}',
'--address',
'0x1000',
'--output',
@@ -484,7 +484,7 @@ class TestSecureCommands(TestWrapperCommands):
'secure-decrypt-flash-data',
'--aes-xts',
'--keyfile',
f'{self.flash_encryption_key}',
f'../{self.flash_encryption_key}',
'--address',
'0x1000',
'--output',
@@ -515,7 +515,7 @@ class TestSecureCommands(TestWrapperCommands):
'--version',
'2',
'--keyfile',
self.signing_key,
f'../{self.signing_key}',
'--output',
'bootloader-signed.bin',
'bootloader/bootloader.bin']