Send commitlog mailing list submissions to
        [email protected]

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. r4578 - trunk/src/host/opkg-utils ([EMAIL PROTECTED])
   2. development kernel tree: Changes to 'zecke-2.6.26'
      ([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])
--- Begin Message ---
Author: zecke
Date: 2008-08-02 22:25:10 +0200 (Sat, 02 Aug 2008)
New Revision: 4578

Modified:
   trunk/src/host/opkg-utils/opkg-build
Log:
[opkg-build] Add -O to the getopt list to make it a valid option
    - -O is now a honored option.



Modified: trunk/src/host/opkg-utils/opkg-build
===================================================================
--- trunk/src/host/opkg-utils/opkg-build        2008-08-01 17:25:56 UTC (rev 
4577)
+++ trunk/src/host/opkg-utils/opkg-build        2008-08-02 20:25:10 UTC (rev 
4578)
@@ -160,7 +160,7 @@
 noclean=0
 opkext=0
 usage="Usage: $0 [-c] [-C] [-O] [-o owner] [-g group] <pkg_directory> 
[<destination_directory>]"
-while getopts "cg:ho:v" opt; do
+while getopts "cg:ho:vO" opt; do
     case $opt in
        o ) owner=$OPTARG
            ogargs="--owner=$owner"




--- End Message ---
--- Begin Message ---
New branch 'zecke-2.6.26' available with the following commits:
commit c634ff11e8c5e087d784219698bea29abbc1697a
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Wed Jul 30 16:25:47 2008 +0200

    [a6k/sdio] Use pnp_alloc_dev to properly initialize the struct pnp_dev
        pnp_alloc_dev will set the bus_id and various other resources to 
properly
        setup the pnp_dev so that pnp_add_device will work.
        The SlotNumber usage in OS_InitializeDevice is a bit hacky and used to
        have unique names for kobject.
    
    Signed-Off-Number: Holger Freyther <[EMAIL PROTECTED]>

commit 220a9b677b0776c5060e187708ef798469f5471d
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Sun Jul 27 20:31:06 2008 +0200

    [gta02] Disable hardware ECC unless we get instructed to enable it
        This is restoring the old behavior in regard to ECC. Even if
        hardware ECC was compiled in we didn't use it. Make this a runtime
        option. If the bootloader passes hardware_ecc we will enable the
        hardware ECC for real.

commit cf6b66dd19de1c26fbe1634d9a0f1e8e69bd8a94
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Thu Jul 24 18:37:49 2008 +0200

    Revert "s3c2440-nand-disable-hwecc.patch"
    
    This reverts commit 1d89da736ed33d3f7c398fb9f8dfddecb7c7c7a9.




--- End Message ---
--- Begin Message ---
 src/libraries/qtopiaphonemodem/qmodemsmsreader.cpp |   16 ++++++++++++-
 src/libraries/qtopiaphonemodem/qmodemsmsreader.h   |    1 +
 .../inputmethods/predictivekeyboard/keyboard.cpp   |   22 +++++++++++++++++++-
 .../gstreamer/gstreamerplaybinsession.cpp          |    4 +++
 .../phone/telephony/ringcontrol/ringcontrol.cpp    |   20 ++++++++++++-----
 5 files changed, 54 insertions(+), 9 deletions(-)

New commits:
commit 369f44feb7beb73c959d92cc8d68eb46c35a0128
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Sat Aug 2 18:15:37 2008 +0200

    [predictivekeyoard] Make the whole AcceptWindow optional and do not use it 
on X11

commit 13cef6098406bb851a5c025de7c295f0cd54d6e0
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Sat Aug 2 11:26:41 2008 +0200

    [predictivekeyboard] Never animate the AcceptWindow on X11
        We are unlikely to have ARGB visuals on the X server and we do not
        know the on screen position of the text input.
        With these two issues it is better to not animate the text on X11.

