[yocto] [PATCH v2] rpi-gpio: renamed from RPi-GPIO

2013-05-08 Thread Paul Barker
Package names shouldn't contain capital letters. Signed-off-by: Paul Barker --- .../python/{RPi-GPIO => rpi-gpio}/don-t-install-setuptools.patch | 0 recipes-devtools/python/{RPi-GPIO_0.2.0.bb => rpi-gpio_0.2.0.bb} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename r

Re: [yocto] [meta-raspberrypi][PATCH] rpi-gpio: renamed from RPi-GPIO

2013-05-08 Thread Paul Barker
On 7 May 2013 12:45, Andrei Gherzan wrote: > Could you please resend it with - M? > Done, still not entirely used to git format-patch and git send-email. Will try putting it in my config as the default. -- Paul Barker Email: p...@paulbarker.me.uk http://www.paulbarker.me.uk

Re: [yocto] [meta-raspberrypi] Zenity is in meta-gnome

2013-05-08 Thread Paul Barker
On 2 May 2013 17:45, Andrei Gherzan wrote: > > So that script was just a helper to make things easier for the user. > > On the other hand i'm pretty sure nobody uses it. Probably because is > outdated and seems to come from other project - which is true :). So if we > decide to keep it we need to

Re: [yocto] Status Update

