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. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
2. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.asu.dev'
([EMAIL PROTECTED])
3. r4550 - in developers/zecke: . uinput-sender
([EMAIL PROTECTED])
4. development kernel tree: Changes to 'stable'
([EMAIL PROTECTED])
5. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
6. development kernel tree: Changes to 'debug' ([EMAIL PROTECTED])
7. r4551 - trunk/feeds/community-repository ([EMAIL PROTECTED])
--- Begin Message ---
drivers/i2c/chips/pcf50633.c | 45 ++++++++++++++++++++---------------------
include/linux/pcf50633.h | 6 -----
2 files changed, 22 insertions(+), 29 deletions(-)
New commits:
commit a4418b5648fb65e152ed6a4328bbfc3f5e448b27
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 20:24:51 2008 +0100
fix-pcf50633-only-do-platform-callback-once-per-event.patch
Reported-by: Holger Freyther <[EMAIL PROTECTED]>
We harmlessly repeated PMU platform callbacks about charging state twice.
Clean it up and leave it to pcf50633_charge_enable() to report once.
Also tidies the sequencing so we set current limit before we enable
charger now.
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit 2b645fcbe6e92fc50ded5939ed40352b1bf420de
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 20:24:06 2008 +0100
fix-pcf50633-remove-charger-curlim-and-enable-apis-from-export.patch
Setting the current limit directly and enabling the charger
isn't anyone's business except pcf50633 driver itself, so these
two functions should not be exported and become static.
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
--- End Message ---
--- Begin Message ---
conf/distro/include/sane-srcrevs.inc | 1 +
packages/openmoko-tools/app-restarter_svn.bb | 17 +++++++++++++++++
.../qtopia-phone-x11/om-gta01/Xsession.d/89qtopia | 13 ++++++++++++-
.../qtopia-phone-x11/om-gta02/Xsession.d/89qtopia | 13 ++++++++++++-
packages/qtopia-phone/qtopia-phone-x11_git.bb | 4 ++--
5 files changed, 44 insertions(+), 4 deletions(-)
New commits:
commit 5c6805dc3235ce0493ed4e92d460dae0fbcb6f94
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:14:15 2008 +0200
[qtopia] Use the app-restarter in case the Qtopia process exits
This was tested with killall -9 qpe and the X window comes up
and Qtopia can be relaunched. The app-restarter serves two
purposes. On the one hand you know that qpe has crashed and that
calling will not be possible and on the other you can restart
it.
commit 0978ec0598a3da2729f8cae74d051cddc353f7b6
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Tue Jul 22 21:55:19 2008 +0200
[app-restarter] Add the little helper utility to the OpenEmbedded/Openmoko
metadata
--- End Message ---
--- Begin Message ---
Author: zecke
Date: 2008-07-22 23:11:02 +0200 (Tue, 22 Jul 2008)
New Revision: 4550
Added:
developers/zecke/uinput-sender/
developers/zecke/uinput-sender/uinput-sender.c
Log:
[uinput-sender] Not yet working uinput test app to send pcf50633 to test kdrive
bugs...
Added: developers/zecke/uinput-sender/uinput-sender.c
===================================================================
--- developers/zecke/uinput-sender/uinput-sender.c
(rev 0)
+++ developers/zecke/uinput-sender/uinput-sender.c 2008-07-22 21:11:02 UTC
(rev 4550)
@@ -0,0 +1,89 @@
+/*
+ * GPLv2 or later
+ *
+ * (C) 2008 Openmoko Inc.
+ *
+ * simple utility to send the pcf50633 keyboard events using uinput
+ */
+#include <linux/input.h>
+#include <linux/uinput.h>
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <string.h>
+#include <stdlib.h>
+#include <stdio.h>
+
+static int key(const char* keyname)
+{
+ if (strcasecmp(keyname, "power2") == 0)
+ return KEY_POWER2;
+ else if (strcasecmp(keyname, "battery") == 0)
+ return KEY_BATTERY;
+ else if (strcasecmp(keyname, "power") == 0)
+ return KEY_POWER;
+ else if (strcasecmp(keyname, "a") == 0)
+ return KEY_A;
+
+ return -1;
+}
+
+static int value(const char* type)
+{
+ if (strcasecmp(type, "up") == 0 || strcasecmp(type, "release") == 0)
+ return 0;
+ else if (strcasecmp(type, "down") == 0 || strcasecmp(type, "press") == 0)
+ return 1;
+
+ return atoi(type);
+}
+
+int main(int argc, char** argv)
+{
+ int fd;
+ struct input_event event;
+
+ /* input checking */
+ if (argc < 3) {
+ fprintf(stderr, "%s (power2|power|battery) (1|0|release|press)\n",
argv[0]);
+ exit(-1);
+ }
+
+ /* prepare params */
+ int keycode = key(argv[1]);
+ int press = value(argv[2]);
+
+ if (keycode < 0) {
+ fprintf(stderr, "Illegal keycode, try power2|power|battery\n");
+ exit(-1);
+ }
+
+ if (press != 0 && press != 1) {
+ fprintf(stderr, "Illgeal press...Come on that is not hard
0|1|press|release\n");
+ exit(-1);
+ }
+
+ /* now this can actually fail depending on permissions */
+ fd = open("/dev/input/uinput", O_WRONLY);
+ if (fd < 0) {
+ perror("uinput open:");
+ exit(-1);
+ }
+
+ if (ioctl(fd, UI_SET_EVBIT, EV_KEY) != 0) {
+ perror("ev_key set bit");
+ exit(-1);
+ }
+
+ if (ioctl(fd, UI_SET_EVBIT, EV_PWR) != 0) {
+ perror("ev_pwr set bit");
+ exit(-1);
+ }
+
+
+ event.type = EV_KEY;
+ event.code = keycode;
+ event.value= press;
+ write(fd, &event, sizeof(event));
+}
Property changes on: developers/zecke/uinput-sender/uinput-sender.c
___________________________________________________________________
Name: svn:eol-style
+ native
--- End Message ---
--- Begin Message ---
drivers/i2c/chips/pcf50633.c | 45 ++++++++++++++++++++---------------------
include/linux/pcf50633.h | 6 -----
2 files changed, 22 insertions(+), 29 deletions(-)
New commits:
commit be0f111b3d1570dec174ff301d08bad995ccf1e6
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:15 2008 +0100
fix-pcf50633-only-do-platform-callback-once-per-event.patch
Reported-by: Holger Freyther <[EMAIL PROTECTED]>
We harmlessly repeated PMU platform callbacks about charging state twice.
Clean it up and leave it to pcf50633_charge_enable() to report once.
Also tidies the sequencing so we set current limit before we enable
charger now.
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit 3574745cad910ce45db692baadf1fe233bc383b5
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:04 2008 +0100
fix-pcf50633-remove-charger-curlim-and-enable-apis-from-export.patch
Setting the current limit directly and enabling the charger
isn't anyone's business except pcf50633 driver itself, so these
two functions should not be exported and become static.
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
--- End Message ---
--- Begin Message ---
Rebased ref, commits from common ancestor:
commit e338df351bdfc1b42de85dfd681f963cf25f01ce
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:57 2008 +0100
fix-reote-install-for-ext3-only-sd.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit e583b9fae39ef5713302dd351dd9b9981ad867c3
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:56 2008 +0100
defconfig-nuke-cruft.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit b86336d6b52813ebdfe257f429a164fa17bcafbd
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:56 2008 +0100
defconfig-kill-hxd8.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit 5747e4b6ef7a3f8f219119ded3141e02060d3a28
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:56 2008 +0100
fix-touchscreen-driver-gta01-missing-includes.patch
Add missing initialization for the touchscreen driver for the
gta01 platform.
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit c96e11f65b9969a908a8442fd1abcada7423ed80
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:56 2008 +0100
test-touchscreen-median.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit 201716976c326202382a8b764c321a98c7a4288d
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:55 2008 +0100
config-touchscreen-filters.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit be0f111b3d1570dec174ff301d08bad995ccf1e6
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:15 2008 +0100
fix-pcf50633-only-do-platform-callback-once-per-event.patch
Reported-by: Holger Freyther <[EMAIL PROTECTED]>
We harmlessly repeated PMU platform callbacks about charging state twice.
Clean it up and leave it to pcf50633_charge_enable() to report once.
Also tidies the sequencing so we set current limit before we enable
charger now.
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit 3574745cad910ce45db692baadf1fe233bc383b5
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:04 2008 +0100
fix-pcf50633-remove-charger-curlim-and-enable-apis-from-export.patch
Setting the current limit directly and enabling the charger
isn't anyone's business except pcf50633 driver itself, so these
two functions should not be exported and become static.
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
--- End Message ---
--- Begin Message ---
Rebased ref, commits from common ancestor:
commit b3c27866c66e6cea07ddaec2a472607c9dcb4431
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:52 2008 +0100
clean-gsm-flow-control.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
arch/arm/plat-s3c24xx/neo1973_pm_gsm.c | 52 +-------
drivers/serial/s3c2410.c | 204
+++-----------------------------
2 files changed, 24 insertions(+), 232 deletions(-)
commit 4f28b95c1ef8d47ca79416a1554a59af6c1f0871
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:52 2008 +0100
mw09_style_fixes.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit b5d991ed9848d6682977cd28820ae0b2e933a723
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:52 2008 +0100
mw09f_gsm_interrupt_handling_4.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit 2983e9d2f7e35b3704bd452886b25f0941b9198c
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:52 2008 +0100
mw09f_gsm_interrupt_handling_3.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit d9c91cb2985dbc95392318f9016cc046ab253e7f
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:51 2008 +0100
mw09f_gsm_interrupt_handling_2.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit 7c2d5149fe5304b0ec04056855df1f52adeb0b84
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:51 2008 +0100
mw09f_gsm_interrupt_handling_1.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit 4bfedc00b2f1e4b59afa23e1c92c401e357ed145
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:51 2008 +0100
mw09e_gsm_serial_mctrl.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit e1ab2f21e5bf8680931d79c8f1e050ccc0fe6ae2
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:50 2008 +0100
mw09d_gta01_serial_readhack_1.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit aa17826e9a23e3d71ac37fd433ab941e7caa5b07
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:50 2008 +0100
mw09c_gsm_flowcontrol.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit 109cd7e572b5d6b23c3183a66c003a95ec609234
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:49 2008 +0100
mw09a_log_serial_errors.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit f3a4c4a929d14c4a059613dd2b59b784b110b7bd
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:49 2008 +0100
mw09a_gta01_UART_threshold.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit 82195aa7fa9431f8c5ad1cbc66640faab0cbe00a
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:49 2008 +0100
mw09a_gta01_console_disable_2.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit eceb499d5fb42e823ed880180b7aa5d3bf08bb45
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:48 2008 +0100
mw09a_gta01_console_disable_1.patch
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit cbc785efd5af02a968107ed740aa06a4bb7bb220
Author: Cesar Eduardo Barros <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:48 2008 +0100
PATCH-9_9-gta01-Tweak-pixclock-to-reduce-flicker-with-cpufreq.eml
Experimenting with a GTA01 showed pixclock values near 40000 (after the
rounding caused by the divider calculation) caused visible flicker. Values
near 20000 caused only a slight flicker, and the default value after
rounding
with the default HCLK frequency of 133MHz is 30075.
Change the value to 35000 to make it stay in the range 17500-35000 and thus
reduce the flicker a bit.
Signed-off-by: Cesar Eduardo Barros <[EMAIL PROTECTED]>
commit 2ea8a594506e792a8ea36c7dd44f4665679b7237
Author: Cesar Eduardo Barros <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:48 2008 +0100
PATCH-8_9-Experimental-S3C2410A-cpufreq-driver-fb-.eml
This is the cpufreq notifier for the S3C2410 framebuffer driver.
Signed-off-by: Cesar Eduardo Barros <[EMAIL PROTECTED]>
commit 947075ef2d04a168cdd3a8d46416a6a089d718d4
Author: Cesar Eduardo Barros <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:48 2008 +0100
PATCH-7_9-Experimental-S3C2410A-cpufreq-driver-serial-.eml
This is the cpufreq notifier for the S3C2410 serial driver.
It uses the hardware flow control, when available, to avoid losing
characters
during the transition.
Signed-off-by: Cesar Eduardo Barros <[EMAIL PROTECTED]>
commit 4ba9ee9025ddbde2b5a38127abb03c13ef185ab1
Author: Cesar Eduardo Barros <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:47 2008 +0100
PATCH-6_9-s3c2410-serial-move-divisor-calculation-to-separate-function.eml
The cpufreq notifier for the S3C2410 serial driver has to recalculate the
baud rate divisor. The code which does the calculation is currently part of
s3c24xx_serial_set_termios. Split it off to a separate function.
Code movement only, no functional changes.
Signed-off-by: Cesar Eduardo Barros <[EMAIL PROTECTED]>
commit 312e6c12fe855c66561aae4344dfd31bd22c18da
Author: Cesar Eduardo Barros <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:47 2008 +0100
PATCH-5_9-Experimental-S3C2410A-cpufreq-driver-nand-.eml
This is the cpufreq notifier for the S3C2410 NAND driver.
Signed-off-by: Cesar Eduardo Barros <[EMAIL PROTECTED]>
commit fb7ab00d8752fbd64b1c04303556ebe84e8b1f61
Author: Cesar Eduardo Barros <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:47 2008 +0100
PATCH-4_9-Experimental-S3C2410A-cpufreq-driver-timer-.eml
This is the cpufreq notifier for the S3C2410 timer code.
Signed-off-by: Cesar Eduardo Barros <[EMAIL PROTECTED]>
commit 3d45b4e969a205bd100f5f503f03641ac4dd0934
Author: Cesar Eduardo Barros <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:47 2008 +0100
PATCH-3_9-cpufreq-Warn-whem-cpufreq_register_notifier-called-before-pure-initcalls.eml
If cpufreq_register_notifier is called before pure initcalls,
init_cpufreq_transition_notifier_list will overwrite whatever it did,
causing notifiers to be ignored.
Print some noise to the kernel log if that happens.
Signed-off-by: Cesar Eduardo Barros <[EMAIL PROTECTED]>
commit 1b0c17b3ae2d4bc328df7a3b82efe02ec62582e6
Author: Cesar Eduardo Barros <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:46 2008 +0100
PATCH-2_9-Experimental-S3C2410A-cpufreq-driver-core-.eml
This is a cpufreq driver for the S3C2410A. It deals only with the main
frequency switching part and with the SDRAM refresh counter. The rest of the
hardware should be dealt with via cpufreq notifiers on each of the drivers.
It also has experimental support for the S3C2442.
Signed-off-by: Cesar Eduardo Barros <[EMAIL PROTECTED]>
commit f13cd1eacf874c915059d2c395bb246f14989311
Author: Cesar Eduardo Barros <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:46 2008 +0100
PATCH-1_9-cpufreq-fix-show_trans_table.eml
Fix show_trans_table when it overflows PAGE_SIZE.
* Not all snprintf calls were protected against being passed a negative
length.
* When show_trans_table overflows, len might be > PAGE_SIZE. In that case,
returns PAGE_SIZE.
Signed-off-by: Cesar Eduardo Barros <[EMAIL PROTECTED]>
commit 5a6061009f44a1019149bbdb0714deaead4cef9d
Author: warmcat <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:18:46 2008 +0100
local-config-cpufreq.patch
commit e338df351bdfc1b42de85dfd681f963cf25f01ce
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:57 2008 +0100
fix-reote-install-for-ext3-only-sd.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit e583b9fae39ef5713302dd351dd9b9981ad867c3
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:56 2008 +0100
defconfig-nuke-cruft.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit b86336d6b52813ebdfe257f429a164fa17bcafbd
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:56 2008 +0100
defconfig-kill-hxd8.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit 5747e4b6ef7a3f8f219119ded3141e02060d3a28
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:56 2008 +0100
fix-touchscreen-driver-gta01-missing-includes.patch
Add missing initialization for the touchscreen driver for the
gta01 platform.
Signed-off-by: Mike Westerhof <[EMAIL PROTECTED]>
commit c96e11f65b9969a908a8442fd1abcada7423ed80
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:56 2008 +0100
test-touchscreen-median.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit 201716976c326202382a8b764c321a98c7a4288d
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:55 2008 +0100
config-touchscreen-filters.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit be0f111b3d1570dec174ff301d08bad995ccf1e6
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:15 2008 +0100
fix-pcf50633-only-do-platform-callback-once-per-event.patch
Reported-by: Holger Freyther <[EMAIL PROTECTED]>
We harmlessly repeated PMU platform callbacks about charging state twice.
Clean it up and leave it to pcf50633_charge_enable() to report once.
Also tidies the sequencing so we set current limit before we enable
charger now.
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit 3574745cad910ce45db692baadf1fe233bc383b5
Author: Andy Green <[EMAIL PROTECTED]>
Date: Tue Jul 22 22:17:04 2008 +0100
fix-pcf50633-remove-charger-curlim-and-enable-apis-from-export.patch
Setting the current limit directly and enabling the charger
isn't anyone's business except pcf50633 driver itself, so these
two functions should not be exported and become static.
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
--- End Message ---
--- Begin Message ---
Author: tick
Date: 2008-07-23 04:27:05 +0200 (Wed, 23 Jul 2008)
New Revision: 4551
Modified:
trunk/feeds/community-repository/file-index.txt
Log:
Community-Repository: add cc-right comic book :-)
Modified: trunk/feeds/community-repository/file-index.txt
===================================================================
--- trunk/feeds/community-repository/file-index.txt 2008-07-22 21:11:02 UTC
(rev 4550)
+++ trunk/feeds/community-repository/file-index.txt 2008-07-23 02:27:05 UTC
(rev 4551)
@@ -1,2 +1,3 @@
+/var/lib/gforge/download/comicreader/community-repository/CC-comic/comic-book-cc-right_0.1_all.ipk
/var/lib/gforge/download/comicreader/community-repository/comicreadersvn43/comic-reader_svnr43.ipk
/var/lib/gforge/download/siteadmin/community-repository/0.2/tangogps_0.9.2-r1_armv4t.ipk
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog