[prev in list] [next in list] [prev in thread] [next in thread] 

List:       openmoko-commitlog
Subject:    commitlog Digest, Vol 598, Issue 2
From:       commitlog-request () lists ! openmoko ! org
Date:       2008-08-15 18:54:10
Message-ID: mailman.4440.1218826450.32076.commitlog () lists ! openmoko ! org
[Download RAW message or body]

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
	commitlog-request@lists.openmoko.org

You can reach the person managing the list at
	commitlog-owner@lists.openmoko.org

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 'stable'
      (git@git.openmoko.org)
   2. development kernel tree: Changes to 'stable'
      (git@git.openmoko.org)
   3. Openmoko's OpenEmbedded repository. This is used to build the
      Openmoko distribution: Changes to 'org.openmoko.asu.dev'
      (git@git.openmoko.org)
   4. Openmoko's OpenEmbedded repository. This is used to build the
      Openmoko distribution: Changes to 'org.openmoko.dev'
      (git@git.openmoko.org)
   5. Openmoko's OpenEmbedded repository. This is used to build the
      Openmoko distribution: Changes to 'org.openmoko.unstable'
      (git@git.openmoko.org)
   6. r4596 - developers/werner/bin (werner@docs.openmoko.org)
   7. Openmoko's OpenEmbedded repository. This is used to build the
      Openmoko distribution: Changes to
      'refs/remotes/origin/org.openmoko.unstable' (git@git.openmoko.org)
   8. Openmoko's OpenEmbedded repository. This is used to build the
      Openmoko distribution: Changes to 'org.openmoko.asu.dev'
      (git@git.openmoko.org)
   9. Openmoko's OpenEmbedded repository. This is used to build the
      Openmoko distribution: Changes to 'org.openmoko.asu.dev'
      (git@git.openmoko.org)

[Attachment #4 (multipart/digest)]


From: git@git.openmoko.org
Precedence: list
To: commitlog@lists.openmoko.org
Date: Fri, 15 Aug 2008 10:51:20 +0000
Message-ID: <E1KTwts-00068F-9U@git.openmoko.org>
Subject: development kernel tree: Changes to 'stable'
Message: 1

 drivers/input/misc/lis302dl.c |  241 +++++++++++++++++++++++++++++++++++++++--
 include/linux/lis302dl.h      |    8 +-
 2 files changed, 235 insertions(+), 14 deletions(-)

New commits:
commit 2d61a7406ec89893cdb4246d3f0144818278a5d8
Author: Andy Green <andy@openmoko.com>
Date:   Fri Aug 15 11:51:04 2008 +0100

    checkpatch-accel-fixes.patch
    
    style cleanups for accel threshold setting patch
    
    Signed-off-by: Andy Green <andy@openmoko.com>

commit 69acbd477fb7024d2cfa3702036b92ecb6c8e7b5
Author: Simon Kagstrom <simon.kagstrom@gmail.com>
Date:   Fri Aug 15 11:50:56 2008 +0100

    interface for configuring freefall/wakeup interrupts for the accelerometers
    
    Hi!
    
    First: Unfortunately, the freerunner currently wakes up immediately on
    suspend when the accelerometer IRQ is selected as a wakeup source. I'm
    posting this for comments and if someone else wants to have a look at
    this problem.
    
    The patch should be safe to apply even though the sleep portion doesn't
    work - as long as it's configured it will not disturb anything.
    
    // Simon
    --
    lis302dl-configure-wakeup-interrupts.patch
    
    From: simon.kagstrom <simon.kagstrom@gmail.com>
    
    First: Unfortunately, the freerunner currently wakes up immediately on
    suspend when the accelerometer IRQ is selected as a wakeup source.
    
    
    Add configuration of wakeup/freefall interrupts through a sysfs
    interface. Configuration is done through echoing a value of the
    form
    
       X Y Z THRESHOLD DURATION SPEC
    
    to freefall_wakeup_1/2. X, Y and Z are threshold values, given as a
    value > 0, < 0 or 0 to specify if an interrupt should be generated for
    high or low thresholds or neither (off). THRESHOLD specifies the
    threshold that must be exceeded. DURATION specifies the time in
    milliseconds for which the acceleration should be measured. SPEC is
    either '1' or '0' and specifies if the thresholds should be taken all
    together or one at a time ('and' or 'or' mode).
    
    Echoing '0' to the file turns off the interrupts.
    
    Example:
    
      echo "1 1 1 60 60 0" > freefall_wakeup_1   # Turn on x,y,z, 60ms/60 threshold, or-mode
      echo "0" > freefall_wakeup_1 # Turn off interrupt
    
    The hardware supports two simulataneous wakeup sources to be configured,
    but the freerunner only connects one of the interrupt outputs. The patch
    exports both. Similarly, only the "top" accelerometer can be used as a
    wake-up source, and it's not possible to generate DATA_READY interrupts
    while the wakeup interrupts are active.
    
    Signed-off-by: Simon Kagstrom <simon.kagstrom@gmail.com>





From: git@git.openmoko.org
Precedence: list
To: commitlog@lists.openmoko.org
Date: Fri, 15 Aug 2008 10:51:20 +0000
Message-ID: <E1KTwts-00068F-9U@git.openmoko.org>
Subject: development kernel tree: Changes to 'stable'
Message: 2

 drivers/input/misc/lis302dl.c |  241 +++++++++++++++++++++++++++++++++++++++--
 include/linux/lis302dl.h      |    8 +-
 2 files changed, 235 insertions(+), 14 deletions(-)

New commits:
commit 2d61a7406ec89893cdb4246d3f0144818278a5d8
Author: Andy Green <andy@openmoko.com>
Date:   Fri Aug 15 11:51:04 2008 +0100

    checkpatch-accel-fixes.patch
    
    style cleanups for accel threshold setting patch
    
    Signed-off-by: Andy Green <andy@openmoko.com>

commit 69acbd477fb7024d2cfa3702036b92ecb6c8e7b5
Author: Simon Kagstrom <simon.kagstrom@gmail.com>
Date:   Fri Aug 15 11:50:56 2008 +0100

    interface for configuring freefall/wakeup interrupts for the accelerometers
    
    Hi!
    
    First: Unfortunately, the freerunner currently wakes up immediately on
    suspend when the accelerometer IRQ is selected as a wakeup source. I'm
    posting this for comments and if someone else wants to have a look at
    this problem.
    
    The patch should be safe to apply even though the sleep portion doesn't
    work - as long as it's configured it will not disturb anything.
    
    // Simon
    --
    lis302dl-configure-wakeup-interrupts.patch
    
    From: simon.kagstrom <simon.kagstrom@gmail.com>
    
    First: Unfortunately, the freerunner currently wakes up immediately on
    suspend when the accelerometer IRQ is selected as a wakeup source.
    
    
    Add configuration of wakeup/freefall interrupts through a sysfs
    interface. Configuration is done through echoing a value of the
    form
    
       X Y Z THRESHOLD DURATION SPEC
    
    to freefall_wakeup_1/2. X, Y and Z are threshold values, given as a
    value > 0, < 0 or 0 to specify if an interrupt should be generated for
    high or low thresholds or neither (off). THRESHOLD specifies the
    threshold that must be exceeded. DURATION specifies the time in
    milliseconds for which the acceleration should be measured. SPEC is
    either '1' or '0' and specifies if the thresholds should be taken all
    together or one at a time ('and' or 'or' mode).
    
    Echoing '0' to the file turns off the interrupts.
    
    Example:
    
      echo "1 1 1 60 60 0" > freefall_wakeup_1   # Turn on x,y,z, 60ms/60 threshold, or-mode
      echo "0" > freefall_wakeup_1 # Turn off interrupt
    
    The hardware supports two simulataneous wakeup sources to be configured,
    but the freerunner only connects one of the interrupt outputs. The patch
    exports both. Similarly, only the "top" accelerometer can be used as a
    wake-up source, and it's not possible to generate DATA_READY interrupts
    while the wakeup interrupts are active.
    
    Signed-off-by: Simon Kagstrom <simon.kagstrom@gmail.com>





From: git@git.openmoko.org
Precedence: list
To: commitlog@lists.openmoko.org
Date: Fri, 15 Aug 2008 12:25:53 +0000
Message-ID: <E1KTyNN-0008KR-1C@git.openmoko.org>
Subject: Openmoko's OpenEmbedded repository. This is used to build the
	Openmoko distribution: Changes to 'org.openmoko.asu.dev'
Message: 3

 packages/libgpewidget/libgpewidget-hildon_0.102.bb |   13 +++++------
 packages/libgpewidget/libgpewidget_0.114.bb        |   16 ++++++++------
 packages/libgpewidget/libgpewidget_0.115.bb        |   15 +++++++------
 packages/libgpewidget/libgpewidget_0.117.bb        |   22 ++++++++++++++++++++
 packages/libgpewidget/libgpewidget_svn.bb          |    8 ++++--
 5 files changed, 50 insertions(+), 24 deletions(-)

New commits:
commit 9321ba219d52aef99955a2e2f630cb3e790d4304
Author:  <florian@openembedded.org>
Date:   Fri Jul 25 10:21:00 2008 +0000

    libgpewidget: add 0.117

commit c3dcfe11ad549d4acdeddc84b13c6b7ec748f09c
Author:  <mickeyl@openembedded.org>
Date:   Fri Jul 25 06:32:32 2008 +0000

    libgpewidget: sanitize metadata order a bit and add RRECOMMENDS on gpe-icons

commit 4cdcd5b709f622572079444e3998a7a9fdce42a2
Author:  <koen@openembedded.org>
Date:   Sat Jun 7 16:24:25 2008 +0000

    libgpewidget: depend in libxinerama. Parallel builds fail due to debian renaming





From: git@git.openmoko.org
Precedence: list
To: commitlog@lists.openmoko.org
Date: Fri, 15 Aug 2008 12:58:03 +0000
Message-ID: <E1KTysV-00031N-75@git.openmoko.org>
Subject: Openmoko's OpenEmbedded repository. This is used to build the
	Openmoko distribution: Changes to 'org.openmoko.dev'
Message: 4

 conf/checksums.ini                                 |  256 +++++---------------
 conf/distro/include/sane-srcrevs.inc               |    6 +-
 packages/efl1/ecore.inc                            |    3 +-
 packages/efl1/ecore_cvs.bb                         |    2 +-
 .../openmoko-community-repository.bb               |    8 +-
 5 files changed, 76 insertions(+), 199 deletions(-)

New commits:
commit da45976a8df66b931a81cd2507cdbf7fab5c5527
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Thu Aug 14 02:57:47 2008 +0200

    [checksums] Add checksums for speech-dispatcher

commit b6effb889a643890b1792a6498df6be455f988e5
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Thu Aug 14 02:57:17 2008 +0200

    [checksums] Add checksums for portaudio

commit 1b8632d887bfc87ee25ca75eaf3c6bfecb457a6a
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Thu Aug 14 02:56:33 2008 +0200

    [checksums] Add checksums for navit

commit 2eafc2854acbb596526c4ce43446be74d13c1fb5
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Thu Aug 14 02:55:56 2008 +0200

    [checksums] Add checksums for flite

commit 242c7d6528ff17e1f67dd0f3b309354575bd4494
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Thu Aug 14 02:54:57 2008 +0200

    [checksums] Add checksums for dotconf

commit 3b701abeb71e7e7628879c0765607cd0adf88e92
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Thu Aug 14 02:54:34 2008 +0200

    [checksums] Add checksums for djvulibre

commit cfb5277af69bfb0ed51693973a01299ce3a0d6d2
Author: Julian_chu <julian_chu@openmoko.com>
Date:   Fri Aug 15 17:33:05 2008 +0800

    [checksums] Sort the entries with FILENAME by alphabet ordering.
               Remove the duplicate entry
    i.e.  http://www.download.url/path/to/FILENAME1.tar.gz
          https://www.another.url/path/to/FILENAME2.tar.gz

commit 5d7a58863975bcdd6ab2315b9d9a7348ebe02a43
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Tue Aug 5 23:38:51 2008 +0200

    [openmoko] Fix the feed configuration
        Make the package buildable again

commit 928ddb7f1cd0dbe967f0d14092b974be0fb2f8a4
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Tue Aug 12 16:32:57 2008 +0200

    [ecore] Fix DEPENDS to make the build deterministic
        XCursor, XRandr, Xinerama and Xprint was found and used on the
        second configure run but not on the first one. Fix that.

commit 7974beb769376a897d55facf06938878d459ed8c
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Tue Aug 12 15:52:22 2008 +0200

    [srcrev] Upgrade u-boot to the latest stable version

commit ce6d726720c70db2314c4adea678edf31b4cb55e
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Tue Aug 12 15:49:42 2008 +0200

    [srcrev] Upgrade opkg-utils-native to get tick's Size fixes #1803

commit 613d4cc52ffa47b202d354d5ae80a1a9b11d022a
Author: Julian_chu <julian_chu@openmoko.com>
Date:   Tue Aug 12 11:25:55 2008 +0800

    [openmoko-community-repository] Modify the URL
    Remove the duplicate slash

commit ead91ccfb4793bfb13d7a422375f838f227a9724
Author: Julian_chu <julian_chu@openmoko.com>
Date:   Wed Aug 6 00:15:28 2008 +0800

    [openmoko] Change default community repository
    set http://downloads.openmoko.org/repository/Multiverse/
    as a default repository for community

commit c127c77594e4b53b639a0461f8bdd1afdd4eac61
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Mon Aug 11 19:28:55 2008 +0200

    [srcrev] Upgrade Qtopia with various GSM stability fixes





From: git@git.openmoko.org
Precedence: list
To: commitlog@lists.openmoko.org
Date: Fri, 15 Aug 2008 14:05:33 +0000
Message-ID: <E1KTzvp-00025Q-30@git.openmoko.org>
Subject: Openmoko's OpenEmbedded repository. This is used to build the
	Openmoko distribution: Changes to 'org.openmoko.unstable'
Message: 5

New branch 'org.openmoko.unstable' available with the following commits:




Content-Transfer-Encoding: 8bit
From: werner@docs.openmoko.org
Precedence: list
To: commitlog@lists.openmoko.org
Date: Fri, 15 Aug 2008 16:07:45 +0200
Message-ID: <E1KTzxx-0002YS-DK@docs.openmoko.com>
Content-Type: text/plain; charset=UTF-8
Subject: r4596 - developers/werner/bin
Message: 6

Author: werner
Date: 2008-08-15 16:07:44 +0200 (Fri, 15 Aug 2008)
New Revision: 4596

Added:
   developers/werner/bin/makek
Modified:
   developers/werner/bin/comm4
   developers/werner/bin/kern4
   developers/werner/bin/lab4
   developers/werner/bin/uboot4
Log:
Some minor updates of my "productivity" scripts.

- makek: helper script to build the kernel
- comm4: use "new" script to fetch new mails
- comm4: run IRC locally
- lab4, kern4, uboot4: updated for new directory structure



Modified: developers/werner/bin/comm4
===================================================================
--- developers/werner/bin/comm4	2008-08-12 04:11:25 UTC (rev 4595)
+++ developers/werner/bin/comm4	2008-08-15 14:07:44 UTC (rev 4596)
@@ -5,17 +5,13 @@
 sleep 2
 
 xterm -fn $FONT -geometry 80x40+36-14 -e bash-init \
-  'ssh oq2' \
-  '# isync' &
+  '# new' &
 xterm -fn $FONT -geometry 80x72+560-8 -e bash-init \
-  'ssh oq2' \
   mutt &
 xterm -fn $FONT -geometry 80x24+560+9 -e bash-init \
   'telnet host 1991' \
   Werner &
 xterm -fn $FONT -geometry 80x40-70+-4 -e bash-init \
-  'ssh werner@oq2' \
-  'screen -r' &
+  'su - werner bin/irc' &
 xterm -fn $FONT -geometry 80x59-65-2 -e bash-init \
-  'ssh oq2' \
   mutt &

Modified: developers/werner/bin/kern4
===================================================================
--- developers/werner/bin/kern4	2008-08-12 04:11:25 UTC (rev 4595)
+++ developers/werner/bin/kern4	2008-08-15 14:07:44 UTC (rev 4596)
@@ -1,6 +1,7 @@
 #!/bin/sh
 
-DIR=/home/moko/2624/linux-2.6.24
+#DIR=/home/moko/2624/linux-2.6.24
+DIR=/home/moko/git/kernel/
 
 if [ "${PWD#/home/moko}" = "$PWD" ]; then
     cd $DIR

Modified: developers/werner/bin/lab4
===================================================================
--- developers/werner/bin/lab4	2008-08-12 04:11:25 UTC (rev 4595)
+++ developers/werner/bin/lab4	2008-08-15 14:07:44 UTC (rev 4596)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-DIR=/home/moko/2624/u-boot
+DIR=/home/moko/git/u-boot
 FONT=6x10
 HOST=${SET_HOST:-lab}
 
@@ -27,5 +27,5 @@
   'vi -R /home/moko/gta02/ENV' &
 xterm -fn $FONT -geometry 80x40-86-38 -e bash-init \
   "ssh $HOST" \
-  '# dfu-util -a u-boot -R -D /home/moko/fr/u-boot/u-boot.udfu' \
-  '# dfu-util -a kernel -R -D /home/moko/2624/linux-2.6.24/arch/arm/boot/uImage' &
+  '# dfu-util -a u-boot -R -D /home/moko/git/u-boot/u-boot.udfu' \
+  '# dfu-util -a kernel -R -D /home/moko/git/kernel/arch/arm/boot/uImage' &

Added: developers/werner/bin/makek
===================================================================
--- developers/werner/bin/makek	                        (rev 0)
+++ developers/werner/bin/makek	2008-08-15 14:07:44 UTC (rev 4596)
@@ -0,0 +1,3 @@
+#!/bin/sh -x
+PATH=$PATH:../u-boot/tools
+make ARCH=arm CROSS_COMPILE=arm-angstrom-linux-gnueabi- "$@"


Property changes on: developers/werner/bin/makek
___________________________________________________________________
Name: svn:executable
   + *

Modified: developers/werner/bin/uboot4
===================================================================
--- developers/werner/bin/uboot4	2008-08-12 04:11:25 UTC (rev 4595)
+++ developers/werner/bin/uboot4	2008-08-15 14:07:44 UTC (rev 4596)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-DIR=/home/moko/2624/u-boot
+DIR=/home/moko/git/u-boot
 
 if [ "${PWD#/home/moko}" = "$PWD" ]; then
     cd $DIR





From: git@git.openmoko.org
Precedence: list
To: commitlog@lists.openmoko.org
Date: Fri, 15 Aug 2008 15:01:46 +0000
Message-ID: <E1KU0oE-0008Q7-Vd@git.openmoko.org>
Subject: Openmoko's OpenEmbedded repository. This is used to build the
	Openmoko distribution: Changes to
	'refs/remotes/origin/org.openmoko.unstable'
Message: 7





From: git@git.openmoko.org
Precedence: list
To: commitlog@lists.openmoko.org
Date: Fri, 15 Aug 2008 18:21:24 +0000
Message-ID: <E1KU3vQ-0006Dn-Ct@git.openmoko.org>
Subject: Openmoko's OpenEmbedded repository. This is used to build the
	Openmoko distribution: Changes to 'org.openmoko.asu.dev'
Message: 8

 conf/checksums.ini                                 |   16 ++++++++++++++++
 conf/distro/include/preferred-om-2008-versions.inc |    2 +-
 2 files changed, 17 insertions(+), 1 deletions(-)

New commits:
commit b30e9a868ee257453d6bafb40169b031eb915db2
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Fri Aug 15 20:18:51 2008 +0200

    [checksums] Add gst-python to the checksums

commit 6084429e457325a0ed90aef3ad6797cba8c134c8
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Fri Aug 15 20:17:49 2008 +0200

    [checksums] Add xwininfo to the checksums

commit 890103731cdf9c56de00f477b0195d75c5b4a0ab
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Fri Aug 15 20:17:04 2008 +0200

    [checksums] Add KoboDeluxe to the checksums

commit b3078dd25590b18318c1c7e6650b4630005d24c5
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Fri Aug 15 20:13:58 2008 +0200

    [preferred versions] Build 0.117 of 0.115 of libgpewidget to fix segfault at crash
        https://docs.openmoko.org/trac/ticket/1823 mentions a crash of gpe-todo
        at exit. According the gpe overlords on irc this can be fixed by gpewidget
        upgreade and libgpewidget 0.115 and 0.117 is supposed to be binary compatible.

commit e66621d593f0ba7a992c9fa8074e74efa592591a
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Fri Aug 15 20:13:30 2008 +0200

    [checksums] Add libgpewidget 0.117 to the checksums





From: git@git.openmoko.org
Precedence: list
To: commitlog@lists.openmoko.org
Date: Fri, 15 Aug 2008 18:51:20 +0000
Message-ID: <E1KU4OO-0000w2-4Y@git.openmoko.org>
Subject: Openmoko's OpenEmbedded repository. This is used to build the
	Openmoko distribution: Changes to 'org.openmoko.asu.dev'
Message: 9

 packages/espeak/espeak_1.35.bb |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

New commits:
commit 8be3aee2fffd63d951eef42fb5fa2b716f9ecb75
Author: Holger Hans Peter Freyther <zecke@openmoko.org>
Date:   Fri Aug 15 20:48:16 2008 +0200

    [espeak] Add portaudio-v19 to the depends so linking is working




--===============0253207388==--

_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic