Re: [yocto] [Openembedded-architecture] Standalone image writer

2016-02-28 Thread Paul Eggleton
On Mon, 29 Feb 2016 04:48:57 Gary Thomas wrote: > On 02/29/2016 04:31 AM, Trevor Woerner wrote: > > On 02/28/16 20:46, Khem Raj wrote: > >>> On Feb 28, 2016, at 4:17 PM, Paul Eggleton > >>> wrote: > >>> > >>> (changing subject line so people don't miss this slight tangent) > >>> > >>> I'd almost

[yocto] [Recipe reporting system] Upgradable recipe name list

2016-02-28 Thread recipe-report
This mail was sent out by Recipe reporting system. This message list those recipes which need to be upgraded. If maintainers believe some of them needn't to upgrade at this time, they can fill RECIPE_NO_UPDATE_REASON in respective recipe file to ignore this remainder until newer upstream version w

Re: [yocto] [Openembedded-architecture] Standalone image writer

2016-02-28 Thread Gary Thomas
On 02/29/2016 04:31 AM, Trevor Woerner wrote: On 02/28/16 20:46, Khem Raj wrote: On Feb 28, 2016, at 4:17 PM, Paul Eggleton wrote: (changing subject line so people don't miss this slight tangent) I'd almost completely forgotten, but the part of what we wrote for Hob to write images to a US

Re: [yocto] [Openembedded-architecture] Standalone image writer

2016-02-28 Thread Trevor Woerner
On 02/28/16 20:46, Khem Raj wrote: On Feb 28, 2016, at 4:17 PM, Paul Eggleton wrote: (changing subject line so people don't miss this slight tangent) I'd almost completely forgotten, but the part of what we wrote for Hob to write images to a USB stick or SD card (bitbake/bin/image-writer) i

Re: [yocto] [Openembedded-architecture] Standalone image writer

2016-02-28 Thread Khem Raj
> On Feb 28, 2016, at 4:17 PM, Paul Eggleton > wrote: > > (changing subject line so people don't miss this slight tangent) > > I'd almost completely forgotten, but the part of what we wrote for Hob to > write images to a USB stick or SD card (bitbake/bin/image-writer) is actually > a standalon

[yocto] Standalone image writer

2016-02-28 Thread Paul Eggleton
(changing subject line so people don't miss this slight tangent) I'd almost completely forgotten, but the part of what we wrote for Hob to write images to a USB stick or SD card (bitbake/bin/image-writer) is actually a standalone application. There's not a lot to it - pick your image file and t

Re: [yocto] Source for recipe on local drive

2016-02-28 Thread Paul Eggleton
With 1.8 and later, if it's purely the source you want there is the "devtool extract" command which will extract the sources of the specified recipe to a directory of your choosing with all of the patches applied, tracked in the form of a git tree. Cheers, Paul On Fri, 26 Feb 2016 15:38:38 Oli

Re: [yocto] [Openembedded-architecture] Removing Hob for 2.1

2016-02-28 Thread Paul Eggleton
On Fri, 26 Feb 2016 09:26:43 nick wrote: > I haven't been using the last few versions of Yocto, last I used was 1.8 I > believe unless we just jumped to 2.0/2.1. I was wondering for people > somewhat used to using HOB for easier distribution build tuning how big is > the learning curve(I assume it

Re: [yocto] [meta-raspberrypi][PATCH v3 3/6] rpi-config: I2C support

2016-02-28 Thread Leon Anavi
Hi Petter, On 2016-02-28 15:46, Petter Mabäcker wrote: With newer kernels (>=3.18) that supports device-trees I2C should be enabled with device-trees. This is now support by adding: ENABLE_I2C = "1" in local.conf This will enable the dtparams: i2c1 i2c_arm Nice, this is exactly what I needed

[yocto] [meta-raspberrypi][PATCH v3 6/6] pitft: Add PiTFT22 support

2016-02-28 Thread Petter Mabäcker
- Add support to build overlays for PiTFT22 in the kernel. - Setup a basic configuration for the driver The PiTFT22 support is optional and can be enabled by adding below in local.conf: MACHINE_FEATURES += "pitft pitft22" [Support #70] Signed-off-by: Petter Mabäcker --- README

[yocto] [meta-raspberrypi][PATCH v3 4/6] rpi-base.inc: Allow MACHINE_FEATURES appends

2016-02-28 Thread Petter Mabäcker
Ensure that it's possible to add MACHINE_FEATURES from places that will be executed before rpi-base.inc (like e.g. local.conf), without having them overrided. Signed-off-by: Petter Mabäcker --- conf/machine/include/rpi-base.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/

[yocto] [meta-raspberrypi][PATCH v3 5/6] pitft: Add basic support for PiTFT

2016-02-28 Thread Petter Mabäcker
Add basic support for PiTFT display by using device-trees. In order get it working below configurations must be active in local.conf: MACHINE_FEATURES += "pitft" - This will enable SPI bus and i2c device-trees, it will also setup framebuffer for console and x server on PiTFT. [Support #70]

[yocto] [meta-raspberrypi][PATCH v3 0/6] Various upgrade/fixes from Technux

2016-02-28 Thread Petter Mabäcker
Various fixes from Technux, with focus on PiTFT support. Petter Mabäcker (6): README: Add SPI bus chapter to content .gitignore: Ignore .swp files rpi-config: I2C support rpi-base.inc: Allow MACHINE_FEATURES appends pitft: Add basic support for PiTFT pitft: Add PiTFT22 support .gitig

[yocto] [meta-raspberrypi][PATCH v3 3/6] rpi-config: I2C support

2016-02-28 Thread Petter Mabäcker
With newer kernels (>=3.18) that supports device-trees I2C should be enabled with device-trees. This is now support by adding: ENABLE_I2C = "1" in local.conf This will enable the dtparams: i2c1 i2c_arm Signed-off-by: Petter Mabäcker --- README | 21

[yocto] [meta-raspberrypi][PATCH v3 1/6] README: Add SPI bus chapter to content

2016-02-28 Thread Petter Mabäcker
The optional SPI bus chapter was missing in the content list. While at it also place it together with the other "optional" chapters, instead of in the end. Signed-off-by: Petter Mabäcker --- README | 28 +++- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git

[yocto] [meta-raspberrypi][PATCH v3 2/6] .gitignore: Ignore .swp files

2016-02-28 Thread Petter Mabäcker
Signed-off-by: Petter Mabäcker --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 1677b58..f235765 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ build* *~ +.*.swp -- 1.9.1 -- ___ yocto mailin

Re: [yocto] [meta-raspberrypi][PATCH v2 3/7] linux-raspberrypi: Update 4.1 recipe to 4.1.15

2016-02-28 Thread Petter Mabäcker
2016-02-28 12:02 skrev Andrei Gherzan: > On Sun, Feb 28, 2016 at 11:51:58AM +0100, Andrei Gherzan wrote: > >> On Sun, Feb 28, 2016 at 08:56:33AM +0100, Petter Mabäcker wrote: >> >>> 2016-01-14 17:40 skrev Petter Mab?cker: [Support #69] Signed-off-by: Petter Mab?cker <[1]pet...@technux.se> -

[yocto] [meta-raspberrypi][PATCH v4 2/2] linux-raspberrypi: Make sure we have initramfs image before running mkknlimg

2016-02-28 Thread Andrei Gherzan
Signed-off-by: Andrei Gherzan --- recipes-kernel/linux/linux-raspberrypi.inc | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/recipes-kernel/linux/linux-raspberrypi.inc b/recipes-kernel/linux/linux-raspberrypi.inc index 1befee4..5a8a175 100644 --- a/recipes-kernel/l

[yocto] [meta-raspberrypi][PATCH v4 1/2] linux-raspberry.inc: add initramfs support

2016-02-28 Thread Andrei Gherzan
From: Stéphane Cerveau append initramfs creation to install RPi bootloader trailer Signed-off-by: Stéphane Cerveau Signed-off-by: Andrei Gherzan --- recipes-kernel/linux/linux-raspberrypi.inc | 10 ++ 1 file changed, 10 insertions(+) diff --git a/recipes-kernel/linux/linux-raspberryp

Re: [yocto] [meta-raspberrypi][PATCH v2 3/7] linux-raspberrypi: Update 4.1 recipe to 4.1.15

2016-02-28 Thread Andrei Gherzan
On Sun, Feb 28, 2016 at 11:51:58AM +0100, Andrei Gherzan wrote: > On Sun, Feb 28, 2016 at 08:56:33AM +0100, Petter Mabäcker wrote: > >2016-01-14 17:40 skrev Petter Mab?cker: > > > > [Support #69] > > > > Signed-off-by: Petter Mab?cker <[1]pet...@technux.se> > > --- > > recipes-kernel/linux/lin

Re: [yocto] [meta-raspberrypi][PATCH v2 3/7] linux-raspberrypi: Update 4.1 recipe to 4.1.15

2016-02-28 Thread Andrei Gherzan
On Sun, Feb 28, 2016 at 08:56:33AM +0100, Petter Mabäcker wrote: >2016-01-14 17:40 skrev Petter Mab�cker: > > [Support #69] > > Signed-off-by: Petter Mab�cker <[1]pet...@technux.se> > --- > recipes-kernel/linux/linux-raspberrypi_4.1.bb | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions

Re: [yocto] [meta-raspberrypi][PATCH V2] linux-raspberry.inc: add initramfs support

2016-02-28 Thread Andrei Gherzan
On Sun, Feb 28, 2016 at 09:09:33AM +0100, Petter Mabäcker wrote: >5 > > > > Petter Mab�cker > > Technux > www.technux.se > >2016-02-10 11:26 skrev St�phane Cerveau: > > append initramfs creation to install RPi bootloader trailer > > Signed-off-by: St�phane Cerveau <[1]vox...@voxtok.

[yocto] [meta-raspberrypi][PATCH v3 1/1] linux-raspberry.inc: add initramfs support

2016-02-28 Thread Andrei Gherzan
From: Stéphane Cerveau append initramfs creation to install RPi bootloader trailer Signed-off-by: Stéphane Cerveau Signed-off-by: Andrei Gherzan --- recipes-kernel/linux/linux-raspberrypi.inc | 10 ++ 1 file changed, 10 insertions(+) diff --git a/recipes-kernel/linux/linux-raspberryp

[yocto] [meta-raspberrypi][PATCH 1/1] omxplayer: Add patch to fix host-user-contaminated QA

2016-02-28 Thread Andrei Gherzan
Signed-off-by: Andrei Gherzan Signed-off-by: Jonathan Liu --- .../don-t-preserve-file-attributes-when-cp.patch | 18 ++ recipes-multimedia/omxplayer/omxplayer_git.bb | 1 + 2 files changed, 19 insertions(+) create mode 100644 recipes-multimedia/omxplayer/omxplay

Re: [yocto] [meta-raspberrypi][PATCH 3/3] u-boot-rpi: update path to imagetool-uncompressed.py

2016-02-28 Thread Andrei Gherzan
On Sun, Feb 28, 2016 at 12:46:49AM +1100, Jonathan Liu wrote: > Signed-off-by: Jonathan Liu > --- > recipes-bsp/u-boot/u-boot-rpi_git.bb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/recipes-bsp/u-boot/u-boot-rpi_git.bb > b/recipes-bsp/u-boot/u-boot-rpi_git.bb > index

Re: [yocto] [meta-raspberrypi][PATCH 2/3] linux-raspberrypi: update path to mkknlimg

2016-02-28 Thread Andrei Gherzan
On Sun, Feb 28, 2016 at 12:46:48AM +1100, Jonathan Liu wrote: > Signed-off-by: Jonathan Liu > --- > recipes-kernel/linux/linux-raspberrypi.inc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/recipes-kernel/linux/linux-raspberrypi.inc > b/recipes-kernel/linux/linux-raspb

Re: [yocto] [meta-raspberrypi][PATCH 1/3] rpi-mkimage: install to ${libexecdir}

2016-02-28 Thread Andrei Gherzan
On Sun, Feb 28, 2016 at 12:46:47AM +1100, Jonathan Liu wrote: > It doesn't make sense to install to ${libexecdir}/rpi-mkimage as it > changes the path on fido and earlier branches from: > [...]/sysroots/x86_64-linux/usr/lib/rpi-mkimage > to: > [...]/sysroots/x86_64-linux/usr/lib/rpi-mkimage/rpi

Re: [yocto] [meta-raspberrypi][PATCH] omxplayer: fix host-user-contaminated QA warnings

2016-02-28 Thread Andrei Gherzan
On Sun, Feb 28, 2016 at 12:49:07AM +1100, Jonathan Liu wrote: > On 27 February 2016 at 23:56, Andrei Gherzan wrote: > > On Sat, Feb 27, 2016 at 12:21:08AM +1100, Jonathan Liu wrote: > >> Explicitly chown the installed files to fix host-user-contaminated QA > >> warnings for libavcodec, libavdevice

Re: [yocto] [meta-raspberrypi][PATCH V2] linux-raspberry.inc: add initramfs support

2016-02-28 Thread Petter Mabäcker
5 Petter Mabäcker Technux www.technux.se 2016-02-10 11:26 skrev Stéphane Cerveau: > append initramfs creation to install RPi bootloader trailer > > Signed-off-by: Stéphane Cerveau > --- > recipes-kernel/linux/linux-raspberrypi.inc | 9 + > 1 file changed, 9 insertions(+) > > dif