To stop further mailing, visit here or write:
ClassesUSA, 6701 Center Drive West - Suite 300, Los Angeles, CA 90045
ClassesUSA, 6701 Center Drive West - Suite 300, Los Angeles, CA 90045
Hi Simon, For Korean (ko), please use: 2010-02-03 오후 10:54, Simon Paquet 쓴 글: Simon Paquet wrote on 21. Jan 2010: TB 3.0.1 has now been released in 50 locales. All changeset submission that came after this will be incorporated into TB 3.0.2. As of now, this includes - 2010-01-10 - Submission from the Danish team - 2010-01-10 - Submission from the Italian team - 2010-01-10 - Submission from the Russian team - 2010-01-15 - Submission from the Icelandic team - 2010-01-16 - Submission from the Spanish (es-ES) team - 2010-01-16 - Submission from the Norwegian (nn-NO) team - 2010-01-17 - Submission from the Russian team - 2010-01-17 - Submission from the French team - 2010-01-21 - Submission from the Irish team If I overlooked someone or something, please don't be shy about telling me. The Thunderbird build team will start to produce TB 3.0.2 builds on Thursday late in the afternoon. So if you have any last minute updates that you want to see in TB 3.0.2, please post them here in this thread soon. The current state of things in terms of the changesets that I used is here: Cya Simon _______________________________________________ dev-l10n mailing list dev- ... @ Stefan Seyfried wrote: I had patches for waiting for the bus long time ago and can dig them out if wanted. Actually I quickly dug them out and adapted them to the current code. I arbitrarily chose to stop waiting after 5 minutes. This timeout is certainly a topic that might need to be discussed. Best regards, Stefan -- Stefan Seyfried R&D Team Mobile Devices | "Any ideas, John?" SUSE LINUX Products GmbH, Nürnberg | "Well, surrounding them's out." This footer brought to you by insane German lawmakers: SUSE Linux Products GmbH, GF: Markus Rex, HRB 16746 (AG Nürnberg) From 8b41af8ac12e2cf0824af4f65e0ef47ffac3dcb8 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried < sei ... @ > Date: Fri, 12 Jun 2009 10:22:29 +0200 Subject: [PATCH] Wait for system bus to appear If the system bus is not there when starting bluetoothd, wait up to five minutes for it to appear and retry the connection every five seconds. --- src/dbus-common.c | 21 ++++++++++++++++----- 1 files changed, 16 insertions(+), 5 deletions(-) diff --git a/src/dbus-common.c b/src/dbus-common.c index d06d8e5..dc648be 100644 --- a/src/dbus-common.c +++ b/src/dbus-common.c @@ -162,21 +162,32 @@ void hcid_dbus_exit(void) dbus_connection_unref(conn); } +#define MAX_DBUS_RETRY 60 int hcid_dbus_init(void) { DBusConnection *conn; DBusError err; + int retry = 0; - dbus_error_init(&err); + do { + dbus_error_init(&err); + conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, BLUEZ_NAME, &err); + if (conn) + break; - conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, BLUEZ_NAME, &err); - if (!conn) { if (error != NULL && dbus_error_is_set(&err)) { dbus_error_free(&err); - return -EIO; + if (retry >= MAX_DBUS_RETRY) + return -EIO; + if (!retry) + info("Can't connect to system bus, will retry " + "%i times.", MAX_DBUS_RETRY); + sleep(5); + retry++; + continue; } return -EALREADY; - } + } while (1); if (g_dbus_set_disconnect_function(conn, disconnect_callback, NULL, NULL) == FALSE) { -- 1.6.3.2 On Wed, Oct 14, 2009 at 7:00 PM, Stephen Rothwell < sf ... @ > wrote: Hi Grant, On Tue, 06 Oct 2009 22:29:57 -0600 Grant Likely < gran ... @ > wrote: Well, I've got to start somewhere... So here goes. I've begun the work to merge and clean up the OF device tree handling code and this is my first set of patches. Not fully tested yet, but I'm getting them out to the lists so that I can start responding to comments and collecting acks. This first batch isn't anything exciting, just a merge of common code This all looks OK to me. One thing: I started in this as well some time ago and in my attempt I was hoping to avoid the ARCH ifdefs in linux/of.h by creating asm/of.h and moving the differing bits in there ... Thanks Stephen. At the moment I'm purposefully experimenting with doing arch #ifdefs in the hope that it will lead to obvious places where the code can be generalized even further. I'll see how it looks before I commit down that path though. In the mean time, I've pushed out the current series with acked-bys added to my git server. I think I'm ready for things to start going into linux-next. Since this is the first time I've asked for a tree to be added to linux-next, please let me know if you see anything troublesome or problematic. Here's the tree: The following changes since commit 4bdf0bb7d64cf672199519b3d808e2a82f5b59e9: Grant Likely (1): powerpc/5200: Update defconfigs are available in the git repository at: next-devicetree Grant Likely (12): of: Rework linux/of.h and asm/prom.h include ordering of: merge phandle, ihandle and struct property of: merge struct device_node of: Move OF_IS_DYNAMIC and OF_MARK_DYNAMIC macros to of.h of: add common header for flattened device tree representation of: merge struct boot_param_header from Microblaze and PowerPC of: merge of_node_*_flag() and set_node_proc_entry() of: merge of_read_number() an of_read_ulong() of: merge of_node_get(), of_node_put() and of_find_all_nodes() of: merge of_*_flat_dt*() functions of: merge other miscellaneous prototypes of: merge of_find_all_nodes() implementations arch/microblaze/include/asm/prom.h | 135 +-------------------------------- arch/microblaze/kernel/head.S | 2 +- arch/microblaze/kernel/prom.c | 23 ------ arch/powerpc/include/asm/prom.h | 147 +----------------------------------- arch/powerpc/kernel/prom.c | 23 ------ arch/sparc/include/asm/prom.h | 55 +------------- drivers/of/base.c | 26 ++++++- include/linux/of.h | 103 +++++++++++++++++++++++++ include/linux/of_fdt.h | 86 +++++++++++++++++++++ 9 files changed, 221 insertions(+), 379 deletions(-) create mode 100644 include/linux/of_fdt.h I'll send out the two patches I did just to show what I mean (these are from before microblaze was using the OF stuff). Got them, thanks. g. -- Grant Likely , B.Sc., P.Eng. Secret Lab Technologies Ltd. -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majo ... @ More majordomo info at