Hi all
Ca any one tell me what does this error means and how to takle with it? I-m 
trying to build openembedded for shr by following instructions from 
http://shr-project.org/trac/wiki/Building%20SHR.
 this is the error message:
Build Configuration:
BB_VERSION        = "1.10.2"
METADATA_BRANCH   = "shr/testing2011.1"
METADATA_REVISION = "3fa18d4"
TARGET_ARCH       = "arm"
TARGET_OS         = "linux-gnueabi"
MACHINE           = "om-gta02"
DISTRO            = "shr"
DISTRO_VERSION    = "-rc1-20110105"
TARGET_FPU        = "soft"

ERROR: Nothing PROVIDES 'shr-dialer'
Unknown Event: <bb.event.NoProvider instance at 0x11d7852c>
ERROR: Nothing PROVIDES 'shr-dialer'
Command execution failed: Traceback (most recent call last):
  File "/home/pascal/shr-testing/bitbake/lib/bb/command.py", line 88, in 
runAsyncCommand
    commandmethod(self.cmds_async, self, options)
  File "/home/pascal/shr-testing/bitbake/lib/bb/command.py", line 174, in 
buildTargets
    command.cooker.buildTargets(pkgs_to_build, task)
  File "/home/pascal/shr-testing/bitbake/lib/bb/cooker.py", line 782, in 
buildTargets
    taskdata.add_provider(localdata, self.status, k)
  File "/home/pascal/shr-testing/bitbake/lib/bb/taskdata.py", line 354, in 
add_provider
    self.add_provider_internal(cfgData, dataCache, item)
  File "/home/pascal/shr-testing/bitbake/lib/bb/taskdata.py", line 383, in 
add_provider_internal
    raise bb.providers.NoProvider(item)
NoProvider: shr-dialer


Any help would be appreciated
Cheers




________________________________
De : "[email protected]" 
<[email protected]>
À : [email protected]
Envoyé le : Mar 4 janvier 2011, 3h 00min 02s
Objet : Shr-devel Digest, Vol 22, Issue 3

Send Shr-devel mailing list submissions to
    [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
    http://lists.shr-project.org/mailman/listinfo/shr-devel
or, via email, send a message with subject or body 'help' to
    [email protected]

You can reach the person managing the list at
    [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Shr-devel digest..."


Today's Topics:

   1. [PATCH] Fix code to compile against new vala version
      (Pau Espin Pedrol)


----------------------------------------------------------------------

Message: 1
Date: Mon,  3 Jan 2011 17:17:07 +0100
From: Pau Espin Pedrol <[email protected]>
Subject: [Shr-Devel] [PATCH] Fix code to compile against new vala
    version
To: [email protected]
Message-ID: <[email protected]>

---
src/wifi.vala |   10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/wifi.vala b/src/wifi.vala
index 5460bb1..9995f16 100644
--- a/src/wifi.vala
+++ b/src/wifi.vala
@@ -25,11 +25,11 @@ namespace iliwi {
     public signal void status_change();
     public signal void network_list_change();
    
-    unowned Thread thread;
+    unowned Thread<void*> thread;
    
     public Wifi() {
       try {
-        thread = Thread.create(WifiThread.run_thread, true);
+        thread = Thread.create<void*>(WifiThread.run_thread, true);
       } catch(Error e) {
         critical("Couldn't start wifi-thread!");
       }
@@ -270,7 +270,7 @@ namespace iliwi {
       }
     }
     public static void connect_to_network(Network network) {
-      disconnect();
+      disconnectt();
       wifi.set_new_status("connecting..");
       connect_network = network;
       network.set_new_status(NetworkStatus.CONNECTING);
@@ -317,7 +317,7 @@ namespace iliwi {
       }
       status = NetworkStatus.CONNECT;
     }
-    private static void disconnect() {
+    private static void disconnectt() {
       status = NetworkStatus.UNCONNECTED;
       try {
         Process.spawn_sync(null, 
{Environment.find_program_in_path("killall"),"wpa_supplicant"}, null, 
GLib.SpawnFlags.STDERR_TO_DEV_NULL, null);
@@ -372,7 +372,7 @@ namespace iliwi {
       networks = new HashMap<string,Network>(str_hash,str_equal);
       visible_networks = new ArrayList<Network>();
       status = NetworkStatus.UNCONNECTED;
-      disconnect();
+      disconnectt();
       load_preferred_networks();
       scan();
     }
-- 
1.7.3.4



------------------------------

_______________________________________________
Shr-devel mailing list
[email protected]
http://lists.shr-project.org/mailman/listinfo/shr-devel


End of Shr-devel Digest, Vol 22, Issue 3
****************************************



      
_______________________________________________
Shr-devel mailing list
[email protected]
http://lists.shr-project.org/mailman/listinfo/shr-devel

Reply via email to