Skip to content

Commit 225874e

Browse files
committed
Move mcuboot.bin to flat location (possibly fixup for tfm adding commit)
1 parent 34eef52 commit 225874e

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

tools/targets/ARM_MUSCA_A1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def musca_tfm_bin(t_self, non_secure_bin, secure_bin):
3939
if not isdir(tempdir):
4040
os.makedirs(tempdir)
4141
flash_layout = path_join(MUSCA_A1_BASE, 'partition', 'flash_layout.h')
42-
mcuboot_bin = path_join(MUSCA_A1_BASE, 'prebuilt', 'mcuboot.bin')
42+
mcuboot_bin = path_join(MUSCA_A1_BASE, 'mcuboot.bin')
4343
image_macros = path_join(MUSCA_A1_BASE, 'partition', 'image_macros_preprocessed.c')
4444
ns_bin_name, ns_bin_ext = splitext(basename(non_secure_bin))
4545
concatenated_bin = path_join(tempdir, 'tfm_' + ns_bin_name + ns_bin_ext)

tools/targets/ARM_MUSCA_B1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def musca_tfm_bin(t_self, non_secure_bin, secure_bin):
3939
if not isdir(tempdir):
4040
os.makedirs(tempdir)
4141
flash_layout = path_join(MUSCA_B1_BASE, 'partition', 'flash_layout.h')
42-
mcuboot_bin = path_join(MUSCA_B1_BASE, 'prebuilt', 'mcuboot.bin')
42+
mcuboot_bin = path_join(MUSCA_B1_BASE, 'mcuboot.bin')
4343
image_macros = path_join(MUSCA_B1_BASE, 'partition', 'image_macros_preprocessed.c')
4444
ns_bin_name, ns_bin_ext = splitext(basename(non_secure_bin))
4545
concatenated_bin = path_join(tempdir, 'tfm_' + ns_bin_name + ns_bin_ext)

0 commit comments

Comments
 (0)