[oe] Is core-image-x11 broken?

2014-08-16 Thread Carlos Rafael Giani
Hello, I have experienced very strange issues with core-image-x11 . Until recently, the image worked fine. I could boot with it, and got a fullscreen matchbox-terminal on screen. I did a fresh build from scratch, with yesterday's master state of poky. core-image-x11 didn't boot. It turns out

Re: [oe] Is core-image-x11 broken?

2014-08-16 Thread Carlos Rafael Giani
Nevermind, I found out that subtle data corruption problems with one hard drive were causing all sorts of chaos. Rebuilt on another hard disk, works now. On 08/16/2014 03:17 PM, Carlos Rafael Giani wrote: Hello, I have experienced very strange issues with core-image-x11 . Until recently

[oe] [meta-oe][PATCH v2] libvpx: upgrade to version 1.3.0

2014-07-31 Thread Carlos Rafael Giani
Removed libvpx.inc , since there was no need for it (there aren't multiple .bb files for different versions that could share the .inc) Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- meta-oe/recipes-multimedia/webm/libvpx.inc | 38 .../0001-configure.sh-quote

Re: [oe] [meta-qt5][PATCH] QtGstreamer recipe with patches for IMX6 support.

2014-07-31 Thread Carlos Rafael Giani
The patches are imx6 specific, so they should not be part of meta-qt5. Instead, add them to meta-fsl-arm , write a .bbappend for them. Also, I am confused. The summary at the beginning lists: 0002-Set-playbin-s-flags-as-native-video-audio-in-case-of.patch , but in the recipe I see

[oe] [meta-oe][PATCH] libvpx: upgrade to version 1.3.0

2014-07-30 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- meta-oe/recipes-multimedia/webm/libvpx.inc | 2 + .../0001-configure.sh-quote-local-variables.patch | 40 + .../webm/libvpx/CVE-2010-4203.patch| 69 -- .../libvpx/do

[oe] [meta-browser][PATCH 1/2] chromium: Add PACKAGECONFIG for disabling API keys info bar

2014-07-29 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../chromium/0002-Disable-API-keys-info-bar.patch | 33 ++ recipes-browser/chromium/chromium_35.0.1916.114.bb | 1 + 2 files changed, 34 insertions(+) create mode 100644 recipes-browser/chromium/chromium/0002

[oe] [meta-browser][PATCH 2/2] chromium: Add recipe for version 37.0.2062.0

2014-07-29 Thread Carlos Rafael Giani
This version includes Wayland support by adding ozone-wayland Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../0001-Disable-ANGLE-commit-ID-generation.patch | 71 + .../0001-Remove-X-libraries-from-GYP-files.patch | 79 ++ recipes-browser/chromium

[oe] git directory in WORKDIR question

2014-07-24 Thread Carlos Rafael Giani
Hello, When I use a git:// URL in SRC_URI , that git repository is cloned over to the WORKDIR , and ends up in a directory called git. In other words, the sources are at $WORKDIR/git . Can I instruct OE to use another name? Like, $WORKDIR/my_name instead of $WORKDIR/git ? cheers --

[oe] [meta-efl][PATCH] e-wm: Add patch to fix crash caused by type error

2014-06-01 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../e17/e-wm/0001-Fix-incorrect-message-type.patch | 28 ++ meta-efl/recipes-efl/e17/e-wm_0.18.7.bb| 1 + 2 files changed, 29 insertions(+) create mode 100644 meta-efl/recipes-efl/e17/e-wm/0001-Fix

[oe] [meta-browser][PATCH] chromium: Upgrade to version 35.0.1916.114

2014-05-30 Thread Carlos Rafael Giani
This fixes several CSS transition problems, and improves performance on some pages Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../chromium/fix-glib-deprecated-warning.patch | 32 ++ ...um_35.0.1883.0.bb = chromium_35.0.1916.114.bb} | 5 ++-- 2 files

[oe] [meta-browser][PATCH v3 2/4] chromium: Add variable to contain extra command-line arguments

2014-05-01 Thread Carlos Rafael Giani
With this patch it becomes possible to add extra command line options to the chrome call in /usr/bin/google-chrome script . Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- recipes-browser/chromium/chromium/google-chrome | 9 + recipes-browser/chromium/chromium_35.0.1883.0

[oe] [meta-browser][PATCH v3 4/4] chromium: Add ignore-lost-context PACKAGECONFIG option

2014-05-01 Thread Carlos Rafael Giani
this PACKAGECONFIG chooses the second option. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../remove-linux-accel-canvas-from-blacklist.patch | 32 ++ recipes-browser/chromium/chromium_35.0.1883.0.bb | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 recipes

[oe] [meta-browser][PATCH v3 0/4] Introduce EGL/GLES and component build patches for Chromium

2014-05-01 Thread Carlos Rafael Giani
(they haven't been observed with Vivante GPUs for example, and internals of its galcore module do not show anything that could cause a lost context). But since these recipes do not depend on a specific platform, this option must be explicitely enabled. Carlos Rafael Giani (4): chromium

[oe] [meta-browser][PATCH v3 1/4] chromium: Add component-build PACKAGECONFIG option

2014-05-01 Thread Carlos Rafael Giani
development and testing of Chromium internals. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- recipes-browser/chromium/chromium/component-build.gypi | 5 + recipes-browser/chromium/chromium/google-chrome| 2 ++ recipes-browser/chromium/chromium_35.0.1883.0.bb | 13

[oe] [meta-browser][PATCH v3 3/4] chromium: Add use-egl PACKAGECONFIG option

2014-05-01 Thread Carlos Rafael Giani
/OpenGLES-enabled build produces a chromium version that renders 2D and WebGL with GPU acceleration (if present). Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- recipes-browser/chromium/chromium_35.0.1883.0.bb | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git

[oe] [meta-browser][PATCH v2 0/4] Introduce EGL/GLES and component build patches for Chromium

2014-04-29 Thread Carlos Rafael Giani
(they haven't been observed with Vivante GPUs for example, and internals of its galcore module do not show anything that could cause a lost context). But since these recipes do not depend on a specific platform, this option must be explicitely enabled. Carlos Rafael Giani (4): chromium

[oe] [meta-browser][PATCH v2 4/4] chromium: Add ignore-lost-context PACKAGECONFIG option

2014-04-29 Thread Carlos Rafael Giani
this PACKAGECONFIG chooses the second option. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../remove-linux-accel-canvas-from-blacklist.patch | 32 ++ recipes-browser/chromium/chromium_35.0.1883.0.bb | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 recipes

[oe] [meta-browser][PATCH v2 1/4] chromium: Add component-build PACKAGECONFIG option

2014-04-29 Thread Carlos Rafael Giani
development and testing of Chromium internals. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- recipes-browser/chromium/chromium/component-build.gypi | 5 + recipes-browser/chromium/chromium/google-chrome| 2 ++ recipes-browser/chromium/chromium_35.0.1883.0.bb | 11

[oe] [meta-browser][PATCH v2 3/4] chromium: Add use-egl PACKAGECONFIG option

2014-04-29 Thread Carlos Rafael Giani
/OpenGLES-enabled build produces a chromium version that renders 2D and WebGL with GPU acceleration (if present). Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- recipes-browser/chromium/chromium_35.0.1883.0.bb | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git

[oe] [meta-browser][PATCH v2 2/4] chromium: Add variable to contain extra command-line arguments

2014-04-29 Thread Carlos Rafael Giani
With this patch it becomes possible to add extra command line options to the chrome call in /usr/bin/google-chrome script . Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- recipes-browser/chromium/chromium/google-chrome | 9 + recipes-browser/chromium/chromium_35.0.1883.0

Re: [oe] [meta-browser][PATCH v2 1/4] chromium: Add component-build PACKAGECONFIG option

2014-04-29 Thread Carlos Rafael Giani
On 2014-04-29 20:25, Otavio Salvador wrote: On Tue, Apr 29, 2014 at 3:39 AM, Carlos Rafael Giani d...@pseudoterminal.org wrote: In a component build, the individual Chromium components are contained in separate shared objects. This is useful when building on a system with 8 GB RAM or less

Re: [oe] [meta-browser][PATCH v2 3/4] chromium: Add use-egl PACKAGECONFIG option

2014-04-29 Thread Carlos Rafael Giani
On 2014-04-29 20:30, Otavio Salvador wrote: On Tue, Apr 29, 2014 at 3:39 AM, Carlos Rafael Giani d...@pseudoterminal.org wrote: By default, Chromium will try to use GLX and regular OpenGL. On embedded platforms, these are often not present, or unaccelerated, and using EGL and OpenGL ES instead

[oe] [meta-oe][PATCH] fbset: inherit from autotools-brokensep instead of autotools to fix build

2014-04-27 Thread Carlos Rafael Giani
This package will not build with a separate build directory. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- meta-oe/recipes-support/fbset/fbset_2.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/fbset/fbset_2.1.bb b/meta-oe/recipes

[oe] [meta-browser][PATCH 0/4] Introduce EGL/GLES and component build patches for Chromium

2014-04-27 Thread Carlos Rafael Giani
(they haven't been observed with Vivante GPUs for example, and internals of its galcore module do not show anything that could cause a lost context). But since these recipes do not depend on a specific platform, this option must be explicitely enabled. Carlos Rafael Giani (4): Add

[oe] [meta-browser][PATCH 1/4] Add component-build PACKAGECONFIG option

2014-04-27 Thread Carlos Rafael Giani
development and testing of Chromium internals. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- recipes-browser/chromium/chromium/component-build.gypi | 5 + recipes-browser/chromium/chromium/google-chrome| 2 ++ recipes-browser/chromium/chromium_35.0.1883.0.bb | 11

[oe] [meta-browser][PATCH 2/4] Add variable to contain extra command-line arguments

2014-04-27 Thread Carlos Rafael Giani
With this patch it becomes possible to add extra command line options to the chrome call in /usr/bin/google-chrome script . Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- recipes-browser/chromium/chromium/google-chrome | 9 + recipes-browser/chromium/chromium_35.0.1883.0

[oe] [meta-browser][PATCH 3/4] Add use-egl PACKAGECONFIG to let chromium use EGL automatically

2014-04-27 Thread Carlos Rafael Giani
/OpenGLES-enabled build produces a chromium version that renders 2D and WebGL with GPU acceleration (if present). Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- recipes-browser/chromium/chromium_35.0.1883.0.bb | 7 +++ 1 file changed, 7 insertions(+) diff --git a/recipes-browser

[oe] [meta-browser][PATCH 4/4] Add ignore-lost-context PACKAGECONFIG to ignore lost EGL contexts

2014-04-27 Thread Carlos Rafael Giani
this PACKAGECONFIG chooses the second option. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../remove-linux-accel-canvas-from-blacklist.patch | 32 ++ recipes-browser/chromium/chromium_35.0.1883.0.bb | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 recipes

[oe] Avoiding registration as shlib provider

2014-03-17 Thread Carlos Rafael Giani
Hello, I have noticed the problem with GStreamer in current master: the many xyz was registered as shlib provider warnings. Actually, it makes no sense to register the plugins, since they are, well, plugins. No other package must have a hard dependency on any of them. So, it would make sense

[oe] Using openembedded with externally built kernel

2014-03-12 Thread Carlos Rafael Giani
I have a platform with a very barebones BSP that builds and patches a 2.6 kernel using a whole lot of shell scripts and patch files. Integrating this build process into a .bb file is too complicated at the moment. Since cross compiling all packages I need is a nightmare to do manually, I

[oe] OE and SSDs

2014-02-13 Thread Carlos Rafael Giani
Hello, we are considering purchasing SSDs for our development machines, for faster I/O and better latency. One open question is whether to buy TLC- or MLC-based drives. TLCs are considerably cheaper. They would not be used in build bots, but on the other hand, people will build entire images

[oe] [meta-oe][PATCH] libopus: upgrade to version 1.1

2013-12-09 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../recipes-multimedia/libopus/{libopus_1.0.3.bb = libopus_1.1.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta-oe/recipes-multimedia/libopus/{libopus_1.0.3.bb = libopus_1.1.bb} (72%) diff --git a/meta-oe

[oe] Compiler flags in machine features for specific GCC versions

2013-12-09 Thread Carlos Rafael Giani
Hello, I have Marvell PJ4 based platform which didn't get extra GCC support until GCC 4.8. It added marvellpj4 as an arch. However, if for some reason GCC 4.7 is used, and --march=marvellpj4 is used, then building will fail. Is there a way to add a --march=marvellpj4 flag to TUNE_CCARGS if and

[oe] [meta-oe][PATCH 2/2] libopus: upgrade to version 1.0.3

2013-11-06 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../libopus/{libopus_0.9.14.bb = libopus_1.0.3.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta-oe/recipes-multimedia/libopus/{libopus_0.9.14.bb = libopus_1.0.3.bb} (72%) diff --git a/meta

[oe] [meta-oe][PATCH 1/2] htop: upgrade to version 1.0.2

2013-11-06 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- meta-oe/recipes-support/htop/{htop_0.9.bb = htop_1.0.2.bb} | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) rename meta-oe/recipes-support/htop/{htop_0.9.bb = htop_1.0.2.bb} (55%) diff --git a/meta-oe/recipes-support

[oe] [meta-oe][PATCH] orc: version 0.4.18 migrated to oe-core

2013-11-06 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- meta-oe/recipes-devtools/orc/orc.inc | 25 - meta-oe/recipes-devtools/orc/orc_0.4.18.bb | 6 -- 2 files changed, 31 deletions(-) delete mode 100644 meta-oe/recipes-devtools/orc/orc.inc delete mode

[oe] [meta-oe][PATCH] orc: update to version 0.4.18

2013-10-14 Thread Carlos Rafael Giani
This is the minimum required version for the Orc support in GStreamer 1.2 Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- meta-oe/recipes-devtools/orc/orc_0.4.16.bb | 6 -- meta-oe/recipes-devtools/orc/orc_0.4.18.bb | 6 ++ 2 files changed, 6 insertions(+), 6 deletions

[oe] How can I make recipes conditionally enabled?

2013-08-27 Thread Carlos Rafael Giani
Hello, I have a question about a problem I've had several times in the past: if I write a layer, and add .bbappends, then the layers with the corresponding .bb files become hard dependencies. But lets say I want to write a BSP layer, and I add some machine specific Qt5 patches. Now everybody

Re: [oe] [meta-qt5][PATCH] qtbase: typo about virtual/egl depends

2013-06-20 Thread Carlos Rafael Giani
On 2013-06-20 05:54, Nicolas Dechesne wrote: The proper 'virtual' name for EGL is virtual/egl, not virtual/libegl, as per meta/recipes-graphics/mesa/mesa-common.inc. Signed-off-by: Nicolas Dechesne nicolas.deche...@linaro.org --- recipes-qt/qt5/qtbase.inc | 2 +- 1 file changed, 1

Re: [oe] Error message about multiple EGL / GLES providers

2013-05-21 Thread Carlos Rafael Giani
On 2013-05-21 11:45, Burton, Ross wrote: On 20 May 2013 19:18, Carlos Rafael Giani d...@pseudoterminal.org wrote: I am currently adapting the cubox layer for dylan, and get these errors: ERROR: Multiple .bb files are due to be built which each provide virtual/libgles1 ERROR: Multiple .bb files

Re: [oe] Error message about multiple EGL / GLES providers

2013-05-21 Thread Carlos Rafael Giani
On 05/21/2013 05:22 PM, Burton, Ross wrote: On 21 May 2013 11:08, Carlos Rafael Giani d...@pseudoterminal.org wrote: It would be useful to instruct Mesa to turn off its OpenGLES and EGL support, leaving Mesa only for GLX+Desktop OpenGL (software-rendered), if anybody really needs

[oe] Error message about multiple EGL / GLES providers

2013-05-20 Thread Carlos Rafael Giani
Hello, I am currently adapting the cubox layer for dylan, and get these errors: ERROR: Multiple .bb files are due to be built which each provide virtual/libgles1 ERROR: Multiple .bb files are due to be built which each provide virtual/libgles2 ERROR: Multiple .bb files are due to be built

[oe] Detecting empty packages

2013-05-14 Thread Carlos Rafael Giani
Hello, inside a PACKAGESPLITFUNCS function , I need to detect if a package is empty, to determine another package's RDEPENDS list. I tried to look at FILES_${packagename}, but the problem is that this list also includes empty directories sometimes. So, even though FILES_${packagename} isnt

Re: [oe] Please submit your unindexed layers

2013-05-07 Thread Carlos Rafael Giani
, Cristian -Original Message- From: Paul Eggleton [mailto:paul.eggle...@linux.intel.com] Sent: Thursday, May 02, 2013 5:11 PM To: openembedded-devel@lists.openembedded.org Cc: Carlos Rafael Giani; Burton, Ross; Iorga, Cristian Subject: Re: [oe] Please submit your unindexed layers On Thursday 02

Re: [oe] Please submit your unindexed layers

2013-05-02 Thread Carlos Rafael Giani
On 05/02/2013 03:27 PM, Paul Eggleton wrote: Hi all, Even a cursory search of github reveals that there are a growing number of layers being worked on in the community that aren't currently listed in the OE layer index. I don't think it would be right for us to just add all of these in bulk as

[oe] do_split_packages and populate_packages_prepend

2013-05-02 Thread Carlos Rafael Giani
Hello, I wonder if do_split_packages() can only be used inside a populate_packages_prepend() function. https://wiki.yoctoproject.org/wiki/Handling_optional_module_packaging seems to suggest this. Since _prepend is problematic. I tried to use prefuncs instead ( populate_packages[prefuncs] +=

[oe] [meta-oe] libvpx patch backport request

2013-04-22 Thread Carlos Rafael Giani
Hello, in the meta-oe master branch, commit 392e30c21accc720c4e7ae38bc830bfc283a6490 introduces a patch to libvpx that fixes the library's hardcoded soft/hardfp flags. Without this patch, the library cannot be built for hardfp targets. I cherry-picked it on my local repository, and it worked

Re: [oe] [meta-oe][PATCH v2] add recipe for mpg123, a decoder for MPEG-1 layer 1, 2, and 3

2013-04-09 Thread Carlos Rafael Giani
On 2013-04-09 08:43, Koen Kooi wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Op 09-04-13 01:24, Carlos Rafael Giani schreef: mpg123 consists of a decoder library, and a command line application. The application can be used to playback and dump decoded mp1/mp2/mp3 files. The library can

[oe] [meta-multimedia][PATCH v3] add recipe for mpg123, a decoder for MPEG-1 layer 1, 2, and 3

2013-04-09 Thread Carlos Rafael Giani
mpg123 consists of a decoder library, and a command line application. The application can be used to playback and dump decoded mp1/mp2/mp3 files. The library can be integrated in other applications. CPU usage is minimal. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../recipes

Re: [oe] [meta-oe][PATCH v2] add recipe for mpg123, a decoder for MPEG-1 layer 1, 2, and 3

2013-04-09 Thread Carlos Rafael Giani
On 04/09/2013 12:03 PM, Burton, Ross wrote: On 9 April 2013 10:53, Carlos Rafael Giani d...@pseudoterminal.org wrote: Hmm, perhaps I should change it. mpg123 tries to autodetect the machine then anyway. I just added these options to ensure it picks the right ones without having to autodetect

[oe] [meta-oe][PATCH] add recipe for mpg123, a decoder for MPEG-1 layer 1, 2, and 3

2013-04-08 Thread Carlos Rafael Giani
mpg123 consists of a decoder library, and a command line application. The application can be used to playback and dump decoded mp1/mp2/mp3 files. The library can be integrated in other applications. CPU usage is minimal. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- meta-oe

Re: [oe] [meta-oe][PATCH] add recipe for mpg123, a decoder for MPEG-1 layer 1, 2, and 3

2013-04-08 Thread Carlos Rafael Giani
On 2013-04-09 00:49, Paul Eggleton wrote: Recipe looks good, however this should probably go into meta-multimedia. We do still have some multimedia recipes in meta-oe but these ought to be moved (when someone gets around to it). Cheers, Paul I was already wondering about this. So the

[oe] [meta-oe][PATCH v2] add recipe for mpg123, a decoder for MPEG-1 layer 1, 2, and 3

2013-04-08 Thread Carlos Rafael Giani
mpg123 consists of a decoder library, and a command line application. The application can be used to playback and dump decoded mp1/mp2/mp3 files. The library can be integrated in other applications. CPU usage is minimal. Signed-off-by: Carlos Rafael Giani d...@pseudoterminal.org --- .../recipes

[oe] Can a .bbappend introduce a different PACKAGE_ARCH ?

2013-04-06 Thread Carlos Rafael Giani
Hello, assume there is package foo, which is normally not dependent on a specific machine. It is built with default, machine independent configuration options. But then I want to add a .bbappend to it, which add some configuration options that make it machine dependent (imagine something like

[oe] List of distro policies?

2013-04-06 Thread Carlos Rafael Giani
Hello, is there a list of settings, values, policies that are distro specific? I haven't found anything like that so far, and the only source of information about what is allowed and what isn't has been this mailing list and the IRC channel. For example, I am suspecting that

Re: [oe] New meta-cubox layer

2013-04-04 Thread Carlos Rafael Giani
On 04/04/2013 09:32 AM, Henning Heinold wrote: Hi, nice work, but I wonder why the u-boot needs a boot.scr. Is it that old or can you switch it over to uEnv.txt so it is easier for people to change kernel cmdline and other u-boot config stuff. Bye Henning

[oe] DEFAULTTUNE_machine not working

2013-04-04 Thread Carlos Rafael Giani
Hello, I have tried to set a machine specific DEFAULTTUNE in the local.conf . Example: DEFAULTTUNE_beagleboard = cortexa8hf but this does not seem to work. I do not see callconvention-hard in the TUNE_FEATURES list bitbake shows me. Writing this in local.conf works, however:

Re: [oe] DEFAULTTUNE_machine not working

2013-04-04 Thread Carlos Rafael Giani
On Thu, Apr 4, 2013 at 11:02 PM, Martin Jansa martin.ja...@gmail.comwrote: Check with bitbake -e, don't trust the header shown at the beginning of build log. On Thu, Apr 4, 2013 at 10:46 PM, Carlos Rafael Giani d...@pseudoterminal.org wrote

[oe] New meta-cubox layer

2013-04-03 Thread Carlos Rafael Giani
Hello, I have created a BSP layer for the SolidRun Cubox platform. Informations about this device can be found athttp://solid-run.com/cubox . The layer itself is hosted athttps://github.com/dv1/meta-cubox . This layer introduces a new machine, new tunes for the CuBox' Marvell PJ4 processor,

Re: [oe] New meta-cubox layer

2013-04-03 Thread Carlos Rafael Giani
On 2013-04-03 20:05, Burton, Ross wrote: On 3 April 2013 17:50, Carlos Rafael Giani d...@pseudoterminal.org wrote: I have created a BSP layer for the SolidRun Cubox platform. Informations about this device can be found athttp://solid-run.com/cubox . Nice. More importantly, how can I get one

Re: [oe] New meta-cubox layer

2013-04-03 Thread Carlos Rafael Giani
On 2013-04-03 19:52, Khem Raj wrote: On Apr 3, 2013, at 9:50 AM, Carlos Rafael Giani d...@pseudoterminal.org wrote: Hello, I have created a BSP layer for the SolidRun Cubox platform. Informations about this device can be found athttp://solid-run.com/cubox . The layer itself is hosted

Re: [oe] New meta-cubox layer

2013-04-03 Thread Carlos Rafael Giani
On 2013-04-03 20:38, Koen Kooi wrote: So how is this different from https://github.com/naguirre/meta-cubox ? I am in contact with the author of that layer. My work started as a fork of that, since the layer did not work for me, but since I anyway was changing pretty much all of it from the

Re: [oe] New meta-cubox layer

2013-04-03 Thread Carlos Rafael Giani
Okay, I think I see the problem now. DEFAULTTUNES should not be set by the machine config. So, removing it and fixing the README accordingly takes care of that. People who for example want hardfp then set DEFAULTTUNE ?= marvellpj4hf in their local.conf . Is this correct? On 2013-04-03 22:19,

Re: [oe] New meta-cubox layer

2013-04-03 Thread Carlos Rafael Giani
On 2013-04-04 00:21, Khem Raj wrote: On Apr 3, 2013, at 2:45 PM, Otavio Salvador ota...@ossystems.com.br wrote: On Wed, Apr 3, 2013 at 5:49 PM, Carlos Rafael Giani d...@pseudoterminal.org wrote: Okay, I think I see the problem now. DEFAULTTUNES should not be set by the machine config. So

Re: [oe] New meta-cubox layer

2013-04-03 Thread Carlos Rafael Giani
MACHINEs and their defaulttunes, SHR does the same in: https://github.com/shr-distribution/meta-smartphone/blob/shr/meta-shr/conf/distro/include/defaulttunes.inc On Thu, Apr 4, 2013 at 12:29 AM, Carlos Rafael Giani d...@pseudoterminal.orgwrote: Okay, I removed DEFAULTTUNE from the machine conf

<    1   2