Skip to content

Commit

Permalink
west_commands: sign: add imx95 to target list
Browse files Browse the repository at this point in the history
Add imx95 to target list to allow signing images for
imx95.

Signed-off-by: Laurentiu Mihalcea <[email protected]>
  • Loading branch information
LaurentiuM1234 authored and MaureenHelm committed Oct 2, 2024
1 parent 0175495 commit 155f3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/west_commands/sign.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def sign(self, command, build_dir, build_conf, formats):
kernel_name = build_conf.get('CONFIG_KERNEL_BIN_NAME', 'zephyr')

# TODO: make this a new sign.py --bootloader option.
if target in ('imx8', 'imx8m', 'imx8ulp'):
if target in ('imx8', 'imx8m', 'imx8ulp', 'imx95'):
bootloader = None
kernel = str(b / 'zephyr' / f'{kernel_name}.elf')
out_bin = str(b / 'zephyr' / f'{kernel_name}.ri')
Expand Down

0 comments on commit 155f3f3

Please sign in to comment.