Re: [yocto] Source Command Permission Denied

2014-06-05 Thread Kashyap Gada
Its a different ntfs partition. I mount it manually. On Tue, Jun 3, 2014 at 10:44 PM, Saul Wold s...@linux.intel.com wrote: On 06/03/2014 09:20 AM, Kashyap Gada wrote: Thank you Ross. I actually ran into another problem in bitbaking core-image-sato from the getting started guide at the

Re: [yocto] Source Command Permission Denied

2014-06-05 Thread Burton, Ross
On Thursday, 5 June 2014, Kashyap Gada gada.kash...@gmail.com wrote: Its a different ntfs partition. I mount it manually. Using NTFS is certainly going to complicate things because the permissions model is different, can you use a Linux file system (such as ext4) instead of a Windows one?

Re: [yocto] Source Command Permission Denied

2014-06-05 Thread Kashyap Gada
Yes, I have already dropped my plan for continuing further on that setup. I have got a new computer and started the complete process again. Thanks for the help. :-) On Thu, Jun 5, 2014 at 12:04 PM, Burton, Ross ross.bur...@intel.com wrote: On Thursday, 5 June 2014, Kashyap Gada

[yocto] Problems with postinstall

2014-06-05 Thread Neuer User
Hi I am desperately trying to get some postinstall scripts working. They should replace some defualt files with custom files I have. They are all in one package. The package looks like this: do_install() { install -d ${D}${sbindir} install -m 0700 ${S}/sbin/* ${D}${sbindir} install

[yocto] TARGET_ARCH in external toolchain

2014-06-05 Thread Marek Andrus
Hi, I'd like to provide one meta for a 4 external toolchains (for 4 different architectures). I wanted it to select appropriate toolchain accroding to a TARGET_ARCH variable. Unfortunately TARGET_ARCH looks like not being set at the time of parsing my tcmode-external-mytc.inc file (where

[yocto] Building for Boards not supported by Yocto Project

2014-06-05 Thread Kashyap Gada
Hello. I have successfully built and tested core-image-sato through the process given by the quick start guide at the yocto project website. Now I intend to build an image for a board which is not officially supported by yocto project. I have a FriendlyArm mini6410 whose BSP is available for

Re: [yocto] TARGET_ARCH in external toolchain

2014-06-05 Thread Marek Andrus
I've found a problem. TARGET_ARCH in fact isn't set but I can still use conditional syntax. The problem was I was trying with ppc architecture (TARGET_ARCH is later set to ppc) but here I had to use powerpc instead. BR, Marek Andrus On 05.06.2014 13:02, Marek Andrus wrote: Hi, I'd like to

[yocto] Live images?

2014-06-05 Thread Gary Thomas
Looking through the Poky/Yocto sources, there seems to be some support for Live CD/USB images. However, I can't find any examples nor documentation for how to use this. Can anyone provide some pointers? Thanks -- Gary Thomas

Re: [yocto] Live images?

2014-06-05 Thread Paul Eggleton
Hi Gary, On Thursday 05 June 2014 07:07:34 Gary Thomas wrote: Looking through the Poky/Yocto sources, there seems to be some support for Live CD/USB images. However, I can't find any examples nor documentation for how to use this. Can anyone provide some pointers? You're right, we seem to

Re: [yocto] Live images?

2014-06-05 Thread Paul Eggleton
On Thursday 05 June 2014 15:26:28 Paul Eggleton wrote: Hi Gary, On Thursday 05 June 2014 07:07:34 Gary Thomas wrote: Looking through the Poky/Yocto sources, there seems to be some support for Live CD/USB images. However, I can't find any examples nor documentation for how to use this.

Re: [yocto] Building for Boards not supported by Yocto Project

2014-06-05 Thread Bruce Ashfield
On 14-06-05 07:28 AM, Kashyap Gada wrote: Hello. I have successfully built and tested core-image-sato through the process given by the quick start guide at the yocto project website. Now I intend to build an image for a board which is not officially supported by yocto project. I have a

Re: [yocto] Live images?

2014-06-05 Thread Paul Eggleton
On Thursday 05 June 2014 08:41:57 Gary Thomas wrote: On 2014-06-05 08:32, Paul Eggleton wrote: On Thursday 05 June 2014 15:26:28 Paul Eggleton wrote: Hi Gary, On Thursday 05 June 2014 07:07:34 Gary Thomas wrote: Looking through the Poky/Yocto sources, there seems to be some support

Re: [yocto] Live images?

2014-06-05 Thread Gary Thomas
Configuration: BB_VERSION= 1.23.1 BUILD_SYS = i686-linux NATIVELSBSTRING = Fedora-13 TARGET_SYS= i586-poky-linux MACHINE = genericx86 DISTRO= poky DISTRO_VERSION= 1.6+snapshot-20140605 TUNE_FEATURES = m32 core2 TARGET_FPU= meta meta-yocto

Re: [yocto] Live images?

2014-06-05 Thread Paul Eggleton
= genericx86 DISTRO= poky DISTRO_VERSION= 1.6+snapshot-20140605 TUNE_FEATURES = m32 core2 TARGET_FPU= meta meta-yocto meta-yocto-bsp= master:e7114046be6e71fb326477dc882adb814ef6a751 Extra settings in conf/local.conf # Live CD setup

Re: [yocto] how to specify if multiple bb files are existing

2014-06-05 Thread Insop Song
Hi Rudi, I looked more and found out that the reason why 2013.01.01.bb, which is the latest, was not picked was due to DEFAULT_PREFERENCE = -1 in that file. I was using this file from here :

Re: [yocto] Live images?

2014-06-05 Thread Gary Thomas
= poky DISTRO_VERSION= 1.6+snapshot-20140605 TUNE_FEATURES = m32 core2 TARGET_FPU= meta meta-yocto meta-yocto-bsp= master:e7114046be6e71fb326477dc882adb814ef6a751 Extra settings in conf/local.conf # Live CD setup IMAGE_FSTYPES_append = hddimg live hddimg isn't a valid

Re: [yocto] [PATCH V2] opkg-build: add detection if using GNU tar.

2014-06-05 Thread Paul Barker
On Tue, Jun 03, 2014 at 11:25:35AM +0100, t...@ewsting.org wrote: From: Thomas Ingleby thomas.c.ingl...@intel.com * Some options of GNU tar do not exist on other implementations Signed-off-by: Thomas Ingleby thomas.c.ingl...@intel.com I've made a couple of slight further changes, hope you

Re: [yocto] [PATCH V2] opkg-build: add detection if using GNU tar.

2014-06-05 Thread Tom Ingleby
Great!, Have a good evening, Tom On 5 June 2014 20:56, Paul Barker p...@paulbarker.me.uk wrote: On Tue, Jun 03, 2014 at 11:25:35AM +0100, t...@ewsting.org wrote: From: Thomas Ingleby thomas.c.ingl...@intel.com * Some options of GNU tar do not exist on other implementations Signed-off-by:

[yocto] List of Binary Files from a recipe

2014-06-05 Thread Bharath Chandra
Hi, I am working on a reverse enginnering project and I want to know by looking at an executable , the recipe file from which it is generated. So, first I need to understand by using what commands in a recipe file, we can generate an executable. -- Thanks Regards, Bharath Chandra Elluru.

Re: [yocto] List of Binary Files from a recipe

2014-06-05 Thread Burton, Ross
On 5 June 2014 21:50, Bharath Chandra ellurubharat...@gmail.com wrote: I am working on a reverse enginnering project and I want to know by looking at an executable , the recipe file from which it is generated. So, first I need to understand by using what commands in a recipe file, we can

Re: [yocto] List of Binary Files from a recipe

2014-06-05 Thread Bharath Chandra
Hi Ross, Thank you for the response. rpm -qf filename would give us the package name. Thanks, Bharath On Thu, Jun 5, 2014 at 4:13 PM, Burton, Ross ross.bur...@intel.com wrote: On 5 June 2014 21:50, Bharath Chandra ellurubharat...@gmail.com wrote: I am working on a reverse enginnering

Re: [yocto] Live images?

2014-06-05 Thread Gary Thomas
= genericx86 DISTRO= poky DISTRO_VERSION= 1.6+snapshot-20140605 TUNE_FEATURES = m32 core2 TARGET_FPU= meta meta-yocto meta-yocto-bsp= master:e7114046be6e71fb326477dc882adb814ef6a751 Extra settings in conf/local.conf # Live CD setup IMAGE_FSTYPES_append

Re: [linux-yocto] [PATCH 0/8] LSI AXXIA updates to 3.10 standard/axxia/base

2014-06-05 Thread Bruce Ashfield
On 14-06-03 09:14 PM, Charlie Paul wrote: Updates to the arm and i2c Anders Berg (5): i2c: axxia: Minor cosmetic cleanup i2c: axxia: Fall back to polling mode when no IRQ misc: lsi-smmon: Bug when probing with IRQ pending misc: lsi-smmon: Add parameter panic_on_fatal ARM: dts:

[linux-yocto] [PULL REQUEST] Kernel: 3.10 Branch: standard/axxia/base

2014-06-05 Thread Paul, Charlie
The following changes since commit f027472523d4969f3d78226c3fb1c6bacb05e8f7: arch/arm/mach-axxia: Move Simulutaion/Emulation WFE/SEV Work-Around (2014-05-20 15:29:24 -0700) are available in the git repository at: https://github.com/z8cpaul/lsikernel-3.10 sab-delivery-2 for you to fetch

Re: [linux-yocto] [PULL REQUEST] Kernel: 3.10 Branch: standard/axxia/base

2014-06-05 Thread Bruce Ashfield
On 14-06-05 02:07 PM, Paul, Charlie wrote: The following changes since commit f027472523d4969f3d78226c3fb1c6bacb05e8f7: arch/arm/mach-axxia: Move Simulutaion/Emulation WFE/SEV Work-Around (2014-05-20 15:29:24 -0700) are available in the git repository at: