All of lore.kernel.org
 help / color / mirror / Atom feed
* bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)
@ 2017-04-21 11:37 David Bensoussan
  2017-04-21 16:44 ` Burton, Ross
  2017-04-21 18:50 ` Trevor Woerner
  0 siblings, 2 replies; 8+ messages in thread
From: David Bensoussan @ 2017-04-21 11:37 UTC (permalink / raw)
  To: yocto

[-- Attachment #1: Type: text/plain, Size: 2781 bytes --]

Hello,

I tried to solve the issue by myself, read on the documentation and check
the mailing list, but I couldn't find the information I was looking for.
The documentation was of a great help as a guideline but I now don't know
how to proceed.

I wanted to generate an sdk and met these errors while executing:
$ bitbake core-image-base -c do_populate_sdk

Building dependency tree...
Reading state information...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 packagegroup-core-standalone-sdk-target : Depends: glibc-gconv-cp1252 but
it is not installable
                                           Depends: glibc-gconv-ibm850 but
it is not installable
                                           Depends: glibc-gconv-iso8859-1
but it is not installable
                                           Depends: glibc-gconv-iso8859-15
but it is not installable
                                           Depends: glibc-localedata-i18n
but it is not installable
E: Unable to correct problems, you have held broken packages.

A long time ago, I generated one was using the adt-installer but it has
changed since.
I also tried to add in local.conf:
EXTRA_IMAGE_FEATURES = "tools-sdk"
DISTRO_FEATURES_LIBC = "libc-locales libc-locale-code"

But nothing worked. I am working with RPI3 machine under Jethro branch. My
first test was to try the same setup with qemuarm64 machine, it failed
exactly the same way. It seems there are conflicts in packages, but I don't
understand how to track the error at this point.

It raised multiple questions:
Am I doing it wrong? Did I miss a flag? What does this error exactly mean?

Thank you for your time

Regards,
-- 

*David bensoussan*
Roboticist / Embedded Software Engineer
------------------------------

*Synapticon* | Robotic Control Systems
Mobile: 015779804515
Fax: +49 7031 / 30 478 -99

*synapticon.com* <https://www.synapticon.com/> | Twitter
<https://twitter.com/#!/synapticon_co> | Facebook
<https://fb.com/Synapticon>

Synapticon GmbH | Daimlerstraße 26 | 71101 Schönaich, Germany
Secretary +49 7031 / 30 478 -0 | Managing Director: Nikolai Ensslen
Amtsgericht Stuttgart HRB 756076 | USt-ID DE271647127

This message and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. Please notify the sender immediately if you have received this
e-mail by mistake and delete it from your system.

[-- Attachment #2: Type: text/html, Size: 5966 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)
  2017-04-21 11:37 bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies) David Bensoussan
@ 2017-04-21 16:44 ` Burton, Ross
  2017-04-21 16:55   ` David Bensoussan
  2017-04-21 18:50 ` Trevor Woerner
  1 sibling, 1 reply; 8+ messages in thread
From: Burton, Ross @ 2017-04-21 16:44 UTC (permalink / raw)
  To: David Bensoussan; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 246 bytes --]

On 21 April 2017 at 12:37, David Bensoussan <dbensoussan@synapticon.com>
wrote:

> DISTRO_FEATURES_LIBC = "libc-locales libc-locale-code"
>

Unless you really need to, don't fiddle stuff like this.  Can you share
your local.conf?

Ross

[-- Attachment #2: Type: text/html, Size: 626 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)
  2017-04-21 16:44 ` Burton, Ross
@ 2017-04-21 16:55   ` David Bensoussan
  0 siblings, 0 replies; 8+ messages in thread
From: David Bensoussan @ 2017-04-21 16:55 UTC (permalink / raw)
  To: Burton, Ross; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 2423 bytes --]

Yes sure. Here it is:

DISTRO ?= "poky"
PACKAGE_CLASSES ?= "package_deb"

EXTRA_IMAGE_FEATURES = "debug-tweaks package-management tools-profile"

PATCHRESOLVE = "noop"

BB_DISKMON_DIRS = "\
    STOPTASKS,${TMPDIR},1G,100K \
    STOPTASKS,${DL_DIR},1G,100K \
    STOPTASKS,${SSTATE_DIR},1G,100K \
    ABORT,${TMPDIR},100M,1K \
    ABORT,${DL_DIR},100M,1K \
    ABORT,${SSTATE_DIR},100M,1K"

CONF_VERSION = "0.8"

BB_NUMBER_THREADS ?= "8"
PARALLEL_MAKE ?= "-j 8"
INCOMPATIBLE_LICENSE = "libav commercial CC-BY-SA-2.0 CC-BY-SA-3.0
CC-BY-SA-4.0"

MACHINE ?= "raspberrypi3"

FORTRAN_forcevariable = ",fortran"

RM_OLD_IMAGE = "1"

GCCVERSION ?= "5.4.%"
PREFERRED_VERSION_gcc ?= "${GCCVERSION}"
PREFERRED_VERSION_gcc-cross ?= "${GCCVERSION}"
PREFERRED_VERSION_gcc-cross-initial ?= "${GCCVERSION}"
PREFERRED_VERSION_gcc-cross-intermediate ?= "${GCCVERSION}"
PREFERRED_VERSION_gcc-cross-canadian ?= "${GCCVERSION}"
PREFERRED_VERSION_gcc-runtime ?= "${GCCVERSION}"
PREFERRED_VERSION_libgfortran ?= "${GCCVERSION}"
PREFERRED_VERSION_linux-raspberrypi = "4.9.%"

DISTRO_FEATURES_remove = "bluetooth nfc x11 wayland 3g"
IMAGE_INSTALL_remove = "bind ltrace"

IMAGE_LINGUAS = "en-us"
PREFERRED_PROVIDER_virtual/kernel= "linux-raspberrypi"



Thanks

On Fri, 21 Apr 2017 at 18:45 Burton, Ross <ross.burton@intel.com> wrote:

>
> On 21 April 2017 at 12:37, David Bensoussan <dbensoussan@synapticon.com>
> wrote:
>
>> DISTRO_FEATURES_LIBC = "libc-locales libc-locale-code"
>>
>
> Unless you really need to, don't fiddle stuff like this.  Can you share
> your local.conf?
>
> Ross
>
-- 

*David bensoussan*
Roboticist / Embedded Software Engineer
------------------------------

*Synapticon* | Robotic Control Systems
Mobile: 015779804515
Fax: +49 7031 / 30 478 -99

*synapticon.com* <https://www.synapticon.com/> | Twitter
<https://twitter.com/#!/synapticon_co> | Facebook
<https://fb.com/Synapticon>

Synapticon GmbH | Daimlerstraße 26 | 71101 Schönaich, Germany
Secretary +49 7031 / 30 478 -0 | Managing Director: Nikolai Ensslen
Amtsgericht Stuttgart HRB 756076 | USt-ID DE271647127

This message and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. Please notify the sender immediately if you have received this
e-mail by mistake and delete it from your system.

[-- Attachment #2: Type: text/html, Size: 6603 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)
  2017-04-21 11:37 bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies) David Bensoussan
  2017-04-21 16:44 ` Burton, Ross
@ 2017-04-21 18:50 ` Trevor Woerner
  2017-04-22  7:49   ` David Bensoussan
  1 sibling, 1 reply; 8+ messages in thread
From: Trevor Woerner @ 2017-04-21 18:50 UTC (permalink / raw)
  To: David Bensoussan; +Cc: yocto

On Fri 2017-04-21 @ 11:37:44 AM, David Bensoussan wrote:
> I wanted to generate an sdk and met these errors while executing:
> $ bitbake core-image-base -c do_populate_sdk

Does adding the "do_" work? Is there any difference if you type:

	$ bitbake core-image-base -c populate_sdk

?


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)
  2017-04-21 18:50 ` Trevor Woerner
@ 2017-04-22  7:49   ` David Bensoussan
  2017-04-23  8:40     ` David Bensoussan
  0 siblings, 1 reply; 8+ messages in thread
From: David Bensoussan @ 2017-04-22  7:49 UTC (permalink / raw)
  To: Trevor Woerner; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 1242 bytes --]

It was a typo, sorry, I typed it without the "do_"

On Fri, 21 Apr 2017 at 20:50 Trevor Woerner <twoerner@gmail.com> wrote:

> On Fri 2017-04-21 @ 11:37:44 AM, David Bensoussan wrote:
> > I wanted to generate an sdk and met these errors while executing:
> > $ bitbake core-image-base -c do_populate_sdk
>
> Does adding the "do_" work? Is there any difference if you type:
>
>         $ bitbake core-image-base -c populate_sdk
>
> ?
>
-- 

*David bensoussan*
Roboticist / Embedded Software Engineer
------------------------------

*Synapticon* | Robotic Control Systems
Mobile: 015779804515
Fax: +49 7031 / 30 478 -99

*synapticon.com* <https://www.synapticon.com/> | Twitter
<https://twitter.com/#!/synapticon_co> | Facebook
<https://fb.com/Synapticon>

Synapticon GmbH | Daimlerstraße 26 | 71101 Schönaich, Germany
Secretary +49 7031 / 30 478 -0 | Managing Director: Nikolai Ensslen
Amtsgericht Stuttgart HRB 756076 | USt-ID DE271647127

This message and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. Please notify the sender immediately if you have received this
e-mail by mistake and delete it from your system.

[-- Attachment #2: Type: text/html, Size: 4380 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)
  2017-04-22  7:49   ` David Bensoussan
