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. org.openmoko.dev: 1126507c60f8a235465edca0bfaed3c8ca438054
      ([EMAIL PROTECTED])
   2. org.openmoko.dev: 1126507c60f8a235465edca0bfaed3c8ca438054
      ([EMAIL PROTECTED])
   3. r4416 - in trunk/src/target/opkg: . libopkg
      ([EMAIL PROTECTED])
   4. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
   5. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
   6. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
   7. development kernel tree: Changes to 'andy-tracking'
      ([EMAIL PROTECTED])
   8. development kernel tree: Changes to 'andy' ([EMAIL PROTECTED])
   9. Holger's qtopia repo: Changes to 'master' ([EMAIL PROTECTED])
--- Begin Message ---
revision:            1126507c60f8a235465edca0bfaed3c8ca438054
date:                2008-05-08T10:26:16
author:              [EMAIL PROTECTED]
branch:              org.openmoko.dev
changelog:

Add exquisite - a psplash replacement for display.


manifest:
format_version "1"

new_manifest [522342fd6ae059673992a40c025f0a7cae956e1e]

old_revision [1f395771732dfbe5b682a89ef21633a20d441766]

add_file "packages/e17/exquisite_cvs.bb"
 content [5bae4f4f6c4c55398c20d8a547eed13ab205bc8f]
#
#
# add_file "packages/e17/exquisite_cvs.bb"
#  content [5bae4f4f6c4c55398c20d8a547eed13ab205bc8f]
#
============================================================
--- packages/e17/exquisite_cvs.bb       5bae4f4f6c4c55398c20d8a547eed13ab205bc8f
+++ packages/e17/exquisite_cvs.bb       5bae4f4f6c4c55398c20d8a547eed13ab205bc8f
@@ -0,0 +1,11 @@
+DESCRIPTION = "A psplash replacement for display"
+LICENSE = "MIT BSD"
+DEPENDS = "eet evas ecore embryo edje"
+PV = "0.0.1+cvs${SRCDATE}"
+PR = "r0"
+
+SRCNAME = "exquisite"
+
+inherit e
+
+EXTRA_OECONF = "--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc"

--- End Message ---
--- Begin Message ---
revision:            1126507c60f8a235465edca0bfaed3c8ca438054
date:                2008-05-08T10:26:16
author:              [EMAIL PROTECTED]
branch:              org.openmoko.dev
changelog:

Add exquisite - a psplash replacement for display.


manifest:
format_version "1"

new_manifest [522342fd6ae059673992a40c025f0a7cae956e1e]

old_revision [1f395771732dfbe5b682a89ef21633a20d441766]

add_file "packages/e17/exquisite_cvs.bb"
 content [5bae4f4f6c4c55398c20d8a547eed13ab205bc8f]
#
#
# add_file "packages/e17/exquisite_cvs.bb"
#  content [5bae4f4f6c4c55398c20d8a547eed13ab205bc8f]
#
============================================================
--- packages/e17/exquisite_cvs.bb       5bae4f4f6c4c55398c20d8a547eed13ab205bc8f
+++ packages/e17/exquisite_cvs.bb       5bae4f4f6c4c55398c20d8a547eed13ab205bc8f
@@ -0,0 +1,11 @@
+DESCRIPTION = "A psplash replacement for display"
+LICENSE = "MIT BSD"
+DEPENDS = "eet evas ecore embryo edje"
+PV = "0.0.1+cvs${SRCDATE}"
+PR = "r0"
+
+SRCNAME = "exquisite"
+
+inherit e
+
+EXTRA_OECONF = "--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc"

--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2008-05-08 13:37:04 +0200 (Thu, 08 May 2008)
New Revision: 4416

Modified:
   trunk/src/target/opkg/configure.ac
   trunk/src/target/opkg/libopkg/opkg.c
   trunk/src/target/opkg/libopkg/opkg.h
Log:
opkg: add more attributes to opkg_package_t


Modified: trunk/src/target/opkg/configure.ac
===================================================================
--- trunk/src/target/opkg/configure.ac  2008-05-08 08:25:20 UTC (rev 4415)
+++ trunk/src/target/opkg/configure.ac  2008-05-08 11:37:04 UTC (rev 4416)
@@ -1,6 +1,6 @@
 # Process this file with autoconf to produce a configure script
 AC_INIT(libopkg/libopkg.c)
-AM_INIT_AUTOMAKE([opkg], [0.1.1])
+AM_INIT_AUTOMAKE([opkg], [0.1.2])
 AM_CONFIG_HEADER(libopkg/config.h)
 
 AC_CANONICAL_HOST

