Re: [yocto] Failed to cross compile kernel with Yocto toolchain

2016-06-27 Thread Zhenhua Luo
Hello Khem, > -Original Message- > From: Khem Raj [mailto:raj.k...@gmail.com] > Sent: Tuesday, June 28, 2016 12:36 AM > To: Zhenhua Luo > Cc: yocto@yoctoproject.org > Subject: Re: [yocto] Failed to cross compile kernel with Yocto toolchain > > On Mon, Jun 27, 2016

Re: [linux-yocto] [PATCH 00/11] Pinctrl, Watchdog and P2SB driver for linux-yocto-4.1

2016-06-27 Thread Bruce Ashfield
On 2016-06-27 9:28 PM, Yong, Jonathan wrote: Hi, These will enable Apollo Lake specific Pinctrl, iTCO watchdog and P2SB drivers. The changes are quite interlinked due to the lpc-ich renaming. The 8250 change is used to suppress DMA warnings. These are already in the progress of being

Re: [linux-yocto] [yocto-kernel-cache] [PATCH] Fix bitbake warnings on build

2016-06-27 Thread Bruce Ashfield
On 2016-06-27 3:14 AM, rebecca.swee.fun.ch...@intel.com wrote: From: Rebecca Chang Swee Fun Hi Bruce, With a build test run on Intel Common BSP, some warning messages poped out about actual value set is not matched with requested value on CONFIG_GPIO_GENERIC.

Re: [yocto] How to add recipes to images not RPMs.

2016-06-27 Thread Paul Eggleton
I think you mean IMAGE_INSTALL_append. There is a section of the manual covering this: http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html#usingpoky-extend-customimage Cheers, Paul On Mon, 27 Jun 2016 11:22:52 Daniel. wrote: > Adding this to your local.conf? > >

[linux-yocto] [PATCH 08/11] x86: Prepare to split lpc-ich driver

2016-06-27 Thread Yong, Jonathan
From: Jonathan Yong Prepare to spilt out the driver code since it is growing quite fast with many table entries. Signed-off-by: Jonathan Yong --- drivers/mfd/Makefile |1 + drivers/mfd/lpc_ich-core.c | 1248

[linux-yocto] [PATCH 11/11] x86: Suppress compile time warnings in pinctrl-broxton

2016-06-27 Thread Yong, Jonathan
Suppresses the unused variable warning and bracer recommendation. bxt_gpio isn't actually in use yet. Signed-off-by: Yong, Jonathan --- drivers/pinctrl/intel/pinctrl-broxton.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git

[linux-yocto] [PATCH 10/11] x86: Add platform:apl_gpio alias to pinctrl-broxton

2016-06-27 Thread Yong, Jonathan
This should allow it to load as a platform driver in non-ACPI mode. Signed-off-by: Yong, Jonathan --- drivers/pinctrl/intel/pinctrl-broxton.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/pinctrl/intel/pinctrl-broxton.c

[linux-yocto] [PATCH 09/11] x86: Rework Apollo Lake GPIO pinctrl non-ACPI mode driver

2016-06-27 Thread Yong, Jonathan
The previous driver depends on a PCI device that is normally hidden by the BIOS, which means it can never bind correctly. This driver uses the P2SB hide/unhide mechanism cooperatively to pass the PCI BAR address to the gpio platform driver. Original work by Tan, Jui Nee

[linux-yocto] [PATCH 05/11] x86: Sideband Interface driver for Apollo Lake

2016-06-27 Thread Yong, Jonathan
The Sideband Interface driver for Apollo Lake shares much similarity with the existing iosf_mbi driver functionality wise, but was rewritten for Apollo Lake due to incompatibility with the new registers. Signed-off-by: Yong, Jonathan --- arch/x86/Kconfig

[linux-yocto] [PATCH 06/11] watchdog: iTCO-wdt handle 5th variation

2016-06-27 Thread Yong, Jonathan
From: Jonathan Yong Apollo Lake Watchdog is not on the SMBUS, but on the PMC, most register locations remains unchanged except for the NO_REBOOT bit in the SMI_EN register. Signed-off-by: Jonathan Yong --- drivers/watchdog/iTCO_wdt.c | 2 ++ 1

[linux-yocto] [PATCH 07/11] x86: Move Watchdog loader for Apollo Lake

2016-06-27 Thread Yong, Jonathan
From: Jonathan Yong The watchdog timer on Apollo Lake is on the Power Management Controller instead of the SMBUS. The LPC driver will also load the Apollo Lake Sideband Interface platform driver. Signed-off-by: Jonathan Yong ---

[linux-yocto] [PATCH 04/11] Convert lpc_ich_init_wdt to use a switch-case

2016-06-27 Thread Yong, Jonathan
Prevous version lacked a default case, uncovered by TCO v4 hardware. Print notice if unknown version encountered. Signed-off-by: Yong, Jonathan --- drivers/mfd/lpc_ich.c | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git

[linux-yocto] [PATCH 02/11] pinctrl-broxton: enable platform device in the absent of ACPI enumeration

2016-06-27 Thread Yong, Jonathan
From: Tan Jui Nee This is to cater the need for non-ACPI system whereby a platform device has to be created in order to bind with the Apollo Lake Pinctrl GPIO platform driver. Signed-off-by: Tan Jui Nee Signed-off-by: Yong, Jonathan

[linux-yocto] [PATCH 03/11] pinctrl: intel: use 'bool' state for PINCTRL_APL_DEVICE in Kconfig

2016-06-27 Thread Yong, Jonathan
From: Tan Jui Nee Intel Apollo Lake GPIO pin control Platform Device Emulation is only working as build-in module. Signed-off-by: Tan Jui Nee --- drivers/pinctrl/intel/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[linux-yocto] [PATCH 01/11] serial: 8250_dma: stop ongoing RX DMA on exception

2016-06-27 Thread Yong, Jonathan
From: Andy Shevchenko If we get an exeption interrupt. i.e. UART_IIR_RLSI, stop any ongoing RX DMA transfer otherwise it might generates more spurious interrupts and make port unavailable anymore. As has been seen on Intel Broxton system: ... [ 168.526281]

[linux-yocto] [PATCH 00/11] Pinctrl, Watchdog and P2SB driver for linux-yocto-4.1

2016-06-27 Thread Yong, Jonathan
Hi, These will enable Apollo Lake specific Pinctrl, iTCO watchdog and P2SB drivers. The changes are quite interlinked due to the lpc-ich renaming. The 8250 change is used to suppress DMA warnings. These are already in the progress of being upstreamed into the main kernel.org kernel repository,

[linux-yocto] [PATCH 1/1][yocto-kernel-cache][yocto-4.4] features/input: Add keyboard-gpio feature

2016-06-27 Thread California Sullivan
This feature adds keyboard-gpio support to the kernel. We also add a specific implementation by default. More can be added as necessary. Signed-off-by: California Sullivan --- features/input/keyboard-gpio.cfg | 8 features/input/keyboard-gpio.scc | 6

Re: [yocto] [meta-mono][PATCH] mono-4.xx: Remove --disable-static from EXTRA_OECONF

2016-06-27 Thread Fabio Berton
Any update on this? Without this patch I can't build mono-4.4.0.148. On Thu, May 12, 2016 at 11:10 AM, Fabio Berton < fabio.ber...@ossystems.com.br> wrote: > As of commit OE-Core:773c9e18071d71454473dd81aff911104a2e9bc6 > EXTRA_OECONF is appended with the option --disable-static on >

Re: [yocto] uninative support on non-x86 platforms

2016-06-27 Thread Burton, Ross
On 23 June 2016 at 17:18, Patrick Williams wrote: > Thanks. We will give it a try. I suspected there might be more to it than > that > based on this line: > > UNINATIVE_LOADER ?= > "${STAGING_DIR}-uninative/${BUILD_ARCH}-linux/lib/${@bb.utils.contains('BUILD_ARCH', >

Re: [yocto] How to add recipes to images not RPMs.

