Send commitlog mailing list submissions to
commitlog@lists.openmoko.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.openmoko.org/mailman/listinfo/commitlog
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 commitlog digest..."
Today's Topics:
1. r4637 - developers/werner/dbgrst ([EMAIL PROTECTED])
2. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
([EMAIL PROTECTED])
3. Locations: Changes to 'master' ([EMAIL PROTECTED])
4. Holger's qtopia repo: Changes to 'master' ([EMAIL PROTECTED])
5. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
([EMAIL PROTECTED])
6. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
([EMAIL PROTECTED])
--- Begin Message ---
Author: werner
Date: 2008-09-09 00:40:16 +0200 (Tue, 09 Sep 2008)
New Revision: 4637
Modified:
developers/werner/dbgrst/Makefile
developers/werner/dbgrst/dbgrst.c
Log:
- dbgrst.c (set_high): repeat the command several times since it sometimes gets
lost
- Makefile: make "install" depend on "dbgrst"
Modified: developers/werner/dbgrst/Makefile
===================================================================
--- developers/werner/dbgrst/Makefile 2008-09-08 11:18:24 UTC (rev 4636)
+++ developers/werner/dbgrst/Makefile 2008-09-08 22:40:16 UTC (rev 4637)
@@ -7,7 +7,7 @@
all: dbgrst
-install:
+install: dbgrst
install -D dbgrst $(PREFIX)/bin/dbgrst
uninstall:
Modified: developers/werner/dbgrst/dbgrst.c
===================================================================
--- developers/werner/dbgrst/dbgrst.c 2008-09-08 11:18:24 UTC (rev 4636)
+++ developers/werner/dbgrst/dbgrst.c 2008-09-08 22:40:16 UTC (rev 4637)
@@ -79,12 +79,19 @@
data,
direction,
};
+ int i;
- if (ftdi_write_data(&ftdi, buf, 3) < 0) {
- fprintf(stderr, "ftdi_write_data: %s\n",
- ftdi_get_error_string(&ftdi));
- exit(1);
- }
+ /*
+ * For some reason, the FTDI sometimes doesn't accept the setting.
+ * So we repeat a number of times to make it clear that compliance
+ * is not optional.
+ */
+ for (i = 0; i != 10; i++)
+ if (ftdi_write_data(&ftdi, buf, 3) < 0) {
+ fprintf(stderr, "ftdi_write_data: %s\n",
+ ftdi_get_error_string(&ftdi));
+ exit(1);
+ }
}
--- End Message ---
--- Begin Message ---
conf/distro/include/sane-srcrevs.inc | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
New commits:
commit a18e47b19b19e7f9d447841b07595d73392e0c6a
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Tue Sep 9 07:54:08 2008 +0800
[python-etk] Bump up the revision of python-etk to
8d36de2726003ad0356056fcf3ede5f2d3f4fca7
and remove duplicated entry of python-etk in sane-srcrevs.inc
It should fix #1908
--- End Message ---
--- Begin Message ---
TODO | 1 -
data/themes/Makefile.am | 1 -
data/themes/default.edc | 3 -
data/themes/default_nav_alert.edc | 69 +++++-
data/themes/default_nav_button.edc | 277 -------------------
data/themes/default_nav_dialog.edc | 46 +++-
po/ChangeLog | 4 +
po/POTFILES.in | 2 +-
po/zh_TW.po | 217 +++++++++-------
src/e_mod_nav.c | 70 +++---
src/e_nav_item_location.c | 68 +++---
src/widgets/Makefile.am | 2 -
src/widgets/e_nav_alert.c | 519 ------------------------------------
src/widgets/e_nav_alert.h | 36 ---
src/widgets/e_nav_dialog.c | 283 ++++++++++++++------
src/widgets/e_nav_dialog.h | 30 ++-
16 files changed, 539 insertions(+), 1089 deletions(-)
New commits:
commit 4e4686aa3d823fc6a560c84cb3a9841dd9e76f32
Author: Chia-I Wu <[EMAIL PROTECTED]>
Date: Tue Sep 9 11:42:37 2008 +0800
Updated Traditional Chinese translation.
commit 9bc4d7825c730da3d03ee662e096d9110422f6c9
Author: Chia-I Wu <[EMAIL PROTECTED]>
Date: Tue Sep 9 11:38:54 2008 +0800
Added msgboard.c to POTFILES.in.
commit a8e6bef99ef6056fe18f467d81dcb14dfcb12cd3
Author: Chia-I Wu <[EMAIL PROTECTED]>
Date: Tue Sep 9 11:45:29 2008 +0800
s/e_dialog/e_nav_dialog/
commit 2eeba07f0412c1ae47e853fb811fb16cab6666d2
Author: Chia-I Wu <[EMAIL PROTECTED]>
Date: Tue Sep 9 11:44:58 2008 +0800
Merge e_nav_alert back into e_nav_dialog.
This merge is very naive. It simply moves new code in e_nav_alert back
into e_nav_dialog.
commit 2f3edc78bb33edd0ff09379378e38ed789b6536e
Author: Chia-I Wu <[EMAIL PROTECTED]>
Date: Tue Sep 9 11:44:25 2008 +0800
Fixed segfault on daemon dead and exit is clicked.
--- End Message ---
--- Begin Message ---
src/libraries/qtopiaphonemodem/qmodemsmsreader.cpp | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
New commits:
commit ebacb0cd8525c51ab985d34ac356eb1a358c17ce
Author: erin <[EMAIL PROTECTED]>
Date: Tue Sep 9 14:56:00 2008 +0800
add checking total used SMS number
--- End Message ---
--- Begin Message ---
packages/efl1/edje_svn.bb | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
New commits:
commit 0e2af651570e12cec8995c5774049a0e761ff9ed
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Tue Sep 9 15:33:27 2008 +0800
[edje-utils] (#1716) Add RDEPENDS to edje-utils
When execute edje_cc, it needs cpp and embryo_cc.
--- End Message ---
--- Begin Message ---
classes/binconfig.bbclass | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
New commits:
commit 791a77c4b9ac22b4a9d0048eda0de0a6c0f9c6a0
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Wed Jun 25 16:52:13 2008 +0800
[binconfig] Fix a small defect of binconfig.bbclass
An expression of _find_ command cannot expand _*.la_ correctly.
Adding double quotes to help it.
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog