Forum Discussion
Altera_Forum
Honored Contributor
20 years agodownload kernel into ram by u-boot
hello! I want to download the kernel to the sdram by u-boot. how can I use the tftp in u-boot? help me! thank you for all response!
Altera_Forum
Honored Contributor
20 years agoHi smalllight,
> I want to download the kernel to the sdram by u-boot. First, create a u-boot image file with mkimage. > how can I use the tftp in u-boot? Try the u-boot command: ==> help tftpboot The syntax is: tftpboot address fname Example: download the file "foo.img" to address 0x400 ==> tftpboot 400 foo.img Then to boot the kernel: ==> bootm 400 Regards, --Scott