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.dev'
([EMAIL PROTECTED])
2. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
([EMAIL PROTECTED])
3. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
([EMAIL PROTECTED])
4. r4460 - trunk/src/target/opkg/libopkg ([EMAIL PROTECTED])
5. r4461 - trunk/src/target/opkg/tests ([EMAIL PROTECTED])
6. Production testing software for GTA02: Changes to 'master'
([EMAIL PROTECTED])
7. r4462 - in trunk: . feeds feeds/community-repository
([EMAIL PROTECTED])
8. r4463 - trunk/feeds/community-repository ([EMAIL PROTECTED])
9. r4464 - trunk/feeds/community-repository ([EMAIL PROTECTED])
10. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
([EMAIL PROTECTED])
--- Begin Message ---
packages/tasks/task-openmoko-feed.bb | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
New commits:
commit f33972e86fefa7b1bdddf5b4d6c6073a2ff4b1e4
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Fri May 30 19:18:31 2008 +0800
[feed] remove qtopia-phone from task-openmoko-feed
--- End Message ---
--- Begin Message ---
packages/openmoko-projects/etk-theme-ninja_svn.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit a21e9315f2287e878df515b6694e6b69d87644f0
Author: Graeme Gregory <[EMAIL PROTECTED]>
Date: Fri May 30 14:13:34 2008 +0100
etk-theme-ninja_svn.bb : no need to confuse people by using https
--- End Message ---
--- Begin Message ---
.../ipkg-utils-native_1.6+cvs20050404.bb | 2 +-
.../ipkg-utils/ipkg-utils/ipkg-py-tarfile.patch | 40 +++++++++++---------
2 files changed, 23 insertions(+), 19 deletions(-)
New commits:
commit 0e8bc3d438d0d692aec427a35ad7dece1f96af3c
Merge: 9d67cb75bc24844be4e99abfc7699353026169c9
a21e9315f2287e878df515b6694e6b69d87644f0
Author: Graeme Gregory <[EMAIL PROTECTED]>
Date: Fri May 30 15:42:02 2008 +0100
Merge branch 'org.openmoko.dev' of /home/dp/openmoko/openmoko/ into
org.openmoko.dev
commit 9d67cb75bc24844be4e99abfc7699353026169c9
Author: Graeme Gregory <[EMAIL PROTECTED]>
Date: Fri May 30 15:41:46 2008 +0100
ipkg-utils-native_1.6+cvs20050404.bb : rejig patches to renable Size:
field in Packages
commit 531c4c5849f5a9c8fcaa66578ca21dedf5359013
Author: Graeme Gregory <[EMAIL PROTECTED]>
Date: Fri May 30 14:13:34 2008 +0100
etk-theme-ninja_svn.bb : no need to confuse people by using https
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2008-05-30 16:46:42 +0200 (Fri, 30 May 2008)
New Revision: 4460
Modified:
trunk/src/target/opkg/libopkg/opkg.c
Log:
opkg: run pre-install check before listing upgradable packages to ensure all
data is valid. Fixes bug 1433.
Modified: trunk/src/target/opkg/libopkg/opkg.c
===================================================================
--- trunk/src/target/opkg/libopkg/opkg.c 2008-05-29 14:00:11 UTC (rev
4459)
+++ trunk/src/target/opkg/libopkg/opkg.c 2008-05-30 14:46:42 UTC (rev
4460)
@@ -900,6 +900,9 @@
opkg_assert (opkg);
opkg_assert (callback);
+ /* ensure all data is valid */
+ pkg_info_preinstall_check (opkg->conf);
+
all = pkg_vec_alloc ();
pkg_hash_fetch_available (&opkg->conf->pkg_hash, all);
for (i = 0; i < all->len; i++)
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2008-05-30 17:12:24 +0200 (Fri, 30 May 2008)
New Revision: 4461
Modified:
trunk/src/target/opkg/tests/libopkg_test.c
Log:
opkg: add some command line arguments to libopkg_test
Modified: trunk/src/target/opkg/tests/libopkg_test.c
===================================================================
--- trunk/src/target/opkg/tests/libopkg_test.c 2008-05-30 14:46:42 UTC (rev
4460)
+++ trunk/src/target/opkg/tests/libopkg_test.c 2008-05-30 15:12:24 UTC (rev
4461)
@@ -1,6 +1,7 @@
#include <opkg.h>
#include <stdlib.h>
#include <stdio.h>
+#include <string.h>
opkg_package_t *find_pkg = NULL;
@@ -82,19 +83,13 @@
);
}
-int
-main (int argc, char **argv)
+
+void
+opkg_test (opkg_t *opkg)
{
- opkg_t *opkg;
+ int err;
opkg_package_t *pkg;
- int err;
-
- opkg = opkg_new ();
- opkg_set_option (opkg, "offline_root", "/tmp/");
-
- opkg_re_read_config_files (opkg);
-
err = opkg_update_package_lists (opkg, progress_callback, "Updating...");
printf ("\nopkg_update_package_lists returned %d (%s)\n", err, errors[err]);
@@ -132,6 +127,117 @@
err = opkg_upgrade_all (opkg, progress_callback, "Upgrading all...");
printf ("\nopkg_upgrade_all returned %d (%s)\n", err, errors[err]);
+}
+
+int
+main (int argc, char **argv)
+{
+ opkg_t *opkg;
+ opkg_package_t *pkg;
+ int err;
+
+ if (argc < 2)
+ {
+ printf ("Usage: %s command\n"
+ "\nCommands:\n"
+ "\tupdate - Update package lists\n"
+ "\tfind [package] - Print details of the specified package\n"
+ "\tinstall [package] - Install the specified package\n"
+ "\tupgrade [package] - Upgrade the specified package\n"
+ "\tlist upgrades - List the available upgrades\n"
+ "\tlist all - List all available packages\n"
+ "\tlist installed - List all the installed packages\n"
+ "\tremove [package] - Remove the specified package\n"
+ "\ttest - Run test script\n"
+ , basename (argv[0]));
+ exit (0);
+ }
+
+ opkg = opkg_new ();
+
+ opkg_set_option (opkg, "offline_root", "/tmp/");
+
+ opkg_re_read_config_files (opkg);
+
+ switch (argv[1][0])
+ {
+ case 'f':
+ pkg = opkg_find_package (opkg, argv[2], NULL, NULL, NULL);
+ if (pkg)
+ {
+ print_package (pkg);
+ opkg_package_free (pkg);
+ }
+ else
+ printf ("Package \"%s\" not found!\n", find_pkg->name);
+ opkg_package_free (pkg);
+ break;
+ case 'i':
+ err = opkg_install_package (opkg, argv[1], progress_callback,
"Installing...");
+ printf ("\nopkg_install_package returned %d (%s)\n", err, errors[err]);
+ break;
+
+ case 'u':
+ if (strlen (argv[1]) < 4)
+ printf ("");
+ if (argv[1][3] == 'd')
+ {
+ err = opkg_update_package_lists (opkg, progress_callback,
"Updating...");
+ printf ("\nopkg_update_package_lists returned %d (%s)\n", err,
errors[err]);
+ break;
+ }
+ else
+ {
+ if (argc < 3)
+ {
+ err = opkg_upgrade_all (opkg, progress_callback, "Upgrading all...");
+ printf ("\nopkg_upgrade_all returned %d (%s)\n", err, errors[err]);
+ }
+ else
+ {
+ err = opkg_upgrade_package (opkg, argv[2], progress_callback,
"Upgrading...");
+ printf ("\nopkg_upgrade_package returned %d (%s)\n", err,
errors[err]);
+ }
+ }
+ break;
+
+ case 'l':
+ if (argc < 3)
+ {
+ printf ("Please specify one either all, installed or upgrades\n");
+ }
+ else
+ {
+ switch (argv[2][0])
+ {
+ case 'u':
+ printf ("Listing upgradable packages...\n");
+ opkg_list_upgradable_packages (opkg,
package_list_upgradable_callback, NULL);
+ break;
+ case 'a':
+ printf ("Listing all packages...\n");
+ opkg_list_packages (opkg, package_list_callback, NULL);
+ printf ("\n");
+ break;
+ case 'i':
+ printf ("Listing installed packages...\n");
+ break;
+ default:
+ printf ("Unknown list option \"%s\"", argv[2]);
+ }
+ }
+ break;
+
+ case 'r':
+ err = opkg_remove_package (opkg, argv[2], progress_callback,
"Removing...");
+ printf ("\nopkg_remove_package returned %d (%s)\n", err, errors[err]);
+ break;
+
+ default:
+ printf ("Unknown command \"%s\"\n", argv[1]);
+ }
+
+
opkg_free (opkg);
return 0;
--- End Message ---
--- Begin Message ---
gta02-dm2/src/dm2.c | 26 +++++++++++++++++++++++---
gta02-dm2/src/tests-bluetooth.c | 6 ++++--
2 files changed, 27 insertions(+), 5 deletions(-)
New commits:
commit 0141c1de963694e339bb67d3f14a6c23447ff937
Author: Andy Green <[EMAIL PROTECTED]>
Date: Fri May 30 16:55:58 2008 +0100
fix-end-test-when-child-process-terminates.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
commit c98d9957ebed1771c777e66b3acdda469b80f866
Author: Andy Green <[EMAIL PROTECTED]>
Date: Fri May 30 16:11:35 2008 +0100
fix-hcitool-cmdline.patch
Signed-off-by: Andy Green <[EMAIL PROTECTED]>
--- End Message ---
--- Begin Message ---
Author: roh
Date: 2008-05-30 18:36:01 +0200 (Fri, 30 May 2008)
New Revision: 4462
Added:
trunk/feeds/
trunk/feeds/community-repository/
trunk/feeds/community-repository/file-index.txt
Log:
- add stub for community repository
- this file should later contain the list of tested and acknowledged files on
projects, which then get assembled into the community feed
Added: trunk/feeds/community-repository/file-index.txt
===================================================================
--- End Message ---
--- Begin Message ---
Author: roh
Date: 2008-05-30 19:42:03 +0200 (Fri, 30 May 2008)
New Revision: 4463
Modified:
trunk/feeds/community-repository/file-index.txt
Log:
- add test
Modified: trunk/feeds/community-repository/file-index.txt
===================================================================
--- trunk/feeds/community-repository/file-index.txt 2008-05-30 16:36:01 UTC
(rev 4462)
+++ trunk/feeds/community-repository/file-index.txt 2008-05-30 17:42:03 UTC
(rev 4463)
@@ -0,0 +1 @@
+/var/lib/gforge/download/siteadmin/community-repository/0.1/test.ipk
--- End Message ---
--- Begin Message ---
Author: roh
Date: 2008-05-30 20:22:03 +0200 (Fri, 30 May 2008)
New Revision: 4464
Modified:
trunk/feeds/community-repository/file-index.txt
Log:
testtest
Modified: trunk/feeds/community-repository/file-index.txt
===================================================================
--- trunk/feeds/community-repository/file-index.txt 2008-05-30 17:42:03 UTC
(rev 4463)
+++ trunk/feeds/community-repository/file-index.txt 2008-05-30 18:22:03 UTC
(rev 4464)
@@ -1 +1 @@
-/var/lib/gforge/download/siteadmin/community-repository/0.1/test.ipk
+/var/lib/gforge/download/siteadmin/community-repository/0.2/tangogps_0.9.0.3-r1_armv4t.ipk
--- End Message ---
--- Begin Message ---
conf/distro/include/moko-autorev.inc | 1 +
conf/distro/include/sane-srcdates.inc | 2 +-
conf/distro/include/sane-srcrevs.inc | 21 ++--
conf/distro/openmoko.conf | 6 +
conf/machine/om-gta02.conf | 6 +-
packages/dhcp/dhcp_3.0.2.bb | 1 +
packages/e17/e-wm/applications.menu | 13 ++-
packages/e17/e-wm_cvs.bb | 4 +-
packages/efl1/epsilon_cvs.bb | 4 +-
.../diversity-nav/switch-gps.patch | 35 +++++
packages/openmoko-projects/diversity-nav_svn.bb | 5 +-
packages/openmoko-projects/etk-theme-ninja_svn.bb | 1 -
packages/qtopia-phone/qtopia-phone-x11_4.3.1.bb | 149 ++++++++++++++------
packages/tasks/task-openmoko-qtopia-x11.bb | 4 +-
14 files changed, 182 insertions(+), 70 deletions(-)
New commits:
commit 8661eb4242d6119f35102ef1f8af92bcf1864244
Author: Graeme Gregory <[EMAIL PROTECTED]>
Date: Fri May 30 20:32:36 2008 +0100
[om-gta02] change the default .jffs2 file to be the summary version
.nosummary is now the old ordinary .jffs2 file
commit dcd8afd795f179dc9717d7ff205d341031061d5c
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Wed May 28 17:09:26 2008 +0800
[sane-srcrevs] Update Assassin to 141
commit fe89911b035a15b7cc8031d5fe14a2ee0825cb65
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Wed May 28 17:10:11 2008 +0800
[sane-srcrevs] Update opkg to 4452
Includes opkg, opkg-native, opkg-sdk
commit c92c8e76037bc1fdb84df08618aa98652396ba31
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Tue May 27 18:39:26 2008 +0800
[sane-srcrevs] update diversity-nav to 391
commit 6aed353b2551cdb3dc9afb5c2418095400d5f1ef
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Tue May 27 12:27:11 2008 +0200
[srcdate] Bump the EFL SRCDATE to the 28th of May
We want the embryo_time.c fix to have the timezone fixes. The issue is
that now it is the 27th of May. So we set the date to the future which
means
people checking out now and tomorrow will get different sources.
There is no way to avoid this. Adding a time to the SRCDATE would
create a new
pile of issues (in regard to upgrading...)
commit de0704982e66f13594450d9a4936a865c3dc72c2
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Tue May 27 11:04:34 2008 +0200
[srcrev] Build a more recent version of illume
commit 7ff67720a036dbbb1dbdfbbc891281bbe118fbdc
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Tue May 27 16:12:02 2008 +0800
[diversity] Add patch to diversity-nav
new file: packages/openmoko-projects/diversity-nav/switch-gps.patch
commit 6c0f3483aced5259f049cce277a166a27a1cab7c
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Tue May 27 11:00:57 2008 +0200
[srcrev] Add revs for the etk ninja theme
commit 2575856dafe9d8015c374d97d64e7f090127bfec
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Tue May 27 00:06:04 2008 +0200
[qtopia] Increase the Qtopia version
- Suspend fixes (blind fix)
- Missed call fixes... (blind fix)
commit fd1e6e3b0c91561fcdc805c3b40ae5c42b9518e9
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Tue May 27 00:03:16 2008 +0200
NO AUTOREV!
commit dc45b9986b4f09dc45e23a9becb7d9fe0c391d77
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Mon May 26 19:42:18 2008 +0200
[qtopia] More recent version to get the life-cycle of Qtopia fixed
This makes Qtopia quit its' apps when illume is asking the
app to die.
commit 16c4e5fb9b090f22a48a2bf36a12355cffebbd20
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Mon May 26 15:54:10 2008 +0200
[sane-srcrevs] Upgrade the kernel to the latest stable one
commit 602594514e33dc72ef64b33c63c645e85e659e7a
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Mon May 26 15:34:11 2008 +0200
[openmoko] Install a small hint when a certain image was built and what was
used
Inspired by tick add some image postprocessing to put a file containing:
- machine name
- the build date
- the git revision of the metadata
I didn't want to change angstrom-version and DISTRO_VERSION to get this
package
recreated everytime a new build is starting. I think the usage of the
post
processing command is better.
commit 55aabe78ae17a0a28a7b1f0d2190eb50062a9eaf
Author: Carsten Haitzler (raster <[EMAIL PROTECTED]>
Date: Mon May 26 12:34:52 2008 +1000
up illume to rev 98 - new config and config icons filtered out.
commit 0de0d222ce733e09ab83eb781b01bc23b6bc8287
Author: Carsten Haiztler <[EMAIL PROTECTED]>
Date: Thu May 22 13:39:57 2008 +1000
upstream epsilon no-longer need imlib2. deprecation time as a dependency.
commit 65c8c716d7e4f89bab8c1ccfde64efc11cae049d
Author: Carsten Haiztler <[EMAIL PROTECTED]>
Date: Thu May 22 09:54:26 2008 +1000
fix build to call 'make links' so dhcp compiles.
commit 59fba4eaaa257f9e89df0540ed8ff06cfb5a9979
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Mon May 26 00:26:31 2008 +0200
[qtopia] Upgrade and adjust packaging. More icons for Qtopia
commit 10258792f173ea44ef733a6645e2faaf0838226a
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Sun May 25 23:12:58 2008 +0200
[e-wm] Do not show System;Settings categories for ASU/illume
illume will show System;Settings; in the configuration menu. There is no
need to duplicate this in the main display.
commit 1fe19f651211ffd38400cb7fe3ff38e6643c5c08
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Mon May 26 20:08:09 2008 +0800
[sane-srcrevs] Update diversity-daemon to 386
Update diversity-nav to 388
commit c2563ddf4c559f7841126a0d020b949d14cbcea0
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Mon May 26 16:17:23 2008 +0800
Add etk-theme-ninja into image
modified: packages/tasks/task-openmoko-qtopia-x11.bb
commit 7798dd572f5af7745973b2acb586f2c2115c167e
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Sun May 25 22:01:08 2008 +0800
[sane-srcrevs] Update assassin to 135
commit 83a64086c9a9ea7b65b76f92f74ed265c2c26fee
Author: Julian_chu <[EMAIL PROTECTED]>
Date: Sun May 25 21:59:48 2008 +0800
[sane-srcrevs] Update opkg, opkg-native, opkg-sdk to 4448
commit 38296eb3dd06b9423babb0d233d9cc70adefd9cd
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Sun May 25 12:51:52 2008 +0200
[sane-srcrev] Update illume and efl
commit 3b32661e45e89d9e4bc1f379f86cdc4dcfc4df5f
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Sat May 24 19:32:16 2008 +0200
[qtopia] Update Qtopia to get better icons for illume
commit 97de5b4be64b50e65e5ea42bc1a72c7d99153841
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Sat May 24 17:48:42 2008 +0200
[qtopia] Do not install the qtopia-qasteroids.desktop as we don't have a
binary for that
- Do not install the .desktop file for qasteroids as it is not built
- We could move the installation of fdo .desktop files into the qtopia
buildsystem but
besides a bit more correctness it would not buy us anything and I
prefer to not touch
the buildsystem
- Not bumping the PR, r23 is not in the wild yet.
commit 5d659f1d12cc35da0566faeded8079b749b786c9
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Sat May 24 16:48:59 2008 +0200
qtopia-phone-x11_4.3.1.bb : Upgrade Qtopia and make it work with png AND/OR
jpg images
Whatever we use for the pixmaps images in Qtopia (png or jpeg) they will
be installed and packaged.
commit 02d7eaeeaea9d66a967039a83dbcb2e56053a83b
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Fri May 23 19:53:49 2008 +0200
[qtopia] The -app-data packages depend on the actual application
commit 3f6e54fca847159e9e13438a86c12ae1b79ef87c
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Fri May 23 17:47:24 2008 +0200
qtopia-phone-x11_4.3.1.bb : Update Qtopia, build a version with timezone
fixes
commit 1c1bcef5b7b3fb01f3f0d02e676cf1ef578bd08e
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Fri May 23 17:46:37 2008 +0200
[openmoko] Do not install the callhistory icon, it can be reached from the
dialer
commit 9f95120ec47b923e3a1028057e3b6724c1627c08
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Fri May 23 17:46:08 2008 +0200
e-wm_cvs.bb : Install the applications.menu as config file
commit c19a34228944899f842e44b78e58ef2df0d68640
Author: Holger Hans Peter Freyther <[EMAIL PROTECTED]>
Date: Fri May 23 13:38:34 2008 +0200
[qtopia] Fix packaging and install the application icons again
- The upstream icons got renamed from png to jpg
- The upstream icons gained a -screenshot variant
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog