SFI with HSM license
Hi,
I want to install an SFI on my microcontroller (NUCLEO-U575ZI-Q) using the following script:
#!/bin/sh
# Set to the default installation path of the Cube Programmer tool
# If you installed it in another location, please update path
tool_dir=~/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin
my_curr_dir=$(pwd)
sfi_bin=$my_curr_dir/../Binary/OEM_Dev.sfi
rsse_bin=$tool_dir/RSSe/U5/enc_signed_RSSe_sfi_U5_2M.bin
cd $tool_dir
sudo $tool_dir/STM32_Programmer_CLI -c port=SWD mode=HOTPLUG -sfi $sfi_bin hsm=1 slot=1 -rsse $rsse_bin
cd $my_curr_dir
The thing is, when I do it through the interface, I select the HSM license I want to use:
The question is: What would be the command/script to use the HSM license that I have generated (../Binary/MyLicense.bin)
Best regards,

