Re: [yocto] Merging of two recipes

2015-06-11 Thread Burton, Ross
On 11 June 2015 at 10:54, Bipnesh, Abhinav (Abhinav) abhinavbipn...@avaya.com wrote: So I want to merge these both recipes to produce the same artificats as above but using a single recipe. So any thoughts how to do it. Just add tar to PACKAGE_CLASSES and you'll get a tarball of every

[yocto] [meta-intel] MATOM set while using yocto-bsp create i386 (Celeron M targets / ThinkIO unit)

2015-06-11 Thread J.J. Garcia
Hello all, Why 'yocto-bsp create ... i386' (Yocto dizzy 1.7.2) is defining a kernel config with the MATOM=y even if I select the default kernel with the '586' tune (neither the 'Atom' nor the 'core2')? is this expected? Im using and old Celeron M (petium M based) I'm also using the meta-intel

Re: [yocto] Merging of two recipes

2015-06-11 Thread Robert P. J. Day
On Thu, 11 Jun 2015, Burton, Ross wrote: On 11 June 2015 at 10:54, Bipnesh, Abhinav (Abhinav) abhinavbipn...@avaya.com wrote: So I want to merge these both recipes to produce the same artificats as above but using a single recipe. So any thoughts how to do it. Just add tar

[yocto] Merging of two recipes

2015-06-11 Thread Bipnesh, Abhinav (Abhinav)
Hi, Currently I have two different recipes for similar type of package with a minor differences. Below is the list 1. One being packaged as tar.gz and don't have pre or post install activity 2. Other one being packaged as RPM and have a post install section in it. Below is the

Re: [yocto] Merging of two recipes

2015-06-11 Thread Bipnesh, Abhinav (Abhinav)
Hi All, One more thing the convert task has different flow for both the recipes and the names of the package is different as below is snapshot of the actual code. Also PACKAGE_CLASSES has both rpm and tar. We have explicitly turned off one of the task in the recipe based on the requirement.

Re: [yocto] Merging of two recipes

2015-06-11 Thread Burton, Ross
On 11 June 2015 at 11:31, Robert P. J. Day rpj...@crashcourse.ca wrote: i vaguely recall from way back that the tar packaging was not really supported, or was mostly unused, or something to that effect. what's the status on that these days? As it's barely functional (no metadata,

Re: [yocto] multi-user shared state

2015-06-11 Thread Robert Berger
Hi, On 06/10/2015 10:25 PM, Luke (Lucas) Starrett wrote: Hi, I’m trying to understand the feasibility of shared-state across multiple users in a development environment. Does anyone have first-hand experience with this? Am I asking for trouble? Have a look here [1] 3.2.1.2. Core

[linux-yocto] [PATCH 18/42] fs/vmfs: Changes to add VMFS support for axxia.

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Added Virtual file system to support the AXXIA 5500 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- fs/Kconfig | 16 + fs/Makefile |1 + fs/namespace.c |1 - fs/vmfs/Makefile | 39 ++

[linux-yocto] [PATCH 25/42] arch/arm/mach-axxia: Enable L3

2015-06-11 Thread Cristian Bercaru
From: John Jacques john.jacq...@lsi.com In some cases, the boot loader will leave the L3 cache in SFONLY mode. This is required because the early fixup code in arch/arm/boot/compressed does not flush L3 cache. This commit causes Linux to enable the L3 cache in the arch/arm/mach-axxia startup

[linux-yocto] [PATCH 33/42] arch/arm/mach-axxia: fixed NO SMP

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com These changes are made to support NO SMP. There is only one CPU. This fixes the compile error and kernel hanging on boot up. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- arch/arm/mach-axxia/axxia.c | 12 +---

[linux-yocto] [PATCH 41/42] drivers/hwmon: Remove adt75 redundant driver

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com The adt75 driver is redundant as this chip is already supported by the (upstream) lm75 driver. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/hwmon/adt75.c | 211 - 1 file changed,

[linux-yocto] [PATCH 29/42] misc: lsi-ncr: Only use AMP lock on PPC platforms.

2015-06-11 Thread Cristian Bercaru
From: Anders Berg anders.b...@intel.com Signed-off-by: Anders Berg anders.b...@intel.com --- arch/arm/mach-axxia/axxia.c |1 - drivers/misc/lsi-ncr.c | 407 +-- 2 files changed, 202 insertions(+), 206 deletions(-) diff --git

[linux-yocto] [PATCH 28/42] fs: vmfs: Use generic mmap function

2015-06-11 Thread Cristian Bercaru
From: Anders Berg anders.b...@intel.com Use the generic mmap function to avoid possible deadlock on vmfs_mutex. Signed-off-by: Anders Berg anders.b...@intel.com --- fs/vmfs/file.c | 23 +-- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/fs/vmfs/file.c

[linux-yocto] [PATCH 34/42] rionet: Fix the corruption of tx_cnt during Transmit.

2015-06-11 Thread Cristian Bercaru
From: Palani palaniappan.ramanat...@intel.com The non-atomic variable tx_cnt can be updated simultaneously from different threads using rionet_start_xmit (Tx) and the rionet_outb_msg_event (callback) functions. These functions use different locks: tx_lock for the Tx and lock for the callback

[linux-yocto] [PATCH 24/42] Revert arch/arm/mach-axxia: Fixed affinity error on IRQ migration

2015-06-11 Thread Cristian Bercaru
From: Magnus Karlsson magnus.karls...@intel.com This is a port of commit da6bb36cec919273d92d00b9d49f26723fde32e1 from linux-yocto-3.10, branch standard/axxia/base, that reverts b8dd1bdee59fd5dd8cdc038d802a3a68400066a6 from the same branch. Signed-off-by: Magnus Karlsson

[linux-yocto] [PATCH 40/42] arch/arm/mach-axxia: Fixed L2 power up failure

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com This patch fixes the L2 power up failure. It insures that there is only one allocation of the dickens variable. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- arch/arm/mach-axxia/axxia.c|2 --

[yocto] Generate iso image

2015-06-11 Thread Mayank Agarwal
Hi, I have configured the yocto project and i am getting vmdk.ext3 image I want to configure that iso image should also be generated. I have changed IMAGE_FSTYPE in qemux86.conf to iso. But on building i am getting do_configure failure in grub_0.xx recipe. and the error is: cannot link at

[linux-yocto] [PATCH 39/42] kernel/irq/manage.c: Fix irq_set_affinity to allow use with buslocks

2015-06-11 Thread Cristian Bercaru
From: David Mercado david.merc...@windriver.com Modify irq_set_affinity() to allow usage of bus locks with slow bus IRQ controllers. This only affects those BSPs that use bus locks in their IRQ controllers, such as the LSI Axxia GIC. The recommendation for this change originated from Thomax

[linux-yocto] [PATCH 21/42] LSIAXXIA/spi: ported from 3.10 to 3.14

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Poerted the LSI spi driver from 3.10 to 3.14 because the driver was failing. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/spi/spi-pl022.c | 115 ++- 1 file changed, 94 insertions(+),

[linux-yocto] [PATCH 30/42] arch/arm/mach-axxia: Updated PCIe driver doorbell support

2015-06-11 Thread Cristian Bercaru
From: SangeethaRao sangeetha@intel.com The support was updated to use DTS entries. PCIe legacy ISR is updated to not mask link alarms since this doesn't apply to AXM55xx Signed-off-by: SangeethaRao sangeetha@intel.com --- arch/arm/boot/dts/axm55xx.dtsi |4 +++-

[linux-yocto] [PATCH 36/42] arch/arm/mach-axxia: Updated Axxia 55xx PCIe driver to use correct Doorbell interrupt IRQs

2015-06-11 Thread Cristian Bercaru
From: SangeethaRao sangeetha@intel.com Signed-off-by: SangeethaRao sangeetha@intel.com --- arch/arm/mach-axxia/pci.c | 15 +++ 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/arch/arm/mach-axxia/pci.c b/arch/arm/mach-axxia/pci.c index 722ac7c..46727ed 100644

[linux-yocto] [PATCH 22/42] Revert arch/arm/mach-axxia: fixed hang in preempt kernel

2015-06-11 Thread Cristian Bercaru
From: Magnus Karlsson magnus.karls...@intel.com This is a port of commit fc32c65b2d1df5a3a545e5a227c2ca993b78524e from linux-yocto-3.10, branch standard/axxia/base, that reverts c15c9b219f4ae722c24a2dc320f27a62ffafde82 from the same branch. Signed-off-by: Magnus Karlsson

[linux-yocto] [PATCH 09/42] drivers/misc: Changes to support axxia BSP

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Driver changes to the misc device to support the AXXIA 5500 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/misc/Kconfig | 21 + drivers/misc/Makefile|3 + drivers/misc/lsi-mtc.c | 3085

[linux-yocto] [PATCH 16/42] drivers/tty: Changes to support the axxia BSP

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Driver changes to the tty to support the AXXIA 5500 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/tty/serial/Kconfig | 51 ++ drivers/tty/serial/Makefile |1 + drivers/tty/serial/lsi_acp_serial.c |

[linux-yocto] [PATCH 08/42] drivers/i2c: Changes to support axxia BSP

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Driver changes to support the AXXIA 55000 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/i2c/busses/Kconfig | 16 + drivers/i2c/busses/Makefile |1 + drivers/i2c/busses/acp3400-i2c.c | 515

[linux-yocto] [PATCH 20/42] arm/axxia/vmfs fixed vmfs compile and run errors

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com The VMFS was not compiling or running. The VMFS was fixed using the working version of VMFS in LSI 3.18 kernel. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- fs/vmfs/cache.c | 10 +- fs/vmfs/dir.c | 33

[linux-yocto] [PATCH 19/42] arch/arm/axxia fixed compilie error when SMP undefined

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Updated the code to support SMP being turned off. When SMP was turned off the PM hotplug code would not compile Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- arch/arm/mach-axxia/Makefile|4 ++-- arch/arm/mach-axxia/axxia-gic.c |

Re: [yocto] Limit RAM for Linux

2015-06-11 Thread Nathan Rossi
On Wed, Jun 10, 2015 at 2:03 AM, Edward Wingate edwinga...@gmail.com wrote: Thanks, Nathan, for your help. It worked, with a little oddity I don't understand. In my uEnv.txt, I set both fdt_high and initrd_high to 0x1000 and fdt/initrd are now loaded to 1st 256 MB: Loading Kernel

[linux-yocto] [PATCH 15/42] drivers/hwmon: Changes to suppor the axxia BSP

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Driver changes to hwmon to support the AXXIA 5500 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/hwmon/adt75.c | 211 + 1 file changed, 211 insertions(+) create mode 100644

[linux-yocto] [PATCH 14/42] drivers/spi: CHanges to support the axxia BSP

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Driver changes to the spi to suppor the AXXIA 5500 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/spi/Kconfig |7 + drivers/spi/Makefile |1 + drivers/spi/spi-acp.c | 2505

[linux-yocto] [PATCH 06/42] drivers/dma: changes to suppor the axxia BSP

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Changes to the LSI dma to support the axxia 5500 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/dma/Kconfig |9 + drivers/dma/Makefile|1 + drivers/dma/lsi-dma32.c | 879

[linux-yocto] [PATCH 12/42] drivers/led: Changes to support the axxia BSP

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Driver changes to the leds to support the AXXIA 5500 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/leds/ledtrig-rbs.c| 248 + drivers/leds/trigger/Kconfig |7 ++

[linux-yocto] [PATCH 31/42] arch/arm/mach-axxia: fixed compiler warning

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Removed the variable that caused the warning. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- arch/arm/mach-axxia/pci.c |1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mach-axxia/pci.c b/arch/arm/mach-axxia/pci.c index

[linux-yocto] [PATCH 05/42] arch/arm: arm changes to support the axxia BSP

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com These changes are changes to the kernel that are needed to support the AXXIA 5500 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- arch/arm/Kconfig | 87 - arch/arm/Kconfig.debug

[linux-yocto] [PATCH 01/42] arch/arm/boot/dts: Files added to support axxia 5500 board

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Dts files added to support the AXXIA 5500 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- arch/arm/boot/dts/Makefile |9 + arch/arm/boot/dts/axm5504-cpus.dtsi | 49 arch/arm/boot/dts/axm5504-emu.dts

[linux-yocto] [PATCH 11/42] drivers/net/ethernet: Changes to support the axxia BSP

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Driver changes to the ethernet to support the AXXIA 5500 board. Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/net/ethernet/Kconfig|3 + drivers/net/ethernet/Makefile |1 +

[linux-yocto] [PATCH 32/42] driver/misc: Added no_lock read and write

2015-06-11 Thread Cristian Bercaru
From: Charlie Paul cpaul.windri...@gmail.com Signed-off-by: Charlie Paul cpaul.windri...@gmail.com --- drivers/misc/lsi-ncr.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/misc/lsi-ncr.h b/drivers/misc/lsi-ncr.h index cb6bebb..9d841cf 100644 --- a/drivers/misc/lsi-ncr.h +++

Re: [linux-yocto] [PATCH 00/42] LSI AXXIA updates to linux-yocto-3.14 standard/axxia/base and standard/preempt-rt/axxia/base

2015-06-11 Thread Bruce Ashfield
On 2015-06-11 04:31 AM, Cristian Bercaru wrote: Hello! This series of patches introduces the files needed to build the 3.14 standard and preempt-rt kernel for the Axxia 5500 platform. It also contains power-management fixes that were ported from 3.10. Please create the following branches in

Re: [yocto] [PATCH 09/11][auh] upgradehelper.py: Change policy for send emails and fix error passing

2015-06-11 Thread Paul Eggleton
On Thursday 11 June 2015 15:56:57 Aníbal Limón wrote: Hi Paul, Comments below, Kind regards, alimon On 11/06/15 15:51, Paul Eggleton wrote: On Wednesday 10 June 2015 16:28:50 Aníbal Limón wrote: Now send emails almost in all cases this give the maintainer patches and diff to

Re: [yocto] [PATCH 09/11][auh] upgradehelper.py: Change policy for send emails and fix error passing

2015-06-11 Thread Paul Eggleton
On Wednesday 10 June 2015 16:28:50 Aníbal Limón wrote: Now send emails almost in all cases this give the maintainer patches and diff to continue work also if the build isn't succesful. [YOCTO #7489] Signed-off-by: Aníbal Limón anibal.li...@linux.intel.com --- upgradehelper.py | 19

Re: [yocto] [PATCH 09/11][auh] upgradehelper.py: Change policy for send emails and fix error passing

2015-06-11 Thread Aníbal Limón
Hi Paul, Comments below, Kind regards, alimon On 11/06/15 15:51, Paul Eggleton wrote: On Wednesday 10 June 2015 16:28:50 Aníbal Limón wrote: Now send emails almost in all cases this give the maintainer patches and diff to continue work also if the build isn't succesful. [YOCTO #7489]

Re: [yocto] [PATCH 09/11][auh] upgradehelper.py: Change policy for send emails and fix error passing

2015-06-11 Thread Aníbal Limón
On 11/06/15 16:05, Paul Eggleton wrote: On Thursday 11 June 2015 15:56:57 Aníbal Limón wrote: Hi Paul, Comments below, Kind regards, alimon On 11/06/15 15:51, Paul Eggleton wrote: On Wednesday 10 June 2015 16:28:50 Aníbal Limón wrote: Now send emails almost in all cases this give

Re: [yocto] Node.js dependency issues

2015-06-11 Thread Sai Prasad B
Hi Khem, Thankyou for your quick response. I will try installing the package to image itself and let you know. Regards, Sai On Wed, Jun 10, 2015 at 9:16 PM, Khem Raj raj.k...@gmail.com wrote: On Wed, Jun 10, 2015 at 1:01 AM, Sai Prasad B saiprasa...@pathpartnertech.com wrote: Hi ,

Re: [yocto] [meta-intel] Crazy Xorg memory usage after upgrading from Daisy to Fido

2015-06-11 Thread Chris Tapp
Hi Vincent, On 10 Jun 2015, at 03:50, Cheah, Vincent Beng Keat vincent.beng.keat.ch...@intel.com wrote: Hi Chris, I don’t have any idea with regard to the issue that you are getting below. All the work that we are doing here so far is on CHV (yocto-kernel-3.19.5 standard/base