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
commitlog-requ...@lists.openmoko.org
You can reach the person managing the list at
commitlog-ow...@lists.openmoko.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:
1. r4875 - developers/charlie/Wiki (char...@docs.openmoko.org)
2. Locations: Changes to 'master' (g...@git.openmoko.org)
3. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.stable'
(g...@git.openmoko.org)
4. Locations: Changes to 'master' (g...@git.openmoko.org)
5. r4876 - developers/werner/greg (wer...@docs.openmoko.org)
6. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
(g...@git.openmoko.org)
7. Openmoko's OpenEmbedded repository. This is used to build the
Openmoko distribution: Changes to 'org.openmoko.dev'
(g...@git.openmoko.org)
--- Begin Message ---
Author: charlie
Date: 2008-12-16 12:38:30 +0100 (Tue, 16 Dec 2008)
New Revision: 4875
Added:
developers/charlie/Wiki/Enlightenment
Modified:
developers/charlie/Wiki/OpenEmbedded
developers/charlie/Wiki/Work
Log:
Changes to personal wiki
Added: developers/charlie/Wiki/Enlightenment
===================================================================
--- developers/charlie/Wiki/Enlightenment (rev 0)
+++ developers/charlie/Wiki/Enlightenment 2008-12-16 11:38:30 UTC (rev
4875)
@@ -0,0 +1,25 @@
+
+
+* Enlightenment
+
+** Installing from source
+
+- Get the sources from svn
+- Compile and install all C libraries in that order :
+ - eina
+ - evas
+ - ecore
+ - embryo
+ - edje
+ - etk
+
+- Compile and install the python binding in that order:
+ - python-evas
+ - python-ecore
+ - python-edje
+ - python-etk
+
+To compile the python bindings we need to have cython AND pyrex
+installed ! The easier is to use the setup.py scripts.
+
+Then we can test python-etk from the example directory
Modified: developers/charlie/Wiki/OpenEmbedded
===================================================================
--- developers/charlie/Wiki/OpenEmbedded 2008-12-16 09:35:03 UTC (rev
4874)
+++ developers/charlie/Wiki/OpenEmbedded 2008-12-16 11:38:30 UTC (rev
4875)
@@ -33,6 +33,17 @@
arch charlie 51
+ To use local sources for oe bb fil. Use John technics :
+ build everything from git version, only until patch
+ bitbake -c patch tichy
+ go into the working dir, mv the 'git' directory
+ ln -s /home/charlie/Work/tichy git
+ and then
+ bitbake tichy
+
+ I can see the result into the image dir
+
+
** To use the conf from buildhost :
put this file : http://downloads.openmoko.org/build/testing/local.conf
in local/conf/
Modified: developers/charlie/Wiki/Work
===================================================================
--- developers/charlie/Wiki/Work 2008-12-16 09:35:03 UTC (rev 4874)
+++ developers/charlie/Wiki/Work 2008-12-16 11:38:30 UTC (rev 4875)
@@ -23,6 +23,7 @@
- [[Hardware]]
- [[OpenmokoToFix]]
+- [[Enlightenment]]
** Tools
- [[vi]]
--- End Message ---
--- Begin Message ---
src/tileman.c | 21 ++++++++++++++++-----
1 files changed, 16 insertions(+), 5 deletions(-)
New commits:
commit f68b1dc13f70431c50be7324c158714c1c5d52d3
Author: Chia-I Wu <olva...@gmail.com>
Date: Tue Dec 16 21:06:59 2008 +0800
[tileman] Fix tile reloading.
--- End Message ---
--- Begin Message ---
conf/distro/openmoko.conf | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
New commits:
commit cd512fd1e1aee5f4ba368d8acc1f2fb7a32773d3
Author: John Lee <john_...@openmoko.org>
Date: Tue Dec 16 21:28:46 2008 +0800
openmoko.conf: change feed to Om2008.8.
--- End Message ---
--- Begin Message ---
src/e_flyingmenu.c | 2 +-
src/e_nav_tileset.c | 26 +++++++++++++-------------
src/tileman.c | 2 +-
src/widgets/e_nav_button_bar.c | 2 +-
src/widgets/e_nav_list.c | 2 +-
5 files changed, 17 insertions(+), 17 deletions(-)
New commits:
commit ab84445675ce51898cef728826bb08f7e3483e88
Author: Chia-I Wu <olva...@gmail.com>
Date: Tue Dec 16 21:26:22 2008 +0800
Fix compilation warnings when ENABLE_DEBUG is 1.
commit 2cd53b4a7db333c0732608a933a089a9415c7b9a
Author: Chia-I Wu <olva...@gmail.com>
Date: Tue Dec 16 21:26:07 2008 +0800
[tileset] Always print map info.
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-12-16 22:56:18 +0100 (Tue, 16 Dec 2008)
New Revision: 4876
Added:
developers/werner/greg/ds.pl
Log:
Dumper for raw whitespace-separated hex bytes.
Added: developers/werner/greg/ds.pl
===================================================================
--- developers/werner/greg/ds.pl (rev 0)
+++ developers/werner/greg/ds.pl 2008-12-16 21:56:18 UTC (rev 4876)
@@ -0,0 +1,14 @@
+#!/usr/bin/perl
+
+
+while (<>) {
+ chop;
+ if (/([[:xdigit:]]{2}\s+){4,}/) {
+ push(@r, split /\s+/);
+ }
+}
+for ($i = 0; $i != 0x70; $i++) {
+ next if $i == 0x2c || $i == 0x51 || $i == 0x58 || $i == 0x6f;
+ push(@v, sprintf("%02x", $i), "0x".$r[$i]);
+}
+system("./greg pcf50633.greg ".join(" ", @v));
Property changes on: developers/werner/greg/ds.pl
___________________________________________________________________
Name: svn:executable
+ *
--- End Message ---
--- Begin Message ---
packages/openmoko-projects/tichy_git.bb | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
New commits:
commit 92c881f867ea71543fd6658164969c1bdb60e05d
Author: Guillaume Chereau <char...@openmoko.org>
Date: Wed Dec 17 11:38:57 2008 +0800
tichy_git.bb: fix bug
The previous recipe wouldn't install the files in /etc
--- End Message ---
--- Begin Message ---
conf/distro/include/sane-srcrevs.inc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
New commits:
commit 08e8537b8bb3904c96ae6e70a6ca13e67f078d13
Author: Jeremy Chang <jer...@openmoko.org>
Date: Wed Dec 17 15:56:04 2008 +0800
sane-srcrevs.inc: Bump up om-locations to the latest.
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog