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. Openmoko's OpenEmbedded repository. This is used to build the
      Openmoko distribution: Changes to 'org.openmoko.asu.dev'
      ([EMAIL PROTECTED])
   2. Holger's qtopia repo: Changes to 'master' ([EMAIL PROTECTED])
   3. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
   4. Openmoko's OpenEmbedded repository. This is used to build the
      Openmoko distribution: Changes to 'org.openmoko.asu.dev'
      ([EMAIL PROTECTED])
   5. Openmoko's OpenEmbedded repository. This is used to build the
      Openmoko distribution: Changes to 'org.openmoko.asu.stable'
      ([EMAIL PROTECTED])
   6. Holger's qtopia repo: Changes to 'master' ([EMAIL PROTECTED])
   7. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
   8. development kernel tree: Changes to 'stable'
      ([EMAIL PROTECTED])
   9. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
--- Begin Message ---
 conf/distro/include/sane-srcdates.inc  |    2 +-
 conf/distro/include/sane-srcrevs.inc   |    4 ++--
 packages/djvulibre/djvulibre_3.5.20.bb |    9 +++------
 3 files changed, 6 insertions(+), 9 deletions(-)

New commits:
commit 8e4266001335d47d212971d2e76f21d4176377b9
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Tue Jul 22 11:58:05 2008 +0200

    [srcrev] Bump the illume rev to get a version that will use the Qtopia 
keyboard
        Do not create/show the illume keyboard. This is a special version from
        raster to allow upgrading of Qtopia. The Qtopia keyboard will be used 
and
        no other unmanaged keyboard will be on the screen.

commit 6db048f3484ad51c14a6537b5f8aac88bbd08b46
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Tue Jul 22 11:57:40 2008 +0200

    [srcdate] Bump the EFL version.

commit 0067eb5519be52eb628d9ffb88e253287f873aea
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Tue Jul 22 11:52:50 2008 +0200

    [djvulibre] Build without the Qt based viewer due the usage of Qtopia
        Due the usage of Qtopia we can not have another Qt/X11 in the
        build tree. The shlibs magic detects the proper installing of
        the qt4-x11-free libraries and we would end up with having two
        Qt versions installed in the rootfs which could cause all kind
        of weird errors.
    
        To enable this again the Qtopia buildsystem would need to be able
        to use the host version of Qt.




--- End Message ---
--- Begin Message ---
 etc/SystemRingTones/phonering.wav |  Bin
 1 files changed, 0 insertions(+), 0 deletions(-)

New commits:
commit c9304fb9c8d42aa39209e3b60c6daf1aa9c7a3f4
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Tue Jul 22 09:30:59 2008 +0200

    [ringtone] Use infobandit_phone.wav as ringtone
        This sounds a lot better on the neo even with a high volume.
    
        It is coming from freesound.org, created/uploaded by infobandit
        and called "phone". The work is licensed as Creative Commons Sampling
        Plus 1.0 License.
    
        http://www.freesound.org/samplesViewSingle.php?id=29621




--- End Message ---
--- Begin Message ---
 arch/arm/mach-s3c2440/mach-gta02.c |   32 ++++++++++++++---
 drivers/i2c/chips/pcf50633.c       |    2 +
 drivers/power/bq27000_battery.c    |   65 ++++++++++++++++++++++++-----------
 include/linux/bq27000_battery.h    |    2 +
 4 files changed, 74 insertions(+), 27 deletions(-)

New commits:
commit be65c7c61ab4ee15a54c27b3d692cb4d088bfa41
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 12:10:15 2008 +0100

    fix-bq27000-charger-state-tracking.patch
    
    Charger trigger stuff goes and asks for POWER_SUPPLY_PROP_STATUS
    to figure out what the charger state is.  But until now, we only
    reported there what we found out from HDQ, and the HDQ registers
    are not updated very often in the coulomb counter, it can be 4
    or more second lag before it tells us about what it experiences.
    
    When we react to USB insertion and only after 500ms debounce tell
    power_supply stuff that something changed, it most times will
    see old pre-USB-insertion state from bq27000 over HDQ at that time
    and will report it ain't charging, buggering up the LED trigger
    tracking.
    
    This patch maintains distance between bq27000 and pcf50633 by
    having platform callbacks in bq27000 that it can use to ask about
    definitive charger "online" presence and "activity", whether the
    charger says it is charging.  If these callbacks are implemented
    (and we implement them in this patch up in mach_gta02.c) then
    this information is used in preference to what is found from
    HDQ.
    
    Result is if you set the LED trigger like this:
    
    echo bat-charging > 
/sys/devices/platform/gta02-led.0/leds/gta02-aux:red/trigger
    
    then it lights up properly on USB insertion now, goes away on
    removal properly, as as far as I saw, when charging stops too.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit 208f69ea86274db7ed39b4d4119ed77b76bfb839
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 12:10:15 2008 +0100

    fix-pcf50633-move-charger-enable-decision-to-pcf50633_usb_curlim_set.patch
    
    At the moment we ended up enabling and disabling the charger
    at the time we service USBINS and USBREM events in the ISR.
    
    We did that in machine specific code, but really it is PMU
    specific decision, so this patch moves it into PMU code.
    
    We enabled and disabled the charge immediately we saw the
    interrupt event from PMU, yet we deferred setting charging
    state based on ID and USB enumeration until at least after a
    PMU ADC read that was handled in a second interrupt later.
    
    Now the timing is unified to after we determined the charger
    type and we enable and disable right there.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
 conf/distro/include/sane-srcrevs.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

New commits:
commit d081548f63a1e2fd414e29545e7b0749a2b3fe4f
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:13:09 2008 +0200

    [srcrev] Upgrade the kernel, SDCLK and various other fixes are included




--- End Message ---
--- Begin Message ---
 conf/checksums.ini                     |   76 ++++++++++++++++++++++++++++++++
 conf/distro/include/sane-srcrevs.inc   |    2 +-
 packages/djvulibre/djvulibre_3.5.20.bb |    9 +---
 3 files changed, 80 insertions(+), 7 deletions(-)

New commits:
commit d24bc12d1121610566d90d770cb882040232adc7
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:13:09 2008 +0200

    [srcrev] Upgrade the kernel, SDCLK and various other fixes are included

commit 1952a9dffb1b1ce4999f64d5413185d99e53d7a9
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date:   Tue Jul 22 11:52:50 2008 +0200

    [djvulibre] Build without the Qt based viewer due the usage of Qtopia
        Due the usage of Qtopia we can not have another Qt/X11 in the
        build tree. The shlibs magic detects the proper installing of
        the qt4-x11-free libraries and we would end up with having two
        Qt versions installed in the rootfs which could cause all kind
        of weird errors.
    
        To enable this again the Qtopia buildsystem would need to be able
        to use the host version of Qt.

commit eed610d37a18570441e0f711410d09350924c635
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:46:29 2008 +0800

    [checksum] Add checksum for asterisk-1.4.17

commit 4cd8b91fc58c15be036ef2bb48629766c859a26b
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:42:49 2008 +0800

    [checksum] Add checksum for qtopia-opensource-src-4.3.1.tar.gz
    qtopia-opensource-src-4.3.1.tar.gz is a file belongs package 
qtopia-phone_4.3.1

commit c3e0242e9c2d75f990044827dc1caf24ea966a72
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:32:51 2008 +0800

    [checksum] Add checksum for wxWidgets-2.8.7.tar.gz
    wxWidgets-2.8.7.tar.gz is a file belongs package wxwidgets_2.8.7

commit 86203fa56be0f13fc7775ba05849fd1abc08f96d
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:28:00 2008 +0800

    [checksum] Add checksum for tangoGPS-0.7.tar.gz
    tangoGPS-0.7.tar.gz is a file belongs package tangogps

commit ce6ee02f2669c92c4c4ce9fb2832b0034f03f30b
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:25:51 2008 +0800

    [checksum] Add checksum for SDL_net-1.2.7.tar.gz
    SDL_net-1.2.7.tar.gz is a file belongs package libsdl-net

commit 8f07fa4513f805152e5582cc55b8d47478ac4ca5
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:23:29 2008 +0800

    [checksum] Add checksum for x11vnc-0.9.3

commit 725901153f1fdc8a17a39082128207bae3f88e20
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:22:10 2008 +0800

    [checksum] Add checksum for poppler-0.6.4

commit 7d96e6a1bf9813ed91379cb2ff77baa92450ef61
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:19:47 2008 +0800

    [checksum] Add checksum for jamvm-1.5.1

commit b9963025642ca744936e1efda0bb92bd6096e94c
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:18:42 2008 +0800

    [checksum] Add checksum for swt-3.4M5-gtk-linux-x86.zip
    swt-3.4M5-gtk-linux-x86.zip is a file belongs packages swt3.4-gtk

commit 53131b313176c836037a5b833f76de64b53031d4
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:17:10 2008 +0800

    [checksum] Add checksum for gpe-filemanager-0.30

commit 811a07a59ea492e6ba4e3d7d8310f4969ac159ca
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:16:12 2008 +0800

    [checksum] Add checksum for synergy-1.3.1

commit 6eaa4e96cbdf4b5645d9536787232c20bb768477
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:15:13 2008 +0800

    [checksum] Add checksum for gpe-timesheet-0.32

commit 810a9e69464117c34dac576951aacfbaed33c435
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:14:14 2008 +0800

    [checksum] Add checksum for gnash-0.8.2

commit a04c1d59ec2571345340572f2817b85aa90f00e8
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:12:19 2008 +0800

    [checksum] Add checksum for midori-0.0.17

commit 80b66482bd1f79d59dc2b1cd6aeda79cf1cb07d7
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:07:36 2008 +0800

    [checksum] Add checksum for MPlayer-1.0rc2

commit 19408e31036c5d4085987bb3f8e566e1d5e004a4
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:06:37 2008 +0800

    [checksum] Add checksum for settingsgui-0.8

commit 2b710db94a8d3ee0d4d410aa12ee59b7ae6165a7
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 15:01:17 2008 +0800

    [checksum] Add checksum for nano-2.0.7

commit 17610836d4fdfc8c12373f6303bf352f42ceb71b
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 14:59:18 2008 +0800

    [checksum] Add checksum for free42.tgz
    free42.tgz is a file belongs package free42-vga

commit 1c962f5a9a12e87d9b00276214eba711e1167b93
Author: Julian_chu <[EMAIL PROTECTED]>
Date:   Tue Jul 22 14:56:05 2008 +0800

    [checksum] Add checksum for 42c_skins.tgz
    42c_skins.taz is a file belongs package free42-vga




--- End Message ---
--- Begin Message ---
 src/applications/addressbook/abeditor.cpp |   20 ++++++++++----------
 src/applications/addressbook/abeditor.h   |    4 ++--
 2 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit 4c51f80648b1eaa074922219d7ecb182b5f65b99
Author: Jeremy Chang <[EMAIL PROTECTED]>
Date:   Tue Jul 22 19:08:49 2008 +0800

    [AddressBook]  Disable per contact ringtone because we broke it with doing 
ringtone cache in RingControl.
    
        Modify the Macro from QTOPIA_TELEPHONY to QTOPIA_PER_CONTACT_RINGTONE.
        QTOPIA_PER_CONTACT_RINGTONE is not defined.




--- End Message ---
--- Begin Message ---
 drivers/mfd/glamo/glamo-mci.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

New commits:
commit 09095a892bfb2875b8dc70823499429080985942
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:13:29 2008 +0100

    fix-glamo-mci-set-default-drive-level-0.patch
    
    Tests on access to SD Card with Glamo drive level "0" show
    that it reduces SD_CLK energy at 1.5GHz by 24dBm compared to
    drive level 3.  This puts it only 6dB above the background
    noise floor compared to 30dB and should make a solution for
    GPS trouble with SD Card in.
    
    SD card communication seems unaffected so far on the Sandisk
    512MB card we ship.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
 arch/arm/mach-s3c2440/mach-gta02.c |   32 ++++++++++++++---
 drivers/i2c/chips/pcf50633.c       |    2 +
 drivers/mfd/glamo/glamo-mci.c      |    2 +-
 drivers/power/bq27000_battery.c    |   65 ++++++++++++++++++++++++-----------
 include/linux/bq27000_battery.h    |    2 +
 5 files changed, 75 insertions(+), 28 deletions(-)

New commits:
commit 66a83c97c4545ce4f07e0d90998f906fae49caf2
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:16:29 2008 +0100

    fix-glamo-mci-set-default-drive-level-0.patch
    
    Tests on access to SD Card with Glamo drive level "0" show
    that it reduces SD_CLK energy at 1.5GHz by 24dBm compared to
    drive level 3.  This puts it only 6dB above the background
    noise floor compared to 30dB and should make a solution for
    GPS trouble with SD Card in.
    
    SD card communication seems unaffected so far on the Sandisk
    512MB card we ship.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit 46159c9a3fba291d106625092fd62358548894e0
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:16:16 2008 +0100

    fix-bq27000-charger-state-tracking.patch
    
    Charger trigger stuff goes and asks for POWER_SUPPLY_PROP_STATUS
    to figure out what the charger state is.  But until now, we only
    reported there what we found out from HDQ, and the HDQ registers
    are not updated very often in the coulomb counter, it can be 4
    or more second lag before it tells us about what it experiences.
    
    When we react to USB insertion and only after 500ms debounce tell
    power_supply stuff that something changed, it most times will
    see old pre-USB-insertion state from bq27000 over HDQ at that time
    and will report it ain't charging, buggering up the LED trigger
    tracking.
    
    This patch maintains distance between bq27000 and pcf50633 by
    having platform callbacks in bq27000 that it can use to ask about
    definitive charger "online" presence and "activity", whether the
    charger says it is charging.  If these callbacks are implemented
    (and we implement them in this patch up in mach_gta02.c) then
    this information is used in preference to what is found from
    HDQ.
    
    Result is if you set the LED trigger like this:
    
    echo bat-charging > 
