Re: [yocto] [meta-raspberrypi][for-dora][PATCH] Installed fonts directory in the default location needed by omxplayer

2014-03-04 Thread Sebastien MENNETRIER
Ping 2014-02-28 10:53 GMT+01:00 Sébastien Mennetrier s.mennetr...@innotis.org: Signed-off-by: Sébastien Mennetrier s.mennetr...@innotis.org --- recipes-multimedia/omxplayer/omxplayer_git.bb | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git

[yocto] FILES_${PN} packaging and wildcarded exclusions

2014-03-04 Thread Alex J Lennon
Hi, I'm trying to understand how to cleanly extend FILES${PN} to include files that are staged and need to be packaged If I start with something like FILES_${PN} += \ ${libdir}/mono/gac/policy.0.2.Mono.Addins/0.0.0.0__0738eb9f132ed756/* \

Re: [yocto] FILES_${PN} packaging and wildcarded exclusions

2014-03-04 Thread Paul Eggleton
Hi Alex, On Tuesday 04 March 2014 10:10:13 Alex J Lennon wrote: I'm trying to understand how to cleanly extend FILES${PN} to include files that are staged and need to be packaged If I start with something like FILES_${PN} += \

Re: [yocto] FILES_${PN} packaging and wildcarded exclusions

2014-03-04 Thread Alex J Lennon
On 04/03/2014 11:01, Paul Eggleton wrote: Hi Alex, On Tuesday 04 March 2014 10:10:13 Alex J Lennon wrote: I'm trying to understand how to cleanly extend FILES${PN} to include files that are staged and need to be packaged If I start with

Re: [yocto] FILES_${PN} packaging and wildcarded exclusions

2014-03-04 Thread Paul Eggleton
On Tuesday 04 March 2014 11:05:34 Alex J Lennon wrote: On 04/03/2014 11:01, Paul Eggleton wrote: Hi Alex, On Tuesday 04 March 2014 10:10:13 Alex J Lennon wrote: I'm trying to understand how to cleanly extend FILES${PN} to include files that are staged and need to be packaged If I

[yocto] Add Packages to Recipie

2014-03-04 Thread Joel Parker
I have an Image for the wandboard-solo and am trying to figure out the correct package names. For example: IMAGE_FEATURES += splash ssh-server-dropbear where do I get the name ssh-server-dropbear ? I am trying to add support for httpd, iconv and dev library, and sqlite3 and dev library, what

Re: [yocto] Add Packages to Recipie

2014-03-04 Thread Alex J Lennon
On 04/03/2014 13:50, Joel Parker wrote: I have an Image for the wandboard-solo and am trying to figure out the correct package names. For example: IMAGE_FEATURES += "splash ssh-server-dropbear"

Re: [yocto] Add Packages to Recipie

2014-03-04 Thread Joel Parker
Yeah, that is what I tried but it gave me this : ERROR: 'httpd' in IMAGE_FEATURES is not a valid image feature. -- Joel Parker On Tuesday, March 4, 2014 8:00 AM, Alex J Lennon ajlen...@dynamicdevices.co.uk wrote: On 04/03/2014 13:50, Joel Parker wrote: I have an Image for the

Re: [yocto] Add Packages to Recipie

2014-03-04 Thread Alex J Lennon
On 04/03/2014 14:22, Joel Parker wrote: Yeah, that is what I tried but it gave me this : ERROR: 'httpd' in IMAGE_FEATURES is not a valid image feature. I suspect that's because there's no "httpd" feature. Is

[yocto] enable/disable systemd from image.bb

2014-03-04 Thread Katu Txakur
Hi, I'm using Yocto 1.3 and I've created some recipes. All of them have systemd services. Some of them start at boot time and others don't. Let's say for example: recipeA_1.0.bb SYSTEMD_AUTO_ENABLE_${PN}-systemd = enable recipeB_1.0.bb SYSTEMD_AUTO_ENABLE_${PN}-systemd = disable I want to

Re: [yocto] enable/disable systemd from image.bb

2014-03-04 Thread Katu Txakur
Sorry, I sent it uncompleted by mistake. I've also tried ROOTFS_POSTPROCESS_COMMAND =+ \ rm -rf /etc/systemd/system/multi-user.target.wants/recipeA.service; \ but it didn't work either. Anyone knows how to do this? Thanks, Katu 2014-03-04 14:37 GMT+00:00 Katu Txakur

Re: [yocto] Add Packages to Recipie

2014-03-04 Thread Paul Barker
On 4 March 2014 14:22, Joel Parker joelparke...@yahoo.com wrote: Yeah, that is what I tried but it gave me this : ERROR: 'httpd' in IMAGE_FEATURES is not a valid image feature. -- Joel Parker IMAGE_FEATURES is for features (basically collections of packages put together in a certain way),

Re: [yocto] Add Packages to Recipie

2014-03-04 Thread Joel Parker
Ok, thanks for that but what do you do for things that aren't in the extended recipes list ? Specifically, I need sqlite3, sqlite3-devel and iconv Joel Parker On Mar 4, 2014, at 8:37 AM, Paul Barker p...@paulbarker.me.uk wrote: On 4 March 2014 14:22, Joel Parker joelparke...@yahoo.com

Re: [yocto] Add Packages to Recipie

2014-03-04 Thread Paul Barker
On 4 March 2014 14:47, Joel Parker joelparke...@yahoo.com wrote: Ok, thanks for that but what do you do for things that aren't in the extended recipes list ? Specifically, I need sqlite3, sqlite3-devel and iconv I don't understand your query: I can find sqlite3 and libiconv using the recipe

[yocto] Minutes: Yocto Project Technical Team Meeting - Tuesday, March 4, 2014 8:00 AM US Pacific Time

2014-03-04 Thread Jolley, Stephen K
Attendees: Stephen, Michael, Vali, Ross, Mark, Bruce, Jessica, Tom, Randy, Cristiana, Belen, Richard, Matthew, Jefro, Cristian, Jeff, Paul, Nitin, Saul, Beth * Opens collection - 5 min (Stephen) * Yocto 1.6 status - 10 min (Stephen/team) YP 1.6 M3 RC2 was approved to be released. Should be

[yocto] rootfs_failure

2014-03-04 Thread Joel Parker
What causes this error ? ERROR: Task 7 (/fsl-community-bsp/sources/poky/meta/recipes-core/images/custom-image.bb, do_rootfs) failed with exit code '1' Here is my recipe: DESCRIPTION = A console-only image that fully supports the target device \ hardware. IMAGE_FEATURES += splash

Re: [yocto] rootfs_failure

2014-03-04 Thread Alex J Lennon
On 04/03/2014 18:18, Joel Parker wrote: DESCRIPTION = A console-only image that fully supports the target device \ hardware. IMAGE_FEATURES += splash ssh-server-dropbear IMAGE_INSTALL += \ lighttpd \ sqlite3 \ LICENSE = MIT inherit core-image That recipe builds

Re: [yocto] rootfs_failure

2014-03-04 Thread Alex J Lennon
On 04/03/2014 18:18, Joel Parker wrote: DESCRIPTION = A console-only image that fully supports the target device \ hardware. IMAGE_FEATURES += splash ssh-server-dropbear IMAGE_INSTALL += \ lighttpd \ sqlite3 \ LICENSE = MIT inherit core-image When that drops into

Re: [yocto] [meta-raspberrypi][for-dora][PATCH] Installed fonts directory in the default location needed by omxplayer

2014-03-04 Thread Khem Raj
On Tue, Mar 4, 2014 at 12:18 AM, Sebastien MENNETRIER s.mennetr...@innotis.org wrote: do_install() { oe_runmake dist + mkdir -p ${D}/usr/share/fonts/truetype/freefont/ + install ${S}/fonts/* ${D}/usr/share/fonts/truetype/freefont/ } FILES_${PN} = ${bindir}/omxplayer*

Re: [yocto] enable/disable systemd from image.bb

2014-03-04 Thread Khem Raj
On Tue, Mar 4, 2014 at 6:38 AM, Katu Txakur katutxaku...@gmail.com wrote: Sorry, I sent it uncompleted by mistake. I've also tried ROOTFS_POSTPROCESS_COMMAND =+ \ rm -rf /etc/systemd/system/multi-user.target.wants/recipeA.service; \ but it didn't work either. Anyone knows how to do

Re: [yocto] [meta-raspberrypi][for-dora][PATCH] Installed fonts directory in the default location needed by omxplayer

2014-03-04 Thread Andrei Gherzan
On Wed, Mar 5, 2014 at 12:39 AM, Khem Raj raj.k...@gmail.com wrote: On Tue, Mar 4, 2014 at 12:18 AM, Sebastien MENNETRIER s.mennetr...@innotis.org wrote: do_install() { oe_runmake dist + mkdir -p ${D}/usr/share/fonts/truetype/freefont/ + install ${S}/fonts/*

Re: [yocto] [meta-raspberrypi][for-dora][PATCH] Installed fonts directory in the default location needed by omxplayer

2014-03-04 Thread Khem Raj
On Tue, Mar 4, 2014 at 2:51 PM, Andrei Gherzan and...@gherzan.ro wrote: Why exactly? meta-rpi is using yocto mailinglist. Oh didnt notice if this was a meta-rpi specific patch, but if it is then ml is ok ___ yocto mailing list yocto@yoctoproject.org

[yocto] Compiling errors

2014-03-04 Thread Rick Bianchi
I get the following errors while trying to compile: Error: autogen-native not found in the base feeds (overo armv7a-vfp-neon armv7a-vfp armv7a armv6-vfp armv6 armv5e-vfp armv5e armv5-vfp armv5 armv4 arm noarch any all). When I do a bitbake -s | grep autogen-native it shows up. I am also getting

[linux-yocto] [PATCH 0/1] linux-yocto v3.4 meta: mohonpeak cfg update after v3.4.74 merge

2014-03-04 Thread boon . leong . ong
From: Ong Boon Leong boon.leong@intel.com This patch is meant to update mohonpeak.cfg to include new features made possible by recent merge on linux-yocto v3.4 since LTSI/LTS v3.4.74. I have done build-test and image-test on the cfg changes and found fit. Please kindly review and if the

[linux-yocto] [PATCH 1/1] meta: update mohonpeak.cfg for SATA, SMBus, LPC, WDT, crypto highmem64g

2014-03-04 Thread boon . leong . ong
From: Ong Boon Leong boon.leong@intel.com Update mohonpeak.cfg to enable SMBus iSMT driver, crypto framework, LPC, watchdog-timer 4G memory for 32-bit build. The update is possible due to recent merge of LTS/LTSI commits available since 3.4.74. Signed-off-by: Ong Boon Leong

Re: [linux-yocto] [PATCH 1/1] meta: update mohonpeak.cfg for SATA, SMBus, LPC, WDT, crypto highmem64g

2014-03-04 Thread Darren Hart
On 3/4/14, 15:20, boon.leong@intel.com boon.leong@intel.com wrote: From: Ong Boon Leong boon.leong@intel.com With Linux-yocto, it's good practice to include the version in the subject: [PATCH 1/1][3.4] meta: ... Update mohonpeak.cfg to enable SMBus iSMT driver, crypto

[linux-yocto] [PATCH 1/4] meta: input: add CONFIG_INPUT dependency

2014-03-04 Thread Darren Hart
CONFIG_INPUT_EVDEV depends on CONFIG_INPUT, the input.cfg should contain both. Signed-off-by: Darren Hart dvh...@linux.intel.com --- meta/cfg/kernel-cache/features/input/input.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/cfg/kernel-cache/features/input/input.cfg

[linux-yocto] [PATCH 2/4] baytrail: Add feature/soc/baytrail

2014-03-04 Thread Darren Hart
Add support for the various devices on the BayTrail SoCs, including PWM, SPI, I2C, ASOC, UARTs, DMA, LPSS, etc. Signed-off-by: Darren Hart dvh...@linux.intel.com --- .../features/soc/baytrail/baytrail.cfg | 53 ++ .../features/soc/baytrail/baytrail.scc

[linux-yocto] [PATCH 4/4] intel-common: Remove GMA500 support

2014-03-04 Thread Darren Hart
The current GMA500 support currently requires custom configuration which is not appropriate for an intel-common BSP. Remove it for the time being so the config-less alternatives can work out of the box. Signed-off-by: Darren Hart dvh...@linux.intel.com ---

Re: [linux-yocto] [PATCH 1/1] meta: update mohonpeak.cfg for SATA, SMBus, LPC, WDT, crypto highmem64g

2014-03-04 Thread Darren Hart
On 3/4/14, 18:40, Ong, Boon Leong boon.leong@intel.com wrote: -Original Message- From: Darren Hart [mailto:dvh...@linux.intel.com] Sent: Wednesday, March 05, 2014 5:10 AM To: Ong, Boon Leong; linux-yocto@yoctoproject.org Subject: Re: [linux-yocto] [PATCH 1/1] meta: update

Re: [linux-yocto] [PATCH 1/1] meta: update mohonpeak.cfg for SATA, SMBus, LPC, WDT, crypto highmem64g

2014-03-04 Thread Darren Hart
On 3/4/14, 20:05, Ong, Boon Leong boon.leong@intel.com wrote: PATA_SCH enable pata_sch.c only supports PCI_DEVICE_ID_INTEL_SCH_IDE (0x811A) For Mohonpeak, i.e. Rangeley Avoton, the PCI ID is 1C02. So, I am cleaning-up. Enable SATA_AHCI which include supports for Rangeley|Avoton since upstream