I have built the image for RZ/V2M (SOC_FAMILY = "rzv2m:r9a09g011gbg") as described in "RZ/V2M Linux Package Start-Up Guide".
I'm getting errors as below.
[BL1] Loaded the 2nd boot loader
[BL1] Kick the 2nd boot loader
[BL2] 2nd boot loader entered
[BL2] DDR initializatioM
t
U-Boot 2018.09 (Jan 12 2022 - 10:07:36 +0000)
Model: RZ/V2M
DRAM: 4 GiB
MMC: sd@85000000: 0, sd@85020000: 1
Loading Environment from MMC... OK
In: serial
Out: serial
Err: serial
Net: eth0: ethernet@a3300000
Hit any key to stop autoboot: 0
=> env default -a
## Resetting to default environment
=> saveenv
Saving Environment to MMC... Writing to MMC(1)... OK
=> run bootsd
** Unable to read file Image **
22902 bytes read in 2 ms (10.9 MiB/s)
Bad Linux ARM64 Image magic!
I tried to printenv as below:
=> printenv
baudrate=115200
bootargs=root=/dev/mmcblk0p2 rootwait rootfstype=ext3 rw
bootargs_nfs=setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:/nfs/rzv2m,nfsvers=3 ip=${ipaddr}:${serverip}::${netmask}:rzv2m:eth0
bootargs_sd=setenv bootargs root=/dev/mmcblk0p2 rootwait rootfstype=ext3 rw
bootcmd=run bootsd
bootdelay=3
bootnfs=run bootargs_nfs;tftp ${loadaddr} ${kernel};tftp ${fdt_addr} ${fdt_file};booti ${loadaddr} - ${fdt_addr}
bootsd=run bootargs_sd;fatload mmc 0:1 ${loadaddr} ${kernel};fatload mmc 0:1 ${fdt_addr} ${fdt_file};booti ${loadaddr} - ${fdt_addr}
core1_vector=0x0
core1addr=0x0
ethaddr=02:11:22:33:44:55
fdt_addr=0x180000000
fdt_file=r9a09g011gbg-evaluation-board.dtb
fileaddr=180000000
filesize=5976
gatewayip=192.168.0.1
ipaddr=192.168.1.11
kernel=Image
loadaddr=0x180080000
netmask=255.255.255.0
rtos=core1_uart.bin
serverip=192.168.1.10
Environment size: 855/131068 bytes
=> fatload mmc 0:1 0x180080000 Image
** Unable to read file Image **
=>
Maybe there is a wrong loadaddr. Can anyone point out where the issue lies?