Re: [yocto] u-boot recipe: Missing dependencies

2017-11-08 Thread Eric Schwarz
Am 09.10.2017 12:30, schrieb Burton, Ross: On 8 October 2017 at 18:04, Eric Schwarz wrote: Don't _append when you can just extend the assignment above. I just did it that way for the moment since I wanted to circumvent merge conflicts when I upgrade the

[yocto] u-boot recipe: Missing dependencies

2017-10-10 Thread Eric Schwarz
Hello, it seems that even in the most current yocto u-boot recipes from openembedded some general and also x86 specific dependencies are missing. The patch below adds them. From 0502033c5e555abaadcb5e01faae041293e9 Mon Sep 17 00:00:00 2001 From: Eric Schwarz Date: Tue,

Re: [yocto] u-boot recipe: Missing dependencies

2017-10-09 Thread Martin Jansa
Be aware that when you provide python-native, it's more likely that swig-native will be detected in sysroot as well and then u-boot will fail to build libfdt python library. To prevent this autodetection you can use something like this: do_compile_prepend () { sed 's@\(^always += $(if

Re: [yocto] u-boot recipe: Missing dependencies

2017-10-09 Thread Burton, Ross
On 8 October 2017 at 18:04, Eric Schwarz wrote: > Don't _append when you can just extend the assignment above. >> > > I just did it that way for the moment since I wanted to circumvent merge > conflicts when I upgrade the underlying recipes from openembedded. Well

Re: [yocto] u-boot recipe: Missing dependencies

2017-10-08 Thread Eric Schwarz
Hi Ross, DEPENDS += "bc-native dtc-native" +DEPENDS_append = " python-native" +DEPENDS_append_x86-64 = " iasl-native swig-native" Don't _append when you can just extend the assignment above. I just did it that way for the moment since I wanted to circumvent merge conflicts when I upgrade

Re: [yocto] u-boot recipe: Missing dependencies

2017-10-04 Thread Burton, Ross
On 3 October 2017 at 18:15, Eric Schwarz wrote: > DEPENDS += "bc-native dtc-native" > +DEPENDS_append = " python-native" > +DEPENDS_append_x86-64 = " iasl-native swig-native" > Don't _append when you can just extend the assignment above. Depending on python-native