我知道引导映像需要2个分区。
一个用于引导加载程序(u-boot)、它必须格式化 FAT 文件系统。
其他用于 Linux 内核和 rootfilesystem。 它必须是格式化的 EXT 文件系统。
但在 bin/create-sdcard.sh 脚本的第184行中,似乎有3个分区。
引导/rootfs/start_here。
mount -t vfat ${drive}${P}1 boot mount -t ext3 ${drive}${P}2 rootfs mount -t ext3 ${drive}${P}3 start_here #在分区未 重新创建时删除任何现有内容# sudo sudo rm -rf boot/* rootrm -rf rootfs/* rm -rf start_here/此处*
什么是第三个分区(start_here) ?