# 烧录emmc,通过uboot fastboot over udp 板侧: 连接板子和PC到同局域网,局域网能够dhcp配置ipv4。连接调试usb口到电脑,通过minicom等工具打开串口,给板子上电,打断自动启动 ```sh dhcp fastboot udp 0 ``` 记录下板子的ip。 PC侧: ```sh fastboot -s udp:10.213.5.252 flash boot oerv-bootfs.ext4 fastboot -s udp:10.213.5.252 flash root oerv-rootfs.ext4 fastboot -s udp:10.213.5.252 reboot ```