2013-05-08 Thread Burton, Ross
On 7 May 2013 18:57, Trevor Woerner wrote: > I've looked through the list of patches and don't seem to find > anything that will do what my patch needs to do in order to build > qemu-1.2.0 on openSuSE 12.3. Would you consider adding the attached > patch for Danny? (normally I'd send it in-line but

Re: [yocto] [meta-raspberrypi][PATCH] rpi-gpio: renamed from RPi-GPIO

2013-05-08 Thread Andrei Gherzan
On Wed, May 8, 2013 at 12:17 PM, Paul Barker wrote: > On 7 May 2013 12:45, Andrei Gherzan wrote: > > Could you please resend it with - M? > > > > Done, still not entirely used to git format-patch and git send-email. > Will try putting it in my config as the default. > > Thank you. -- *Andrei G

Re: [yocto] Status Update

2013-05-08 Thread Trevor Woerner
On Wed, May 8, 2013 at 6:35 AM, Burton, Ross wrote: > On 7 May 2013 18:57, Trevor Woerner wrote: >> I've looked through the list of patches and don't seem to find >> anything that will do what my patch needs to do in order to build >> qemu-1.2.0 on openSuSE 12.3. Would you consider adding the att

[yocto] [PATCH 0/3] Add utilities to RSEHelper

2013-05-08 Thread Ioana Grigoropol
- add small utilities functions to RSEHelper in order to isolate functionalities that are strictly related to GUI and those that are remote utilities Ioana Grigoropol (3): Move remote system type checkings from GUI Dialogs and to RSEHelper Move logic for waiting for RSE initialization to RS

[yocto] [PATCH 1/3] Move remote system type checkings from GUI Dialogs and to RSEHelper

2013-05-08 Thread Ioana Grigoropol
- BaseSettingDialog contains code that checks whether the system type associated with a certain IHost is not null, enable and remote - these checkings should be done in the RSEHelper for two reasons: - limit the dependecies to the RSE Api - isolate remote functionaties from GUI - c

[yocto] [PATCH 2/3] Move logic for waiting for RSE initialization to RSEHelper

2013-05-08 Thread Ioana Grigoropol
- BaseSettingsDialog contains code that ensures that RSE plug-in is initialized before performing any remote actions - this piece of code should be placed in the RSEHelper since it does not have any relevance for the GUI class - created method in RSEHelper called waitForRSEInitCom

[yocto] [PATCH 3/3] Move filtering of suitable connections to RSEHelper

2013-05-08 Thread Ioana Grigoropol
- BaseSettingDialog performs an extra filtering for suitable connections for a given host by checking the remote system type - this checking should be done in RSEHelper since it involves a remote action and thus removing BaseSettingDialog dependency on RSE Api - modified RSEHelper

[yocto] [PATCH 00/12] Initial commit & functionalities for org.yocto.remote.utils

2013-05-08 Thread Ioana Grigoropol
- created separate org.yocto.remote.utils plugin - moved here all functionality from org.yocto.sdk.remotetools that perform remote actions - remove all dependencies to RSE Api from org.yocto.sdk.remotetools that are no longer needed Ioana Grigoropol (12): Move RSEHelper to a separate plugin

[yocto] [PATCH 01/12] Move RSEHelper to a separate plugin

2013-05-08 Thread Ioana Grigoropol
- moved RSEHelper to newly created separate plugin org.yocto.remote.utils - clean-up RSEHelper code by removing all unused methods - moved message strings that are relevant for this plugin to the corresponding class Signed-off-by: Ioana Grigoropol --- .../org.yocto.remote.utils/META-INF/MANIFES

[yocto] [PATCH 02/12] Modify remotetools plugin to use RSEHelper from org.yocto.remote.utils

2013-05-08 Thread Ioana Grigoropol
- remove RSEHelper from org.yocto.sdk.remotetools - add plug-in dependency to org.yocto.remote.utils Signed-off-by: Ioana Grigoropol --- .../org.yocto.sdk.remotetools/META-INF/MANIFEST.MF |3 +- .../src/org/yocto/sdk/remotetools/RSEHelper.java | 419 .../yocto/sdk/rem

[yocto] [PATCH 03/12] Move RemoteShellExec to separate plugin

2013-05-08 Thread Ioana Grigoropol
- RemoteShellExec is a wrapper over a remote executiong of a command in a shell and it belongs to org.yocto.remote.utils plugin Signed-off-by: Ioana Grigoropol --- .../org/yocto/remote/utils/RemoteShellExec.java| 140 1 file changed, 140 insertions(+) create mode 1006

[yocto] [PATCH 04/12] Remove RemoteShellExec from remotetools plugin

2013-05-08 Thread Ioana Grigoropol
- remove RemoteShellExec class and org.yocto.sdk.remote package - use implementation from org.yocto.remote.utils Signed-off-by: Ioana Grigoropol --- .../yocto/sdk/remotetools/actions/BaseModel.java |2 +- .../sdk/remotetools/remote/RemoteShellExec.java| 149 2 fil

[yocto] [PATCH 05/12] Move ShellSession to org.yocto.remote.utils separate plugin

2013-05-08 Thread Ioana Grigoropol
- ShellSession is used as a wrapper for a remote shell used for running commands on a remote machine with bitbake environment - moved to org.yocto.remote.plugin since it is part of remote utilities Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/remote/utils/ShellSession.java | 327 +++

[yocto] [PATCH 06/12] Remove ShellSession from org.yocto.sdk.remotetools

2013-05-08 Thread Ioana Grigoropol
- remove shell session class from remotetools plugin since it has been added to org.yocto.remote.utils - add import from separate remote utilities plugin Signed-off-by: Ioana Grigoropol --- .../org/yocto/sdk/remotetools/ShellSession.java| 341 .../sdk/remotetools/actio

[yocto] [PATCH 07/12] Move CommonHelper to org.yocto.remote.utils separate plugin

2013-05-08 Thread Ioana Grigoropol
- common helper is better suited to org.yocto.remote.utils since it is used for: - running commands - displaying error dialogs Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/remote/utils/CommonHelper.java | 46 1 file changed, 46 insertions(+) create mode 1

[yocto] [PATCH 08/12] Remote CommonHelper from org.yocto.sdk.remotetools

2013-05-08 Thread Ioana Grigoropol
- remove common helper from remote tools plugin since it has be added to a separated plugin - add imports for CommonHelper from org.yocto.remote.utils Signed-off-by: Ioana Grigoropol --- .../org/yocto/sdk/remotetools/CommonHelper.java| 44 .../sdk/remotetools/actions/

[yocto] [PATCH 09/12] Move TerminalHandler to org.yocto.remote.utils

2013-05-08 Thread Ioana Grigoropol
- moved TerminalHandler to separate plugin since it performs actions that are best suited for remote utilities Signed-off-by: Ioana Grigoropol --- .../org.yocto.remote.utils/META-INF/MANIFEST.MF|9 +- .../org/yocto/remote/utils/TerminalHandler.java| 128 2 file

[yocto] [PATCH 10/12] Remove TerminalHandler from org.yocto.sdk.remoteools

2013-05-08 Thread Ioana Grigoropol
- remove TerminalHandler from remotetools plugin since it has been added to org.yocto.remote.utils - add imports to use remote utilities implementation Signed-off-by: Ioana Grigoropol --- .../sdk/remotetools/actions/DialogHandler.java |1 + .../sdk/remotetools/actions/TerminalHandler.ja

[yocto] [PATCH 11/12] Remove unused TCFTerminalConnectors

2013-05-08 Thread Ioana Grigoropol
- removed TCFTerminalConnector and TCFTerminalConnectorImpl since there are no usages of this classes Signed-off-by: Ioana Grigoropol --- .../remotetools/views/TCFTerminalConnector.java| 49 -- .../views/TCFTerminalConnectorImpl.java| 98 2 files

[yocto] [PATCH 12/12] Remove all plugin dependencies to RSE APi from remote tools plugin

2013-05-08 Thread Ioana Grigoropol
- removed all plugin dependencies to the RSE API & kept only the ones needed for GUI actions and Terminal views Signed-off-by: Ioana Grigoropol --- .../org.yocto.sdk.remotetools/META-INF/MANIFEST.MF | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/plugins/org.yoc

[yocto] netbase upgrade with meta-ti

2013-05-08 Thread Edward Vidal
Hello, I am using Yocto with meta-ti to create beaglebone and pandaboard core-image-sato files. The following version of poky commit 84d45db4ddced96c736f106f8122eefadf925c41 Author: Darren Hart Date: Wed May 1 13:43:33 2013 -0700 grub-efi-native: Cleanup whitespace A few of the recent

[yocto] [yocto-autobuilder][PATCH 0/4] Some builds (ipk, multilib) and one fix

2013-05-08 Thread Stefan Stanacar
The following changes since commit fd74be794035a2c73b206c3ca4dd4c45005037a5: CreateAutoConf.py (2013-05-07 09:00:49 -0700) are available in the git repository at: git://git.yoctoproject.org/poky-contrib stefans/yab2 http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=stefans/yab2 Ste

[yocto] [yocto-autobuilder][PATCH 2/4] nightly-multilib: remove Publish steps

2013-05-08 Thread Stefan Stanacar
Save some space by removing Publish steps, I think nobody downloads the multilib images from AB. Signed-off-by: Stefan Stanacar --- buildset-config/nightly-multilib.conf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/buildset-config/nightly-multilib.conf b/buildset-confi

[yocto] [yocto-autobuilder][PATCH 3/4] PublishLayerTarballs.py: fix command overwrite

2013-05-08 Thread Stefan Stanacar
command was overwritten, so the gzip archive was missing. Also add a trailing slash to the second git archive prefix otherwise we end up with dirs like poky-revscripts instead of poky-rev/scripts. Signed-off-by: Stefan Stanacar --- .../site-packages/autobuilder/buildsteps/PublishLayerTarballs.py

[yocto] [yocto-autobuilder][PATCH 1/4] buildsets: add some more builds

2013-05-08 Thread Stefan Stanacar
Let's put to good use the new packages option, by adding some ipk builds to multilib target. Also let's enable sanity tests for more images. Signed-off-by: Stefan Stanacar --- buildset-config/nightly-multilib.conf | 9 - buildset-config/nightly-qa-extras.conf | 3 ++- buildset-config/ni

[yocto] [yocto-autobuilder][PATCH 4/4] PublishLayerTarballs.py: Cleanup spacing

2013-05-08 Thread Stefan Stanacar
No changes, just formating/spacing. Signed-off-by: Stefan Stanacar --- .../autobuilder/buildsteps/PublishLayerTarballs.py | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/PublishLayerTarballs.py b/lib/

Re: [yocto] netbase upgrade with meta-ti

2013-05-08 Thread Paul Eggleton
On Wednesday 08 May 2013 09:15:32 Edward Vidal wrote: > I am using Yocto with meta-ti to create beaglebone and pandaboard > core-image-sato files. > The following version of poky > commit 84d45db4ddced96c736f106f8122eefadf925c41 > Author: Darren Hart > Date: Wed May 1 13:43:33 2013 -0700 > >

[yocto] Final day to apply for a Yocto Project internship

2013-05-08 Thread Jeff Osier-Mixon
This is the final day to submit applications for internships with the Yocto Project as a sponsoring organization for the Outreach Program for Women. For more information, see our OPW Internship page (https://www.yoctoproject.org/opw-internship) and/or contact me with any questions. -- Jeff Osier-M

[yocto] [PATCH v2 0/7] Initial commit & functionalities for org.yocto.remote.utils

2013-05-08 Thread Ioana Grigoropol
- created separate org.yocto.remote.utils plugin - move all functionality from org.yocto.sdk.remotetools that perform remote actions to org.yocto.remote.utils - remove all dependencies to RSE Api from org.yocto.sdk.remotetools that are no longer needed Ioana Grigoropol (7): Move RSEHelper to a

[yocto] [PATCH v2 1/7] Move RSEHelper to a separate plugin

2013-05-08 Thread Ioana Grigoropol
- move RSEHelper to newly created separate plugin org.yocto.remote.utils - clean-up RSEHelper code by removing all unused methods - moved message strings that are relevant for this plugin to the corresponding class - modify remotetools plugin to use RSEHelper from org.yocto.remote.utils Signed-of

[yocto] [PATCH v2 2/7] Move RemoteShellExec to separate plugin

2013-05-08 Thread Ioana Grigoropol
- RemoteShellExec is a wrapper over a remote executiong of a command in a shell and it belongs to org.yocto.remote.utils plugin - remove RemoteShellExec from remotetools plugin and add it to org.yocto.remote.utils - modify org.yocto.sdk.remotetools to use implementation from org.yocto.remote.uti

[yocto] [PATCH v2 3/7] Move ShellSession to org.yocto.remote.utils separate plugin

2013-05-08 Thread Ioana Grigoropol
- ShellSession is used as a wrapper for a remote shell used for running commands on a remote machine with bitbake environment - move ShellSession org.yocto.remote.plugin since it is part of remote utilities - remove shell session class from remotetools plugin - modify org.yocto.sdk.remotetools to

[yocto] [PATCH v2 4/7] Move CommonHelper to org.yocto.remote.utils separate plugin

2013-05-08 Thread Ioana Grigoropol
- common helper is better suited to org.yocto.remote.utils since it is used for: - running commands - displaying error dialogs - remove common helper from remote tools plugin and add it to a separated plugin - modify org.yocto.sdk.remotetools to use implementation from org.yocto.remote.utils

[yocto] [PATCH v2 5/7] Move TerminalHandler to org.yocto.remote.utils

2013-05-08 Thread Ioana Grigoropol
- move TerminalHandler to separate plugin since it performs actions that are best suited for remote utilities - remove TerminalHandler from remotetools plugin - modify org.yocto.sdk.remotetools to use implementation from org.yocto.remote.utils Signed-off-by: Ioana Grigoropol --- .../org.yocto.

[yocto] [PATCH v2 6/7] Remove unused TCFTerminalConnectors

2013-05-08 Thread Ioana Grigoropol
- removed TCFTerminalConnector and TCFTerminalConnectorImpl since there are no usages of this classes Signed-off-by: Ioana Grigoropol --- .../remotetools/views/TCFTerminalConnector.java| 49 -- .../views/TCFTerminalConnectorImpl.java| 98 2 files

[yocto] [PATCH v2 7/7] Remove all plugin dependencies to RSE APi from remote tools plugin

2013-05-08 Thread Ioana Grigoropol
- removed all plugin dependencies to the RSE API & kept only the ones needed for GUI actions and Terminal views Signed-off-by: Ioana Grigoropol --- .../org.yocto.sdk.remotetools/META-INF/MANIFEST.MF | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/plugins/org.yoc

[yocto] HOB Yocto 1.4 bzImage missing from ext3 image

2013-05-08 Thread Kurt Stevens
Hello, I included meta-openembedded in my poky folder (both git cloned from dylan release) and built atom-pc, using core-image-basic for a start point, and using the HOB interface. I added apache and mysql (and deselected lighttpd), and got no errors in the log. When I u

Re: [yocto] Building error for yocto

2013-05-08 Thread Burton, Ross
On 23 April 2013 18:03, Alexander Keller wrote: > I have trying to build yocto for the past couple of days to test the > hardware acceleration on the X11. However, when I try to build yocto I keep > on getting this error: > > ERROR: Function failed: do_configure (see > /home/lucid/build/tmp/work/a

Re: [yocto] [PATCH 3/3] Move filtering of suitable connections to RSEHelper

2013-05-08 Thread Zhang, Jessica
Hi Ioana, Isn't the logic in RSEHelper is reversed? It should be: if (sysType == null ||! sysType.isEnabled()) { iter.remove(); } Thanks, Jessica -Original Message- From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On Behalf Of Ioana Grigoropol Sent:

[yocto] 1.3.2_rc1 respin (failing)

2013-05-08 Thread Flanagan, Elizabeth
ct.org/pub/nightly/20130508-2 -- Elizabeth Flanagan Yocto Project Build and Release ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] How to specify that a task always be executed

2013-05-08 Thread Silverman, Brian
I could use some help in understanding how to create a task that is always executed. I initially tried just setting task[nostamp]="1". However, it appeared that the sstate cache was preventing bitbake from even considering the task's stamp. So I set SSTATETASKS="" in an attempt to completely dis

Re: [yocto] Does anyone have a recipe for efibootmgr?

2013-05-08 Thread Khem Raj
On May 7, 2013, at 11:11 AM, "Wenholz, Brian (GE Healthcare)" wrote: > All, > > I have been unsuccessful in finding one yet, and would prefer not to > re-invent the wheel. check http://layers.openembedded.org/layerindex/ if its not there then it does not exist. secondly check classic OE

Re: [yocto] how to edit gumstix-console-image.bb?

2013-05-08 Thread Khem Raj
On May 7, 2013, at 4:58 AM, Zaif upb wrote: > HI all, > > After successfully build of gumstix-consol-image How to edit > gumstix-console-image.bb to create our own custom image? > > (I want to add OpenCV to the image) Several ways. see http://www.yoctoproject.org/docs/current/dev-manual/d