/sys/devices/platform/gta02-led.0/leds/gta02-aux:red/trigger
    
    then it lights up properly on USB insertion now, goes away on
    removal properly, as as far as I saw, when charging stops too.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit 2eab6880861e27126d059251f88de92ac3e75eb1
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:16:07 2008 +0100

    fix-pcf50633-move-charger-enable-decision-to-pcf50633_usb_curlim_set.patch
    
    At the moment we ended up enabling and disabling the charger
    at the time we service USBINS and USBREM events in the ISR.
    
    We did that in machine specific code, but really it is PMU
    specific decision, so this patch moves it into PMU code.
    
    We enabled and disabled the charge immediately we saw the
    interrupt event from PMU, yet we deferred setting charging
    state based on ID and USB enumeration until at least after a
    PMU ADC read that was handled in a second interrupt later.
    
    Now the timing is unified to after we determined the charger
    type and we enable and disable right there.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
Rebased ref, commits from common ancestor:
commit 455f4da9373af8d8234033342ee998db651bbdb5
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:17:15 2008 +0100

    fix-reote-install-for-ext3-only-sd.patch
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit 8d846e86d33f0413c2515069df339d08971a3cba
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:17:15 2008 +0100

    defconfig-nuke-cruft.patch
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit 2c64d189f6895f6bb3b69bbee94adf5d0baa0e3b
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:17:14 2008 +0100

    defconfig-kill-hxd8.patch
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit 4a41dbf54b697df60750db4c11ab4aa151054236
Author: Mike Westerhof <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:17:14 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 18da8f31da15bf0a23c4a75daacabc9bba0cbb43
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:17:13 2008 +0100

    test-touchscreen-median.patch
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit f0e56a2ee67b55ce1be4c58e27d0200d22d78b1b
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:17:13 2008 +0100

    config-touchscreen-filters.patch
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit 66a83c97c4545ce4f07e0d90998f906fae49caf2
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:16:29 2008 +0100

    fix-glamo-mci-set-default-drive-level-0.patch
    
    Tests on access to SD Card with Glamo drive level "0" show
    that it reduces SD_CLK energy at 1.5GHz by 24dBm compared to
    drive level 3.  This puts it only 6dB above the background
    noise floor compared to 30dB and should make a solution for
    GPS trouble with SD Card in.
    
    SD card communication seems unaffected so far on the Sandisk
    512MB card we ship.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit 46159c9a3fba291d106625092fd62358548894e0
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:16:16 2008 +0100

    fix-bq27000-charger-state-tracking.patch
    
    Charger trigger stuff goes and asks for POWER_SUPPLY_PROP_STATUS
    to figure out what the charger state is.  But until now, we only
    reported there what we found out from HDQ, and the HDQ registers
    are not updated very often in the coulomb counter, it can be 4
    or more second lag before it tells us about what it experiences.
    
    When we react to USB insertion and only after 500ms debounce tell
    power_supply stuff that something changed, it most times will
    see old pre-USB-insertion state from bq27000 over HDQ at that time
    and will report it ain't charging, buggering up the LED trigger
    tracking.
    
    This patch maintains distance between bq27000 and pcf50633 by
    having platform callbacks in bq27000 that it can use to ask about
    definitive charger "online" presence and "activity", whether the
    charger says it is charging.  If these callbacks are implemented
    (and we implement them in this patch up in mach_gta02.c) then
    this information is used in preference to what is found from
    HDQ.
    
    Result is if you set the LED trigger like this:
    
    echo bat-charging > 
/sys/devices/platform/gta02-led.0/leds/gta02-aux:red/trigger
    
    then it lights up properly on USB insertion now, goes away on
    removal properly, as as far as I saw, when charging stops too.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit 2eab6880861e27126d059251f88de92ac3e75eb1
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Tue Jul 22 13:16:07 2008 +0100

    fix-pcf50633-move-charger-enable-decision-to-pcf50633_usb_curlim_set.patch
    
    At the moment we ended up enabling and disabling the charger
    at the time we service USBINS and USBREM events in the ISR.
    
    We did that in machine specific code, but really it is PMU
    specific decision, so this patch moves it into PMU code.
    
    We enabled and disabled the charge immediately we saw the
    interrupt event from PMU, yet we deferred setting charging
    state based on ID and USB enumeration until at least after a
    PMU ADC read that was handled in a second interrupt later.
    
    Now the timing is unified to after we determined the charger
    type and we enable and disable right there.
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




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

Reply via email to