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. r4471 - trunk/src/target/OM-2007.2/daemons/neod/src
([EMAIL PROTECTED])
2. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
([EMAIL PROTECTED])
3. Holger's qtopia repo: Changes to 'master' ([EMAIL PROTECTED])
4. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.asu.stable'
([EMAIL PROTECTED])
5. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.asu.dev'
([EMAIL PROTECTED])
6. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
--- Begin Message ---
Author: julian_chu
Date: 2008-06-03 06:47:27 +0200 (Tue, 03 Jun 2008)
New Revision: 4471
Modified:
trunk/src/target/OM-2007.2/daemons/neod/src/buttonactions.c
Log:
*modify src/buttonactions.c to make neod use the apm command to suspend the
host rather than writing directly to sysfs. Patch by Mike Westerhof: Thanks!
Modified: trunk/src/target/OM-2007.2/daemons/neod/src/buttonactions.c
===================================================================
--- trunk/src/target/OM-2007.2/daemons/neod/src/buttonactions.c 2008-06-02
18:20:46 UTC (rev 4470)
+++ trunk/src/target/OM-2007.2/daemons/neod/src/buttonactions.c 2008-06-03
04:47:27 UTC (rev 4471)
@@ -569,6 +569,12 @@
void neod_buttonactions_popup_selected_lock( GtkWidget* button, gpointer
user_data )
{
gtk_widget_hide( power_menu );
+
+ if (getenv("DO_NOT_USE_APM") == NULL) {
+ system("/usr/bin/apm -s");
+ return;
+ }
+
int fd = open( "/sys/power/state", O_WRONLY );
if ( fd != -1 )
{
--- End Message ---
--- Begin Message ---
conf/distro/include/sane-srcrevs.inc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
New commits:
commit 55e61ab9ccb347da058b2b377b43e57facddf52e
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Tue Jun 3 15:19:10 2008 +0800
[sane-srcrevs] Upgrade version of neod to 4471
--- End Message ---
--- Begin Message ---
qtopiacore/qt/bin/syncqt | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit b7b95a89dfbd834d802ecfefecbfcbefd547ed4e
Author: Holger Freyther <[EMAIL PROTECTED]>
Date: Mon Jun 2 14:42:57 2008 +0200
[qt] No idea why it wants to escape + from the path...
With + in the path the created header files try to include
"foo/qtopia\+git" which gcc doesn't like
--- End Message ---
--- Begin Message ---
.../qtopia-phone-x11/om-gta01/Xsession.d/89qtopia | 37 ++++++++++++++++++++
packages/qtopia-phone/qtopia-phone-x11_4.3.1.bb | 16 +++++---
.../xserver-kdrive-common/xserver-nodm-init.bb | 2 +-
.../xserver-nodm-init/xserver-nodm | 3 ++
4 files changed, 51 insertions(+), 7 deletions(-)
New commits:
commit 92b36370cf5060c85e2f315c733d9fec5e3e2c6f
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Sun Jun 1 19:17:58 2008 +0200
[x11] Make sure to set a HOME and LOGNAME when launching
Set a HOME and LOGNAME when none is being set.
commit 9d87d2a38a82b904d6bd0796933c95345b90383d
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Sun Jun 1 19:14:36 2008 +0200
[qtopia] Allow to build Qtopia/X11 for gta01
commit 576e128e170cb1061bb65f4cd09e8acd2b5d2b0b
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Wed May 28 13:36:25 2008 +0200
[qtopia] Add the Qtopia Xsession start script for gta01 as well
--- End Message ---
--- Begin Message ---
conf/distro/include/sane-srcrevs.inc | 2 +-
.../qtopia-phone-x11/om-gta01/Xsession.d/89qtopia | 37 +
packages/qtopia-phone/qtopia-phone-x11_4.3.1.bb | 944 -------------------
packages/qtopia-phone/qtopia-phone-x11_git.bb | 946 ++++++++++++++++++++
.../xserver-kdrive-common/xserver-nodm-init.bb | 2 +-
.../xserver-nodm-init/xserver-nodm | 3 +
6 files changed, 988 insertions(+), 946 deletions(-)
New commits:
commit 7bacd949e6a337d4388ac941a736423547fc903d
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Mon Jun 2 23:18:02 2008 +0200
[qtopia] We can now properly name the source directory do so
We build from git so use SRCPV inside the PV and name
the file that way.
commit f7bb4e91c2a8105cf3f0c936e2ddfc00779f5787
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Wed May 28 13:36:25 2008 +0200
[qtopia] Add the Qtopia Xsession start script for gta01 as well
commit 268cd43cce2b215bfa9c66ba9816c2bcb7c7da9c
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Sun Jun 1 19:14:36 2008 +0200
[qtopia] Allow to build Qtopia/X11 for gta01
commit 7640bb125356d29e547eb9c76226a1ca458c8b51
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Sun Jun 1 19:17:58 2008 +0200
[x11] Make sure to set a HOME and LOGNAME when launching
Set a HOME and LOGNAME when none is being set.
--- End Message ---
--- Begin Message ---
drivers/i2c/busses/i2c-s3c2410.c | 6 +++---
.../sdio/function/wlan/ar6000/ar6000/ar6000_drv.c | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
New commits:
commit d4f79a13300a1582ab5311c8268896505fe8d906
Author: Holger Freyther <[EMAIL PROTECTED]>
Date: Tue Jun 3 10:44:16 2008 +0100
Make ar6k not print soooo much to my console
From 4cb4c308fde9c1f3598046ff98191d14b62bc609 Mon Sep 17 00:00:00 2001
From: Holger Freyther <[EMAIL PROTECTED]>
Date: Thu, 29 May 2008 00:09:32 +0200
Subject: [PATCH] [ar6k] silent++, removing -DDEBUG from the Makefile does
not
work
commit 921bb64f7a501388708d76427f0e07c7695c8bb9
Author: Holger Freyther <[EMAIL PROTECTED]>
Date: Tue Jun 3 10:43:21 2008 +0100
Fix possible null pointer dereference in s3c24xx_i2c_resume
From 0b9bae6aed5268707b348e48a01411ba420844e1 Mon Sep 17 00:00:00 2001
From: Holger Freyther <[EMAIL PROTECTED]>
Date: Tue, 27 May 2008 14:41:35 +0200
Subject: [PATCH] [janitor] Fix possible null pointer dereference
Judging by the control flow of the resume method i2c->suspended++ could
lead to a null pointer dereference.
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog