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.stable'
([EMAIL PROTECTED])
2. r4562 - trunk/src/target/opkg/libopkg ([EMAIL PROTECTED])
3. r4562 - trunk/src/target/opkg/libopkg ([EMAIL PROTECTED])
4. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
([EMAIL PROTECTED])
5. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.asu.dev'
([EMAIL PROTECTED])
6. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
([EMAIL PROTECTED])
--- Begin Message ---
conf/distro/include/sane-srcrevs.inc | 8 ++++----
packages/freenote/freenote_1.12.0.bb | 5 +++--
packages/mono/mono_1.2.5.1.bb | 8 ++++----
packages/mono/mono_1.2.6.bb | 10 +++++-----
packages/mono/mono_svn.bb | 10 +++++-----
packages/nunome/nunome_1.0.2.bb | 8 ++++----
packages/python/python-efl.inc | 4 ++--
packages/xorg-xserver/xserver-xorg_cvs.bb | 4 +++-
8 files changed, 30 insertions(+), 27 deletions(-)
New commits:
commit 1bd26d7669ff75cade4ca26f50a0968e00c2ba4e
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Mon Jul 28 08:56:43 2008 +0200
[srcrev] Upgrade opkg to get fixes for memory management
New Stuff:
 fix double free issues.
 reduce memory leaks
 balance pointer reference count