2016-06-27 Thread Daniel.
Adding this to your local.conf? INSTALL_IMAGE_append = " your packages separeted by whitespaces" 2016-06-27 10:38 GMT-03:00 richard zhang : > Hi all > > I try to add some ricepes to meta layer.The do_fetch and do_compile > things are fine. > But when I went to

[yocto] How to add recipes to images not RPMs.

2016-06-27 Thread richard zhang
Hi all I try to add some ricepes to meta layer.The do_fetch and do_compile things are fine. But when I went to image,there is no packages just added. I find my packages in build/tmp/deploy/rpm . How to add these packages to image. I have do this when I use 'hob',but i

[yocto] override layer to literally rename all desired visible strings in a build, and python 2.7.9 error 132

2016-06-27 Thread S.Sami
Hello. I am new to yocto, and for a project i am in need of modifying openswitch build for a presenattion in a way that the final build ( for this presentation it will be appliance ova) it shows another string or better to say a new Distro instead of openswitch in the final build. what i am

Re: [yocto] [[yocto-autobuilder][PATCHv2] 00/15] Add support for generate bitbake/oe-selftest error reports

2016-06-27 Thread Beth 'pidge' Flanagan
Pulled into master, thanks! -b On Tue, 2016-06-21 at 18:07 -0500, Aníbal Limón wrote: > This v2 adds support for generate also oe-selftest reports this is > almost > the previous version with changes requested in review [1], the next > patches > starts from patch, > >

Re: [yocto] [autobuilder][PATCH] nightly-arm.conf: build Cortex-A8 toolchains

2016-06-27 Thread Beth 'pidge' Flanagan
Pulled into master, Thanks! -b On Fri, 2016-06-24 at 08:05 -0700, Bill Randle wrote: > Since met-fsl-arm was dropped from the nightly builds, the Cortex-A8 > cross- > compiler used for beaglebone builds is not created. Include toochain > builds as part of nightly-arm now, so compiler is

Re: [yocto] [autobuilder][PATCH] CreateAutoConf.py: check for empty env history variables before using

2016-06-27 Thread Beth 'pidge' Flanagan
Pulled into master, thanks! On Thu, 2016-06-23 at 12:03 -0700, Bill Randle wrote: > I saw this error on a new AB setup: > > File "/home/pokybuild/yocto-autobuilder/lib/python2.7/site- > packages/autobuilder/buildsteps/CreateAutoConf.py", line 181, in > start >

Re: [yocto] [PATCH] keep platform_extra and default_platform_extra lists ordered

2016-06-27 Thread Joshua G Lock
Hi Bill, This patch is for OE-Core so should go to  openembedded-c...@lists.openembedded.org Thanks, Joshua On Fri, 2016-06-24 at 21:22 -0700, Bill Randle wrote: > In RpmPM:insert_feeds_uris, the paths are kept in sets, which are > unordered, > but they are later used to set the priority for

[linux-yocto] [yocto-kernel-cache] [PATCH] Fix bitbake warnings on build

2016-06-27 Thread rebecca . swee . fun . chang
From: Rebecca Chang Swee Fun Hi Bruce, With a build test run on Intel Common BSP, some warning messages poped out about actual value set is not matched with requested value on CONFIG_GPIO_GENERIC. This can be resolved by setting CONFIG_GPIO_GENERIC_PLATFORM=y

[linux-yocto] [yocto-kernel-cache] [PATCH] broxton: set CONFIG_GPIO_GENERIC_PLATFORM instead of CONFIG_GPIO_GENERIC

2016-06-27 Thread rebecca . swee . fun . chang
From: Rebecca Chang Swee Fun CONFIG_GPIO_GENERIC option is tristate, this will ensure we enable by selecting CONFIG_GPIO_GENERIC_PLATFORM. This addresses the following message: Value requested for CONFIG_GPIO_GENERIC not in final ".config" Requested value:

Re: [yocto] setcap using recipe

2016-06-27 Thread Kumar, Shrawan
Hello Ross, Against which version this patch is applicable . I am using pseudo-1.7.4 and could not find capset.c file under “ports/linux/guts/ directory . Can you please help here ? Thanks and Regards Shrawan From: Burton, Ross [mailto:ross.bur...@intel.com] Sent: Friday, June 24,