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 build system?

There are another brach that this configuration work?

Thanks For all Help.



2013/2/25 Denys Dmytriyenko de...@denix.org

 On Mon, Feb 18, 2013 at 08:56:06AM -0300, Raul Rosetto Munoz wrote:
  Any suggestions?
 
  I really do not know what to do, the file /lib/udev/firmware never
 appear.

 FYI, starting with 176, udev handles loading firmware images internally,
 hence
 dropping the /lib/udev/firmware binary. But there were some bugs related to
 that functionality, which got fixed in version 178...

 http://git.kernel.org/?p=linux/hotplug/udev.git;a=blob;f=ChangeLog;hb=HEAD
 http://upstream-tracker.org/changelogs/libudev/181/changelog.html

 As I said before, if you are using Danny branch, then you should stick to
 the
 proven udev-164 that is in oe-core, unless you really want to have
 systemd, in
 which case you look into meta-openembedded...

 --
 Denys


  2013/2/14 Raul Rosetto Munoz munoz0r...@gmail.com
 
   Now Im with 173 from meta-fsl bbapend, but I tryed with many others
 from
   meta-oe and poky.
  
  
  
  
  
  
   2013/2/14 Denys Dmytriyenko de...@ti.com
  
   On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
Denys,
There are something strange,
   
First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
installed at rfs.
  
   I was talking about packages, looks like you have them already
 installed.
  
  
raul@phi04:.../tmp/deploy/images$ find
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name
 *8192*
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
   
  
 /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
   
  
 /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
   
Another problem is that /lib/udev/firmware are not installed to.
   
raul@phi04:.../tmp/deploy/images$ find
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name
 *firmware*
raul@phi04:.../tmp/deploy/images$
  
   What is your udev version?
  
  
But I can see theses files at my tmp/sysroots/beaglebone
   
raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name
   *8192*
lib/firmware/RTL8192E
lib/firmware/rtlwifi/rtl8192sefw.bin
lib/firmware/rtlwifi/rtl8192defw.bin
lib/firmware/rtlwifi/rtl8192cfw.bin
lib/firmware/rtlwifi/rtl8192cufw.bin
   
raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name
   *firmware*
lib/udev/firmware
lib/udev/rules.d/50-firmware.rules
   
I tryed copy this files for the sdcard but doesnt work.
   
Do you have any suggest?
   
Thanks for all help.
  
  
  
  
   --
   *Raul Rosetto Muñoz*
  
 
 
 
  --
  *Raul Rosetto Muñoz*

  ___
  meta-ti mailing list
  meta...@yoctoproject.org
  https://lists.yoctoproject.org/listinfo/meta-ti




-- 
*Raul Rosetto Muñoz*
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


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

2013-02-27 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de

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
profile drop-down box allows the user to select a cross development
profile for the project.

Signed-off-by: Timo Mueller timo.muel...@bmw-carit.de
---
 .../src/org/yocto/sdk/ide/YoctoProfileSetting.java | 30 --
 .../ide/preferences/YoctoSDKPreferencePage.java|  2 +-
 .../preferences/YoctoSDKProjectPropertyPage.java   |  3 +--
 3 files changed, 24 insertions(+), 11 deletions(-)

diff --git 
a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoProfileSetting.java 
b/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoProfileSetting.java
index cc3e167..0f36e99 100644
--- a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoProfileSetting.java
+++ b/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoProfileSetting.java
@@ -49,10 +49,12 @@ public class YoctoProfileSetting {
 
private YoctoProfileElement profileElement;
private PreferencePage preferencePage;
+   private final boolean editable;
 
-   public YoctoProfileSetting(YoctoProfileElement profileElement, 
PreferencePage preferencePage) {
+   public YoctoProfileSetting(YoctoProfileElement profileElement, 
PreferencePage preferencePage, final boolean editable) {
this.profileElement = profileElement;
this.preferencePage = preferencePage;
+   this.editable = editable;
}
 
public void createComposite(Composite composite) {
@@ -61,7 +63,11 @@ public class YoctoProfileSetting {
composite.setLayout(layout);
 
Group storeYoctoConfigurationsGroup = new Group (composite, 
SWT.NONE);
-   layout = new GridLayout(3, false);
+   layout = new GridLayout(1, false);
+   if (isEditable()) {
+   layout.numColumns = 3;
+   }
+
storeYoctoConfigurationsGroup.setLayout(layout);
gd = new GridData(SWT.FILL, SWT.CENTER, true, false);
gd.horizontalSpan = 2;
@@ -101,9 +107,11 @@ public class YoctoProfileSetting {
sdkConfigsCombo.addListener(SWT.Selection, selectionListener);
sdkConfigsCombo.addListener(SWT.Modify, selectionListener);
 
-   createSaveAsProfileButton(storeYoctoConfigurationsGroup);
-   createRenameButton(storeYoctoConfigurationsGroup);
-   createRemoveButton(storeYoctoConfigurationsGroup);
+   if (isEditable()) {
+   
createSaveAsProfileButton(storeYoctoConfigurationsGroup);
+   createRenameButton(storeYoctoConfigurationsGroup);
+   createRemoveButton(storeYoctoConfigurationsGroup);
+   }
}
 
private void createSaveAsProfileButton(Group 
storeYoctoConfigurationsGroup) {
@@ -225,8 +233,14 @@ public class YoctoProfileSetting {
}
 
public void setButtonsEnabledState(boolean isEnabled) {
-   btnConfigRename.setEnabled(isEnabled);
-   btnConfigRemove.setEnabled(isEnabled);
-   btnConfigSaveAs.setEnabled(isEnabled);
+   if (isEditable()) {
+   btnConfigRename.setEnabled(isEnabled);
+   btnConfigRemove.setEnabled(isEnabled);
+   btnConfigSaveAs.setEnabled(isEnabled);
+   }
+   }
+
+   private boolean isEditable() {
+   return editable;
}
 }
diff --git 
a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/preferences/YoctoSDKPreferencePage.java
 
b/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/preferences/YoctoSDKPreferencePage.java
index 4d57b45..3e0fa54 100644
--- 
a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/preferences/YoctoSDKPreferencePage.java
+++ 
b/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/preferences/YoctoSDKPreferencePage.java
@@ -64,7 +64,7 @@ public class YoctoSDKPreferencePage extends PreferencePage 
implements IWorkbench
this.yoctoUISetting = new YoctoUISetting(elem);
 
YoctoProfileElement profileElement = new 
YoctoProfileElement(profiles, selectedProfile);
-   this.yoctoProfileSetting = new 
YoctoProfileSetting(profileElement, this);
+   this.yoctoProfileSetting = new 
YoctoProfileSetting(profileElement, this, true);
}
 
/*
diff --git 
a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/preferences/YoctoSDKProjectPropertyPage.java
 
b/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/preferences/YoctoSDKProjectPropertyPage.java
index eef56c1..7f0d25e 100644
--- 
a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/preferences/YoctoSDKProjectPropertyPage.java
+++ 

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

2013-02-27 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de

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 entered a SDK toolchain directory that doesn't
exist in the global preferences a dialog will show up showing the
error and telling him how he can do IDE-wide settings. As he is
currently trying to do IDE-wide settings this advice is not really
necessary and the dialog can be really annoying.

I split up the messages into a one line error message and an
advice. This message can be shown in the page's message area instead
of opening a dialog with every configuration error. The advice can
still be used when we want to show a dialog to help the user,
e.g. when creating a new project.

On a side note I reactivated the YoctoSDKChecker class and moved all
the validation code from the utils, getting rid of some duplicated and
inconsistent code.

Best regards,
Timo

PS: This patch set is based on plugins/sdk.ide: Remove profile edit
buttons from property page

Timo Mueller (5):
  plugins/sdk.ide: Move SDK check functionality to separate class
  plugins/sdk.ide: Refactored the construction of mesages with
SDKCheckResults
  plugins/sdk.ide: Show SDK check errors in message area
  plugins/sdk.ide: Removed validation from setCurrentInput
  plugins/sdk.ide: Use standard error dialog to show SDK check errors

 .../src/org/yocto/sdk/ide/YoctoSDKChecker.java | 372 +++--
 .../org/yocto/sdk/ide/YoctoSDKMessages.properties  |  42 ++-
 .../org/yocto/sdk/ide/YoctoSDKProjectNature.java   |   9 +-
 .../src/org/yocto/sdk/ide/YoctoSDKUtils.java   | 255 --
 .../src/org/yocto/sdk/ide/YoctoUISetting.java  |  47 +--
 .../ide/preferences/YoctoSDKPreferencePage.java|  84 +++--
 .../preferences/YoctoSDKProjectPropertyPage.java   |  87 +++--
 .../sdk/ide/wizard/NewYoctoCProjectTemplate.java   |  18 +-
 8 files changed, 344 insertions(+), 570 deletions(-)

-- 
1.7.11.7

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


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

2013-02-27 Thread Timo Mueller
From: Timo Mueller timo.muel...@bmw-carit.de

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. message area on property and
preference pages). Dialogs or log messages can use the complete
message to give the user a hint on what to do in order to fix the
error.

Signed-off-by: Timo Mueller timo.muel...@bmw-carit.de
---
 .../src/org/yocto/sdk/ide/YoctoSDKChecker.java | 159 +
 .../org/yocto/sdk/ide/YoctoSDKMessages.properties  |  42 --
 2 files changed, 99 insertions(+), 102 deletions(-)

diff --git 
a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoSDKChecker.java 
b/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoSDKChecker.java
index fd50f18..9579021 100644
--- a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoSDKChecker.java
+++ b/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoSDKChecker.java
@@ -1,5 +1,7 @@
 
/***
  * Copyright (c) 2010 Intel Corporation.
+ * Copyright (c) 2013 BMW Car IT GmbH.
+ * 
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -7,6 +9,7 @@
  *
  * Contributors:
  * Intel - initial API and implementation
+ * BMW Car IT - include error and advice messages with check results
  
***/
 package org.yocto.sdk.ide;
 
@@ -17,45 +20,76 @@ import java.io.FilenameFilter;
 import java.io.IOException;
 
 public class YoctoSDKChecker {
+   private static final String[] saInvalidVer = {1.0, 0.9, 0.9+};
+   private static final String SYSROOTS_DIR = sysroots;
 
public static enum SDKCheckResults {
-   SDK_PASS,
-   POKY_DEVICE_EMPTY,
-   TOOLCHAIN_LOCATION_EMPTY,
-   TOOLCHAIN_LOCATION_NONEXIST,
-   SDK_TARGET_EMPTY,
-   QEMU_KERNEL_EMPTY,
-   SYSROOT_EMPTY,
-   QEMU_KERNEL_NONEXIST,
-   SYSROOT_NONEXIST,
-   WRONG_ADT_VERSION,
-   ENV_SETUP_SCRIPT_NONEXIST,
-   TOOLCHAIN_NO_SYSROOT,
-   TOOLCHAIN_HOST_MISMATCH
+   SDK_PASS(, false),
+   TOOLCHAIN_LOCATION_EMPTY(
+   Poky.SDK.Location.Empty, true),
+   TOOLCHAIN_LOCATION_NONEXIST(
+   Poky.SDK.Location.Nonexist, true),
+   SDK_TARGET_EMPTY(
+   Poky.SDK.Target.Empty, true),
+   SYSROOT_EMPTY(
+   Poky.Sysroot.Empty, true),
+   SYSROOT_NONEXIST(
+   Poky.Sysroot.Nonexist, true),
+   QEMU_KERNEL_EMPTY(
+   Poky.Qemu.Kernel.Empty, true),
+   QEMU_KERNEL_NONEXIST(
+   Poky.Qemu.Kernel.Nonexist, true),
+   WRONG_ADT_VERSION(
+   Poky.ADT.Sysroot.Wrongversion, false),
+   ENV_SETUP_SCRIPT_NONEXIST(
+   Poky.Env.Script.Nonexist, false),
+   TOOLCHAIN_NO_SYSROOT(
+   Poky.Toolchain.No.Sysroot, false),
+   TOOLCHAIN_HOST_MISMATCH(
+   Poky.Toolchain.Host.Mismatch, false);
+
+   private static final String DEFAULT_ADVICE = Default.Advice;
+   private static final String ADVICE_SUFFIX = .Advice;
+
+   private final String messageID;
+   private final boolean addDefaultAdvice;
+
+   private SDKCheckResults(final String messageID, final boolean 
addDefaultAdvice) {
+   this.messageID = messageID;
+   this.addDefaultAdvice = addDefaultAdvice;
+   }
+
+   public String getMessage() {
+   return YoctoSDKMessages.getString(messageID);
+   }
+
+   public String getAdvice() {
+   String advice = YoctoSDKMessages.getString(messageID + 
ADVICE_SUFFIX);
+
+   if (addDefaultAdvice) {
+   advice += 
YoctoSDKMessages.getString(DEFAULT_ADVICE);
+   }
+
+   return advice;
+   }
};
 
public static enum SDKCheckRequestFrom {
-   Wizard,
-   Menu,
-   Preferences,
-   Other
-   };
+   Wizard(Poky.SDK.Error.Origin.Wizard),
+   Menu(Poky.SDK.Error.Origin.Menu),
+   Preferences(Poky.SDK.Error.Origin.Preferences),

[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 timo.muel...@bmw-carit.de


Signed-off-by: Timo Mueller timo.muel...@bmw-carit.de
---
 .../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/org/yocto/sdk/ide/YoctoUISetting.java
index ba80cb1..f27019d 100644
--- a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoUISetting.java
+++ b/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/YoctoUISetting.java
@@ -14,6 +14,8 @@ import java.io.File;
 import java.util.ArrayList;
 
 import org.eclipse.cdt.ui.templateengine.uitree.InputUIElement;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.jface.dialogs.ErrorDialog;
 import org.eclipse.jface.preference.IPreferenceStore;
 import org.eclipse.swt.SWT;
 import org.eclipse.swt.events.ModifyEvent;
@@ -32,8 +34,6 @@ import org.eclipse.swt.widgets.Display;
 import org.eclipse.swt.widgets.FileDialog;
 import org.eclipse.swt.widgets.Group;
 import org.eclipse.swt.widgets.Label;
-import org.eclipse.swt.widgets.MessageBox;
-import org.eclipse.swt.widgets.Shell;
 import org.eclipse.swt.widgets.Text;
 import org.eclipse.swt.widgets.Widget;
 import org.yocto.sdk.ide.YoctoSDKChecker.SDKCheckRequestFrom;
@@ -343,13 +343,11 @@ public class YoctoUISetting {
//Show Error Message on the Label to help users.
if ((result != SDKCheckResults.SDK_PASS)  showErrorDialog) {
Display display = Display.getCurrent();
-   Shell shell = new Shell(display);
-   MessageBox msgBox = new MessageBox(shell, 
SWT.ICON_ERROR | SWT.OK);
-   msgBox.setText(Yocto Project Configuration Error);
-   
msgBox.setMessage(YoctoSDKChecker.getErrorMessage(result, from));
-   msgBox.open();
-   if (shell != null)
-   shell.dispose();
+   ErrorDialog.openError(display.getActiveShell(),
+   Yocto 
Project Configuration Error,
+   
YoctoSDKChecker.getErrorMessage(result, from),
+   new 
Status(Status.ERROR, YoctoSDKPlugin.PLUGIN_ID, result.getMessage()));
+
}
 
return result;
-- 
1.7.11.7

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


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
swaroop.dama...@gmail.com 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 Here
 is the only error message I see about linux kernel

 WARNING: linux-dummy: No generic license file exists for: GPL in any
 provider


well it seems you are missing a whole BSP for this board. So I would suggest
to go through the BSP guide and setup one for your board

 my board is Avionic Tamonten Carrier, based on NVIDIA harmony board.
 Suggestions are very much appreciated but I am also currently trying to
 solve it.. I just downloaded a git kernel from the avionic site and can you
 please tell me how to configure it to so that the build system takes this as
 kernel and build it

 Greets,
 Satya


 On Tue, Feb 26, 2013 at 6:21 PM, Rudolf Streif rstr...@linuxfoundation.org
 wrote:

 Satya,

 So what exactly do you get when building the kernel? No image at all in
 tmp/deploy/images? What do the logs for the kernel recipes say?

 Rudi


 On Mon, Feb 25, 2013 at 11:36 PM, Satya Swaroop Damarla
 swaroop.dama...@gmail.com wrote:

 hey hans,

 I think you are right about the kernel device tree.. I think it should
 come with the kernel but I have no idea why it works.. Only an expert should
 say why it works.. I think my work is not complete. I can generate the
 rootfs and the uboot.bin file but not the uImage... I have no idea... Diid
 you complete generating the image for the board?

 Greets,
 Satya


 On Mon, Feb 25, 2013 at 5:05 PM, Hans Beckérus hans.becke...@gmail.com
 wrote:



 25 feb 2013 kl. 15:58 skrev Satya Swaroop DAMARLA swar...@weisser.at:

 Guys. I found the solution to this problem

 I think if you already install uboot-tools or uboot-mkimage packes from
 Ubuntu repository then it is used instead of the one that is downloaded and
 we should uninstall the packages and then rerun the build,,... Then IT
 WORKS... So, thank you for the time and enegry... I assume this thread is
 closed and this is the solution and if this doesnot work for some then
 please post it and we may discuss the situation depending on the problem,

 Greetings  Regards,
 Satya

 Same comment here as for the device tree compiler. You should use the
 uboot tools/version as they come with the package. Not the one used by the
 host distro. To me this is not a proper solution.



 On Thu, Feb 21, 2013 at 5:28 PM, Rudolf Streif
 rstr...@linuxfoundation.org wrote:

 Satya,

 I will look into it later today. I am currently at the Linux
 Foundation's Embedded Linux Conference.

 Rudi


 On Thu, Feb 21, 2013 at 2:10 AM, Satya Swaroop DAMARLA
 swar...@weisser.at wrote:

 Hello Guys,

 I have not received any reply from you. If you can help me to figure
 out what the errors mean when adding a new .bb or recipe file then I can
 learn the mistake and take care in the new recipes I request your 
 time


 On Wed, Feb 20, 2013 at 7:19 PM, Satya Swaroop Damarla
 swaroop.dama...@gmail.com wrote:

 hey Guys... I get the following error... which I attached.. Its
 completely greek and latin to me.. Can you please help me..


 On Wed, Feb 20, 2013 at 7:19 PM, Satya Swaroop DAMARLA
 swar...@weisser.at wrote:

 hey Guys... I get the following error... which I attached.. Its
 completely greek and latin to me.. Can you please help me..


 On Wed, Feb 20, 2013 at 6:46 PM, Hans Beckérus
 hans.becke...@gmail.com wrote:

 On Wed, Feb 20, 2013 at 6:12 PM, Satya Swaroop Damarla
 swaroop.dama...@gmail.com wrote:
  Hey hans, this is what he meant,
 
  In the machine config file add the following
 
  PREFERRED_VERSION_u-boot ?= v2013.01%  or
  PREFERRED_VERSION_u-boot ?=
  v2013.01.01%
 
  By the way did you already complete the first part... There is
  also other
  file called u-boot-fw-utils_2012.04.01.bb ... I think we should
  do the
  same...
 
  Hans bytheway,  are you also working on the same board or
  diffferent board
  with same problem?
 

 Different board, same core, similar problem ;)
 Now I get it. Thanks. But still question remains how in earth I
 managed to build the kernel if not also having copied/renamed the
 mkimage .bb?
 Is the PREFERRED_VERSION_u-boot used to determine what mkimage and
 fw
 utils it picks up?
 Then it might be that since I/we build u-boot as a separate
 package,
 but kernel lifts in the mkimage stuff, it works but the wrong
 package
 was used.
 In my case obviously compatible, but not recommended I guess. Also,
 I
 agree that the fw utils should probably be in sync similar to
 mkimage.

 Hans

 
 
 
 
 
  On Wed, Feb 20, 2013 at 6:01 PM, Hans Beckérus
  hans.becke...@gmail.com
  wrote:
 
  On Wed, Feb 20, 2013 at 5:16 PM, Rudolf Streif
  rstr...@linuxfoundation.org wrote:
   Satya,
  
   Simply look at the u-boot recipes in meta/recipes-bsp/u-boot
   such as
   u-boot_2012.04.01.bb. You can 

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 aid...@gmail.com 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/Makefile
 DIST_SUBDIRS = src test
 SUBDIRS = src test
 #SUBDIRS = src
 #SUBDIRS = src
 #SUBDIRS = src

 +
 egrep SUBDIRS = ./mono-2.10.2/build/eglib/Makefile
 DIST_SUBDIRS = src
 SUBDIRS = src
 #SUBDIRS = src
 #SUBDIRS = src
 #SUBDIRS = src

 build is my own directory where I'm compiling mono.



Just FYI - meta-mono is available as a layer that can build mono on a
build machine (cross compilation) instead of natively compiling mono
in target device.

http://git.yoctoproject.org/cgit/cgit.cgi/meta-mono/
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


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 repository at:
git://git.yoctoproject.org/poky-contrib paule/webmin-update
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=paule/webmin-up
date 
  Kevin Strasser (1):
webmin: correct net-lib.pl patch
  
  Paul Eggleton (3):
webmin: update to 1.620
webmin: tidy up recipe
webmin: fix for changes in OE-Core master
   
 
 This looks great, but I noticed that the nfs-utils recipe in oe-core has
 been updated and is causing our bbappend to break. I went ahead and made
 the update and applied a commit on top of these changes. That addition is
 available in a branch at:
 
git://git.yoctoproject.org/poky-contrib
 strassek/webmin-update_and_nfs-utils

Thanks Kevin, I've now pushed all of these changes to master (with a slight 
tweak to the nfs-utils commit message 1.7.7 - 1.2.7).

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


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 raj.k...@gmail.com wrote:
 bitbake/master does not like it anymore

 Signed-off-by: Khem Raj raj.k...@gmail.com
 ---
  .../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 
 b/recipes-mono/monotools-server/monotools-server_2.0.bb
 index 551c586..ef738da 100644
 --- a/recipes-mono/monotools-server/monotools-server_2.0.bb
 +++ b/recipes-mono/monotools-server/monotools-server_2.0.bb
 @@ -22,8 +22,6 @@ SRC_URI +=  \
 file://fix-pkglib_SCRIPTS.patch \
 

 -#  file://Makefile-pkglib.patch \
 -
  DEPENDS = mono-xsp gtk-sharp

  S = ${WORKDIR}/${PN}
 --
 1.7.9.5


Merged into master

Apologies for late merge - somehow this got lost because of bad email
filtering on my part.
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto