Re: [yocto] core-image-x11 screen resolution

2014-07-18 Thread Wenholz, Brian (GE Healthcare)
Chris, To do this I use a custom xorg.conf file by creating a bbappend for the xserver-xf86-config recipe in my own layer. Just needs the FILESEXTRAPATHS_prepend and PR variables updated. Then you place the custom file in the xserver-xf86-config or files directory. I keep my layer appends in t

[yocto] core-image-x11 screen resolution

2014-07-18 Thread Chris Tapp
Is there an easy/quick way to set the screen resolution used when core-image-x11 starts X? I.e. something that can be added into local.conf? Chris Tapp opensou...@keylevel.com www.keylevel.com -- ___ yocto mailing list yocto@yoctoproject.org https:/

[yocto] [yocto-docs][PATCH] Grammar fix to kernel-dev manual.

2014-07-18 Thread Robert P. J. Day
Signed-off-by: Robert P. J. Day --- diff --git a/documentation/kernel-dev/kernel-dev-common.xml b/documentation/kernel-dev/kernel-dev-common.xml index 5f28b82..5d14a15 100644 --- a/documentation/kernel-dev/kernel-dev-common.xml +++ b/documentation/kernel-dev/kernel-dev-common.xml @@ -502,7 +50

[yocto] does/should the kernel dev manual explain FILESOVERRIDES?

2014-07-18 Thread Robert P. J. Day
currently perusing the yocto kernel dev guide -- nowhere near finished but a quick search shows no mention of the use of OVERRIDES in the context of FILESEXTRAPATHS, which i think is potentially useful. i think that's covered in the dev manual, but i don't think it would hurt to repeat it in the

Re: [yocto] Extending images

2014-07-18 Thread Christopher Larson
On Fri, Jul 18, 2014 at 11:55 AM, Robert P. J. Day wrote: > On Fri, 18 Jul 2014, Christopher Larson wrote: > > > I really don't think this was ever safe, as it completely depended > > on how the image recipe added its bits to IMAGE_INSTALL, which could > > easily vary from image to image. I've *a

Re: [yocto] Extending images

2014-07-18 Thread Robert P. J. Day
On Fri, 18 Jul 2014, Christopher Larson wrote: > I really don't think this was ever safe, as it completely depended > on how the image recipe added its bits to IMAGE_INSTALL, which could > easily vary from image to image. I've *always* told folks to use > IMAGE_INSTALL_append if anything, even bac

Re: [yocto] Extending images

2014-07-18 Thread Christopher Larson
On Fri, Jul 18, 2014 at 11:45 AM, Robert P. J. Day wrote: > > > On 2014-07-18 10:49, Christopher Larson wrote: > > > > > > On Fri, Jul 18, 2014 at 9:26 AM, Gary Thomas > > > wrote: > > > > > > 've always used 'IMAGE_INSTALL += " xyz"' in my local.conf > > > to a

Re: [yocto] Extending images

2014-07-18 Thread Robert P. J. Day
On Fri, 18 Jul 2014, Gary Thomas wrote: > On 2014-07-18 10:49, Christopher Larson wrote: > > > > On Fri, Jul 18, 2014 at 9:26 AM, Gary Thomas > > wrote: > > > > 've always used 'IMAGE_INSTALL += " xyz"' in my local.conf > > to add new packages to a build. That s

[yocto] su.shadow: Change in behaviour

2014-07-18 Thread Gary Thomas
I just noticed a difference in how su.shadow functions with the latest code. If I run this # su -c /home/root/test -l root with the previous version (4.1.4.3) I see this flow: 6761 execve("/bin/su", ["su", "-c", "/home/root/test", "-l"], [/* 13 vars */]) = 0 6761 execve("/bin/sh", ["/bin

Re: [yocto] Status of Dylan 9.0.4

2014-07-18 Thread Flanagan, Elizabeth
On Mon, Jul 14, 2014 at 1:31 PM, Bob Cochran wrote: > On 07/14/2014 04:00 PM, Adam Hughes wrote: >> >> Hi there, >> >> I'm sorry this is a very dull question, and I feel I should be able to >> find the information elsewhere, but my google-fu has failed. Please tell me >> if there is a better plac

Re: [yocto] [PATCH] _json module arbitrary process memory read vulnerability

2014-07-18 Thread Saul Wold
On 07/17/2014 03:27 AM, Daniel BORNAZ wrote: python-native: _json module arbitrary process memory read vulnerability This should be the proper subject of the mail and commit, please update and see below. http://bugs.python.org/issue21529 Python 2 and 3 are susceptible to arbitrary process m

Re: [yocto] Best way to make use of kernel defconf for supported hw?

2014-07-18 Thread Bruce Ashfield
On 14-07-18 01:10 PM, Chris Enrique wrote: Hello, i need some advice: i have created a bsp for a board which is supported by the linux kernel. so my bsp doesn't focus on kernel patching or similar, just contains some other board specific content. how do i use the kernel defconf for this board

[yocto] Best way to make use of kernel defconf for supported hw?

2014-07-18 Thread Chris Enrique
Hello, i need some advice: i have created a bsp for a board which is supported by the linux kernel. so my bsp doesn't focus on kernel patching or similar, just contains some other board specific content. how do i use the kernel defconf for this board which is located under arch/architecture/.../

