[yocto] Yocto Project 1.4 M4 release readiness discussion

2013-02-27 Thread Liu, Song
BEGIN:VCALENDAR METHOD:REQUEST PRODID:Microsoft Exchange Server 2010 VERSION:2.0 BEGIN:VTIMEZONE TZID:Pacific Standard Time BEGIN:STANDARD DTSTART:16010101T02 TZOFFSETFROM:-0700 TZOFFSETTO:-0800 RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11 END:STANDARD BEGIN:DAYLIGHT DTSTART:16010101T02000

Re: [yocto] [PATCH 0/5][eclipse-poky] Refactor handling of SDK check errors

2013-02-27 Thread Zhang, Jessica
Hi Timo, Thanks for initiating the cleanup in this area that I agree definitely need some work. There're couple issues I'm seeing with your patch set that probably need some refinements: 1. After seeing the error message, if I go into the field correct the error, I have to explicit click on "

Re: [yocto] [PATCH] plugins/sdk.ide: Remove profile edit buttons from property page

2013-02-27 Thread Zhang, Jessica
Merged to eclipse-poky master. Thanks, Jessica -Original Message- From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On Behalf Of Timo Mueller Sent: Wednesday, February 27, 2013 6:33 AM To: yocto@yoctoproject.org Cc: Timo Mueller Subject: [yocto] [PATCH] plugins

Re: [yocto] [meta-mono][PATCH 2/2] monotools-server: Remove multiline comment

2013-02-27 Thread Khem Raj
On Wed, Feb 27, 2013 at 9:05 AM, Autif Khan wrote: > On Mon, Jan 21, 2013 at 6:17 PM, Khem Raj wrote: >> bitbake/master does not like it anymore >> >> Signed-off-by: Khem Raj >> --- >> .../monotools-server/monotools-server_2.0.bb |2 -- >> 1 file changed, 2 deletions(-) >> >> diff --g

[yocto] Full Pass Test Report for Yocto 1.4 M4 RC1 201302202 Build

2013-02-27 Thread Stoicescu, CorneliuX
Hello, Here is the static page that contains the test report for the 1.4 M4 RC1 build: https://wiki.yoctoproject.org/wiki/Full_Pass_Test_Report_for_Yocto_1.4_M4_RC1_201302202_Build Note: more performance information added. Please check put the Performance section in the Detailed Report section.

Re: [yocto] [meta-mono][PATCH 2/2] monotools-server: Remove multiline comment

2013-02-27 Thread Autif Khan
On Mon, Jan 21, 2013 at 6:17 PM, Khem Raj wrote: > bitbake/master does not like it anymore > > Signed-off-by: Khem Raj > --- > .../monotools-server/monotools-server_2.0.bb |2 -- > 1 file changed, 2 deletions(-) > > diff --git a/recipes-mono/monotools-server/monotools-server_2.0.bb >

Re: [yocto] [meta-mono][PATCH 1/2] layer.conf: Use .= for adding to BBPATH and += to BBFILES

2013-02-27 Thread Autif Khan
On Mon, Jan 21, 2013 at 6:17 PM, Khem Raj wrote: > Fixes parsing errors which is appearing after this commit to > meta-openembedded > > http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f > > This triggers > exception NameError: name 'base_contains' is not defined > w

Re: [yocto] [meta-baryon][PATCH 0/4] Webmin updates/fixes

2013-02-27 Thread Paul Eggleton
On Tuesday 26 February 2013 11:56:49 kevin.stras...@linux.intel.com wrote: > > The following changes since commit > > > > 6c7948d9ca339caa6647b7e3f20ab82508f0793a: > > schroedinger: specify the version of MPL in use (2013-01-03 13:46:02 > > > > -0800) > > > > are available in the git repositor

Re: [yocto] Trying to compile mono on target for machine crownbay

2013-02-27 Thread Autif Khan
On Wed, Feb 20, 2013 at 11:30 AM, Evgheni Antropov wrote: > In my case I have resolved it in another way: > > correct in Makefile for "eglib" folder SUBDIRS variables and excluded "test" > from them values: > > - > egrep "SUBDIRS =" ./mono-2.10.2/build/eglib

Re: [yocto] Updating uboot to v2013.01

2013-02-27 Thread Khem Raj
On Tue, Feb 26, 2013 at 11:44 PM, Satya Swaroop Damarla wrote: > Hey Rudy, > > I think, it doesnot automatically take a kernel but we have to choose the > kernel and I chose it v3.2 but seems it doesnot support my board and so I > should take a kernel from the original and configure it to my need.

[yocto] [PATCH 5/5] plugins/sdk.ide: Use standard error dialog to show SDK check errors

2013-02-27 Thread Timo Mueller
From: Timo Mueller Signed-off-by: Timo Mueller --- .../src/org/yocto/sdk/ide/YoctoUISetting.java| 16 +++- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoUISetting.java b/plugins/org.yocto.sdk.ide/src

[yocto] [PATCH 3/5] plugins/sdk.ide: Show SDK check errors in message area

2013-02-27 Thread Timo Mueller
From: Timo Mueller If settings made by the user do not pass the SDK check the error message was not shown in eclipse but was printed to system out which was never visible by the user. The error is now shown in the message area of the property or preference page if the check fails. Signed-off-by

[yocto] [PATCH 4/5] plugins/sdk.ide: Removed validation from setCurrentInput

2013-02-27 Thread Timo Mueller
From: Timo Mueller The result of the validation did not affect the behaviour of the method. Also an error is not reported back to the caller or the user. Validation of the setting should be handled before setting the input or on save. Signed-off-by: Timo Mueller --- plugins/org.yocto.sdk.ide/s

[yocto] [PATCH 2/5] plugins/sdk.ide: Refactored the construction of mesages with SDKCheckResults

2013-02-27 Thread Timo Mueller
From: Timo Mueller The message keys are now stored with the enum values simplifying the construction of error messages. Error messages have also been split up into a one line error message and an advice. The one line error message can for example be used in UI Parts with limited space (e.g. mess

[yocto] [PATCH 1/5] plugins/sdk.ide: Move SDK check functionality to separate class

2013-02-27 Thread Timo Mueller
From: Timo Mueller The class YoctoSDKChecker provided some unused code for checking a Yocto SDK configuration. Checking of the SDK was done in YoctoSDKUtils. An enum for results was provided in both classes (under the same name) but contained different possible values. To avoid confusion, reduce

[yocto] [PATCH 0/5][eclipse-poky] Refactor handling of SDK check errors

2013-02-27 Thread Timo Mueller
From: Timo Mueller Hi, I tried to display the messages resulting from validating the YoctoUISettings in the message area of the properties/preference pages instead of showing a dialog. This led to some refactoring of the validation functionality and also the messages. If for example the user en

[yocto] [PATCH] plugins/sdk.ide: Remove profile edit buttons from property page

2013-02-27 Thread Timo Mueller
From: Timo Mueller The project property page for yocto project settings contains the same edit buttons as the preference page. As editing profiles is not allowed in the property page these buttons have been permanently disabled. This removes them completely from the property page. The remaining

Re: [yocto] [meta-ti] Wifi Module + udev configs

2013-02-27 Thread Raul Rosetto Munoz
Denys, Thanks for all Reply, I understand that if I use udev at version 178 or more, I probable will get a udev with solved firmware problems, however if I use this udev version I will need to use a systemd packages. Is possible you give some intructions how to put systemd and udev 178+ at my bui