commit d262882990118f8b7d5d9a6a891e80447cba3da8
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Sat Aug 2 00:39:27 2008 +0200

    [gstreamer] Fix the refcounting of the bus
        gst_element_get_bus will ref the bus and we need to unref this
        bus somewhere. Do it in the d'tor of the playbin session after
        having deleted the buswatcher.

commit 17df6c95506b0074bf85bbd88aa09cb13687af88
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Fri Aug 1 23:49:10 2008 +0200

    [ringtone] Do not recreate the QSoundControl if it is not needed
        Do not recreate the QSoundControl if the new and old filename is 
matching.
        This is an improvements and works around a fd leak of gstreamer or the
        Qtopia gstreamer media engine.

commit 8806bbce12964bc78c3767e9f86844a8de307679
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Fri Aug 1 22:46:11 2008 +0200

    [ti calypso] Retry +CMGL until it succeeds
        On init CMGL might fail and we should retry this. I assume that
        as CPMS succeeded CMGL will succeed sooner or later. Slightly
        delay the next CMGL command execution.
    
        In the best case we would want to delay the initialisation until
        the SIM is properly initialized. The TI Calypso is telling us
        with "%CSTAT: PHB, 1"  and "%CSTAT: RDY, 1"  that the SIM is ready
        and then we should start the init sequence. But the "simready" post
        is mostly unused by Qtopia...
    
    Aug  2 08:33:08 om-gta02 user.notice root: AtChat :  T : "AT+CMGL=4"
    Aug  2 08:33:08 om-gta02 user.notice root: AtChat :  F : "+CMS ERROR: 320"




--- End Message ---
--- Begin Message ---
 conf/distro/include/sane-srcrevs.inc             |    7 +-
 packages/openmoko-projects/assassin_svn.bb       |    6 +-
 packages/openmoko-projects/pyefl-sudoku_svn.bb   |   20 ++
 packages/openmoko2/openmoko-dates2_svn.bb        |    4 +-
 packages/openmoko2/openmoko-mediaplayer2_svn.bb  |    3 +-
 packages/packagekit/files/racing_condition.patch |  244 ++++++++++++++++++++++
 packages/packagekit/packagekit_git.bb            |    3 +-
 packages/qtopia-phone/qtopia-phone-x11_git.bb    |   16 ++-
 packages/tasks/task-openmoko-qtopia-x11.bb       |    4 +-
 9 files changed, 292 insertions(+), 15 deletions(-)

New commits:
commit 1bf085e451e2f5d1c102df854e72a7fec654bdd0
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Sat Aug 2 01:53:27 2008 +0800

    [packagekit] Add a patch for packagekit
    
    Tish patch was tyring to avoid racing condition

commit c21af90c78f3bb64d09222b25c117eb8fcc6ed6d
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Sat Aug 2 01:28:19 2008 +0800

    [assassin-thumbnail] Bump up the reversion of assassin-thumbnail to 4577
    apply the update of thumbnail files.

commit 4c53d563825cf908996cffebb59a6077aca69c6c
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Sat Aug 2 01:24:30 2008 +0800

    [exposure] Bump up the reversion for exposure  to 59
    Change the icon for ASU

commit db10f552742b487f5cd28a2eda39110b34771832
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Fri Aug 1 23:01:47 2008 +0800

    [assassin] Bump up the reversion of assassin to 222

commit 0d418c9fad2d3b30dd450d6a561363822db77899
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Fri Aug 1 22:42:32 2008 +0800

    [pyefl-sudoku] Bump up the reversion of pyefl-sudoku to 28

commit 1d043844682ea934cd920de041e563a5a015abfd
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Thu Jul 31 23:39:06 2008 +0800

    [openmoko] Replace minesweep with python-efl sudoku as default game in ASU

commit 273f333fd7ea31191fca74ba80581cb1a529eeaa
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Thu Jul 31 23:15:08 2008 +0800

    [openmoko] Assassin need Tags.
    Add tag "group::games" to minesweep

