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 tree for U-Boot: Changes to 'stable'
      ([EMAIL PROTECTED])
   2. development tree for U-Boot: Changes to 'andy'
      ([EMAIL PROTECTED])
   3. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
   4. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
   5. Production testing software for GTA02: Changes to 'master'
      ([EMAIL PROTECTED])
   6. Holger's qtopia repo: Changes to 'master' ([EMAIL PROTECTED])
--- Begin Message ---
 cpu/arm920t/start.S |   27 ++++++++++++++++++++++++++-
 1 files changed, 26 insertions(+), 1 deletions(-)

New commits:
commit 78b9f3d351436ef14fc38a96082bf9299a3932e9
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Sun May 18 12:55:48 2008 +0100

    add-find-wake-reason.patch
    
    Currently we don't take care about the resume reason.
    This patch captures it into the spare GSTATUS 4 register
    and so passes it up into Linux.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
 cpu/arm920t/start.S |   27 ++++++++++++++++++++++++++-
 1 files changed, 26 insertions(+), 1 deletions(-)

New commits:
commit 08cc78eb62fed6d6effc31df1fd3669756b5eae7
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Sun May 18 12:57:16 2008 +0100

    add-find-wake-reason.patch
    
    Currently we don't take care about the resume reason.
    This patch captures it into the spare GSTATUS 4 register
    and so passes it up into Linux.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
 arch/arm/mach-s3c2440/mach-gta02.c               |    5 +
 arch/arm/plat-s3c24xx/Makefile                   |    4 +-
 arch/arm/plat-s3c24xx/neo1973_pm_resume_reason.c |  134 ++++++++++++++++++++++
 drivers/i2c/chips/pcf50633.c                     |   80 +++++++++++++
 include/linux/pcf50633.h                         |    4 +
 5 files changed, 225 insertions(+), 2 deletions(-)

New commits:
commit 3ed7d4803f2cb881379b3a8901a0f0f406a37bd4
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Sun May 18 13:03:03 2008 +0100

    add-resume-reason-sysfs.patch
    
    If you have U-Boot with uboot-add-find-wake-reason.patch, this
    patch will get you a wake reason report from
    
    cat /sys/devices/platform/neo1973-resume.0/resume_reason
    
    it looks like this:
    
      EINT00_ACCEL1
      EINT01_GSM
      EINT02_BLUETOOTH
      EINT03_DEBUGBRD
      EINT04_JACK
      EINT05_WLAN
      EINT06_AUXKEY
      EINT07_HOLDKEY
      EINT08_ACCEL2
    * EINT09_PMU
        adpins
        adprem
        usbins
        usbrem
        rtcalarm
        second
        onkeyr
        onkeyf
        exton1r
        exton1f
        exton2r
        exton2f
        exton3r
        exton3f
      * batfull
        chghalt
        thlimon
        thlimoff
        usblimon
        usblimoff
        adcrdy
        onkey1s
        lowsys
        lowbat
        hightmp
        autopwrfail
        dwn1pwrfail
        dwn2pwrfail
        ledpwrfail
        ledovp
        ldo1pwrfail
        ldo2pwrfail
        ldo3pwrfail
        ldo4pwrfail
        ldo5pwrfail
        ldo6pwrfail
        hcidopwrfail
        hcidoovl
      EINT10_NULL
      EINT11_NULL
      EINT12_GLAMO
      EINT13_NULL
      EINT14_NULL
      EINT15_NULL
    
    This shows a problem, false wake from suspend due to battery full
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
 arch/arm/mach-s3c2440/mach-gta02.c |   20 +++++++++++++
 drivers/i2c/chips/pcf50633.c       |   28 ++++--------------
 drivers/i2c/chips/pcf50633.h       |   53 ----------------------------------
 include/linux/pcf50633.h           |   56 ++++++++++++++++++++++++++++++++++++
 4 files changed, 82 insertions(+), 75 deletions(-)

New commits:
commit 9c25aaf00b4f4c60147520a9b4a8e166b42b4ba2
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Sun May 18 13:35:08 2008 +0100

    fix-reduce-wake-reasons-in-pcf50633.patch
    
    Currently we are willing to wake from sleep from
    pcf50633 interrupts we don't actually do anything about
    even when we wake (somewhat puzzled).
    
    Let's disable some of these wake sources.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
 gta02-dm2/build               |    2 +
 gta02-dm2/data/flashnor_check |   48 +++++++++++++++++++++++++++++++++++++++++
 gta02-dm2/src/tests-gps.c     |    4 +-
 gta02-dm2/src/tests-gsm.c     |    6 ++--
 gta02-dm2/src/tests-version.c |   17 ++++++++++++-
 5 files changed, 70 insertions(+), 7 deletions(-)

New commits:
commit 9b8758cebe8ea978b606338348fe743f2debaab4
Author: Anthony Chang <[EMAIL PROTECTED]>
Date:   Mon May 19 09:10:55 2008 +0100

    Fix GSM for show PASS/FAIL, switch internal/external option for GPS, 
nor-flash waiting time
    
    gta02-dm2/src/tests-gps.c: switch internal/external option for test
    gta02-dm2/src/tests-gsm.c: show PASS/FAIL
    gta02-dm2/src/tests-version.c
    gta02-dm2/data/flashnor_check
    gta02-dm2/build
         compare NOR with file when burning before




--- End Message ---
--- Begin Message ---
 qtopiacore/qt/src/corelib/global/qnamespace.h      |    3 ++
 qtopiacore/qt/src/gui/kernel/qapplication_x11.cpp  |   23 +++++++++++++++++
 qtopiacore/qt/src/gui/kernel/qkeymapper_x11.cpp    |   26 ++++++++++++++++---
 qtopiacore/qt/src/gui/kernel/qwidget.cpp           |    8 ++++++
 qtopiacore/qt/src/gui/painting/qbackingstore.cpp   |    9 ++++--
 .../qmodemsupplementaryservices.cpp                |    8 ++++++
 6 files changed, 70 insertions(+), 7 deletions(-)

New commits:
commit 6b52394deeef660c40a317422c1a8749252ebe8d
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Sun May 18 19:34:46 2008 +0200

    [qt] Attempt to layout and paint only once on startup
        Delay resizing, layouting and painting after we know how big
        our window is going to be. Also only send a paintEvent if it
        makes sense to show it.
        For menus/popups we will never get a ConfigureNotify as we bypass
        the window manager with them so always attempt to paint popups.

commit 4f7df94616ffac06cc3927fd1d8c2dbf6de724af
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Sun May 18 16:12:53 2008 +0200

    [gsm] Look at CBS dcs and convert. Currenlty it takes only the default 
alphabet into account
        dcs is optional (QAtUtils::parseNumber could deserve an overload with a
        default parameter we have to assume 0 is default) and defaults to
        00001111 (15). In these two cases use the GSM codec to convert the 
string.

commit 10df646a9d07cb29f634b9f4a8c50f742a8cb6c5
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Sun May 18 00:36:16 2008 +0200

    [qt] Attempt to resize application windows only once
        Currently we get a ResizeEvent, a LayoutRequest and another ResizeEvent.
        This can be rather slow on the Neo1973. Disable the first ResizeEvent 
generated
        from QWidget and rely on getting a ConfigureNotify from the XServer.

commit 6f54075ffdf0b4868a39de6f90853241eac57b80
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Sat May 17 20:17:20 2008 +0200

    [qt] Key event compression and autorepeat reordered key events
        The illume keyboard is using the XTest extension to send a whole
        word as keyevents. The Qt code reordered a word like "aba" to "aab". 
This
        is due the usage of XCheckIfEvent and XPutBackEvent. XCheckIfEvent 
matched
        any event in the queue with the same window and keycode regardles of a 
key
        being inbetween and then put this event back to the head of the queue.
    
        Example for the keypress/release:
            order from x                : a, b, a
            reordering (XCheckIfEvent)  : a, b
            putback                     : a, a, b




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

Reply via email to