Modified: trunk/src/target/opkg/libopkg/opkg.c
===================================================================
--- trunk/src/target/opkg/libopkg/opkg.c        2008-05-08 08:25:20 UTC (rev 
4415)
+++ trunk/src/target/opkg/libopkg/opkg.c        2008-05-08 11:37:04 UTC (rev 
4416)
@@ -45,7 +45,7 @@
             __FILE__, __LINE__, __PRETTY_FUNCTION__, # expr); abort (); }
 
 #define progress(d, p) d.percentage = p; if (progress_callback) 
progress_callback (opkg, &d, user_data);
-#define OLD_PKG_TO_NEW(pkg) opkg_package_new_with_values (pkg->name, 
pkg->version, pkg->architecture, pkg->description, pkg->tags, 
(pkg->state_status == SS_INSTALLED));
+#define OLD_PKG_TO_NEW(pkg) opkg_package_new_with_values (pkg->name, 
pkg->version, pkg->architecture, pkg->description, pkg->tags, pkg->url, 
(pkg->size ? atoi (pkg->size) : 0), (pkg->state_status == SS_INSTALLED));
 
 /** Private Functions ***/
 
@@ -145,7 +145,7 @@
 
 opkg_package_t *
 opkg_package_new_with_values (const char *name, const char *version,
-    const char *arch, const char *desc, const char *tags, int installed)
+    const char *arch, const char *desc, const char *tags, const char *url, int 
size, int installed)
 {
   opkg_package_t *package;
   package = opkg_package_new ();
@@ -157,6 +157,9 @@
   package->architecture = sstrdup (arch);
   package->description = sstrdup (desc);
   package->tags = sstrdup (tags);
+  package->url = sstrdup (url);
+
+  package->size = size;
   package->installed = (installed != 0);
 
   return package;
@@ -170,6 +173,7 @@
   free (p->architecture);
   free (p->description);
   free (p->tags);
+  free (p->url);
 
   free (p);
 }

Modified: trunk/src/target/opkg/libopkg/opkg.h
===================================================================
--- trunk/src/target/opkg/libopkg/opkg.h        2008-05-08 08:25:20 UTC (rev 
4415)
+++ trunk/src/target/opkg/libopkg/opkg.h        2008-05-08 11:37:04 UTC (rev 
4416)
@@ -37,6 +37,8 @@
   char *repository;
   char *description;
   char *tags;
+  char *url;
+  int size;
   int installed;
 };
 
@@ -48,7 +50,7 @@
 };
 
 opkg_package_t* opkg_package_new ();
-opkg_package_t* opkg_package_new_with_values (const char *name, const char 
*version, const char *arch, const char *desc, const char *tags, int installed);
+opkg_package_t* opkg_package_new_with_values (const char *name, const char 
*version, const char *arch, const char *desc, const char *tags, const char 
*url, int size, int installed);
 void opkg_package_free (opkg_package_t *package);
 
 opkg_t* opkg_new ();




--- End Message ---
--- Begin Message ---
 arch/arm/mach-s3c2440/mach-gta02.c |    8 ++++++
 defconfig-2.6.24                   |    4 +-
 drivers/i2c/chips/pcf50633.c       |   50 ++++++++++++++++++++++++++---------
 drivers/video/display/jbt6k74.c    |   11 +++++++-
 include/linux/jbt6k74.h            |    1 +
 include/linux/pcf50633.h           |    6 ++++
 6 files changed, 64 insertions(+), 16 deletions(-)