commit 0843da5dc31c0c6544799999abb1db2151d1edf5
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Thu Jul 31 21:53:02 2008 +0800

    [assassin] Change the source URI of assassin
    For some experimental reason, Assassin is going to move to code google.
    
    Bump up the reversion of assassin to 217

commit 83d8dd38f0c09694a17526070d664d3a35f3a566
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Thu Jul 31 19:33:20 2008 +0800

    [openmoko] Assassin need Tags.
    Add tag "group::miscellaneous" to openmoko-mediaplayer2

commit e6ca59e3c3883167982d9727ed36d1bfe266f01e
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Thu Jul 31 19:25:35 2008 +0800

    [openmoko] Assassin need Tags.
    Add tag "group::communication" to datebook
    Add tag "group::communication" to taskmanager-app-data
    Add tag "group::games"         to fifteen
    Add tag "group::miscellaneous" to calculator
    Add tag "group::miscellaneous" to clock
    Add tag "group::miscellaneous" to mediaplayer
    Add tag "group::miscellaneous" to photoedit
    Add tag "group::miscellaneous" to ringprofile-app-data
    Add tag "group::miscellaneous" to textedit

commit e40782018d590e6c7c5d68f8f2cb15f3756d5e7b
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Sat Aug 2 22:45:40 2008 +0200

    [sudoku] Use SRCPV instead of SRCREV in the asu branch

commit 7982a0de0eabc929e8ed9abad430efe149995622
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Thu Jul 31 18:29:52 2008 +0800

    [pyefl-sudoku] Add Python EFL sudoku.
    A new project written by Erin.

commit 667e6f3c4ac56096912d3eb99cd333e1b3c1fbeb
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Thu Jul 31 19:04:21 2008 +0800

    [openmoko] Assassin need Tags.
    Add tag "group::communication" to openmoko-dates2




--- End Message ---
--- Begin Message ---
 classes/package_opk.bbclass                    |  318 ++++++++++++++++++++++++
 classes/rootfs_opk.bbclass                     |   94 +++++++
 conf/bitbake.conf                              |    2 +
 conf/distro/include/angstrom-package-opk.inc   |    5 +
 conf/distro/include/sane-srcrevs.inc           |    3 +-
 conf/distro/openmoko.conf                      |    5 +
 packages/openmoko-projects/pyefl-sudoku_svn.bb |    2 +-
 packages/opkg-utils/opkg-utils-native_svn.bb   |   17 ++
 packages/opkg-utils/opkg-utils.inc             |   29 +++
 9 files changed, 473 insertions(+), 2 deletions(-)

New commits:
commit 92caa6d1989628cc9671a1d7f1b9a62cbf6b9184
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Sat Aug 2 11:19:09 2008 +0200

    [packaging] Continue with the opk renaming
        - Use the right command to generate opk
        - Switch over package_opk and rootfs_opk

commit 2c153b27cfc3ff85960b8a2a20cb37c967248dc1
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Sat Aug 2 11:18:30 2008 +0200

    [opkg-utils] Add svn version of these tools

commit d20eabd35a73c733282071b0ed44cf0b10ac525b
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Sat Aug 2 01:05:05 2008 +0200

    [opk] First set of function name renaming

commit 3aa3d22a4b33165cc14473f24ba761872f45e41b
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Sat Aug 2 00:56:31 2008 +0200

    [opk] Prepare to switch over to the "opk" fileending
        - Allow to set ANGSTROM_PKG_FORMAT to "opk"
        - Copy the _ipk variants over

commit ffae6f3838adb7aeeffce84005da4e612a70762a
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Wed Jul 30 18:48:23 2008 +0200

    [srcrev] Upgrade Qtopia, two ATD related changes for testing
        - Ignore the result of ATD and go with %CPI...
        - Ignore NO CARRIER and other callNotifications in favor of %CPI

commit bf9c1dc06a66bbccf9d0a66bc76f322c56fd9282
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Sat Aug 2 22:45:40 2008 +0200

    [sudoku] Use SRCPV instead of SRCREV in the asu branch




--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to