Mokosuite2 on gitorious

2010-09-02 Thread Daniele Ricci
Greetings,
I've just published my work on gitorious.

http://gitorious.org/mokosuite2

The project for now is made up of appbunch (all the mokosuite2
applications) and mokowm-imf-ecore (the input method).
Eventually, the appbunch repository will be splitted for each
application inside, so making the development smoother.

On SHR-unstable both packages are already in feeds (mokosuite2 and
mokowm-imf-ecore), just install and reboot to try ;-)
Behind mokosuite there is a much bigger picture of what I want the
Freerunner to become. News will be soon.

SVN repository is not maintained anymore. It will remain there just
for historical reason (however commit logs are in italian, sorry).
-- 
daniele_athome

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: FOSDEM 2011

2010-09-02 Thread David Lanzendörfer
Hi folks,
Hi mickey

FOSDEM just released the call for dev-rooms.
(http://www.fosdem.org/2011/)
Ok. Let us have one ^_^

After our lucky mini-appereance which was
quite well received, I wonder whether anyone
would be interested in organizing
a combined SHR/FSO/? devroom for next year.
Jup.

I will not have enough time to take the wheel
on this, however I volunteer to do something
(presentation, workshop, whatever) should
we get the opportunity to have such a room.
Yes. Ok. I could take care of that.
Would just be cool to have you have a presentation.

Cheers,
:M:
dito
leviathan ;-D


signature.asc
Description: This is a digitally signed message part.
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


OpenWRT with WPA

2010-09-02 Thread W. B. Kranendonk
Hi List,

I am trying to use OpenWRT with my WPA access point. I can't figure out whether 
there's anything on board in the standard image to support WPA protected 
connections.

Opkg gives wpa_supplicant, but it is not available for Freerunner 
(architecture). The same goes for some other packages at openwrt, though it 
does update via the s3c24xx branch (/trunk?)[1]. 

Should I --force-architecture, if it were available in opkg? (I can't find it, 
though.) The architecture it does print is:
r...@openwrt:~# opkg print_installation_architecture
arch all 1
arch noarch 1
arch arm 10

If not, is the solution to compile wpa_supplicant on the Freerunner for 
OpenWRT? It seems at least libgcc is installed, but I do not see how to call 
it: make is not available for this architecture. 

Did anyone connect to a secured access point with OpenWRT on their Freerunner? 
How?


[1] http://downloads.openwrt.org/snapshots/trunk/s3c24xx/packages/Packages.gz


  

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [Android] Froyo (Android 2.2) on Freerunner????

2010-09-02 Thread Leonty Belskiy
Is'n Froyo supposed to be super-fast?
I it faster than Cupcake?

--
Leonty

On Wed, Sep 1, 2010 at 5:55 PM, Thomas HOCEDEZ thomas.hoce...@free.fr wrote:
 Le 01/09/2010 14:31, Atilla Filiz a écrit :

 AFAIK Serdar Dere is actively developing Android for FR, so I am sure the
 images are real. How (close to being)usable they are, that is to wonder.

 On Thu, Aug 5, 2010 at 5:06 PM, David Garabana Barro da...@garabana.com
 wrote:

 On Thursday 05 August 2010 16:52:24 Jan Girlich wrote:
  Am Donnerstag, den 05.08.2010, 16:42 +0200 schrieb David Garabana Barro:
   http://serdar-dere.net/~serdar/daily/
  
   Are these images real?
  
   Are there Android 2.2 images for Freeruner?
 
  I doubt these images are of any use (yet). Look at the filesizes.
  They're just about 7MB, way too small for a real image.

 Yes, but first one size is 67 MB.

 On the thread Nelson posted minutes ago, you can see they are real, but
 they
 only compile and boot. Not useful by the moment
 :)


 Hi !

 Of course the images are real (those  7Mo!). I flashed my FR with it, it
 boots, starts, and ... Worked !  Ok you have to be Really patient because of
 the slowlyness of the interface, but everything works !
 --

 Thomas HOCEDEZ / Asthro, Openmoko-fr.org

 ___
 Openmoko community mailing list
 community@lists.openmoko.org
 http://lists.openmoko.org/mailman/listinfo/community



___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


orrery crashing X

2010-09-02 Thread Benjamin Deering
Hello All,

I've missed having orrery this summer.  Today I took a look at why it 
was causing X to crash.  The crash happens when the program calls 
gdk_draw_point for every star it displays.  I changed my copy to draw 
all of the stars into a GdkPixbuf, then I copy the GdkPixbuf onto the 
drawable area.

Maybe someone knows why lots of gdk_draw_points would crash X.

I think using the GdkPixbuf is faster anyways, so I'll try to add this 
to the bug posted on the orrery project page.

Ben




--- orrery.c2009-11-30 00:59:44.0 -0500
+++ orrery/orrery.c2010-09-02 20:16:24.0 -0400
@@ -1188,6 +1188,7 @@
readStarCatalog(fD);
  showingFaintStars = FALSE;
}
+
nDarkGreyPoints = nGreyPoints = nWhitePoints = 0;
darkGreyLimit = DARK_GREY_LIMIT/magScale;
greyLimit = GREY_LIMIT/magScale;
@@ -1238,12 +1239,47 @@
  }
  currentEntry = currentEntry-forwardPointer;
}
-  if (nDarkGreyPoints  0)
-gdk_draw_points(pixmap, darkGreyGC, darkGreyPoints, nDarkGreyPoints);
-  if (nGreyPoints  0)
-gdk_draw_points(pixmap, greyGC, greyPoints, nGreyPoints);
-  if (nWhitePoints  0)
-gdk_draw_points(pixmap, whiteGC, whitePoints, nWhitePoints);
+  GdkPixbuf* starDrawingBuf = gdk_pixbuf_get_from_drawable( NULL,
+  
pixmap,
+  
gdk_colormap_get_system()
+  
, 0, 0, 0, 0, displayWidth, displayHeight);
+  g_assert (gdk_pixbuf_get_bits_per_sample (starDrawingBuf) == 8);
+  guchar* p;
+  int rowstride = gdk_pixbuf_get_rowstride (starDrawingBuf);
+  guchar* pixels = gdk_pixbuf_get_pixels (starDrawingBuf);
+  int n_channels = gdk_pixbuf_get_n_channels (starDrawingBuf);
+  GdkGCValues starGCval;
+  GdkColor starColor;
+  int pointNum;
+  gdk_gc_get_values(darkGreyGC, starGCval);
+  gdk_colormap_query_color( gdk_gc_get_colormap(darkGreyGC), 
starGCval.foreground.pixel, starColor );
+  for( pointNum = 0; pointNum  nDarkGreyPoints; pointNum++)
+  {
+p = pixels + darkGreyPoints[pointNum].y * rowstride + 
darkGreyPoints[pointNum].x * n_channels;
+ p[0] = starColor.red  0xff;
+ p[1] = starColor.green  0xff;
+ p[2] = starColor.blue  0xff;
+  }
+  gdk_gc_get_values(greyGC, starGCval);
+  gdk_colormap_query_color( gdk_gc_get_colormap(greyGC), 
starGCval.foreground.pixel, starColor );
+  for( pointNum = 0; pointNum  nGreyPoints; pointNum++)
+  {
+p = pixels + greyPoints[pointNum].y * rowstride + 
greyPoints[pointNum].x * n_channels;
+ p[0] = starColor.red  0xff;
+ p[1] = starColor.green  0xff;
+ p[2] = starColor.blue  0xff;
+  }
+  gdk_gc_get_values(whiteGC, starGCval);
+  gdk_colormap_query_color( gdk_gc_get_colormap(whiteGC), 
starGCval.foreground.pixel, starColor );
+  for( pointNum = 0; pointNum  nWhitePoints; pointNum++)
+  {
+p = pixels + whitePoints[pointNum].y * rowstride + 
whitePoints[pointNum].x * n_channels;
+ p[0] = starColor.red  0xff;
+ p[1] = starColor.green  0xff;
+ p[2] = starColor.blue  0xff;
+  }
+  gdk_draw_pixbuf ( pixmap , NULL , starDrawingBuf,
+0, 0, 0, 0, displayWidth, displayHeight, 
GDK_RGB_DITHER_NORMAL, 0, 0 ) ;
  }

  void makeTimeString(char *string)


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


barebox

2010-09-02 Thread Jeffrey Ratcliffe
I just stumbled across barebox[1], a successor to u-boot.

Anybody know anything about it?

Would it be useful for the FR?

Jeff

[1] http://www.barebox.org/

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community