Re: [yocto] Extending images

2014-07-18 Thread Christopher Larson
On Fri, Jul 18, 2014 at 9:54 AM, Gary Thomas wrote: > Most likely the image defined its own IMAGE_INSTALL using ?=, so defining >> it yourself in the configuration data overrode its default definition, >> since ?= is "set only if unset". If >> the recipe didn't use ?=, then your IMAGE_INSTALL +=

Re: [yocto] Extending images

2014-07-18 Thread Christopher Larson
On Fri, Jul 18, 2014 at 9:26 AM, Gary Thomas wrote: > 've always used 'IMAGE_INSTALL += " xyz"' in my local.conf > to add new packages to a build. That said, I had a working > build for qemuarm (probably doesn't matter) and I added: > IMAGE_INSTALL += " strace" > This produced a completely bro

Re: [yocto] Extending images

2014-07-18 Thread Gary Thomas
On 2014-07-18 10:49, Christopher Larson wrote: On Fri, Jul 18, 2014 at 9:26 AM, Gary Thomas mailto:g...@mlbassoc.com>> wrote: 've always used 'IMAGE_INSTALL += " xyz"' in my local.conf to add new packages to a build. That said, I had a working build for qemuarm (probably doesn't ma

Re: [yocto] Extending images

2014-07-18 Thread Robert P. J. Day
On Fri, 18 Jul 2014, Gary Thomas wrote: > I've always used 'IMAGE_INSTALL += " xyz"' in my local.conf > to add new packages to a build. That said, I had a working > build for qemuarm (probably doesn't matter) and I added: > IMAGE_INSTALL += " strace" > This produced a completely broken image wh

[yocto] Extending images

2014-07-18 Thread Gary Thomas
I've always used 'IMAGE_INSTALL += " xyz"' in my local.conf to add new packages to a build. That said, I had a working build for qemuarm (probably doesn't matter) and I added: IMAGE_INSTALL += " strace" This produced a completely broken image which barely came up to a shell, lots of missing pro

[yocto] Media player for the Beaglebone Black

2014-07-18 Thread Sven Vos
Hello, After trying to get the Gstreamer working, i found out i got a segmentation fault. Already made a bug report about it, but i am wondering if a media player already exist for the Beaglebone black in Yocto that supports MP4? Thanks for your help, Sven Vos --

Re: [yocto] wic status

2014-07-18 Thread Maciek Borzecki
On czw, 2014-07-17 at 15:07 -0500, Tom Zanussi wrote: > On Thu, 2014-07-17 at 19:38 +0200, Maciek Borzecki wrote: > > On czw, 2014-07-17 at 09:18 -0500, Tom Zanussi wrote: > > > On Thu, 2014-07-17 at 14:51 +0100, Paul Eggleton wrote: > > > > On Thursday 17 July 2014 16:48:41 Scott Rifenbark wrote:

Re: [yocto] add custom application into a image

2014-07-18 Thread Cliff Brake
On Fri, Jul 18, 2014 at 5:12 AM, dexon_test wrote: > } > > 3. bitbake -c build dxatmel > >-> I hit this error msg: Not found *.pro file in the working directory At this point, you'll likely need to cd in the tmp/work//dxatmel../ directory. Then you can look at the script that is doing t

Re: [yocto] Adding prebuilt binaries/libraries to /usr/bin or/usr/lib on rootfs

2014-07-18 Thread Vladimir Redzhepov
There're some variables and methods that are responsible for rootfs content. The official documentation is a good place to start Read carefully how to customize image here http://www.yoctoproject.org/docs/latest/dev-manual/dev-manual.html#usingpoky-extend-customimage -Original Message- F

Re: [yocto] Adding prebuilt binaries/libraries to /usr/bin or/usr/lib on rootfs

2014-07-18 Thread Meenakumari Shedole
Thanks for your response. But if I have few different packages like "usb" "BT" "Qt" and only these packages bin and libraries if I want to add to yocto rootfs ? Regards Meena From: Vladimir Redzhepov [vladimir_redzhe...@epam.com] Sent: Friday, July 18, 20

[yocto] add custom application into a image

2014-07-18 Thread dexon_test
First of all, I am a full beginner when it comes to bitbake, yocto, etc...So, I am sorry if my questions seems unskilful... I would like to use meta-atmel (https://github.com/linux4sam/meta-atmel) with SAMA5d3xek machine. I could build "atmel-qt4e-demo-image" demo image. Therefore I'd like to

Re: [yocto] Adding prebuilt binaries/libraries to /usr/bin or/usr/lib on rootfs

2014-07-18 Thread Vladimir Redzhepov
Hi You should look closely at meta-oracle-java layer if want to add some binaries to the target rootfs. On the other hand if you want to use binaries within the build process they should be put down in the places poky could find them. There's an example how to use a binary apache-maven within b

Re: [yocto] Adding prebuilt binaries/libraries to /usr/bin or/usr/lib on rootfs

2014-07-18 Thread Nicolas Dechesne
On Fri, Jul 18, 2014 at 7:55 AM, Meenakumari Shedole wrote: > I have few prebuilt binaries and libraries, and I want to add them to the > yocto build rootfs at the > build itself. > So Can any one please tell me the steps to add recipes or suggest me any > other method for this. > just make a r