[radxa-zero-3w] Yocto image boot up with uboot and systemd-boot

hi all,

My company want to evaluate Rockchip platform, particularly the RK3566 SOC platform for our next gen Linux-based product. We mainly utilize the Yocto project to build up Linux images for our products
As the first step, I follow this guide (https://docs.radxa.com/en/rock5/rock5b/other-os/yocto) to successfully build up a core-image-weston image running in a microSD card in my radxa-zero-3w board
Next, I want to make the board runs systemd-boot so that it can support different boot menus of a product and one menu is to load the kernel with a ramdisk image to perform a new image installation to the internal eMMC drive of the board. I follow this guide about the boot partitions of Rockchip SOC (https://opensource.rock-chips.com/wiki_Partitions) to make a new image-installer.wks.in file in my Yocto environment in order to generate a WIC image with required partitions:

part loader1   --offset 64s    --fixed-size 3552K --fstype=none --part-name loader1   --source rawcopy --sourceparams="file=${SPL_BINARY}"
part v_storage --offset 7168s  --fixed-size 256K  --fstype=none --part-name v_storage
part reserved  --offset 7680s  --fixed-size 192K  --fstype=none --part-name reserved
part reserved1 --offset 8064s  --fixed-size 32K   --fstype=none --part-name reserved1
part uboot_env --offset 8128s  --fixed-size 32K   --fstype=none --part-name uboot_env ${RK_UBOOT_ENV}
part reserved2 --offset 8192s  --fixed-size 4096K --fstype=none --part-name reserved2
part loader2   --offset 16384s --fixed-size 4096K --fstype=none --part-name loader2   --source rawcopy --sourceparams="file=u-boot.${UBOOT_SUFFIX}"
part atf       --offset 24576s --fixed-size 4096K --fstype=none --part-name atf
part /boot     --offset 32768s --fixed-size 400M  --source bootimg-efi --sourceparams="loader=${EFI_PROVIDER},title=n_install,label=install-efi,initrd=${INITRD_IMAGE_LIVE}-${MACHINE}.${INITRAMFS_FSTYPES}" --ondisk sda --label h_install --active --align 1024 --use-uuid
part / --source bootimg-partition --ondisk sda --fstype=ext4 --label image --use-uuid --align 1024
bootloader --ptable gpt --timeout=5 --append=" rootfstype=ext4"

So in the boot partition, I use bootimg-efi of Yocto which runs systemd-boot with this boot.conf:
title install
linux /fitImage
options LABEL=install-efi rootfstype=ext4
initrd /core-image-minimal-initramfs-radxa-zero-3w.cpio.gz

It is expected that it will run the kernel image fitImage with the initramdisk core-image-minimal-initramfs-radxa-zero-3w.cpio.gz in which new image installation code to be executed.

However, systemd-boot failed to load the fitImage with this error message:
Not a PE-COFF file
Error loading \fitImage: Load error

Here is the boot log:
U-Boot 2024.07-rc3 (Mar 28 2025 - 08:31:33 +0000)

Model: Radxa ZERO 3W                                                                                                                                               
DRAM:  2 GiB                                                                                                                                                       
PMIC:  RK8170 (on=0x40, off=0x00)                                                                                                                                  
Core:  299 devices, 28 uclasses, devicetree: separate                                                                                                              
MMC:   mmc@fe2b0000: 1, mmc@fe2c0000: 2, mmc@fe310000: 0                                                                                                           
Loading Environment from nowhere... OK                                                                                                                             
In:    serial@fe660000                                                                                                                                             
Out:   serial@fe660000                                                                                                                                             
Err:   serial@fe660000                                                                                                                                             
Model: Radxa ZERO 3W                                                                                                                                               
Net:   No ethernet found.                                                                                                                                          
Hit any key to stop autoboot:  0                                                                                                                                   
Scanning for bootflows in all bootdevs                                                                                                                             
Seq  Method       State   Uclass    Part  Name                      Filename                                                                                       
---  -----------  ------  --------  ----  ------------------------  ----------------                                                                               
Scanning global bootmeth 'efi_mgr':    
Scanning global bootmeth 'efi_mgr':                                                                                                                                
Card did not respond to voltage select! : -110                                                                                                                     
No EFI system partition                                                                                                                                            
No EFI system partition                                                                                                                                            
Failed to persist EFI variables                                                                                                                                    
No EFI system partition                                                                                                                                            
Failed to persist EFI variables                                                                                                                                    
No EFI system partition                                                                                                                                            
Failed to persist EFI variables                                                                                                                                    
No EFI system partition                                                                                                                                            
Failed to persist EFI variables                                                                                                                                    
No EFI system partition                                                                                                                                            
Failed to persist EFI variables    
Scanning bootdev 'mmc@fe2b0000.bootdev':                                                                                                                           
  1  efi          ready   mmc          9  mmc@fe2b0000.bootdev.part /EFI/BOOT/BOOTAA64.EFI                                                                         
** Booting bootflow 'mmc@fe2b0000.bootdev.part_9' with efi                                                                                                         
Booting /\EFI\BOOT\BOOTAA64.EFI        
Not a PE-COFF file       
Error loading \fitImage: Load error     
## Application failed, r = 1                                                                                                                                       
Boot failed (err=-22)                                                                                                                                              
Scanning bootdev 'mmc@fe310000.bootdev':                                                                                                                           
Unknown uclass 'nvme' in label                                                                                                                                     
Unknown uclass 'scsi' in label                                                                                                                                     
Bus usb@fd000000: Register 2000140 NbrPorts 2                                                                                                                      
Starting the controller                                                                                                                                            
USB XHCI 1.10                                                                                                                                                      
scanning bus usb@fd000000 for devices... 1 USB Device(s) found                                                                                                     
No ethernet found.                                                                                                                                                 
No ethernet found.                                                                                                                                                 
No more bootdevs                                                                                                                                                   
---  -----------  ------  --------  ----  ------------------------  ----------------                                                                               
(2 bootflows, 2 valid)                                                                                                                                             
=> 

Can anyone support me what is the reason why systemd-boot could not load the fitImage here?

Thank you,
Huy