@ 2017-04-23  8:40     ` David Bensoussan
  2017-04-23  9:09       ` David Bensoussan
  2017-04-24 15:55       ` Burton, Ross
  0 siblings, 2 replies; 8+ messages in thread
From: David Bensoussan @ 2017-04-23  8:40 UTC (permalink / raw)
  To: Trevor Woerner; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 4062 bytes --]

I managed to track down how to create the SDK. Sorry for the long answer
but it might help people googling it.

DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC}
${POKY_DEFAULT_DISTRO_FEATURES}" in *meta-poky/conf/distro/poky.conf*
DISTRO_FEATURES_LIBC is defined as DISTRO_FEATURES_LIBC_DEFAULT in
*meta/conf/distro/include/default-distrovars.inc*
DISTRO_FEATURES_LIBC_DEFAULT ?= "ipv4 ipv6 libc-backtrace libc-big-macros
libc-bsd libc-cxx-tests libc-catgets libc-charsets libc-crypt \
libc-crypt-ufc libc-db-aliases libc-envz libc-fcvt libc-fmtmsg libc-fstab
libc-ftraverse \
libc-getlogin libc-idn libc-inet-anl libc-libm libc-locales
libc-locale-code \
libc-memusage libc-nis libc-nsswitch libc-rcmd libc-rtld-debug libc-spawn
libc-streams libc-sunrpc \
libc-utmp libc-utmpx libc-wordexp libc-posix-clang-wchar libc-posix-regexp
libc-posix-regexp-glibc \
libc-posix-wchar-io" i*n the same file*

And finally:

LIBC_DEPENDENCIES = "libsegfault \
    glibc \
    glibc-dbg \
    glibc-dev \
    glibc-utils \
    glibc-thread-db \
    ${@get_libc_locales_dependencies(d)}"

LIBC_LOCALE_DEPENDENCIES = "\
glibc-localedata-i18n \
glibc-gconv-ibm850 \
glibc-gconv-cp1252 \
glibc-gconv-iso8859-1 \
glibc-gconv-iso8859-15"

def get_libc_locales_dependencies(d):
    if 'libc-locales' in (d.getVar('DISTRO_FEATURES', True) or '').split() :
        return d.getVar('LIBC_LOCALE_DEPENDENCIES', True) or ''
    else:
        return ''


*in ../meta/conf/distro/include/tclibc-glibc.inc*

This is how they are enabled. To make it work, I added in my local.conf:
LIBC_DEPENDENCIES_remove += "glibc-gconv-cp1252 glibc-gconv-ibm850
glibc-gconv-iso8859-1 glibc-gconv-iso8859-15 glibc-localedata-i18n"

Now, I simply wonder why is there a "compatibility issue" having them in
the DISTRO_FEATURES.


On Sat, 22 Apr 2017 at 09:49 David Bensoussan <dbensoussan@synapticon.com>
wrote:

> It was a typo, sorry, I typed it without the "do_"
>
> On Fri, 21 Apr 2017 at 20:50 Trevor Woerner <twoerner@gmail.com> wrote:
>
>> On Fri 2017-04-21 @ 11:37:44 AM, David Bensoussan wrote:
>> > I wanted to generate an sdk and met these errors while executing:
>> > $ bitbake core-image-base -c do_populate_sdk
>>
>> Does adding the "do_" work? Is there any difference if you type:
>>
>>         $ bitbake core-image-base -c populate_sdk
>>
>> ?
>>
> --
>
> *David bensoussan*
> Roboticist / Embedded Software Engineer
> ------------------------------
>
> *Synapticon* | Robotic Control Systems
> Mobile: 015779804515
> Fax: +49 7031 / 30 478 -99 <+49%207031%203047899>
>
> *synapticon.com* <https://www.synapticon.com/> | Twitter
> <https://twitter.com/#!/synapticon_co> | Facebook
> <https://fb.com/Synapticon>
>
> Synapticon GmbH | Daimlerstraße 26 | 71101 Schönaich, Germany
> Secretary +49 7031 / 30 478 -0 | Managing Director: Nikolai Ensslen
> Amtsgericht Stuttgart HRB 756076 | USt-ID DE271647127
>
> This message and any files transmitted with it are confidential and
> intended solely for the use of the individual or entity to whom they are
> addressed. Please notify the sender immediately if you have received this
> e-mail by mistake and delete it from your system.
>
-- 

*David bensoussan*
Roboticist / Embedded Software Engineer
------------------------------

*Synapticon* | Robotic Control Systems
Mobile: 015779804515
Fax: +49 7031 / 30 478 -99

*synapticon.com* <https://www.synapticon.com/> | Twitter
<https://twitter.com/#!/synapticon_co> | Facebook
<https://fb.com/Synapticon>

Synapticon GmbH | Daimlerstraße 26 | 71101 Schönaich, Germany
Secretary +49 7031 / 30 478 -0 | Managing Director: Nikolai Ensslen
Amtsgericht Stuttgart HRB 756076 | USt-ID DE271647127

This message and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. Please notify the sender immediately if you have received this
e-mail by mistake and delete it from your system.

[-- Attachment #2: Type: text/html, Size: 12211 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)
  2017-04-23  8:40     ` David Bensoussan
