Hello,
I want to generate blob image by command line mode for S32R41 in S32DS3.4. According to "HOWTO: Use IVT Tool To Create A Blob Image" and S32DS Help document - "Command Line Execution - IVT Tool", I use following command to generate IVT image:
C:\NXP\S32DS.3.4\eclipse\eclipsec.exe -noSplash \
--launcher.ini C:\NXP\S32DS.3.4\eclipse\s32ds.ini \
-application com.nxp.swtools.framework.application \
-HeadlessTool IVT \
-MCU S32R41 \
-SDKVersion PlatformSDK_S32R41_2022_02_CD04 \
-Load "%cd%\System_M7_0\System_M7_0.mex" \
-ExportAB "%cd%\System_M7_0\customer\app_boot.bin" \
-start_pointer_addr 0x34150000 \
-entry_pointer_addr 0x34281000 \
-raw_binary "%cd%\System_M7_0\customer\System_M7_0.bin"
It generates an image file called "app_boot.bin" with start address and entry address. Also, I use S32DS ide to generate another image file called "r41.bin" with start address and entry address. Then I compare these two files, as below:(left part is app_boot.bin, right part is r41.bin)

Although first line is the same, it adds 00 to app_boot.bin generated by command line, and it adds FF to r41.bin generated by ide. Is there anything I missed in command line mode?
Then, I use following command to generate blob image and c format file:
C:\NXP\S32DS.3.4\eclipse\eclipsec.exe -noSplash \
--launcher.ini C:\NXP\S32DS.3.4\eclipse\s32ds.ini \
-application com.nxp.swtools.framework.application \
-HeadlessTool IVT \
-MCU S32R41 \
-SDKVersion PlatformSDK_S32R41_2022_02_CD04 \
-ImportBin "%cd%\System_M7_0\customer\app_boot.bin" \
-ExportC "%cd%\System_M7_0\customer\app_boot_c.c" \
-ExportBlob "%cd%\System_M7_0\customer\app_boot_blob.bin"
It shows some error messages in procedure:
資訊: [TOOL] Importing IVT Image D:\Cubtek Tool\SourceCode\PF_R41_unit\System_M7_0\customer\app_boot.bin ...
三月 10, 2023 1:28:21 下午 com.nxp.swtools.ivt.model.IVTImage importIVTImage
嚴重: ?? - ?入 IVT ?像: 文件包含?效?文件值。
image header tag的期望值: 0xD1
??值: 0xD5
三月 10, 2023 1:28:21 下午 com.nxp.swtools.ivt.IVTCmdApplication logResult
嚴重: [TOOL] Import failed
It generates two files, blob image "app_boot_blob.bin" and c format "app_boot_c.c", but both files size are quite small, I think it may be caused by import image failed, so these files are only include ivt_config. The error message is "image header tag expect: 0xD1, get: 0xD5", I check app_boot.bin and r41.bin file, they are all start with D5 00. For confirm this situation, I use S32DS ide to import app_boot.bin, it shows the same error message.

How can I import the ivt image to generate blob image? Thanks.