Buildroot 构建
Buildroot 用来构建根文件系统。
下载与编译
git clone https://gitee.com/thead-linux/buildroot
cd buildroot
make thead_ice_evb_c910_br_defconfig
git clone https://gitee.com/thead-linux/dl.git
make source
make
编译过程较长,请耐心等待。
查看编译结果
ls output/images
显示如下:
root@linux:~/works/ice/buildroot > ls output/images -l
total 26804
-rw-r--r--. 1 thead thead 62914560 Dec 24 12:41 rootfs.ext2
烧写
EVB 开发板进入用fastboot 模式(fastboot udp
),使用 fastboot 工具烧写, 详见: Linux环境下烧写镜像
# 烧写 root 分区
fastboot -s udp:192.168.1.100 flash root rootfs.ext2