@ 2017-04-23  9:09       ` David Bensoussan
  2017-04-24 15:55       ` Burton, Ross
  1 sibling, 0 replies; 8+ messages in thread
From: David Bensoussan @ 2017-04-23  9:09 UTC (permalink / raw)
  To: Trevor Woerner; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 5274 bytes --]

I forgot to precise, compiling, doesn't work on the host system, it cannot
compile a simple .c file, not finding "stdio.h".

On Sun, 23 Apr 2017 at 10:40 David Bensoussan <dbensoussan@synapticon.com>
wrote:

> I managed to track down how to create the SDK. Sorry for the long answer
> but it might help people googling it.
>
> DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC}
> ${POKY_DEFAULT_DISTRO_FEATURES}" in *meta-poky/conf/distro/poky.conf*
> DISTRO_FEATURES_LIBC is defined as DISTRO_FEATURES_LIBC_DEFAULT in
> *meta/conf/distro/include/default-distrovars.inc*
> DISTRO_FEATURES_LIBC_DEFAULT ?= "ipv4 ipv6 libc-backtrace libc-big-macros
> libc-bsd libc-cxx-tests libc-catgets libc-charsets libc-crypt \
> libc-crypt-ufc libc-db-aliases libc-envz libc-fcvt libc-fmtmsg libc-fstab
> libc-ftraverse \
> libc-getlogin libc-idn libc-inet-anl libc-libm libc-locales
> libc-locale-code \
> libc-memusage libc-nis libc-nsswitch libc-rcmd libc-rtld-debug libc-spawn
> libc-streams libc-sunrpc \
> libc-utmp libc-utmpx libc-wordexp libc-posix-clang-wchar libc-posix-regexp
> libc-posix-regexp-glibc \
> libc-posix-wchar-io" i*n the same file*
>
> And finally:
>
> LIBC_DEPENDENCIES = "libsegfault \
>     glibc \
>     glibc-dbg \
>     glibc-dev \
>     glibc-utils \
>     glibc-thread-db \
>     ${@get_libc_locales_dependencies(d)}"
>
> LIBC_LOCALE_DEPENDENCIES = "\
> glibc-localedata-i18n \
> glibc-gconv-ibm850 \
> glibc-gconv-cp1252 \
> glibc-gconv-iso8859-1 \
> glibc-gconv-iso8859-15"
>
> def get_libc_locales_dependencies(d):
>     if 'libc-locales' in (d.getVar('DISTRO_FEATURES', True) or '').split()
> :
>         return d.getVar('LIBC_LOCALE_DEPENDENCIES', True) or ''
>     else:
>         return ''
>
>
> *in ../meta/conf/distro/include/tclibc-glibc.inc*
>
> This is how they are enabled. To make it work, I added in my local.conf:
> LIBC_DEPENDENCIES_remove += "glibc-gconv-cp1252 glibc-gconv-ibm850
> glibc-gconv-iso8859-1 glibc-gconv-iso8859-15 glibc-localedata-i18n"
>
> Now, I simply wonder why is there a "compatibility issue" having them in
> the DISTRO_FEATURES.
>
>
> On Sat, 22 Apr 2017 at 09:49 David Bensoussan <dbensoussan@synapticon.com>
> wrote:
>
>> It was a typo, sorry, I typed it without the "do_"
>>
>> On Fri, 21 Apr 2017 at 20:50 Trevor Woerner <twoerner@gmail.com> wrote:
>>
>>> On Fri 2017-04-21 @ 11:37:44 AM, David Bensoussan wrote:
>>> > I wanted to generate an sdk and met these errors while executing:
>>> > $ bitbake core-image-base -c do_populate_sdk
>>>
>>> Does adding the "do_" work? Is there any difference if you type:
>>>
>>>         $ bitbake core-image-base -c populate_sdk
>>>
>>> ?
>>>
>> --
>>
>> *David bensoussan*
>> Roboticist / Embedded Software Engineer
>> ------------------------------
>>
>> *Synapticon* | Robotic Control Systems
>> Mobile: 015779804515
>> Fax: +49 7031 / 30 478 -99 <+49%207031%203047899>
>>
>> *synapticon.com* <https://www.synapticon.com/> | Twitter
>> <https://twitter.com/#!/synapticon_co> | Facebook
>> <https://fb.com/Synapticon>
>>
>> Synapticon GmbH | Daimlerstraße 26 | 71101 Schönaich, Germany
>> Secretary +49 7031 / 30 478 -0 | Managing Director: Nikolai Ensslen
>> Amtsgericht Stuttgart HRB 756076 | USt-ID DE271647127
>>
>> This message and any files transmitted with it are confidential and
>> intended solely for the use of the individual or entity to whom they are
>> addressed. Please notify the sender immediately if you have received this
>> e-mail by mistake and delete it from your system.
>>
> --
>
> *David bensoussan*
> Roboticist / Embedded Software Engineer
> ------------------------------
>
> *Synapticon* | Robotic Control Systems
> Mobile: 015779804515
> Fax: +49 7031 / 30 478 -99 <+49%207031%203047899>
>
> *synapticon.com* <https://www.synapticon.com/> | Twitter
> <https://twitter.com/#!/synapticon_co> | Facebook
> <https://fb.com/Synapticon>
>
> Synapticon GmbH | Daimlerstraße 26 | 71101 Schönaich, Germany
> Secretary +49 7031 / 30 478 -0 | Managing Director: Nikolai Ensslen
> Amtsgericht Stuttgart HRB 756076 | USt-ID DE271647127
>
> This message and any files transmitted with it are confidential and
> intended solely for the use of the individual or entity to whom they are
> addressed. Please notify the sender immediately if you have received this
> e-mail by mistake and delete it from your system.
>
-- 

