Discussion:
[yocto] Cannot build the core-image-directfb for
Yong Li
2015-01-21 07:51:53 UTC
Permalink
I can build the core-minimal or X11 image, but I cannot build the directfb
image, below is the error message, any suggestions?

bitbake core-image-directfb -v
Loading cache: 100%
|#####################################################################################################################################|
ETA: 00:00:00
Loaded 1313 entries from dependency cache.
Parsing recipes: 100%
|###################################################################################################################################|
Time: 00:00:00
Parsing of 915 .bb files complete (914 cached, 1 parsed). 1313 targets, 112
skipped, 0 masked, 0 errors.
ERROR: Nothing PROVIDES 'core-image-directfb'
ERROR: core-image-directfb was skipped: missing required distro feature
'directfb' (not in DISTRO_FEATURES)

I have modified the conf/local.conf file as below:
DISTRO_FEATURES_append = "directfb sysvinit"
DISTRO_FEATURES_remove = "x11 wayland"

MACHINE ??= "intel-corei7-64"
Nicolas Dechesne
2015-01-21 08:03:20 UTC
Permalink
Post by Yong Li
DISTRO_FEATURES_append = "directfb sysvinit"
DISTRO_FEATURES_remove = "x11 wayland"
i think you are missing a leading space char, it's needed with
_append, or _remove. as such directfb gets concatenated with the
previous word in the variable.
--
Moore, Thomas (FtWorth)
2015-01-21 08:07:15 UTC
Permalink
Try adding a space between the quotation mark and directfb:

DISTRO_FEATURES_append = " directfb sysvinit"

Thomas
________________________________
From: Yong Li<mailto:***@gmail.com>
Sent: ý1/ý21/ý2015 9:53 AM
To: ***@yoctoproject.org<mailto:***@yoctoproject.org>
Cc: Yong Li<mailto:***@gmail.com>
Subject: [yocto] Cannot build the core-image-directfb for

I can build the core-minimal or X11 image, but I cannot build the directfb image, below is the error message, any suggestions?

bitbake core-image-directfb -v
Loading cache: 100% |#####################################################################################################################################| ETA: 00:00:00
Loaded 1313 entries from dependency cache.
Parsing recipes: 100% |###################################################################################################################################| Time: 00:00:00
Parsing of 915 .bb files complete (914 cached, 1 parsed). 1313 targets, 112 skipped, 0 masked, 0 errors.
ERROR: Nothing PROVIDES 'core-image-directfb'
ERROR: core-image-directfb was skipped: missing required distro feature 'directfb' (not in DISTRO_FEATURES)

I have modified the conf/local.conf file as below:
DISTRO_FEATURES_append = "directfb sysvinit"
DISTRO_FEATURES_remove = "x11 wayland"

MACHINE ??= "intel-corei7-64"
Yong Li
2015-01-21 08:11:35 UTC
Permalink
Thanks for your quick reply.

YES! Adding a leading space between the " and directfb, the build works, it
is building now!

Thanks again!
Yong LI
Post by Moore, Thomas (FtWorth)
DISTRO_FEATURES_append = " directfb sysvinit"
Thomas
------------------------------
Sent: ‎1/‎21/‎2015 9:53 AM
Subject: [yocto] Cannot build the core-image-directfb for
I can build the core-minimal or X11 image, but I cannot build the
directfb image, below is the error message, any suggestions?
bitbake core-image-directfb -v
Loading cache: 100%
|#####################################################################################################################################|
ETA: 00:00:00
Loaded 1313 entries from dependency cache.
Parsing recipes: 100%
|###################################################################################################################################|
Time: 00:00:00
Parsing of 915 .bb files complete (914 cached, 1 parsed). 1313 targets,
112 skipped, 0 masked, 0 errors.
ERROR: Nothing PROVIDES 'core-image-directfb'
ERROR: core-image-directfb was skipped: missing required distro feature
'directfb' (not in DISTRO_FEATURES)
DISTRO_FEATURES_append = "directfb sysvinit"
DISTRO_FEATURES_remove = "x11 wayland"
MACHINE ??= "intel-corei7-64"
Loading...