Skip to content

RZ V2H EVK Boot

Chris Brandt edited this page May 1, 2025 · 1 revision

Copy kernel over Eth and boot

On Host:

./build.sh k defconfig
./build.sh k all
./build.sh k deploy

mkdir -p /var/lib/tftpboot/rzv2h-evk-ver1

cp -a output_rzv2h-evk-ver1/* /var/lib/tftpboot/rzv2h-evk-ver1

On Board:

setenv ipaddr 10.10.10.60 ; setenv ethaddr 00:ee:ee:11:22:33 ; setenv serverip 10.10.10.30

tftpboot 0x48080000 /rzv2h-evk-ver1/Image && dcache flush
tftpboot 0x48000000 /rzv2h-evk-ver1/r9a09g057h4-evk-ver1.dtb && dcache flush
setenv bootargs root=/dev/mmcblk0p2 rootwait ; booti 0x48080000 - 0x48000000
   or
setenv bootargs root=/dev/mmcblk0p2 rootwait init=/bin/sh ; booti 0x48080000 - 0x48000000

Clone this wiki locally