*David bensoussan*
Roboticist / Embedded Software Engineer
------------------------------

*Synapticon* | Robotic Control Systems
Mobile: 015779804515
Fax: +49 7031 / 30 478 -99

*synapticon.com* <https://www.synapticon.com/> | Twitter
<https://twitter.com/#!/synapticon_co> | Facebook
<https://fb.com/Synapticon>

Synapticon GmbH | Daimlerstraße 26 | 71101 Schönaich, Germany
Secretary +49 7031 / 30 478 -0 | Managing Director: Nikolai Ensslen
Amtsgericht Stuttgart HRB 756076 | USt-ID DE271647127

This message and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. Please notify the sender immediately if you have received this
e-mail by mistake and delete it from your system.

[-- Attachment #2: Type: text/html, Size: 17269 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies)
  2017-04-23  8:40     ` David Bensoussan
  2017-04-23  9:09       ` David Bensoussan
@ 2017-04-24 15:55       ` Burton, Ross
  1 sibling, 0 replies; 8+ messages in thread
From: Burton, Ross @ 2017-04-24 15:55 UTC (permalink / raw)
  To: David Bensoussan; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 1560 bytes --]

On 23 April 2017 at 09:40, David Bensoussan <dbensoussan@synapticon.com>
wrote:

> I managed to track down how to create the SDK. Sorry for the long answer
> but it might help people googling it.
>

Honestly no idea why this doesn't work for you:

$ MACHINE=qemuarm64 bitbake core-image-base -c do_populate_sdk
Parsing recipes: 100%
|################################################################################################|
Time: 00:00:05
Parsing of 899 .bb files complete (0 cached, 899 parsed). 1330 targets, 62
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION        = "1.28.0"
BUILD_SYS         = "x86_64-linux"
NATIVELSBSTRING   = "Debian-8.6"
TARGET_SYS        = "aarch64-poky-linux"
MACHINE           = "qemuarm64"
DISTRO            = "poky"
DISTRO_VERSION    = "2.0.3"
TUNE_FEATURES     = "aarch64"
TARGET_FPU        = ""
meta
meta-yocto
meta-yocto-bsp    = "HEAD:e08994ce953ff5ab49b260e7763a40bfad4285ca"

NOTE: Preparing RunQueue
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
NOTE: Tasks Summary: Attempted 3297 tasks of which 1609 didn't need to be
rerun and all succeeded.

Jefro branch, standard config with just package_deb and DL_DIR set.

Every time we do a test build on the autobuilder we probably build about 20
SDKs, so they should work.  Can you replicate with a qemu machine with no
other layers?  All the fiddling you're doing shouldn't be required, unless
meta-raspberrypi is breaking something.

Ross

[-- Attachment #2: Type: text/html, Size: 3102 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-04-24 15:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-21 11:37 bitbake core-image-base -c do_populate_sdk fails with glibc (unmet dependencies) David Bensoussan
2017-04-21 16:44 ` Burton, Ross
2017-04-21 16:55   ` David Bensoussan
2017-04-21 18:50 ` Trevor Woerner
2017-04-22  7:49   ` David Bensoussan
2017-04-23  8:40     ` David Bensoussan
2017-04-23  9:09       ` David Bensoussan
2017-04-24 15:55       ` Burton, Ross

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.