New commits:
commit a273e753d5397ee2b8c68c165b18a0baec290ebd
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Thu May 8 13:47:08 2008 +0100

    fix-force-backlight-down-in-suspend.patch
    
    This patch improves the smoothness of suspend and resume action.
    
    Taking out CONFIG_PM_DEBUG allows much more rapid resume (the low level
    serial traffic appears to be synchronous)
    
    Added a platform callback in jbt driver and support in pcf50633 so we
    can defer bringing up the backlight until the LCM is able to process
    video again (which must happen after the glamo is up and producing
    video beacuse the LCM is hooked to glamo SPI)
    
    GTA01 should not be affected by all this as the callback will default
    to null and it is on pcf50606
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
Rebased ref, commits from common ancestor:
commit e121a48f57b0c66622566412e2559ff43b0f60f4
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Thu May 8 13:49:23 2008 +0100

    fix-suspend-backlight-timing-pm-debug.patch
    
    This patch improves the smoothness of suspend and resume action.
    
    Taking out CONFIG_PM_DEBUG allows much more rapid resume (the low level
    serial traffic appears to be synchronous)
    
    Added a platform callback in jbt driver and support in pcf50633 so we
    can defer bringing up the backlight until the LCM is able to process
    video again (which must happen after the glamo is up and producing
    video beacuse the LCM is hooked to glamo SPI)
    
    GTA01 should not be affected by all this as the callback will default
    to null and it is on pcf50606
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
Rebased ref, commits from common ancestor:
commit 295e0a329c88d4c019a803f93422fa16417072ff
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Thu May 8 13:53:30 2008 +0100

    fix-suspend-backlight-timing-pm-debug.patch
    
    This patch improves the smoothness of suspend and resume action.
    
    Taking out CONFIG_PM_DEBUG allows much more rapid resume (the low level
    serial traffic appears to be synchronous)
    
    Added a platform callback in jbt driver and support in pcf50633 so we
    can defer bringing up the backlight until the LCM is able to process
    video again (which must happen after the glamo is up and producing
    video beacuse the LCM is hooked to glamo SPI)
    
    GTA01 should not be affected by all this as the callback will default
    to null and it is on pcf50606
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
 arch/arm/mach-s3c2440/mach-gta02.c |    8 ++++++
 defconfig-2.6.24                   |    4 +-
 drivers/i2c/chips/pcf50633.c       |   50 ++++++++++++++++++++++++++---------
 drivers/video/display/jbt6k74.c    |   12 ++++++++-
 include/linux/jbt6k74.h            |    3 +-
 include/linux/pcf50633.h           |    6 ++++
 6 files changed, 66 insertions(+), 17 deletions(-)

New commits:
commit aa1b06b60f509e691cbdee76443f2f8acd74a553
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Thu May 8 14:08:02 2008 +0100

    fix-suspend-backlight-timing-pm-debug.patch
    
    This patch improves the smoothness of suspend and resume action.
    
    Taking out CONFIG_PM_DEBUG allows much more rapid resume (the low level
    serial traffic appears to be synchronous)
    
    Added a platform callback in jbt driver and support in pcf50633 so we
    can defer bringing up the backlight until the LCM is able to process
    video again (which must happen after the glamo is up and producing
    video beacuse the LCM is hooked to glamo SPI)
    
    GTA01 should not be affected by all this as the callback will default
    to null and it is on pcf50606
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
Rebased ref, commits from common ancestor:
commit 53e9ca7eb9c0182ee88e9e8b5affb0f6c33b5e5f
Author: Andy Green <[EMAIL PROTECTED]>
Date:   Thu May 8 14:35:46 2008 +0100

    fix-suspend-backlight-timing-pm-debug.patch
    
    This patch improves the smoothness of suspend and resume action.
    
    Taking out CONFIG_PM_DEBUG allows much more rapid resume (the low level
    serial traffic appears to be synchronous)
    
    Added a platform callback in jbt driver and support in pcf50633 so we
    can defer bringing up the backlight until the LCM is able to process
    video again (which must happen after the glamo is up and producing
    video beacuse the LCM is hooked to glamo SPI)
    
    GTA01 should not be affected by all this as the callback will default
    to null and it is on pcf50606
    
    Signed-off-by: Andy Green <[EMAIL PROTECTED]>

commit abbac9254271c5794a52d87b36e696df4f8a1232
Author: matt_hsu <[EMAIL PROTECTED]>
Date:   Thu May 8 14:35:46 2008 +0100

    s3c24xx-pwm-platform-driver.patch
    
    This patch is to register pwm as platform driver to keep the PWM-related
    config when system is in suspend/resume. This could fix the following
    issue after resume:
    
    - HDQ read timeout
    - LEDs blinked abnormally(if LEDs is driven by PWM)
    
    Signed-off-by: Matt Hsu <[EMAIL PROTECTED]>

commit 8419826ec9d7cb2779acfc28451900bdb1251e2d
Author: Sean McNeil <[EMAIL PROTECTED]>
Date:   Thu May 8 14:35:45 2008 +0100

    fix-KEY_PHONE-up-down-inversion.patch
    
    the KEY_PHONE is backwards. It returns up when pushed and down when
    released. The following change fixes it:
    
    Signed-off-by: Sean McNeil <[EMAIL PROTECTED]>




--- End Message ---
--- Begin Message ---
 devices/ficgta01/configure                 |    1 +
 src/server/phone/smsstatusdbusexporter.cpp |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

New commits:
commit 341e1f0813d2b1044ca0fd2946b07d97733e2eaf
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Thu May 8 13:32:01 2008 +0200

    We are a product, do not built the launcher with the samples...

commit 40f674b0fa72f1b4bb2237977d9b424bbeef17fb
Author: Holger Freyther <[EMAIL PROTECTED]>
Date:   Thu May 8 13:30:37 2008 +0200

    [sms/dbus] Make the SMS ids strings as well. For loading a sms we have 
already used string identifiers




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

Reply via email to