如何在recipe YOCTO项目中包含现成的编译BIN文件((应用程序的本地应用程序))。或者如何从u-boot下或Linux下将现成的应用程序编译的BIN文件安装到Flash-memory中的目标设备上
发布于 2020-03-01 16:52:36
如果我理解正确的话,您想知道如何将Yocto镜像刻录到闪存驱动器中吗?
如果是这样,则应按照本指南中的说明使用dd命令:https://www.yoctoproject.org/docs/2.4/yocto-project-qs/yocto-project-qs.html
4. Write the Image: You can write the image just built to a bootable media (e.g. a USB key, SATA drive, SD card, etc.) using the dd utility:
$ sudo dd if=tmp/deploy/images/intel-corei7-64/core-image-base-intel-corei7-64.wic of=TARGET_DEVICEhttps://stackoverflow.com/questions/60455321
复制相似问题