commit bddd79cac3e1ec8146079b09cd515e05cc492cee
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Mon Jul 28 10:33:37 2008 +0200
[bashism] Move away from pushd/popd as it is only available for bash
commit 6e510c65a26b7426771fe3335e1eb87f5403de51
Author: <[EMAIL PROTECTED]>
Date: Tue May 20 22:51:32 2008 +0000
python-efl.inc: remove bashisms to make the Ubuntu crew happy
commit 9be30cb2dfc04a18043779ea9597e583cbf1db0f
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Mon Jul 28 19:14:54 2008 +0200
[srcrev] Upgrade Xglamo to get Xinerama fix needed for Qtopia
we specified --disable-xinerama but this was ignored and the
xinerama extension was always registered. This broke the
Qt QDesktopWidget and the menu placement.... let us see
what happens without the active xinerama config.
--- End Message ---
--- Begin Message ---
Author: tick
Date: 2008-07-29 16:07:05 +0200 (Tue, 29 Jul 2008)
New Revision: 4562
Modified:
trunk/src/target/opkg/libopkg/opkg.c
Log:
opkg: remove a serious memory leak
when searching every package opkg will clone the package but never
released.
Modified: trunk/src/target/opkg/libopkg/opkg.c
===================================================================
--- trunk/src/target/opkg/libopkg/opkg.c 2008-07-28 11:58:02 UTC (rev
4561)
+++ trunk/src/target/opkg/libopkg/opkg.c 2008-07-29 14:07:05 UTC (rev
4562)
@@ -564,6 +564,7 @@
if (pkg->state_status == SS_NOT_INSTALLED)
{
/* XXX: Error: Package seems to be not installed (STATUS =
NOT_INSTALLED). */
+ opkg_package_free (pdata.package);
return OPKG_PACKAGE_NOT_INSTALLED;
}
progress (pdata, 25);
@@ -639,6 +640,8 @@
/* opkg_upgrade_pkg returns the error codes of opkg_install_pkg */
if (err)
{
+
+ opkg_package_free (pdata.package);
switch (err)
{
case OPKG_INSTALL_ERR_NOT_TRUSTED: return OPKG_GPG_ERROR;
@@ -654,8 +657,10 @@
progress (pdata, 75);
err = opkg_configure_packages (opkg->conf, NULL);
- if (err)
+ if (err) {
+ opkg_package_free (pdata.package);
return OPKG_UNKNOWN_ERROR;
+ }
/* write out status files and file lists */
opkg_conf_write_status_files (opkg->conf);
@@ -906,6 +911,7 @@
package = old_pkg_to_new (pkg);
callback (opkg, package, user_data);
+ opkg_package_free (package);
}
pkg_vec_free (all);
@@ -950,6 +956,7 @@
{
package = old_pkg_to_new (new);
callback (opkg, package, user_data);
+ opkg_package_free (package);
}
}
--- End Message ---
--- Begin Message ---
Author: tick
Date: 2008-07-29 16:07:05 +0200 (Tue, 29 Jul 2008)
New Revision: 4562
Modified:
trunk/src/target/opkg/libopkg/opkg.c
Log:
opkg: remove a serious memory leak
when searching every package opkg will clone the package but never
released.
Modified: trunk/src/target/opkg/libopkg/opkg.c
===================================================================
--- trunk/src/target/opkg/libopkg/opkg.c 2008-07-28 11:58:02 UTC (rev
4561)
+++ trunk/src/target/opkg/libopkg/opkg.c 2008-07-29 14:07:05 UTC (rev
4562)
@@ -564,6 +564,7 @@
if (pkg->state_status == SS_NOT_INSTALLED)
{
/* XXX: Error: Package seems to be not installed (STATUS =
NOT_INSTALLED). */
+ opkg_package_free (pdata.package);
return OPKG_PACKAGE_NOT_INSTALLED;
}
progress (pdata, 25);
@@ -639,6 +640,8 @@
/* opkg_upgrade_pkg returns the error codes of opkg_install_pkg */
if (err)
{
+
+ opkg_package_free (pdata.package);
switch (err)
{
case OPKG_INSTALL_ERR_NOT_TRUSTED: return OPKG_GPG_ERROR;
@@ -654,8 +657,10 @@
progress (pdata, 75);
err = opkg_configure_packages (opkg->conf, NULL);
- if (err)
+ if (err) {
+ opkg_package_free (pdata.package);
return OPKG_UNKNOWN_ERROR;
+ }
/* write out status files and file lists */
opkg_conf_write_status_files (opkg->conf);
@@ -906,6 +911,7 @@
package = old_pkg_to_new (pkg);
callback (opkg, package, user_data);
+ opkg_package_free (package);
}
pkg_vec_free (all);
@@ -950,6 +956,7 @@
{
package = old_pkg_to_new (new);
callback (opkg, package, user_data);
+ opkg_package_free (package);
}
}
--- End Message ---
--- Begin Message ---
.../0001-Remove-Werror-from-build.patch | 45 +++++++++++++
...ecurity-cross-compile-cpu-detection-error.patch | 42 ++++++++++++
packages/mozilla/firefox-3.0.1/mozconfig | 66 ++++++++++++++++++++
packages/mozilla/firefox.inc | 5 +-
packages/mozilla/firefox_3.0.1.bb | 27 ++++++++
5 files changed, 183 insertions(+), 2 deletions(-)
New commits:
commit 75dc2954f8b1277660786b44ce651147f71be2a2
Author: Graeme Gregory <[EMAIL PROTECTED]>
Date: Tue Jul 29 21:18:16 2008 +0100
[firefox] working firefox for openmoko, from mamona with one fix from poky
--- End Message ---
--- Begin Message ---
conf/distro/include/sane-srcdates.inc | 2 +-
conf/distro/include/sane-srcrevs.inc | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 6dbd3aec0f5a48321a296244fa4cc97d4343b218
Author: Carsten Haitzler <[EMAIL PROTECTED]>
Date: Wed Jul 30 17:18:05 2008 +1000
new efl and illume versions - internal kbd now config option. code default
is
on, illume config ships with it off. also shoudl support being disabled if
real kbd is used (bt or usb).
commit 7bdfdc96de7d2b8692e015f71eb7075b495d58b9
Merge: 51006524ade81295ca91a13b401b747a7d3aa861
05cde60de26430fc5510515e37369190651aefa9
Author: Carsten Haitzler <[EMAIL PROTECTED]>
Date: Wed Jul 30 15:33:26 2008 +1000
Merge branch 'org.openmoko.asu.dev' of git+ssh://[EMAIL
PROTECTED]/var/cache/git/openmoko into org.openmoko.asu.dev
commit 51006524ade81295ca91a13b401b747a7d3aa861
Merge: aef1ebc6493c25642f0d5a21a7c3f620fea135da
41a9f56d2c5357b22e2d21a8a192564a3c7e1401
Author: Carsten Haitzler <[EMAIL PROTECTED]>
Date: Mon Jul 28 00:16:16 2008 +1000
Merge branch 'org.openmoko.asu.dev' of git+ssh://[EMAIL
PROTECTED]/var/cache/git/openmoko into org.openmoko.asu.dev
Conflicts:
conf/distro/include/sane-srcdates.inc
commit aef1ebc6493c25642f0d5a21a7c3f620fea135da
Author: Carsten Haitzler <[EMAIL PROTECTED]>
Date: Sun Jul 27 23:45:58 2008 +1000
up efl srcdate to get python-ecore api adds.
--- End Message ---
--- Begin Message ---
packages/linux/linux-openmoko-devel_git.bb | 2 +-
packages/linux/linux-openmoko.inc | 1 -
packages/linux/linux-openmoko_2.6.24+git.bb | 2 +-
3 files changed, 2 insertions(+), 3 deletions(-)
New commits:
commit c4e716c6845fcd384fd867f95eb5f71e96b9d77c
Author: Graeme Gregory <[EMAIL PROTECTED]>
Date: Wed Jul 30 09:39:44 2008 +0100
[linux-openmoko] fix bad merge that meant uImage didnt end up in
kernel-image
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog