Loading the zImage and the device tree to RAM on U-Boot
文章描述了通过设置环境变量(`serverip` 和 `ipaddr`)并使用 `tftp` 命令传输 `zImage` 和 `tree.dtb` 文件后,使用 `bootz` 命令启动系统的操作流程。
2025-10-9 11:9:47
Author: acassis.wordpress.com(查看原文)
阅读量:11
收藏
I used these commands:
env set serverip 192.168.2.1
env set ipaddr 192.168.2.3
tftp 0x82000000 zImage
tftp 0x88000000 tree.dtb
bootz 0x82000000 - 0x88000000
The bootz command expects the kernel address and the device tree address