找不到yocto defconfig

时间:2015-10-22 17:42:22

标签: linux linux-kernel kernel yocto

我尝试使用自定义源(Linux内核3.16)使用yocto创建映像。当我尝试运行'bitbake myCustomRecipe'时,我收到如下警告和错误:

WARNING: Unable to get checksum for myCustomRecipe SRC_URI entry defconfig: file could not be found

我还有其他几个警告/错误,但我相信由于上述警告,这些警告/错误会自然而然地发生。我的图层结构是这样的:

meta-mytestLayer
|
+--conf/
|  |
|  +--layer.conf
|
+--recipes-kernel/
   |
   +--linux/
      |
      +--myCustomRecipe_3.16/
      |  |
      |  +--defconfig
      |
      +--myCustomRecipe_3.16.bb

如您所见,myCustomRecipe_3.16 /目录中有一个defconfig文件。为什么找不到这个?这个文件结构与我在几个教程中看到的非常类似(比如this document的实验三)。我的layer.config看起来像这样:

BBPATH .= ":${LAYERDIR}"

BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
    ${LAYERDIR}/recipes-*/*/*.bbappend"

BBFILE_COLLECTIONS += "myTestLayer"
BBFILE_PATTERN_myTestLayer = "^${LAYERDIR}/"
BBFILE_PRIORITY_myTestLayer = "6"

我的食谱看起来像这样:

inherit kernel
require recipes-kernel/linux/linux-yocto.inc

SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git;protocol=git;nocheckout=1;name=machine"
SRC_URI += "file://defconfig"

LINUX_VERSION ?= "3.16"
LINUX_VERSION_EXTENSION ?= ""

SRCREV_machine="f14680f1692a9ec2a5b1b716a7a0c03dd391106f"

PR = "r1"
PV = "${LINUX_VERSION}+git${SRCPV}"

COMPATIBLE_MACHINE = "qemux86"

我是一个全新的yocto新手,我正在查看一些实验/参考手册/教程,但没有找到与此特定问题相关的任何内容。我主要使用我之前提供的链接并使用Yocto Project Linux内核开发手册的this section

1 个答案:

答案 0 :(得分:4)

您的defconfig文件位于名为myCustomRecipe_3.16/的目录中,而OpenEmbedded将在名为以下任一目录的目录(1)中查找该文件:

  • myCustomRecipe-3.16/
  • myCustomRecipe/
  • files/

请注意' - '而不是' _'。

如果您查看失败食谱的log.do_unpack,您将会看到哪些目录已经搜索过您的defconfig。

(1)嗯,这只是故事的一部分。这三个目录也将附加所有OVERRIDES的目录。