2014-10-26 68 views
0

我跟随thisthis链接,在OSX 10.7机器上为伽利略板创建Yocto自定义映像。英特尔Galileo - 在OSX上建立Linux映像不起作用

使用的Yocto版本是1.0.1;

当我运行bitbake image-custommeta-clanton_v1.0.1 DIR控制台启动样订做,但返回如下:

$ ~/meta-clanton_v1.0.1 > bitbake image 
The BBPATH variable is not set 
DEBUG: Removed the following variables from the environment: TEX_PATH, rvm_version, rvm_path, ... 
DEBUG: UI 'knotty' does not require extra cache! 
DEBUG: Found bblayers.conf (~/meta-clanton_v1.0.1/conf/bblayers.conf) 
DEBUG: LOAD ~/meta-clanton_v1.0.1/conf/bblayers.conf 
$ ~/meta-clanton_v1.0.1 > 

,但停在那里。如果我在生成文件夹:

$ ~/meta-clanton_v1.0.1/yocto_build > bitbake image 
ERROR: Unable to parse ./poky/meta/conf/layer.conf: file ./poky/meta/conf/layer.conf not found in ~/meta-clanton_v1.0.1/yocto_build 
$ ~/meta-clanton_v1.0.1/yocto_build > 

我做错了什么? 我根据链接中提供的说明更改了文件。

我在哪里可以设置BBPATH?

感谢任何可能的帮助

这是我的全OE-buildend内部:pastebin

回答

2

你的第一个错误,一个约BBPATH未被设置,那就是当你尝试,你会得到什么建立在build-dir之外。因此,你应该进入你的build-dir,就像你在第二次尝试时一样。

关于第二次尝试中的问题,conf/bblayers.conf的外观如何?没有看到该文件,它看起来像你有一个直接参考./poky/meta ...

当然,最终它可能也与OSX有关,我已经在Linux上运行OE和bitbake

+0

谢谢anders;很抱歉很长时间的回应。我没有了MacOSX。现在,我在linux下,我会尝试构建它。 – gcrav 2015-12-11 17:52:55

相关问题