enter image description here我是yocto linux的新手,我一直在尝试为imx6处理器安装yocto镜像。构建os的手册如下:
$ mkdir ~/bin(this step may not be needed if the bin folder already exists)
$ curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmoda+x ~/bin/repo
export PATH =〜/ bin:$ PATH
$ mkdir fsl-release-bsp
$ cd fsl-release-bsp
$ git config --global user.name "Your Name"
$ git config --global user.email "Your Email"
$ git config --list
$ repo init -u git://git.freescale.com/imx/fsl-arm-yocto-bsp.git -b imx-3.10.53-1.1.0_ga
$ repo sync
$ MACHINE=imx6qsabresd source fsl-setup-release.sh -b build-x11 -e x11
$ cd build-x11
$ bitbake fsl-image-qt5
在此命令MACHINE=imx6qsabresd source fsl-setup-release.sh -b build-x11 -e x11
我得到MACHINE:找不到命令。
如果我跳过这个并运行bitbake fsl-image-qt5
我明白了
错误:OE-core的配置健全性检查程序检测到潜在的错误配置。
要么修复此错误的原因,要么自行禁用检查程序(请参阅sanity.conf)。
以下是潜在问题/建议清单:
libsdl-native is set to be ASSUME_PROVIDED but sdl-config can't be found in PATH. Please either install it, or configure qemu not to require sdl.
错误:执行事件处理程序'check_sanity_eventhandler'失败 错误:命令执行失败:退出1
如果有人知道如何构建操作系统,请提供帮助。