ERROR: Nothing PROVIDES 'core-image-minimal'

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

ERROR: Nothing PROVIDES 'core-image-minimal'

9,870 次查看
victorgomez
Contributor II

Hi All,

I am trying to build my Yocto 2.0 jethro kernel and when I type "bitbake <image>", it always tells me the same error:

ERROR: Nothing PROVIDES 'core-image-minimal'

It doesn't matter which image name I pass. It is always the same error.

Does anybody know what I am doing wrong?

Thanks a lot in advance!

标签 (1)
3 回复数

4,620 次查看
lily95
Contributor I

I have almost the same problem, the problem is ERROR: Nothing PROVIDES 's32g274ardb' ,and my local.conf below:

MACHINE ??= 's32g274ardb'
DISTRO ?= 'fsl-auto'
PACKAGE_CLASSES ?= "package_rpm"
EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
USER_CLASSES ?= "buildstats image-mklibs image-prelink"
PATCHRESOLVE = "noop"
BB_DISKMON_DIRS ??= "\
STOPTASKS,${TMPDIR},1G,100K \
STOPTASKS,${DL_DIR},1G,100K \
STOPTASKS,${SSTATE_DIR},1G,100K \
STOPTASKS,/tmp,100M,100K \
ABORT,${TMPDIR},100M,1K \
ABORT,${DL_DIR},100M,1K \
ABORT,${SSTATE_DIR},100M,1K \
ABORT,/tmp,10M,1K"
PACKAGECONFIG_append_pn-qemu-system-native = " sdl"
CONF_VERSION = "1"

# Parallelism Options
BB_NUMBER_THREADS = "112"
PARALLEL_MAKE = "-j 84"
DL_DIR = "/usr1/bsp1115/fsl-auto-yocto-bsp/downloads"
SSTATE_DIR = "/usr1/bsp1115/fsl-auto-yocto-bsp/sstate-cache"
INHERIT += "own-mirrors"
SOURCE_MIRROR_URL ?= "http://git.freescale.com/source/"
SSTATE_MIRRORS = "file://.*/(.*)/(.*) file://${SSTATE_DIR}/native/\1/\2 \n"
# use xz to compress sstate
SSTATE_PKG_SUFFIX = "txz"
SSTATE_PKG_TARZIPPROG = "xz"
ACCEPT_FSL_EULA = "1"

any suggestion will be helpfull~

THANKS!

0 项奖励
回复

5,622 次查看
gusarambula
NXP TechSupport
NXP TechSupport

Hello Victor Gomez,

Could you share your conf/local.conf file settings? It is possible that the machine and distro configuration is not correct and thus is not finding the recipes for the image. Did the repo sync finished successfully? Another possibility is that the metadata was not downloaded correctly.

Regards,

5,621 次查看
victorgomez
Contributor II

Hi :smileyhappy:

The repo sync finished successfully, yes. This is the content of local.conf:

MACHINE ??= 'imx7dsabresd'

DISTRO ?= 'poky'

PACKAGE_CLASSES ?= "package_rpm"

EXTRA_IMAGE_FEATURES = "debug-tweaks dbg-pkgs dev-pkgs package-management ssh-server-dropbear ssh-server-openssh staticdev-pkgs tools-debug tools-sdk x11 x11-base ypbind-mt"

USER_CLASSES ?= "buildstats image-mklibs"

PATCHRESOLVE = "noop"

BB_DISKMON_DIRS = "\

    STOPTASKS,${TMPDIR},1G,100K \

    STOPTASKS,${DL_DIR},1G,100K \

    STOPTASKS,${SSTATE_DIR},1G,100K \

    STOPTASKS,/tmp,100M,100K \

    ABORT,${TMPDIR},100M,1K \

    ABORT,${DL_DIR},100M,1K \

    ABORT,${SSTATE_DIR},100M,1K \

    ABORT,/tmp,10M,1K"

PACKAGECONFIG_append_pn-qemu-native = " sdl"

PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"

CONF_VERSION = "1"

DL_DIR ?= "${BSPDIR}/downloads/"

ACCEPT_FSL_EULA = "1"

0 项奖励
回复