<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.openmoko.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.openmoko.org/api.php?action=feedcontributions&amp;user=Phyce&amp;feedformat=atom</id>
		<title>Openmoko - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.openmoko.org/api.php?action=feedcontributions&amp;user=Phyce&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Special:Contributions/Phyce"/>
		<updated>2013-05-19T10:05:44Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.6</generator>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Android_on_Freerunner</id>
		<title>Android on Freerunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Android_on_Freerunner"/>
				<updated>2009-01-01T16:25:48Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Status */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Android on Freerunner}}&lt;br /&gt;
== Android on Freerunner ==&lt;br /&gt;
Google has released their open source version of the Android phone software distribution. In order to use it on the Freerunner, a number of patches need to be applied and a compiler with armv4 java exception support needs to be used to compile the software.&lt;br /&gt;
&lt;br /&gt;
== Compiler suite ==&lt;br /&gt;
&lt;br /&gt;
Android is a little picky about the version of gcc compiler. It also requires some java exception support that isn't available for armv4 without a minor modification. The following tools are what I use to build Android:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Binutils 2.18 ===&lt;br /&gt;
&lt;br /&gt;
At one time I had some armv5t code that was compiled into Android which would cause the linker to generate these blx instructions which fail on armv4. I'm not sure if this is still necessary, but I still have the following change applied to binutils:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
diff -urN binutils-2.18-orig/bfd/elf32-arm.c binutils-2.18/bfd/elf32-arm.c&lt;br /&gt;
--- binutils-2.18-orig/bfd/elf32-arm.c	2007-08-07 02:59:23.000000000 +0700&lt;br /&gt;
+++ binutils-2.18/bfd/elf32-arm.c	2008-03-15 11:30:17.000000000 +0700&lt;br /&gt;
@@ -3093,8 +3093,8 @@&lt;br /&gt;
 static void check_use_blx(struct elf32_arm_link_hash_table *globals)&lt;br /&gt;
 {&lt;br /&gt;
   if (bfd_elf_get_obj_attr_int (globals-&amp;gt;obfd, OBJ_ATTR_PROC,&lt;br /&gt;
-				Tag_CPU_arch) &amp;gt; 2)&lt;br /&gt;
-    globals-&amp;gt;use_blx = 1;&lt;br /&gt;
+				Tag_CPU_arch) &amp;gt;= TAG_CPU_ARCH_V5T)&lt;br /&gt;
+    globals-&amp;gt;use_blx = 0;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 bfd_boolean&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure --prefix={devel path}/android/cross --target=arm-eabi&lt;br /&gt;
&lt;br /&gt;
=== gcc 4.2.4 with gcc41-java-arm4.patch ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure   --prefix={devel path}/android/cross --target=arm-eabi --with-arch=armv4t --enable-shared --enable-threads --disable-nls --disable-libmudflap --enable-target-optspace --with-abi=aapcs --enable-multilib --disable-libssp --disable-libstdcxx --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
=== java-6-sun ===&lt;br /&gt;
&lt;br /&gt;
This is the standard Linux package available for most (all?) distributions.&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
&lt;br /&gt;
Coming soon. I've posted a number of them on the devel mailing list so far. Eventually, I expect to provide everything necessary for people to build Android for themselves.&lt;br /&gt;
&lt;br /&gt;
== Android on internal flash ==&lt;br /&gt;
&lt;br /&gt;
=== Images ===&lt;br /&gt;
&lt;br /&gt;
To use the Kernel you have to either :&lt;br /&gt;
&lt;br /&gt;
* adjust your [[Uboot]] environment to support a Kernel of more then 2 MB &lt;br /&gt;
* change to the [[Qi]] Bootloader. It supports 2MB kernels out of the box.&lt;br /&gt;
&lt;br /&gt;
I have placed an older 2.6.26 kernel with Android support at:&lt;br /&gt;
&lt;br /&gt;
    [http://people.openmoko.org/sean_mcneil/uImage-android uImage-android]&lt;br /&gt;
&lt;br /&gt;
I have put up a jffs2 image that replaces rootfs on the Freerunner at:&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/androidfs.jffs2 androidfs.jffs2]&lt;br /&gt;
&lt;br /&gt;
=== Installation on internal flash ===&lt;br /&gt;
&lt;br /&gt;
As noted above, this installation requires you to wipe out the existing kernel and rootfs in NAND on your Freerunner. You also must have an SDCARD and it needs to be configured with two (2) primary partitions: First is VFAT/MSDOS (16 or 32) which acts as the /sdcard storage area for pictures, movies, music, etc. and the Second is an ext3 primary partition for use of internal Android /data area to store settings, caches, etc.&lt;br /&gt;
&lt;br /&gt;
The first thing I suggest is to setup an SDCARD. You can flash the NAND first, but you must have an SDCARD with two partitions as stated before you'll be able to boot. I use a 2GB card which I have split in half. fdisk shows me:&lt;br /&gt;
&lt;br /&gt;
    /dev/mmcblk0p1               1        2454      996310    6  FAT16&amp;lt;br&amp;gt;&lt;br /&gt;
    /dev/mmcblk0p2            2455        4908      996324   83  Linux&lt;br /&gt;
&lt;br /&gt;
formatted as&lt;br /&gt;
&lt;br /&gt;
    sudo mkfs.vfat /dev/mmcblk0p1&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo mkfs.ext3 /dev/mmcblk0p2&lt;br /&gt;
&lt;br /&gt;
There is no need to populate the ext3 partition at all. The VFAT partition can be populated with media content if you so desire.&lt;br /&gt;
&lt;br /&gt;
With your SDCARD all set, you are ready to flash the kernel and rootfs:&lt;br /&gt;
&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a kernel -D uImage-android&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a rootfs -D androidfs.jffs2&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Android on SDcard ==&lt;br /&gt;
&lt;br /&gt;
Some notes about booting android from sdcard : &lt;br /&gt;
&lt;br /&gt;
=== Setup ===&lt;br /&gt;
&lt;br /&gt;
* Build android from source. See [http://trac.koolu.org/ koolu website] for directions.&lt;br /&gt;
* Use the first script in [http://lists.openmoko.org/pipermail/community/2008-December/036982.html this mail] (adapt to your filesystem) to stage your android install.&lt;br /&gt;
* copy the contents of this directory on a ext3 partition on your sdcard.&lt;br /&gt;
* add a /boot directory on your sdcard.&lt;br /&gt;
* copy the uImage-android kernel (see above) and copy it inside your /boot with the exact name '''uImage-GTA02.bin'''&lt;br /&gt;
* I changed the init.rc (in your root on the sd) to remove mounts that could be problematic (/data for example) :&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--- filesystem/root/init.rc	2008-12-15 17:51:14.000000000 +0100&lt;br /&gt;
+++ phyce.init.rc	2008-12-19 15:56:25.000000000 +0100&lt;br /&gt;
@@ -24,7 +24,7 @@&lt;br /&gt;
     mkdir /sqlite_stmt_journals 01777 root root&lt;br /&gt;
     mount tmpfs tmpfs /sqlite_stmt_journals size=4m&lt;br /&gt;
 &lt;br /&gt;
-    mount rootfs rootfs / ro remount&lt;br /&gt;
+    mount rootfs rootfs / rw remount&lt;br /&gt;
 &lt;br /&gt;
     write /proc/sys/kernel/panic_on_oops 1&lt;br /&gt;
     write /proc/sys/kernel/hung_task_timeout_secs 0&lt;br /&gt;
@@ -38,14 +38,14 @@&lt;br /&gt;
 #    mount yaffs2 mtd@system /system ro remount&lt;br /&gt;
 &lt;br /&gt;
     # We chown/chmod /data again so because mount is run as root + defaults&lt;br /&gt;
-    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
-    chown system system /data&lt;br /&gt;
-    chmod 0771 /data&lt;br /&gt;
+#    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
+#    chown system system /data&lt;br /&gt;
+#    chmod 0771 /data&lt;br /&gt;
 &lt;br /&gt;
     # Same reason as /data above&lt;br /&gt;
-    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
-    chown system cache /cache&lt;br /&gt;
-    chmod 0770 /cache&lt;br /&gt;
+#    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
+#    chown system cache /cache&lt;br /&gt;
+#    chmod 0770 /cache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install [[Qi]] on you NAND flash. You can still boot whatever distro you've got on internal flash using the NOR bootloader. You should try the magic file in /boot to show kernel messages.&lt;br /&gt;
* boot the GTA02, and pray.&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
&lt;br /&gt;
Android boots and graphic UI appears (hurray) ! But, i cannot unlock my SIM so I can't tell more ;) Maybe you wanna try to remove PIN protection in your SIM (using another phone) and see what happens next.&lt;br /&gt;
&lt;br /&gt;
[[User:Phyce|Phyce]] 16:25, 1 January 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Android Debug Bridge ==&lt;br /&gt;
&lt;br /&gt;
To assist in debugging and to gain shell access to the phone with Android, you can use&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/adb adb]&lt;br /&gt;
&lt;br /&gt;
You should be able to connect to the phone as long as you start it up with the USB connected to your host. I don't think it will work if you plug it in after starting. Of course, you need to setup [[USB_Networking]] (&amp;lt;tt&amp;gt;ifconfig usb0&amp;lt;/tt&amp;gt; ...) on your host before connecting.&lt;br /&gt;
&lt;br /&gt;
Some helpful commands are:&lt;br /&gt;
&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat           - like a tail -f of the android log&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat -b radio  - same as above for the radio logs&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb shell            - bring up a command shell to the phone&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb kill-server      - kill the background server on the host&lt;br /&gt;
&lt;br /&gt;
Sometimes, adb gets stuck: if you cannot to the device run &amp;quot;adb kill-server&amp;quot; before trying other commands.&lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
&lt;br /&gt;
This version of the linux kernel will not successfully wake from suspend mode. Your battery life will be significantly lowered because of this and the phone will lock up unless you setup the phones screen timeout to never.&lt;br /&gt;
&lt;br /&gt;
This version of the kernel also uses a keypad hack. The buttons layout is as follows:&lt;br /&gt;
&lt;br /&gt;
    Aux left-hand upper button is the &amp;quot;back&amp;quot; key.&lt;br /&gt;
    Power button is:&lt;br /&gt;
        menu button when pushed quickly,&lt;br /&gt;
        end button when held for more than a second and released,&lt;br /&gt;
        power-off if held for 10 seconds.&lt;br /&gt;
[[category|Distribution]]&lt;br /&gt;
[[Category:Flashing Openmoko]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Android_on_Freerunner</id>
		<title>Android on Freerunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Android_on_Freerunner"/>
				<updated>2009-01-01T16:22:41Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Setup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Android on Freerunner}}&lt;br /&gt;
== Android on Freerunner ==&lt;br /&gt;
Google has released their open source version of the Android phone software distribution. In order to use it on the Freerunner, a number of patches need to be applied and a compiler with armv4 java exception support needs to be used to compile the software.&lt;br /&gt;
&lt;br /&gt;
== Compiler suite ==&lt;br /&gt;
&lt;br /&gt;
Android is a little picky about the version of gcc compiler. It also requires some java exception support that isn't available for armv4 without a minor modification. The following tools are what I use to build Android:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Binutils 2.18 ===&lt;br /&gt;
&lt;br /&gt;
At one time I had some armv5t code that was compiled into Android which would cause the linker to generate these blx instructions which fail on armv4. I'm not sure if this is still necessary, but I still have the following change applied to binutils:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
diff -urN binutils-2.18-orig/bfd/elf32-arm.c binutils-2.18/bfd/elf32-arm.c&lt;br /&gt;
--- binutils-2.18-orig/bfd/elf32-arm.c	2007-08-07 02:59:23.000000000 +0700&lt;br /&gt;
+++ binutils-2.18/bfd/elf32-arm.c	2008-03-15 11:30:17.000000000 +0700&lt;br /&gt;
@@ -3093,8 +3093,8 @@&lt;br /&gt;
 static void check_use_blx(struct elf32_arm_link_hash_table *globals)&lt;br /&gt;
 {&lt;br /&gt;
   if (bfd_elf_get_obj_attr_int (globals-&amp;gt;obfd, OBJ_ATTR_PROC,&lt;br /&gt;
-				Tag_CPU_arch) &amp;gt; 2)&lt;br /&gt;
-    globals-&amp;gt;use_blx = 1;&lt;br /&gt;
+				Tag_CPU_arch) &amp;gt;= TAG_CPU_ARCH_V5T)&lt;br /&gt;
+    globals-&amp;gt;use_blx = 0;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 bfd_boolean&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure --prefix={devel path}/android/cross --target=arm-eabi&lt;br /&gt;
&lt;br /&gt;
=== gcc 4.2.4 with gcc41-java-arm4.patch ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure   --prefix={devel path}/android/cross --target=arm-eabi --with-arch=armv4t --enable-shared --enable-threads --disable-nls --disable-libmudflap --enable-target-optspace --with-abi=aapcs --enable-multilib --disable-libssp --disable-libstdcxx --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
=== java-6-sun ===&lt;br /&gt;
&lt;br /&gt;
This is the standard Linux package available for most (all?) distributions.&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
&lt;br /&gt;
Coming soon. I've posted a number of them on the devel mailing list so far. Eventually, I expect to provide everything necessary for people to build Android for themselves.&lt;br /&gt;
&lt;br /&gt;
== Android on internal flash ==&lt;br /&gt;
&lt;br /&gt;
=== Images ===&lt;br /&gt;
&lt;br /&gt;
To use the Kernel you have to either :&lt;br /&gt;
&lt;br /&gt;
* adjust your [[Uboot]] environment to support a Kernel of more then 2 MB &lt;br /&gt;
* change to the [[Qi]] Bootloader. It supports 2MB kernels out of the box.&lt;br /&gt;
&lt;br /&gt;
I have placed an older 2.6.26 kernel with Android support at:&lt;br /&gt;
&lt;br /&gt;
    [http://people.openmoko.org/sean_mcneil/uImage-android uImage-android]&lt;br /&gt;
&lt;br /&gt;
I have put up a jffs2 image that replaces rootfs on the Freerunner at:&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/androidfs.jffs2 androidfs.jffs2]&lt;br /&gt;
&lt;br /&gt;
=== Installation on internal flash ===&lt;br /&gt;
&lt;br /&gt;
As noted above, this installation requires you to wipe out the existing kernel and rootfs in NAND on your Freerunner. You also must have an SDCARD and it needs to be configured with two (2) primary partitions: First is VFAT/MSDOS (16 or 32) which acts as the /sdcard storage area for pictures, movies, music, etc. and the Second is an ext3 primary partition for use of internal Android /data area to store settings, caches, etc.&lt;br /&gt;
&lt;br /&gt;
The first thing I suggest is to setup an SDCARD. You can flash the NAND first, but you must have an SDCARD with two partitions as stated before you'll be able to boot. I use a 2GB card which I have split in half. fdisk shows me:&lt;br /&gt;
&lt;br /&gt;
    /dev/mmcblk0p1               1        2454      996310    6  FAT16&amp;lt;br&amp;gt;&lt;br /&gt;
    /dev/mmcblk0p2            2455        4908      996324   83  Linux&lt;br /&gt;
&lt;br /&gt;
formatted as&lt;br /&gt;
&lt;br /&gt;
    sudo mkfs.vfat /dev/mmcblk0p1&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo mkfs.ext3 /dev/mmcblk0p2&lt;br /&gt;
&lt;br /&gt;
There is no need to populate the ext3 partition at all. The VFAT partition can be populated with media content if you so desire.&lt;br /&gt;
&lt;br /&gt;
With your SDCARD all set, you are ready to flash the kernel and rootfs:&lt;br /&gt;
&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a kernel -D uImage-android&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a rootfs -D androidfs.jffs2&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Android on SDcard ==&lt;br /&gt;
&lt;br /&gt;
Some notes about booting android from sdcard : &lt;br /&gt;
&lt;br /&gt;
=== Setup ===&lt;br /&gt;
&lt;br /&gt;
* Build android from source. See [http://trac.koolu.org/ koolu website] for directions.&lt;br /&gt;
* Use the first script in [http://lists.openmoko.org/pipermail/community/2008-December/036982.html this mail] (adapt to your filesystem) to stage your android install.&lt;br /&gt;
* copy the contents of this directory on a ext3 partition on your sdcard.&lt;br /&gt;
* add a /boot directory on your sdcard.&lt;br /&gt;
* copy the uImage-android kernel (see above) and copy it inside your /boot with the exact name '''uImage-GTA02.bin'''&lt;br /&gt;
* I changed the init.rc (in your root on the sd) to remove mounts that could be problematic (/data for example) :&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--- filesystem/root/init.rc	2008-12-15 17:51:14.000000000 +0100&lt;br /&gt;
+++ phyce.init.rc	2008-12-19 15:56:25.000000000 +0100&lt;br /&gt;
@@ -24,7 +24,7 @@&lt;br /&gt;
     mkdir /sqlite_stmt_journals 01777 root root&lt;br /&gt;
     mount tmpfs tmpfs /sqlite_stmt_journals size=4m&lt;br /&gt;
 &lt;br /&gt;
-    mount rootfs rootfs / ro remount&lt;br /&gt;
+    mount rootfs rootfs / rw remount&lt;br /&gt;
 &lt;br /&gt;
     write /proc/sys/kernel/panic_on_oops 1&lt;br /&gt;
     write /proc/sys/kernel/hung_task_timeout_secs 0&lt;br /&gt;
@@ -38,14 +38,14 @@&lt;br /&gt;
 #    mount yaffs2 mtd@system /system ro remount&lt;br /&gt;
 &lt;br /&gt;
     # We chown/chmod /data again so because mount is run as root + defaults&lt;br /&gt;
-    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
-    chown system system /data&lt;br /&gt;
-    chmod 0771 /data&lt;br /&gt;
+#    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
+#    chown system system /data&lt;br /&gt;
+#    chmod 0771 /data&lt;br /&gt;
 &lt;br /&gt;
     # Same reason as /data above&lt;br /&gt;
-    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
-    chown system cache /cache&lt;br /&gt;
-    chmod 0770 /cache&lt;br /&gt;
+#    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
+#    chown system cache /cache&lt;br /&gt;
+#    chmod 0770 /cache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install [[Qi]] on you NAND flash. You can still boot whatever distro you've got on internal flash using the NOR bootloader. You should try the magic file in /boot to show kernel messages.&lt;br /&gt;
* boot the GTA02, and pray.&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
&lt;br /&gt;
Android boots and graphic UI appears (hurray) !&lt;br /&gt;
&lt;br /&gt;
Not very functional, though.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Phyce|Phyce]] 14:07, 31 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Android Debug Bridge ==&lt;br /&gt;
&lt;br /&gt;
To assist in debugging and to gain shell access to the phone with Android, you can use&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/adb adb]&lt;br /&gt;
&lt;br /&gt;
You should be able to connect to the phone as long as you start it up with the USB connected to your host. I don't think it will work if you plug it in after starting. Of course, you need to setup [[USB_Networking]] (&amp;lt;tt&amp;gt;ifconfig usb0&amp;lt;/tt&amp;gt; ...) on your host before connecting.&lt;br /&gt;
&lt;br /&gt;
Some helpful commands are:&lt;br /&gt;
&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat           - like a tail -f of the android log&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat -b radio  - same as above for the radio logs&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb shell            - bring up a command shell to the phone&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb kill-server      - kill the background server on the host&lt;br /&gt;
&lt;br /&gt;
Sometimes, adb gets stuck: if you cannot to the device run &amp;quot;adb kill-server&amp;quot; before trying other commands.&lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
&lt;br /&gt;
This version of the linux kernel will not successfully wake from suspend mode. Your battery life will be significantly lowered because of this and the phone will lock up unless you setup the phones screen timeout to never.&lt;br /&gt;
&lt;br /&gt;
This version of the kernel also uses a keypad hack. The buttons layout is as follows:&lt;br /&gt;
&lt;br /&gt;
    Aux left-hand upper button is the &amp;quot;back&amp;quot; key.&lt;br /&gt;
    Power button is:&lt;br /&gt;
        menu button when pushed quickly,&lt;br /&gt;
        end button when held for more than a second and released,&lt;br /&gt;
        power-off if held for 10 seconds.&lt;br /&gt;
[[category|Distribution]]&lt;br /&gt;
[[Category:Flashing Openmoko]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Android_on_Freerunner</id>
		<title>Android on Freerunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Android_on_Freerunner"/>
				<updated>2008-12-31T14:07:55Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Status */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Android on Freerunner}}&lt;br /&gt;
== Android on Freerunner ==&lt;br /&gt;
Google has released their open source version of the Android phone software distribution. In order to use it on the Freerunner, a number of patches need to be applied and a compiler with armv4 java exception support needs to be used to compile the software.&lt;br /&gt;
&lt;br /&gt;
== Compiler suite ==&lt;br /&gt;
&lt;br /&gt;
Android is a little picky about the version of gcc compiler. It also requires some java exception support that isn't available for armv4 without a minor modification. The following tools are what I use to build Android:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Binutils 2.18 ===&lt;br /&gt;
&lt;br /&gt;
At one time I had some armv5t code that was compiled into Android which would cause the linker to generate these blx instructions which fail on armv4. I'm not sure if this is still necessary, but I still have the following change applied to binutils:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
diff -urN binutils-2.18-orig/bfd/elf32-arm.c binutils-2.18/bfd/elf32-arm.c&lt;br /&gt;
--- binutils-2.18-orig/bfd/elf32-arm.c	2007-08-07 02:59:23.000000000 +0700&lt;br /&gt;
+++ binutils-2.18/bfd/elf32-arm.c	2008-03-15 11:30:17.000000000 +0700&lt;br /&gt;
@@ -3093,8 +3093,8 @@&lt;br /&gt;
 static void check_use_blx(struct elf32_arm_link_hash_table *globals)&lt;br /&gt;
 {&lt;br /&gt;
   if (bfd_elf_get_obj_attr_int (globals-&amp;gt;obfd, OBJ_ATTR_PROC,&lt;br /&gt;
-				Tag_CPU_arch) &amp;gt; 2)&lt;br /&gt;
-    globals-&amp;gt;use_blx = 1;&lt;br /&gt;
+				Tag_CPU_arch) &amp;gt;= TAG_CPU_ARCH_V5T)&lt;br /&gt;
+    globals-&amp;gt;use_blx = 0;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 bfd_boolean&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure --prefix={devel path}/android/cross --target=arm-eabi&lt;br /&gt;
&lt;br /&gt;
=== gcc 4.2.4 with gcc41-java-arm4.patch ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure   --prefix={devel path}/android/cross --target=arm-eabi --with-arch=armv4t --enable-shared --enable-threads --disable-nls --disable-libmudflap --enable-target-optspace --with-abi=aapcs --enable-multilib --disable-libssp --disable-libstdcxx --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
=== java-6-sun ===&lt;br /&gt;
&lt;br /&gt;
This is the standard Linux package available for most (all?) distributions.&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
&lt;br /&gt;
Coming soon. I've posted a number of them on the devel mailing list so far. Eventually, I expect to provide everything necessary for people to build Android for themselves.&lt;br /&gt;
&lt;br /&gt;
== Android on internal flash ==&lt;br /&gt;
&lt;br /&gt;
=== Images ===&lt;br /&gt;
&lt;br /&gt;
To use the Kernel you have to either :&lt;br /&gt;
&lt;br /&gt;
* adjust your [[Uboot]] environment to support a Kernel of more then 2 MB &lt;br /&gt;
* change to the [[Qi]] Bootloader. It supports 2MB kernels out of the box.&lt;br /&gt;
&lt;br /&gt;
I have placed an older 2.6.26 kernel with Android support at:&lt;br /&gt;
&lt;br /&gt;
    [http://people.openmoko.org/sean_mcneil/uImage-android uImage-android]&lt;br /&gt;
&lt;br /&gt;
I have put up a jffs2 image that replaces rootfs on the Freerunner at:&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/androidfs.jffs2 androidfs.jffs2]&lt;br /&gt;
&lt;br /&gt;
=== Installation on internal flash ===&lt;br /&gt;
&lt;br /&gt;
As noted above, this installation requires you to wipe out the existing kernel and rootfs in NAND on your Freerunner. You also must have an SDCARD and it needs to be configured with two (2) primary partitions: First is VFAT/MSDOS (16 or 32) which acts as the /sdcard storage area for pictures, movies, music, etc. and the Second is an ext3 primary partition for use of internal Android /data area to store settings, caches, etc.&lt;br /&gt;
&lt;br /&gt;
The first thing I suggest is to setup an SDCARD. You can flash the NAND first, but you must have an SDCARD with two partitions as stated before you'll be able to boot. I use a 2GB card which I have split in half. fdisk shows me:&lt;br /&gt;
&lt;br /&gt;
    /dev/mmcblk0p1               1        2454      996310    6  FAT16&amp;lt;br&amp;gt;&lt;br /&gt;
    /dev/mmcblk0p2            2455        4908      996324   83  Linux&lt;br /&gt;
&lt;br /&gt;
formatted as&lt;br /&gt;
&lt;br /&gt;
    sudo mkfs.vfat /dev/mmcblk0p1&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo mkfs.ext3 /dev/mmcblk0p2&lt;br /&gt;
&lt;br /&gt;
There is no need to populate the ext3 partition at all. The VFAT partition can be populated with media content if you so desire.&lt;br /&gt;
&lt;br /&gt;
With your SDCARD all set, you are ready to flash the kernel and rootfs:&lt;br /&gt;
&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a kernel -D uImage-android&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a rootfs -D androidfs.jffs2&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Android on SDcard ==&lt;br /&gt;
&lt;br /&gt;
Some notes about booting android from sdcard : &lt;br /&gt;
&lt;br /&gt;
=== Setup ===&lt;br /&gt;
&lt;br /&gt;
* Build android from source. See [http://trac.koolu.org/ koolu website] for directions.&lt;br /&gt;
* Use the first script in [http://lists.openmoko.org/pipermail/community/2008-December/036982.html this mail] (adapt to your filesystem) to stage your android install.&lt;br /&gt;
* copy the contents of this directory on a ext3 partition on your sdcard.&lt;br /&gt;
* add a /boot directory on your sdcard.&lt;br /&gt;
* copy andy's  ''moredrivers'' kernel (for some reasons the uImage-android kernel does not boot on my GTA02 ?) from [http://people.openmoko.org/andy/ andy's page] and copy it in your /boot with the exact name '''uImage-GTA02.bin'''&lt;br /&gt;
* I changed the init.rc (in your root on the sd) to remove mounts that could be problematic (/data for example) in an attempt to make it work the dirty way : &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--- filesystem/root/init.rc	2008-12-15 17:51:14.000000000 +0100&lt;br /&gt;
+++ phyce.init.rc	2008-12-19 15:56:25.000000000 +0100&lt;br /&gt;
@@ -24,7 +24,7 @@&lt;br /&gt;
     mkdir /sqlite_stmt_journals 01777 root root&lt;br /&gt;
     mount tmpfs tmpfs /sqlite_stmt_journals size=4m&lt;br /&gt;
 &lt;br /&gt;
-    mount rootfs rootfs / ro remount&lt;br /&gt;
+    mount rootfs rootfs / rw remount&lt;br /&gt;
 &lt;br /&gt;
     write /proc/sys/kernel/panic_on_oops 1&lt;br /&gt;
     write /proc/sys/kernel/hung_task_timeout_secs 0&lt;br /&gt;
@@ -38,14 +38,14 @@&lt;br /&gt;
 #    mount yaffs2 mtd@system /system ro remount&lt;br /&gt;
 &lt;br /&gt;
     # We chown/chmod /data again so because mount is run as root + defaults&lt;br /&gt;
-    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
-    chown system system /data&lt;br /&gt;
-    chmod 0771 /data&lt;br /&gt;
+#    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
+#    chown system system /data&lt;br /&gt;
+#    chmod 0771 /data&lt;br /&gt;
 &lt;br /&gt;
     # Same reason as /data above&lt;br /&gt;
-    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
-    chown system cache /cache&lt;br /&gt;
-    chmod 0770 /cache&lt;br /&gt;
+#    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
+#    chown system cache /cache&lt;br /&gt;
+#    chmod 0770 /cache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install [[Qi]] on you NAND flash. You can still boot whatever distro you've got on internal flash using the NOR bootloader. You should try the magic file in /boot to show kernel messages.&lt;br /&gt;
* boot the GTA02, and pray.&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
&lt;br /&gt;
Android boots and graphic UI appears (hurray) !&lt;br /&gt;
&lt;br /&gt;
Not very functional, though.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Phyce|Phyce]] 14:07, 31 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Android Debug Bridge ==&lt;br /&gt;
&lt;br /&gt;
To assist in debugging and to gain shell access to the phone with Android, you can use&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/adb adb]&lt;br /&gt;
&lt;br /&gt;
You should be able to connect to the phone as long as you start it up with the USB connected to your host. I don't think it will work if you plug it in after starting. Of course, you need to setup [[USB_Networking]] (&amp;lt;tt&amp;gt;ifconfig usb0&amp;lt;/tt&amp;gt; ...) on your host before connecting.&lt;br /&gt;
&lt;br /&gt;
Some helpful commands are:&lt;br /&gt;
&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat           - like a tail -f of the android log&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat -b radio  - same as above for the radio logs&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb shell            - bring up a command shell to the phone&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb kill-server      - kill the background server on the host&lt;br /&gt;
&lt;br /&gt;
Sometimes, adb gets stuck: if you cannot to the device run &amp;quot;adb kill-server&amp;quot; before trying other commands.&lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
&lt;br /&gt;
This version of the linux kernel will not successfully wake from suspend mode. Your battery life will be significantly lowered because of this and the phone will lock up unless you setup the phones screen timeout to never.&lt;br /&gt;
&lt;br /&gt;
This version of the kernel also uses a keypad hack. The buttons layout is as follows:&lt;br /&gt;
&lt;br /&gt;
    Aux left-hand upper button is the &amp;quot;back&amp;quot; key.&lt;br /&gt;
    Power button is:&lt;br /&gt;
        menu button when pushed quickly,&lt;br /&gt;
        end button when held for more than a second and released,&lt;br /&gt;
        power-off if held for 10 seconds.&lt;br /&gt;
[[category|Distribution]]&lt;br /&gt;
[[Category:Flashing Openmoko]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Android_on_Freerunner</id>
		<title>Android on Freerunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Android_on_Freerunner"/>
				<updated>2008-12-29T13:57:55Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Android Debug Bridge */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Android on Freerunner}}&lt;br /&gt;
== Android on Freerunner ==&lt;br /&gt;
Google has released their open source version of the Android phone software distribution. In order to use it on the Freerunner, a number of patches need to be applied and a compiler with armv4 java exception support needs to be used to compile the software.&lt;br /&gt;
&lt;br /&gt;
== Compiler suite ==&lt;br /&gt;
&lt;br /&gt;
Android is a little picky about the version of gcc compiler. It also requires some java exception support that isn't available for armv4 without a minor modification. The following tools are what I use to build Android:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Binutils 2.18 ===&lt;br /&gt;
&lt;br /&gt;
At one time I had some armv5t code that was compiled into Android which would cause the linker to generate these blx instructions which fail on armv4. I'm not sure if this is still necessary, but I still have the following change applied to binutils:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
diff -urN binutils-2.18-orig/bfd/elf32-arm.c binutils-2.18/bfd/elf32-arm.c&lt;br /&gt;
--- binutils-2.18-orig/bfd/elf32-arm.c	2007-08-07 02:59:23.000000000 +0700&lt;br /&gt;
+++ binutils-2.18/bfd/elf32-arm.c	2008-03-15 11:30:17.000000000 +0700&lt;br /&gt;
@@ -3093,8 +3093,8 @@&lt;br /&gt;
 static void check_use_blx(struct elf32_arm_link_hash_table *globals)&lt;br /&gt;
 {&lt;br /&gt;
   if (bfd_elf_get_obj_attr_int (globals-&amp;gt;obfd, OBJ_ATTR_PROC,&lt;br /&gt;
-				Tag_CPU_arch) &amp;gt; 2)&lt;br /&gt;
-    globals-&amp;gt;use_blx = 1;&lt;br /&gt;
+				Tag_CPU_arch) &amp;gt;= TAG_CPU_ARCH_V5T)&lt;br /&gt;
+    globals-&amp;gt;use_blx = 0;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 bfd_boolean&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure --prefix={devel path}/android/cross --target=arm-eabi&lt;br /&gt;
&lt;br /&gt;
=== gcc 4.2.4 with gcc41-java-arm4.patch ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure   --prefix={devel path}/android/cross --target=arm-eabi --with-arch=armv4t --enable-shared --enable-threads --disable-nls --disable-libmudflap --enable-target-optspace --with-abi=aapcs --enable-multilib --disable-libssp --disable-libstdcxx --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
=== java-6-sun ===&lt;br /&gt;
&lt;br /&gt;
This is the standard Linux package available for most (all?) distributions.&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
&lt;br /&gt;
Coming soon. I've posted a number of them on the devel mailing list so far. Eventually, I expect to provide everything necessary for people to build Android for themselves.&lt;br /&gt;
&lt;br /&gt;
== Android on internal flash ==&lt;br /&gt;
&lt;br /&gt;
=== Images ===&lt;br /&gt;
&lt;br /&gt;
To use the Kernel you have to either :&lt;br /&gt;
&lt;br /&gt;
* adjust your [[Uboot]] environment to support a Kernel of more then 2 MB &lt;br /&gt;
* change to the [[Qi]] Bootloader. It supports 2MB kernels out of the box.&lt;br /&gt;
&lt;br /&gt;
I have placed an older 2.6.26 kernel with Android support at:&lt;br /&gt;
&lt;br /&gt;
    [http://people.openmoko.org/sean_mcneil/uImage-android uImage-android]&lt;br /&gt;
&lt;br /&gt;
I have put up a jffs2 image that replaces rootfs on the Freerunner at:&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/androidfs.jffs2 androidfs.jffs2]&lt;br /&gt;
&lt;br /&gt;
=== Installation on internal flash ===&lt;br /&gt;
&lt;br /&gt;
As noted above, this installation requires you to wipe out the existing kernel and rootfs in NAND on your Freerunner. You also must have an SDCARD and it needs to be configured with two (2) primary partitions: First is VFAT/MSDOS (16 or 32) which acts as the /sdcard storage area for pictures, movies, music, etc. and the Second is an ext3 primary partition for use of internal Android /data area to store settings, caches, etc.&lt;br /&gt;
&lt;br /&gt;
The first thing I suggest is to setup an SDCARD. You can flash the NAND first, but you must have an SDCARD with two partitions as stated before you'll be able to boot. I use a 2GB card which I have split in half. fdisk shows me:&lt;br /&gt;
&lt;br /&gt;
    /dev/mmcblk0p1               1        2454      996310    6  FAT16&amp;lt;br&amp;gt;&lt;br /&gt;
    /dev/mmcblk0p2            2455        4908      996324   83  Linux&lt;br /&gt;
&lt;br /&gt;
formatted as&lt;br /&gt;
&lt;br /&gt;
    sudo mkfs.vfat /dev/mmcblk0p1&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo mkfs.ext3 /dev/mmcblk0p2&lt;br /&gt;
&lt;br /&gt;
There is no need to populate the ext3 partition at all. The VFAT partition can be populated with media content if you so desire.&lt;br /&gt;
&lt;br /&gt;
With your SDCARD all set, you are ready to flash the kernel and rootfs:&lt;br /&gt;
&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a kernel -D uImage-android&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a rootfs -D androidfs.jffs2&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Android on SDcard ==&lt;br /&gt;
&lt;br /&gt;
Some notes about booting android from sdcard : &lt;br /&gt;
&lt;br /&gt;
=== Setup ===&lt;br /&gt;
&lt;br /&gt;
* Build android from source. See [http://trac.koolu.org/ koolu website] for directions.&lt;br /&gt;
* Use the first script in [http://lists.openmoko.org/pipermail/community/2008-December/036982.html this mail] (adapt to your filesystem) to stage your android install.&lt;br /&gt;
* copy the contents of this directory on a ext3 partition on your sdcard.&lt;br /&gt;
* add a /boot directory on your sdcard.&lt;br /&gt;
* copy andy's  ''moredrivers'' kernel (for some reasons the uImage-android kernel does not boot on my GTA02 ?) from [http://people.openmoko.org/andy/ andy's page] and copy it in your /boot with the exact name '''uImage-GTA02.bin'''&lt;br /&gt;
* I changed the init.rc (in your root on the sd) to remove mounts that could be problematic (/data for example) in an attempt to make it work the dirty way : &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--- filesystem/root/init.rc	2008-12-15 17:51:14.000000000 +0100&lt;br /&gt;
+++ phyce.init.rc	2008-12-19 15:56:25.000000000 +0100&lt;br /&gt;
@@ -24,7 +24,7 @@&lt;br /&gt;
     mkdir /sqlite_stmt_journals 01777 root root&lt;br /&gt;
     mount tmpfs tmpfs /sqlite_stmt_journals size=4m&lt;br /&gt;
 &lt;br /&gt;
-    mount rootfs rootfs / ro remount&lt;br /&gt;
+    mount rootfs rootfs / rw remount&lt;br /&gt;
 &lt;br /&gt;
     write /proc/sys/kernel/panic_on_oops 1&lt;br /&gt;
     write /proc/sys/kernel/hung_task_timeout_secs 0&lt;br /&gt;
@@ -38,14 +38,14 @@&lt;br /&gt;
 #    mount yaffs2 mtd@system /system ro remount&lt;br /&gt;
 &lt;br /&gt;
     # We chown/chmod /data again so because mount is run as root + defaults&lt;br /&gt;
-    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
-    chown system system /data&lt;br /&gt;
-    chmod 0771 /data&lt;br /&gt;
+#    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
+#    chown system system /data&lt;br /&gt;
+#    chmod 0771 /data&lt;br /&gt;
 &lt;br /&gt;
     # Same reason as /data above&lt;br /&gt;
-    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
-    chown system cache /cache&lt;br /&gt;
-    chmod 0770 /cache&lt;br /&gt;
+#    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
+#    chown system cache /cache&lt;br /&gt;
+#    chmod 0770 /cache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install [[Qi]] on you NAND flash. You can still boot whatever distro you've got on internal flash using the NOR bootloader. You should try the magic file in /boot to show kernel messages.&lt;br /&gt;
* boot the GTA02, and pray.&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
&lt;br /&gt;
For the moment, the kernel boots, &amp;lt;tt&amp;gt;A N D R O I D&amp;lt;/tt&amp;gt; appears (hurray), &amp;lt;tt&amp;gt;init.rc&amp;lt;/tt&amp;gt; gets executed but nothing more happens after that. &lt;br /&gt;
&lt;br /&gt;
Then I hit a problem with libraries not found...looks like /system/lib/libmedia_jni.so is not copied. my build may be faulty (to add some fun, I'm building Android on a x86_64 computer...)&lt;br /&gt;
&lt;br /&gt;
[[User:Phyce|Phyce]] 16:08, 19 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Android Debug Bridge ==&lt;br /&gt;
&lt;br /&gt;
To assist in debugging and to gain shell access to the phone with Android, you can use&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/adb adb]&lt;br /&gt;
&lt;br /&gt;
You should be able to connect to the phone as long as you start it up with the USB connected to your host. I don't think it will work if you plug it in after starting. Of course, you need to setup [[USB_Networking]] (&amp;lt;tt&amp;gt;ifconfig usb0&amp;lt;/tt&amp;gt; ...) on your host before connecting.&lt;br /&gt;
&lt;br /&gt;
Some helpful commands are:&lt;br /&gt;
&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat           - like a tail -f of the android log&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat -b radio  - same as above for the radio logs&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb shell            - bring up a command shell to the phone&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb kill-server      - kill the background server on the host&lt;br /&gt;
&lt;br /&gt;
Sometimes, adb gets stuck: if you cannot to the device run &amp;quot;adb kill-server&amp;quot; before trying other commands.&lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
&lt;br /&gt;
This version of the linux kernel will not successfully wake from suspend mode. Your battery life will be significantly lowered because of this and the phone will lock up unless you setup the phones screen timeout to never.&lt;br /&gt;
&lt;br /&gt;
This version of the kernel also uses a keypad hack. The buttons layout is as follows:&lt;br /&gt;
&lt;br /&gt;
    Aux left-hand upper button is the &amp;quot;back&amp;quot; key.&lt;br /&gt;
    Power button is:&lt;br /&gt;
        menu button when pushed quickly,&lt;br /&gt;
        end button when held for more than a second and released,&lt;br /&gt;
        power-off if held for 10 seconds.&lt;br /&gt;
[[category|Distribution]]&lt;br /&gt;
[[Category:Flashing Openmoko]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Android_on_Freerunner</id>
		<title>Android on Freerunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Android_on_Freerunner"/>
				<updated>2008-12-29T13:52:50Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Images */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Android on Freerunner}}&lt;br /&gt;
== Android on Freerunner ==&lt;br /&gt;
Google has released their open source version of the Android phone software distribution. In order to use it on the Freerunner, a number of patches need to be applied and a compiler with armv4 java exception support needs to be used to compile the software.&lt;br /&gt;
&lt;br /&gt;
== Compiler suite ==&lt;br /&gt;
&lt;br /&gt;
Android is a little picky about the version of gcc compiler. It also requires some java exception support that isn't available for armv4 without a minor modification. The following tools are what I use to build Android:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Binutils 2.18 ===&lt;br /&gt;
&lt;br /&gt;
At one time I had some armv5t code that was compiled into Android which would cause the linker to generate these blx instructions which fail on armv4. I'm not sure if this is still necessary, but I still have the following change applied to binutils:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
diff -urN binutils-2.18-orig/bfd/elf32-arm.c binutils-2.18/bfd/elf32-arm.c&lt;br /&gt;
--- binutils-2.18-orig/bfd/elf32-arm.c	2007-08-07 02:59:23.000000000 +0700&lt;br /&gt;
+++ binutils-2.18/bfd/elf32-arm.c	2008-03-15 11:30:17.000000000 +0700&lt;br /&gt;
@@ -3093,8 +3093,8 @@&lt;br /&gt;
 static void check_use_blx(struct elf32_arm_link_hash_table *globals)&lt;br /&gt;
 {&lt;br /&gt;
   if (bfd_elf_get_obj_attr_int (globals-&amp;gt;obfd, OBJ_ATTR_PROC,&lt;br /&gt;
-				Tag_CPU_arch) &amp;gt; 2)&lt;br /&gt;
-    globals-&amp;gt;use_blx = 1;&lt;br /&gt;
+				Tag_CPU_arch) &amp;gt;= TAG_CPU_ARCH_V5T)&lt;br /&gt;
+    globals-&amp;gt;use_blx = 0;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 bfd_boolean&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure --prefix={devel path}/android/cross --target=arm-eabi&lt;br /&gt;
&lt;br /&gt;
=== gcc 4.2.4 with gcc41-java-arm4.patch ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure   --prefix={devel path}/android/cross --target=arm-eabi --with-arch=armv4t --enable-shared --enable-threads --disable-nls --disable-libmudflap --enable-target-optspace --with-abi=aapcs --enable-multilib --disable-libssp --disable-libstdcxx --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
=== java-6-sun ===&lt;br /&gt;
&lt;br /&gt;
This is the standard Linux package available for most (all?) distributions.&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
&lt;br /&gt;
Coming soon. I've posted a number of them on the devel mailing list so far. Eventually, I expect to provide everything necessary for people to build Android for themselves.&lt;br /&gt;
&lt;br /&gt;
== Android on internal flash ==&lt;br /&gt;
&lt;br /&gt;
=== Images ===&lt;br /&gt;
&lt;br /&gt;
To use the Kernel you have to either :&lt;br /&gt;
&lt;br /&gt;
* adjust your [[Uboot]] environment to support a Kernel of more then 2 MB &lt;br /&gt;
* change to the [[Qi]] Bootloader. It supports 2MB kernels out of the box.&lt;br /&gt;
&lt;br /&gt;
I have placed an older 2.6.26 kernel with Android support at:&lt;br /&gt;
&lt;br /&gt;
    [http://people.openmoko.org/sean_mcneil/uImage-android uImage-android]&lt;br /&gt;
&lt;br /&gt;
I have put up a jffs2 image that replaces rootfs on the Freerunner at:&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/androidfs.jffs2 androidfs.jffs2]&lt;br /&gt;
&lt;br /&gt;
=== Installation on internal flash ===&lt;br /&gt;
&lt;br /&gt;
As noted above, this installation requires you to wipe out the existing kernel and rootfs in NAND on your Freerunner. You also must have an SDCARD and it needs to be configured with two (2) primary partitions: First is VFAT/MSDOS (16 or 32) which acts as the /sdcard storage area for pictures, movies, music, etc. and the Second is an ext3 primary partition for use of internal Android /data area to store settings, caches, etc.&lt;br /&gt;
&lt;br /&gt;
The first thing I suggest is to setup an SDCARD. You can flash the NAND first, but you must have an SDCARD with two partitions as stated before you'll be able to boot. I use a 2GB card which I have split in half. fdisk shows me:&lt;br /&gt;
&lt;br /&gt;
    /dev/mmcblk0p1               1        2454      996310    6  FAT16&amp;lt;br&amp;gt;&lt;br /&gt;
    /dev/mmcblk0p2            2455        4908      996324   83  Linux&lt;br /&gt;
&lt;br /&gt;
formatted as&lt;br /&gt;
&lt;br /&gt;
    sudo mkfs.vfat /dev/mmcblk0p1&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo mkfs.ext3 /dev/mmcblk0p2&lt;br /&gt;
&lt;br /&gt;
There is no need to populate the ext3 partition at all. The VFAT partition can be populated with media content if you so desire.&lt;br /&gt;
&lt;br /&gt;
With your SDCARD all set, you are ready to flash the kernel and rootfs:&lt;br /&gt;
&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a kernel -D uImage-android&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a rootfs -D androidfs.jffs2&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Android on SDcard ==&lt;br /&gt;
&lt;br /&gt;
Some notes about booting android from sdcard : &lt;br /&gt;
&lt;br /&gt;
=== Setup ===&lt;br /&gt;
&lt;br /&gt;
* Build android from source. See [http://trac.koolu.org/ koolu website] for directions.&lt;br /&gt;
* Use the first script in [http://lists.openmoko.org/pipermail/community/2008-December/036982.html this mail] (adapt to your filesystem) to stage your android install.&lt;br /&gt;
* copy the contents of this directory on a ext3 partition on your sdcard.&lt;br /&gt;
* add a /boot directory on your sdcard.&lt;br /&gt;
* copy andy's  ''moredrivers'' kernel (for some reasons the uImage-android kernel does not boot on my GTA02 ?) from [http://people.openmoko.org/andy/ andy's page] and copy it in your /boot with the exact name '''uImage-GTA02.bin'''&lt;br /&gt;
* I changed the init.rc (in your root on the sd) to remove mounts that could be problematic (/data for example) in an attempt to make it work the dirty way : &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--- filesystem/root/init.rc	2008-12-15 17:51:14.000000000 +0100&lt;br /&gt;
+++ phyce.init.rc	2008-12-19 15:56:25.000000000 +0100&lt;br /&gt;
@@ -24,7 +24,7 @@&lt;br /&gt;
     mkdir /sqlite_stmt_journals 01777 root root&lt;br /&gt;
     mount tmpfs tmpfs /sqlite_stmt_journals size=4m&lt;br /&gt;
 &lt;br /&gt;
-    mount rootfs rootfs / ro remount&lt;br /&gt;
+    mount rootfs rootfs / rw remount&lt;br /&gt;
 &lt;br /&gt;
     write /proc/sys/kernel/panic_on_oops 1&lt;br /&gt;
     write /proc/sys/kernel/hung_task_timeout_secs 0&lt;br /&gt;
@@ -38,14 +38,14 @@&lt;br /&gt;
 #    mount yaffs2 mtd@system /system ro remount&lt;br /&gt;
 &lt;br /&gt;
     # We chown/chmod /data again so because mount is run as root + defaults&lt;br /&gt;
-    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
-    chown system system /data&lt;br /&gt;
-    chmod 0771 /data&lt;br /&gt;
+#    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
+#    chown system system /data&lt;br /&gt;
+#    chmod 0771 /data&lt;br /&gt;
 &lt;br /&gt;
     # Same reason as /data above&lt;br /&gt;
-    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
-    chown system cache /cache&lt;br /&gt;
-    chmod 0770 /cache&lt;br /&gt;
+#    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
+#    chown system cache /cache&lt;br /&gt;
+#    chmod 0770 /cache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install [[Qi]] on you NAND flash. You can still boot whatever distro you've got on internal flash using the NOR bootloader. You should try the magic file in /boot to show kernel messages.&lt;br /&gt;
* boot the GTA02, and pray.&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
&lt;br /&gt;
For the moment, the kernel boots, &amp;lt;tt&amp;gt;A N D R O I D&amp;lt;/tt&amp;gt; appears (hurray), &amp;lt;tt&amp;gt;init.rc&amp;lt;/tt&amp;gt; gets executed but nothing more happens after that. &lt;br /&gt;
&lt;br /&gt;
Then I hit a problem with libraries not found...looks like /system/lib/libmedia_jni.so is not copied. my build may be faulty (to add some fun, I'm building Android on a x86_64 computer...)&lt;br /&gt;
&lt;br /&gt;
[[User:Phyce|Phyce]] 16:08, 19 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Android Debug Bridge ==&lt;br /&gt;
&lt;br /&gt;
To assist in debugging and to gain shell access to the phone with Android, you can &lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/adb adb]&lt;br /&gt;
&lt;br /&gt;
You should be able to connect to the phone as long as you start it up with the USB connected to your host. I don't think it will work if you plug it in after starting. Of course, you need to setup usb networking with ifconfig on your host before.&lt;br /&gt;
&lt;br /&gt;
Some helpful commands are:&lt;br /&gt;
&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat           - like a tail -f of the android log&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat -b radio  - same as above for the radio logs&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb shell            - bring up a command shell to the phone&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb kill-server      - kill the background server on the host&lt;br /&gt;
&lt;br /&gt;
If you cannot to the device run &amp;quot;adb kill-server&amp;quot; before trying other commands. &lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
&lt;br /&gt;
This version of the linux kernel will not successfully wake from suspend mode. Your battery life will be significantly lowered because of this and the phone will lock up unless you setup the phones screen timeout to never.&lt;br /&gt;
&lt;br /&gt;
This version of the kernel also uses a keypad hack. The buttons layout is as follows:&lt;br /&gt;
&lt;br /&gt;
    Aux left-hand upper button is the &amp;quot;back&amp;quot; key.&lt;br /&gt;
    Power button is:&lt;br /&gt;
        menu button when pushed quickly,&lt;br /&gt;
        end button when held for more than a second and released,&lt;br /&gt;
        power-off if held for 10 seconds.&lt;br /&gt;
[[category|Distribution]]&lt;br /&gt;
[[Category:Flashing Openmoko]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Android_on_Freerunner</id>
		<title>Android on Freerunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Android_on_Freerunner"/>
				<updated>2008-12-19T16:08:45Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Android on Freerunner}}&lt;br /&gt;
== Android on Freerunner ==&lt;br /&gt;
Google has released their open source version of the Android phone software distribution. In order to use it on the Freerunner, a number of patches need to be applied and a compiler with armv4 java exception support needs to be used to compile the software.&lt;br /&gt;
&lt;br /&gt;
== Compiler suite ==&lt;br /&gt;
&lt;br /&gt;
Android is a little picky about the version of gcc compiler. It also requires some java exception support that isn't available for armv4 without a minor modification. The following tools are what I use to build Android:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Binutils 2.18 ===&lt;br /&gt;
&lt;br /&gt;
At one time I had some armv5t code that was compiled into Android which would cause the linker to generate these blx instructions which fail on armv4. I'm not sure if this is still necessary, but I still have the following change applied to binutils:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
diff -urN binutils-2.18-orig/bfd/elf32-arm.c binutils-2.18/bfd/elf32-arm.c&lt;br /&gt;
--- binutils-2.18-orig/bfd/elf32-arm.c	2007-08-07 02:59:23.000000000 +0700&lt;br /&gt;
+++ binutils-2.18/bfd/elf32-arm.c	2008-03-15 11:30:17.000000000 +0700&lt;br /&gt;
@@ -3093,8 +3093,8 @@&lt;br /&gt;
 static void check_use_blx(struct elf32_arm_link_hash_table *globals)&lt;br /&gt;
 {&lt;br /&gt;
   if (bfd_elf_get_obj_attr_int (globals-&amp;gt;obfd, OBJ_ATTR_PROC,&lt;br /&gt;
-				Tag_CPU_arch) &amp;gt; 2)&lt;br /&gt;
-    globals-&amp;gt;use_blx = 1;&lt;br /&gt;
+				Tag_CPU_arch) &amp;gt;= TAG_CPU_ARCH_V5T)&lt;br /&gt;
+    globals-&amp;gt;use_blx = 0;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 bfd_boolean&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure --prefix={devel path}/android/cross --target=arm-eabi&lt;br /&gt;
&lt;br /&gt;
=== gcc 4.2.4 with gcc41-java-arm4.patch ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure   --prefix={devel path}/android/cross --target=arm-eabi --with-arch=armv4t --enable-shared --enable-threads --disable-nls --disable-libmudflap --enable-target-optspace --with-abi=aapcs --enable-multilib --disable-libssp --disable-libstdcxx --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
=== java-6-sun ===&lt;br /&gt;
&lt;br /&gt;
This is the standard Linux package available for most (all?) distributions.&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
&lt;br /&gt;
Coming soon. I've posted a number of them on the devel mailing list so far. Eventually, I expect to provide everything necessary for people to build Android for themselves.&lt;br /&gt;
&lt;br /&gt;
== Android on internal flash ==&lt;br /&gt;
&lt;br /&gt;
=== Images ===&lt;br /&gt;
&lt;br /&gt;
To use the Kernel you have to adjust your [http://www.denx.de/wiki/U-Boot u-boot] environment to support a Kernel of more then 2 MB or your have to change to the [http://wiki.openmoko.org/wiki/Qi Qi Bootloader]&lt;br /&gt;
&lt;br /&gt;
I have placed an older 2.6.26 kernel with Android support at:&lt;br /&gt;
&lt;br /&gt;
    [http://people.openmoko.org/sean_mcneil/uImage-android uImage-android]&lt;br /&gt;
&lt;br /&gt;
I have put up a jffs2 image that replaces rootfs on the Freerunner at:&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/androidfs.jffs2 androidfs.jffs2]&lt;br /&gt;
&lt;br /&gt;
=== Installation on internal flash ===&lt;br /&gt;
&lt;br /&gt;
As noted above, this installation requires you to wipe out the existing kernel and rootfs in NAND on your Freerunner. You also must have an SDCARD and it needs to be configured with two (2) primary partitions: First is VFAT/MSDOS (16 or 32) which acts as the /sdcard storage area for pictures, movies, music, etc. and the Second is an ext3 primary partition for use of internal Android /data area to store settings, caches, etc.&lt;br /&gt;
&lt;br /&gt;
The first thing I suggest is to setup an SDCARD. You can flash the NAND first, but you must have an SDCARD with two partitions as stated before you'll be able to boot. I use a 2GB card which I have split in half. fdisk shows me:&lt;br /&gt;
&lt;br /&gt;
    /dev/mmcblk0p1               1        2454      996310    6  FAT16&amp;lt;br&amp;gt;&lt;br /&gt;
    /dev/mmcblk0p2            2455        4908      996324   83  Linux&lt;br /&gt;
&lt;br /&gt;
formatted as&lt;br /&gt;
&lt;br /&gt;
    sudo mkfs.vfat /dev/mmcblk0p1&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo mkfs.ext3 /dev/mmcblk0p2&lt;br /&gt;
&lt;br /&gt;
There is no need to populate the ext3 partition at all. The VFAT partition can be populated with media content if you so desire.&lt;br /&gt;
&lt;br /&gt;
With your SDCARD all set, you are ready to flash the kernel and rootfs:&lt;br /&gt;
&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a kernel -D uImage-android&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a rootfs -D androidfs.jffs2&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Android on SDcard ==&lt;br /&gt;
&lt;br /&gt;
Some notes about booting android from sdcard : &lt;br /&gt;
&lt;br /&gt;
=== Setup ===&lt;br /&gt;
&lt;br /&gt;
* Build android from source. See [http://trac.koolu.org/ koolu website] for directions.&lt;br /&gt;
* Use the first script in [http://lists.openmoko.org/pipermail/community/2008-December/036982.html this mail] (adapt to your filesystem) to stage your android install.&lt;br /&gt;
* copy the contents of this directory on a ext3 partition on your sdcard.&lt;br /&gt;
* add a /boot directory on your sdcard.&lt;br /&gt;
* copy andy's  ''moredrivers'' kernel (for some reasons the uImage-android kernel does not boot on my GTA02 ?) from [http://people.openmoko.org/andy/ andy's page] and copy it in your /boot with the exact name '''uImage-GTA02.bin'''&lt;br /&gt;
* I changed the init.rc (in your root on the sd) to remove mounts that could be problematic (/data for example) in an attempt to make it work the dirty way : &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--- filesystem/root/init.rc	2008-12-15 17:51:14.000000000 +0100&lt;br /&gt;
+++ phyce.init.rc	2008-12-19 15:56:25.000000000 +0100&lt;br /&gt;
@@ -24,7 +24,7 @@&lt;br /&gt;
     mkdir /sqlite_stmt_journals 01777 root root&lt;br /&gt;
     mount tmpfs tmpfs /sqlite_stmt_journals size=4m&lt;br /&gt;
 &lt;br /&gt;
-    mount rootfs rootfs / ro remount&lt;br /&gt;
+    mount rootfs rootfs / rw remount&lt;br /&gt;
 &lt;br /&gt;
     write /proc/sys/kernel/panic_on_oops 1&lt;br /&gt;
     write /proc/sys/kernel/hung_task_timeout_secs 0&lt;br /&gt;
@@ -38,14 +38,14 @@&lt;br /&gt;
 #    mount yaffs2 mtd@system /system ro remount&lt;br /&gt;
 &lt;br /&gt;
     # We chown/chmod /data again so because mount is run as root + defaults&lt;br /&gt;
-    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
-    chown system system /data&lt;br /&gt;
-    chmod 0771 /data&lt;br /&gt;
+#    mount ext3 /dev/block/mmcblk0p2 /data nosuid nodev&lt;br /&gt;
+#    chown system system /data&lt;br /&gt;
+#    chmod 0771 /data&lt;br /&gt;
 &lt;br /&gt;
     # Same reason as /data above&lt;br /&gt;
-    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
-    chown system cache /cache&lt;br /&gt;
-    chmod 0770 /cache&lt;br /&gt;
+#    mount yaffs2 mtd@cache /cache nosuid nodev&lt;br /&gt;
+#    chown system cache /cache&lt;br /&gt;
+#    chmod 0770 /cache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install [[Qi]] on you NAND flash. You can still boot whatever distro you've got on internal flash using the NOR bootloader. You should try the magic file in /boot to show kernel messages.&lt;br /&gt;
* boot the GTA02, and pray.&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
&lt;br /&gt;
For the moment, the kernel boots, &amp;lt;tt&amp;gt;A N D R O I D&amp;lt;/tt&amp;gt; appears (hurray), &amp;lt;tt&amp;gt;init.rc&amp;lt;/tt&amp;gt; gets executed but nothing more happens after that. &lt;br /&gt;
&lt;br /&gt;
Then I hit a problem with libraries not found...looks like /system/lib/libmedia_jni.so is not copied. my build may be faulty (to add some fun, I'm building Android on a x86_64 computer...)&lt;br /&gt;
&lt;br /&gt;
[[User:Phyce|Phyce]] 16:08, 19 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Android Debug Bridge ==&lt;br /&gt;
&lt;br /&gt;
To assist in debugging and to gain shell access to the phone with Android, you can &lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/adb adb]&lt;br /&gt;
&lt;br /&gt;
You should be able to connect to the phone as long as you start it up with the USB connected to your host. I don't think it will work if you plug it in after starting. Of course, you need to setup usb networking with ifconfig on your host before.&lt;br /&gt;
&lt;br /&gt;
Some helpful commands are:&lt;br /&gt;
&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat           - like a tail -f of the android log&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat -b radio  - same as above for the radio logs&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb shell            - bring up a command shell to the phone&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb kill-server      - kill the background server on the host&lt;br /&gt;
&lt;br /&gt;
If you cannot to the device run &amp;quot;adb kill-server&amp;quot; before trying other commands. &lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
&lt;br /&gt;
This version of the linux kernel will not successfully wake from suspend mode. Your battery life will be significantly lowered because of this and the phone will lock up unless you setup the phones screen timeout to never.&lt;br /&gt;
&lt;br /&gt;
This version of the kernel also uses a keypad hack. The buttons layout is as follows:&lt;br /&gt;
&lt;br /&gt;
    Aux left-hand upper button is the &amp;quot;back&amp;quot; key.&lt;br /&gt;
    Power button is:&lt;br /&gt;
        menu button when pushed quickly,&lt;br /&gt;
        end button when held for more than a second and released,&lt;br /&gt;
        power-off if held for 10 seconds.&lt;br /&gt;
[[category|Distribution]]&lt;br /&gt;
[[Category:Flashing Openmoko]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Android_on_Freerunner</id>
		<title>Android on Freerunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Android_on_Freerunner"/>
				<updated>2008-12-18T23:45:10Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Android on Freerunner}}&lt;br /&gt;
== Android on Freerunner ==&lt;br /&gt;
Google has released their open source version of the Android phone software distribution. In order to use it on the Freerunner, a number of patches need to be applied and a compiler with armv4 java exception support needs to be used to compile the software.&lt;br /&gt;
&lt;br /&gt;
== Compiler suite ==&lt;br /&gt;
&lt;br /&gt;
Android is a little picky about the version of gcc compiler. It also requires some java exception support that isn't available for armv4 without a minor modification. The following tools are what I use to build Android:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Binutils 2.18 ===&lt;br /&gt;
&lt;br /&gt;
At one time I had some armv5t code that was compiled into Android which would cause the linker to generate these blx instructions which fail on armv4. I'm not sure if this is still necessary, but I still have the following change applied to binutils:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
diff -urN binutils-2.18-orig/bfd/elf32-arm.c binutils-2.18/bfd/elf32-arm.c&lt;br /&gt;
--- binutils-2.18-orig/bfd/elf32-arm.c	2007-08-07 02:59:23.000000000 +0700&lt;br /&gt;
+++ binutils-2.18/bfd/elf32-arm.c	2008-03-15 11:30:17.000000000 +0700&lt;br /&gt;
@@ -3093,8 +3093,8 @@&lt;br /&gt;
 static void check_use_blx(struct elf32_arm_link_hash_table *globals)&lt;br /&gt;
 {&lt;br /&gt;
   if (bfd_elf_get_obj_attr_int (globals-&amp;gt;obfd, OBJ_ATTR_PROC,&lt;br /&gt;
-				Tag_CPU_arch) &amp;gt; 2)&lt;br /&gt;
-    globals-&amp;gt;use_blx = 1;&lt;br /&gt;
+				Tag_CPU_arch) &amp;gt;= TAG_CPU_ARCH_V5T)&lt;br /&gt;
+    globals-&amp;gt;use_blx = 0;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 bfd_boolean&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure --prefix={devel path}/android/cross --target=arm-eabi&lt;br /&gt;
&lt;br /&gt;
=== gcc 4.2.4 with gcc41-java-arm4.patch ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure   --prefix={devel path}/android/cross --target=arm-eabi --with-arch=armv4t --enable-shared --enable-threads --disable-nls --disable-libmudflap --enable-target-optspace --with-abi=aapcs --enable-multilib --disable-libssp --disable-libstdcxx --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
=== java-6-sun ===&lt;br /&gt;
&lt;br /&gt;
This is the standard Linux package available for most (all?) distributions.&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
&lt;br /&gt;
Coming soon. I've posted a number of them on the devel mailing list so far. Eventually, I expect to provide everything necessary for people to build Android for themselves.&lt;br /&gt;
&lt;br /&gt;
== Android on internal flash ==&lt;br /&gt;
&lt;br /&gt;
=== Images ===&lt;br /&gt;
&lt;br /&gt;
To use the Kernel you have to adjust your [http://www.denx.de/wiki/U-Boot u-boot] environment to support a Kernel of more then 2 MB or your have to change to the [http://wiki.openmoko.org/wiki/Qi Qi Bootloader]&lt;br /&gt;
&lt;br /&gt;
I have placed an older 2.6.26 kernel with Android support at:&lt;br /&gt;
&lt;br /&gt;
    [http://people.openmoko.org/sean_mcneil/uImage-android uImage-android]&lt;br /&gt;
&lt;br /&gt;
I have put up a jffs2 image that replaces rootfs on the Freerunner at:&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/androidfs.jffs2 androidfs.jffs2]&lt;br /&gt;
&lt;br /&gt;
=== Installation on internal flash ===&lt;br /&gt;
&lt;br /&gt;
As noted above, this installation requires you to wipe out the existing kernel and rootfs in NAND on your Freerunner. You also must have an SDCARD and it needs to be configured with two (2) primary partitions: First is VFAT/MSDOS (16 or 32) which acts as the /sdcard storage area for pictures, movies, music, etc. and the Second is an ext3 primary partition for use of internal Android /data area to store settings, caches, etc.&lt;br /&gt;
&lt;br /&gt;
The first thing I suggest is to setup an SDCARD. You can flash the NAND first, but you must have an SDCARD with two partitions as stated before you'll be able to boot. I use a 2GB card which I have split in half. fdisk shows me:&lt;br /&gt;
&lt;br /&gt;
    /dev/mmcblk0p1               1        2454      996310    6  FAT16&amp;lt;br&amp;gt;&lt;br /&gt;
    /dev/mmcblk0p2            2455        4908      996324   83  Linux&lt;br /&gt;
&lt;br /&gt;
formatted as&lt;br /&gt;
&lt;br /&gt;
    sudo mkfs.vfat /dev/mmcblk0p1&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo mkfs.ext3 /dev/mmcblk0p2&lt;br /&gt;
&lt;br /&gt;
There is no need to populate the ext3 partition at all. The VFAT partition can be populated with media content if you so desire.&lt;br /&gt;
&lt;br /&gt;
With your SDCARD all set, you are ready to flash the kernel and rootfs:&lt;br /&gt;
&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a kernel -D uImage-android&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a rootfs -D androidfs.jffs2&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Android on SDcard ==&lt;br /&gt;
&lt;br /&gt;
Some notes about booting android from sdcard : &lt;br /&gt;
&lt;br /&gt;
=== Setup ===&lt;br /&gt;
&lt;br /&gt;
* Build android from source. See [http://trac.koolu.org/ koolu website] for directions.&lt;br /&gt;
* Use the first script in [http://lists.openmoko.org/pipermail/community/2008-December/036982.html this mail] (adapt to your filesystem) to stage your android install.&lt;br /&gt;
* copy the contents of this directory on a ext3 partition on your sdcard.&lt;br /&gt;
* add a /boot directory on your sdcard.&lt;br /&gt;
* copy andy's  ''moredrivers'' kernel (for some reasons the uImage-android kernel does not boot on my GTA02 ?) from [http://people.openmoko.org/andy/ andy's page] and copy it in your /boot with the exact name '''uImage-GTA02.bin'''&lt;br /&gt;
* I changed the init.rc (in your root on the sd) to remove mounts that could be problematic (/data for example) in an attempt to make it work the dirty way.&lt;br /&gt;
* Install [[Qi]] on you NAND flash. You can still boot whatever distro you've got on internal flash with the NOR bootloader. You should try the magic file in /boot to make it show debug info.&lt;br /&gt;
* boot the GTA02, and pray.&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
&lt;br /&gt;
For the moment, the kernel boots, &amp;lt;tt&amp;gt;A N D R O I D&amp;lt;/tt&amp;gt; appears (hurray), &amp;lt;tt&amp;gt;init.rc&amp;lt;/tt&amp;gt; gets executed but nothing more happens after that. &lt;br /&gt;
&lt;br /&gt;
Using adb to debug, it seems the root filesystem is still mounted read-only and then, the dalvik cache cannot initialize and android cannot start.&lt;br /&gt;
&lt;br /&gt;
I had to remount the filesystem rw (using adb shell) and create the /data/dalvik-cache directory to go further.&lt;br /&gt;
&lt;br /&gt;
Then I hit a problem with classes not found...Time to go to bed ;)&lt;br /&gt;
&lt;br /&gt;
[[User:Phyce|Phyce]] 23:38, 18 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Android Debug Bridge ==&lt;br /&gt;
&lt;br /&gt;
To assist in debugging and to gain shell access to the phone with Android, you can &lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/adb adb]&lt;br /&gt;
&lt;br /&gt;
You should be able to connect to the phone as long as you start it up with the USB connected to your host. I don't think it will work if you plug it in after starting. Of course, you need to setup usb networking with ifconfig on your host before.&lt;br /&gt;
&lt;br /&gt;
Some helpful commands are:&lt;br /&gt;
&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat           - like a tail -f of the android log&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb logcat -b radio  - same as above for the radio logs&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb shell            - bring up a command shell to the phone&lt;br /&gt;
    ADBHOST=192.168.0.202 ./adb kill-server      - kill the background server on the host&lt;br /&gt;
&lt;br /&gt;
If you cannot to the device run &amp;quot;adb kill-server&amp;quot; before trying other commands. &lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
&lt;br /&gt;
This version of the linux kernel will not successfully wake from suspend mode. Your battery life will be significantly lowered because of this and the phone will lock up unless you setup the phones screen timeout to never.&lt;br /&gt;
&lt;br /&gt;
This version of the kernel also uses a keypad hack. The buttons layout is as follows:&lt;br /&gt;
&lt;br /&gt;
    Aux left-hand upper button is the &amp;quot;back&amp;quot; key.&lt;br /&gt;
    Power button is:&lt;br /&gt;
        menu button when pushed quickly,&lt;br /&gt;
        end button when held for more than a second and released,&lt;br /&gt;
        power-off if held for 10 seconds.&lt;br /&gt;
[[category|Distribution]]&lt;br /&gt;
[[Category:Flashing Openmoko]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Android_on_Freerunner</id>
		<title>Android on Freerunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Android_on_Freerunner"/>
				<updated>2008-12-18T23:38:37Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Status */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Android on Freerunner}}&lt;br /&gt;
== Android on Freerunner ==&lt;br /&gt;
Google has released their open source version of the Android phone software distribution. In order to use it on the Freerunner, a number of patches need to be applied and a compiler with armv4 java exception support needs to be used to compile the software.&lt;br /&gt;
&lt;br /&gt;
== Compiler suite ==&lt;br /&gt;
&lt;br /&gt;
Android is a little picky about the version of gcc compiler. It also requires some java exception support that isn't available for armv4 without a minor modification. The following tools are what I use to build Android:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Binutils 2.18 ===&lt;br /&gt;
&lt;br /&gt;
At one time I had some armv5t code that was compiled into Android which would cause the linker to generate these blx instructions which fail on armv4. I'm not sure if this is still necessary, but I still have the following change applied to binutils:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
diff -urN binutils-2.18-orig/bfd/elf32-arm.c binutils-2.18/bfd/elf32-arm.c&lt;br /&gt;
--- binutils-2.18-orig/bfd/elf32-arm.c	2007-08-07 02:59:23.000000000 +0700&lt;br /&gt;
+++ binutils-2.18/bfd/elf32-arm.c	2008-03-15 11:30:17.000000000 +0700&lt;br /&gt;
@@ -3093,8 +3093,8 @@&lt;br /&gt;
 static void check_use_blx(struct elf32_arm_link_hash_table *globals)&lt;br /&gt;
 {&lt;br /&gt;
   if (bfd_elf_get_obj_attr_int (globals-&amp;gt;obfd, OBJ_ATTR_PROC,&lt;br /&gt;
-				Tag_CPU_arch) &amp;gt; 2)&lt;br /&gt;
-    globals-&amp;gt;use_blx = 1;&lt;br /&gt;
+				Tag_CPU_arch) &amp;gt;= TAG_CPU_ARCH_V5T)&lt;br /&gt;
+    globals-&amp;gt;use_blx = 0;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 bfd_boolean&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure --prefix={devel path}/android/cross --target=arm-eabi&lt;br /&gt;
&lt;br /&gt;
=== gcc 4.2.4 with gcc41-java-arm4.patch ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure   --prefix={devel path}/android/cross --target=arm-eabi --with-arch=armv4t --enable-shared --enable-threads --disable-nls --disable-libmudflap --enable-target-optspace --with-abi=aapcs --enable-multilib --disable-libssp --disable-libstdcxx --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
=== java-6-sun ===&lt;br /&gt;
&lt;br /&gt;
This is the standard Linux package available for most (all?) distributions.&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Coming soon. I've posted a number of them on the devel mailing list so far. Eventually, I expect to provide everything necessary for people to build Android for themselves.&lt;br /&gt;
&lt;br /&gt;
== Images ==&lt;br /&gt;
To use the Kernel you have to adjust your [http://www.denx.de/wiki/U-Boot u-boot] environment to support a Kernel of more then 2 MB or your have to change to the [http://wiki.openmoko.org/wiki/Qi Qi Bootloader]&lt;br /&gt;
&lt;br /&gt;
I have placed an older 2.6.26 kernel with Android support at:&lt;br /&gt;
&lt;br /&gt;
    [http://people.openmoko.org/sean_mcneil/uImage-android uImage-android]&lt;br /&gt;
&lt;br /&gt;
I have put up a jffs2 image that replaces rootfs on the Freerunner at:&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/androidfs.jffs2 androidfs.jffs2]&lt;br /&gt;
&lt;br /&gt;
Warning: Installation of Android requires loading a new kernel and rootfs image onto your phone. I have not had time to produce a version that runs completely off an sdcard.&lt;br /&gt;
Can someone please give us a HOWTO 'change u-boot environment' or a ready-to-download u-boot?&lt;br /&gt;
&lt;br /&gt;
== Android on SDcard ==&lt;br /&gt;
&lt;br /&gt;
Some notes about booting android from sdcard : &lt;br /&gt;
&lt;br /&gt;
* Build android from source. See [http://trac.koolu.org/ koolu website] for directions.&lt;br /&gt;
* Use the first script in [http://lists.openmoko.org/pipermail/community/2008-December/036982.html this mail] (adapt to your filesystem) to stage your android install.&lt;br /&gt;
* copy the contents of this directory on a ext3 partition on your sdcard.&lt;br /&gt;
* add a /boot directory on your sdcard.&lt;br /&gt;
* copy andy's  ''moredrivers'' kernel (for some reasons the uImage-android kernel does not boot on my GTA02 ?) from [http://people.openmoko.org/andy/ andy's page] and copy it in your /boot with the exact name '''uImage-GTA02.bin'''&lt;br /&gt;
* I changed the init.rc (in your root on the sd) to remove mounts that could be problematic (/data for example) in an attempt to make it work the dirty way.&lt;br /&gt;
* Install [[Qi]] on you NAND flash. You can still boot whatever distro you've got on internal flash with the NOR bootloader. You should try the magic file in /boot to make it show debug info.&lt;br /&gt;
* boot the GTA02, and pray.&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
&lt;br /&gt;
For the moment, the kernel boots, &amp;lt;tt&amp;gt;A N D R O I D&amp;lt;/tt&amp;gt; appears (hurray), &amp;lt;tt&amp;gt;init.rc&amp;lt;/tt&amp;gt; gets executed but nothing more happens after that. &lt;br /&gt;
&lt;br /&gt;
Using adb to debug, it seems the root filesystem is still mounted read-only and then, the dalvik cache cannot initialize and android cannot start.&lt;br /&gt;
&lt;br /&gt;
I had to remount the filesystem rw (using adb shell) and create the /data/dalvik-cache directory to go further.&lt;br /&gt;
&lt;br /&gt;
Then I hit a problem with classes not found...Time to go to bed ;)&lt;br /&gt;
&lt;br /&gt;
[[User:Phyce|Phyce]] 23:38, 18 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
As noted above, this installation requires you to wipe out the existing kernel and rootfs in NAND on your Freerunner. You also must have an SDCARD and it needs to be configured with two (2) primary partitions: First is VFAT/MSDOS (16 or 32) which acts as the /sdcard storage area for pictures, movies, music, etc. and the Second is an ext3 primary partition for use of internal Android /data area to store settings, caches, etc.&lt;br /&gt;
&lt;br /&gt;
The first thing I suggest is to setup an SDCARD. You can flash the NAND first, but you must have an SDCARD with two partitions as stated before you'll be able to boot. I use a 2GB card which I have split in half. fdisk shows me:&lt;br /&gt;
&lt;br /&gt;
    /dev/mmcblk0p1               1        2454      996310    6  FAT16&amp;lt;br&amp;gt;&lt;br /&gt;
    /dev/mmcblk0p2            2455        4908      996324   83  Linux&lt;br /&gt;
&lt;br /&gt;
formatted as&lt;br /&gt;
&lt;br /&gt;
    sudo mkfs.vfat /dev/mmcblk0p1&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo mkfs.ext3 /dev/mmcblk0p2&lt;br /&gt;
&lt;br /&gt;
There is no need to populate the ext3 partition at all. The VFAT partition can be populated with media content if you so desire.&lt;br /&gt;
&lt;br /&gt;
With your SDCARD all set, you are ready to flash the kernel and rootfs:&lt;br /&gt;
&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a kernel -D uImage-android&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a rootfs -D androidfs.jffs2&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Tools ==&lt;br /&gt;
&lt;br /&gt;
To assist in debugging and to gain shell access to the phone with Android, you can &lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/adb adb]&lt;br /&gt;
&lt;br /&gt;
You should be able to connect to the phone as long as you start it up with the USB connected to your host. I don't think it will work if you plug it in after starting. Some helpful commands are:&lt;br /&gt;
&lt;br /&gt;
    ADBHOST=neo ./adb logcat           - like a tail -f of the android log&lt;br /&gt;
    ADBHOST=neo ./adb logcat -b radio  - same as above for the radio logs&lt;br /&gt;
    ADBHOST=neo ./adb shell            - bring up a command shell to the phone&lt;br /&gt;
    ADBHOST=neo ./adb kill-server      - kill the background server on the host&lt;br /&gt;
&lt;br /&gt;
Note: ADBHOST=neo assumes you have neo in your hosts file to point to the ip of the phone (192.168.0.202). Otherwise prefix the commands with &amp;quot;ADBHOST=192.168.0.202 ./adb [...]&amp;quot; It seems that simply adding IP to /etc/hosts doesn't work on Ubuntu, using IP address (192.168.0.202) instead neo will save your time. If you cannot to the device run &amp;quot;adb kill-server&amp;quot; before trying other commands.&lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
&lt;br /&gt;
This version of the linux kernel will not successfully wake from suspend mode. Your battery life will be significantly lowered because of this and the phone will lock up unless you setup the phones screen timeout to never.&lt;br /&gt;
&lt;br /&gt;
This version of the kernel also uses a keypad hack. The buttons layout is as follows:&lt;br /&gt;
&lt;br /&gt;
    Aux left-hand upper button is the &amp;quot;back&amp;quot; key.&lt;br /&gt;
    Power button is:&lt;br /&gt;
        menu button when pushed quickly,&lt;br /&gt;
        end button when held for more than a second and released,&lt;br /&gt;
        power-off if held for 10 seconds.&lt;br /&gt;
[[category|Distribution]]&lt;br /&gt;
[[Category:Flashing Openmoko]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Android_on_Freerunner</id>
		<title>Android on Freerunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Android_on_Freerunner"/>
				<updated>2008-12-18T22:13:23Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Images */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Android on Freerunner}}&lt;br /&gt;
== Android on Freerunner ==&lt;br /&gt;
Google has released their open source version of the Android phone software distribution. In order to use it on the Freerunner, a number of patches need to be applied and a compiler with armv4 java exception support needs to be used to compile the software.&lt;br /&gt;
&lt;br /&gt;
== Compiler suite ==&lt;br /&gt;
&lt;br /&gt;
Android is a little picky about the version of gcc compiler. It also requires some java exception support that isn't available for armv4 without a minor modification. The following tools are what I use to build Android:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Binutils 2.18 ===&lt;br /&gt;
&lt;br /&gt;
At one time I had some armv5t code that was compiled into Android which would cause the linker to generate these blx instructions which fail on armv4. I'm not sure if this is still necessary, but I still have the following change applied to binutils:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
diff -urN binutils-2.18-orig/bfd/elf32-arm.c binutils-2.18/bfd/elf32-arm.c&lt;br /&gt;
--- binutils-2.18-orig/bfd/elf32-arm.c	2007-08-07 02:59:23.000000000 +0700&lt;br /&gt;
+++ binutils-2.18/bfd/elf32-arm.c	2008-03-15 11:30:17.000000000 +0700&lt;br /&gt;
@@ -3093,8 +3093,8 @@&lt;br /&gt;
 static void check_use_blx(struct elf32_arm_link_hash_table *globals)&lt;br /&gt;
 {&lt;br /&gt;
   if (bfd_elf_get_obj_attr_int (globals-&amp;gt;obfd, OBJ_ATTR_PROC,&lt;br /&gt;
-				Tag_CPU_arch) &amp;gt; 2)&lt;br /&gt;
-    globals-&amp;gt;use_blx = 1;&lt;br /&gt;
+				Tag_CPU_arch) &amp;gt;= TAG_CPU_ARCH_V5T)&lt;br /&gt;
+    globals-&amp;gt;use_blx = 0;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 bfd_boolean&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure --prefix={devel path}/android/cross --target=arm-eabi&lt;br /&gt;
&lt;br /&gt;
=== gcc 4.2.4 with gcc41-java-arm4.patch ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
configure   --prefix={devel path}/android/cross --target=arm-eabi --with-arch=armv4t --enable-shared --enable-threads --disable-nls --disable-libmudflap --enable-target-optspace --with-abi=aapcs --enable-multilib --disable-libssp --disable-libstdcxx --enable-languages=c,c++&lt;br /&gt;
&lt;br /&gt;
=== java-6-sun ===&lt;br /&gt;
&lt;br /&gt;
This is the standard Linux package available for most (all?) distributions.&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Coming soon. I've posted a number of them on the devel mailing list so far. Eventually, I expect to provide everything necessary for people to build Android for themselves.&lt;br /&gt;
&lt;br /&gt;
== Images ==&lt;br /&gt;
To use the Kernel you have to adjust your [http://www.denx.de/wiki/U-Boot u-boot] environment to support a Kernel of more then 2 MB or your have to change to the [http://wiki.openmoko.org/wiki/Qi Qi Bootloader]&lt;br /&gt;
&lt;br /&gt;
I have placed an older 2.6.26 kernel with Android support at:&lt;br /&gt;
&lt;br /&gt;
    [http://people.openmoko.org/sean_mcneil/uImage-android uImage-android]&lt;br /&gt;
&lt;br /&gt;
I have put up a jffs2 image that replaces rootfs on the Freerunner at:&lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/androidfs.jffs2 androidfs.jffs2]&lt;br /&gt;
&lt;br /&gt;
Warning: Installation of Android requires loading a new kernel and rootfs image onto your phone. I have not had time to produce a version that runs completely off an sdcard.&lt;br /&gt;
Can someone please give us a HOWTO 'change u-boot environment' or a ready-to-download u-boot?&lt;br /&gt;
&lt;br /&gt;
== Android on SDcard ==&lt;br /&gt;
&lt;br /&gt;
Some notes about booting android from sdcard : &lt;br /&gt;
&lt;br /&gt;
* Build android from source. See [http://trac.koolu.org/ koolu website] for directions.&lt;br /&gt;
* Use the first script in [http://lists.openmoko.org/pipermail/community/2008-December/036982.html this mail] (adapt to your filesystem) to stage your android install.&lt;br /&gt;
* copy the contents of this directory on a ext3 partition on your sdcard.&lt;br /&gt;
* add a /boot directory on your sdcard.&lt;br /&gt;
* copy andy's  ''moredrivers'' kernel (for some reasons the uImage-android kernel does not boot on my GTA02 ?) from [http://people.openmoko.org/andy/ andy's page] and copy it in your /boot with the exact name '''uImage-GTA02.bin'''&lt;br /&gt;
* I changed the init.rc (in your root on the sd) to remove mounts that could be problematic (/data for example) in an attempt to make it work the dirty way.&lt;br /&gt;
* Install [[Qi]] on you NAND flash. You can still boot whatever distro you've got on internal flash with the NOR bootloader. You should try the magic file in /boot to make it show debug info.&lt;br /&gt;
* boot the GTA02, and pray.&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
&lt;br /&gt;
For the moment, the kernel boots, &amp;lt;tt&amp;gt;A N D R O I D&amp;lt;/tt&amp;gt; appears (hurray), &amp;lt;tt&amp;gt;init.rc&amp;lt;/tt&amp;gt; gets executed but nothing more happens after that. Hoping somebody can improve these instruction to make it work all the way.&lt;br /&gt;
&lt;br /&gt;
[[User:Phyce|Phyce]] 22:13, 18 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
As noted above, this installation requires you to wipe out the existing kernel and rootfs in NAND on your Freerunner. You also must have an SDCARD and it needs to be configured with two (2) primary partitions: First is VFAT/MSDOS (16 or 32) which acts as the /sdcard storage area for pictures, movies, music, etc. and the Second is an ext3 primary partition for use of internal Android /data area to store settings, caches, etc.&lt;br /&gt;
&lt;br /&gt;
The first thing I suggest is to setup an SDCARD. You can flash the NAND first, but you must have an SDCARD with two partitions as stated before you'll be able to boot. I use a 2GB card which I have split in half. fdisk shows me:&lt;br /&gt;
&lt;br /&gt;
    /dev/mmcblk0p1               1        2454      996310    6  FAT16&amp;lt;br&amp;gt;&lt;br /&gt;
    /dev/mmcblk0p2            2455        4908      996324   83  Linux&lt;br /&gt;
&lt;br /&gt;
formatted as&lt;br /&gt;
&lt;br /&gt;
    sudo mkfs.vfat /dev/mmcblk0p1&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo mkfs.ext3 /dev/mmcblk0p2&lt;br /&gt;
&lt;br /&gt;
There is no need to populate the ext3 partition at all. The VFAT partition can be populated with media content if you so desire.&lt;br /&gt;
&lt;br /&gt;
With your SDCARD all set, you are ready to flash the kernel and rootfs:&lt;br /&gt;
&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a kernel -D uImage-android&amp;lt;br&amp;gt;&lt;br /&gt;
    sudo {path_to}/dfu-util -d 0x1d50:0x5119 -a rootfs -D androidfs.jffs2&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Tools ==&lt;br /&gt;
&lt;br /&gt;
To assist in debugging and to gain shell access to the phone with Android, you can &lt;br /&gt;
&lt;br /&gt;
   [http://people.openmoko.org/sean_mcneil/adb adb]&lt;br /&gt;
&lt;br /&gt;
You should be able to connect to the phone as long as you start it up with the USB connected to your host. I don't think it will work if you plug it in after starting. Some helpful commands are:&lt;br /&gt;
&lt;br /&gt;
    ADBHOST=neo ./adb logcat           - like a tail -f of the android log&lt;br /&gt;
    ADBHOST=neo ./adb logcat -b radio  - same as above for the radio logs&lt;br /&gt;
    ADBHOST=neo ./adb shell            - bring up a command shell to the phone&lt;br /&gt;
    ADBHOST=neo ./adb kill-server      - kill the background server on the host&lt;br /&gt;
&lt;br /&gt;
Note: ADBHOST=neo assumes you have neo in your hosts file to point to the ip of the phone (192.168.0.202). Otherwise prefix the commands with &amp;quot;ADBHOST=192.168.0.202 ./adb [...]&amp;quot; It seems that simply adding IP to /etc/hosts doesn't work on Ubuntu, using IP address (192.168.0.202) instead neo will save your time. If you cannot to the device run &amp;quot;adb kill-server&amp;quot; before trying other commands.&lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
&lt;br /&gt;
This version of the linux kernel will not successfully wake from suspend mode. Your battery life will be significantly lowered because of this and the phone will lock up unless you setup the phones screen timeout to never.&lt;br /&gt;
&lt;br /&gt;
This version of the kernel also uses a keypad hack. The buttons layout is as follows:&lt;br /&gt;
&lt;br /&gt;
    Aux left-hand upper button is the &amp;quot;back&amp;quot; key.&lt;br /&gt;
    Power button is:&lt;br /&gt;
        menu button when pushed quickly,&lt;br /&gt;
        end button when held for more than a second and released,&lt;br /&gt;
        power-off if held for 10 seconds.&lt;br /&gt;
[[category|Distribution]]&lt;br /&gt;
[[Category:Flashing Openmoko]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Android_on_Freerunner</id>
		<title>Talk:Android on Freerunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Android_on_Freerunner"/>
				<updated>2008-12-18T21:48:48Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How about Android placed complitly on SD card without need to be flashed?&lt;br /&gt;
[[User:Ntropy|Ntropy]] 11:09, 18 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This page should merge with [[Android]] ( [[User:Phyce|Phyce]] 21:48, 18 December 2008 (UTC) )&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Pouch_-_stylus_/_case_opener_using_a_guitar_pick</id>
		<title>Pouch - stylus / case opener using a guitar pick</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Pouch_-_stylus_/_case_opener_using_a_guitar_pick"/>
				<updated>2008-10-12T09:53:57Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: New page: = Pouch Hacking =  == A guitar pick at the end of the cord ==  ''Guide provided by Thomas White - I hope it's OK to put it there for further reference''  So, I cut the clip off (using scis...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Pouch Hacking =&lt;br /&gt;
&lt;br /&gt;
== A guitar pick at the end of the cord ==&lt;br /&gt;
&lt;br /&gt;
''Guide provided by Thomas White - I hope it's OK to put it there for further reference''&lt;br /&gt;
&lt;br /&gt;
So, I cut the clip off (using scissors, the plastic wasn't very strong)&lt;br /&gt;
and carefully unpicked the stitching that created the little loop at&lt;br /&gt;
the end of the cord to hold it on.  You have to be very careful not to&lt;br /&gt;
also cut through the other stitching which joins the two pieces of cord&lt;br /&gt;
together at the end.&lt;br /&gt;
&lt;br /&gt;
Then I took an old guitar plectrum and cut a hole in it.  If I had a&lt;br /&gt;
drill to hand, I would've used that.  Because I didn't, I was limited&lt;br /&gt;
to doing something nasty involving pliers and other cutting tools.&lt;br /&gt;
This left me with something like this:&lt;br /&gt;
&lt;br /&gt;
http://www.srcf.ucam.org/~taw27/openmoko/pouch-stylus/plectrum-and-pouch.jpg&lt;br /&gt;
&lt;br /&gt;
Then by carefully pushing the end of the cord loop through the hole,&lt;br /&gt;
passing the loop back over the plectrum and pulling tight, I had this:&lt;br /&gt;
&lt;br /&gt;
http://www.srcf.ucam.org/~taw27/openmoko/pouch-stylus/pouch-stylus.jpg&lt;br /&gt;
&lt;br /&gt;
... which works quite nicely!  The cord &amp;quot;knot&amp;quot; makes it quite&lt;br /&gt;
comfortable, and of course I always have it with me.  I have to turn&lt;br /&gt;
the pouch upside-down to have the cord approaching from the right angle&lt;br /&gt;
(I'm left-handed), and I also recommend pushing the toggle to the&lt;br /&gt;
&amp;quot;pouch end&amp;quot; to avoid having the chunk of plastic in the way.&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/FSO_ringtones</id>
		<title>FSO ringtones</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/FSO_ringtones"/>
				<updated>2008-09-22T06:28:45Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Note */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FSO}}&lt;br /&gt;
==The milestone 3 way==&lt;br /&gt;
FSO milestone 3 introduces some configuration files for Zhone. It is now possible to define as many ringtone profiles as we want. Each profile is a YAML configuration file located in :&lt;br /&gt;
 /etc/freesmartphone/opreferences/conf/phone&lt;br /&gt;
&lt;br /&gt;
The default profile is defined in the default.yaml file :&lt;br /&gt;
 ring-tone: &amp;quot;Arkanoid_PSID.sid&amp;quot;&lt;br /&gt;
 ring-volume: 10&lt;br /&gt;
&lt;br /&gt;
To change this default ringtone :&lt;br /&gt;
# copy the sound file into /usr/share/sounds/&lt;br /&gt;
# edit the &amp;quot;ringtone&amp;quot; field to match your sound filename.&lt;br /&gt;
&lt;br /&gt;
====Note====&lt;br /&gt;
&lt;br /&gt;
Not sure I'm doing this the Right Way, but I had to patch '''/usr/share/python-support/fso-frameworkd/framework/subsystems/oeventsd/fso_actions.py''' this way :&lt;br /&gt;
&lt;br /&gt;
 --- fso_actions.py.orig	2008-09-21 14:38:03.000000000 +0200&lt;br /&gt;
 +++ fso_actions.py	2008-09-13 00:49:37.000000000 +0200&lt;br /&gt;
 @@ -143,7 +143,7 @@&lt;br /&gt;
          phone_prefs = prefs.GetService( &amp;quot;phone&amp;quot; )&lt;br /&gt;
          ring_tone = phone_prefs.GetValue( &amp;quot;ring-tone&amp;quot; )&lt;br /&gt;
          ring_volume = phone_prefs.GetValue( &amp;quot;ring-volume&amp;quot; )&lt;br /&gt;
 -        sound_path = os.path.join( installprefix, &amp;quot;share/sounds/&amp;quot;, ring_tone )&lt;br /&gt;
 +        sound_path = os.path.join( installprefix, &amp;quot;usr/share/sounds/&amp;quot;, ring_tone )&lt;br /&gt;
  &lt;br /&gt;
          if self.cmd == &amp;quot;play&amp;quot;:&lt;br /&gt;
              logger.info( &amp;quot;Start ringing : tone=%s, volume=%s&amp;quot;, ring_tone, ring_volume )&lt;br /&gt;
 @@ -180,7 +180,7 @@&lt;br /&gt;
          phone_prefs = prefs.GetService( &amp;quot;phone&amp;quot; )&lt;br /&gt;
          tone = phone_prefs.GetValue( &amp;quot;message-tone&amp;quot; )&lt;br /&gt;
          volume = phone_prefs.GetValue( &amp;quot;message-volume&amp;quot; )&lt;br /&gt;
 -        sound_path = os.path.join( installprefix, &amp;quot;share/sounds/&amp;quot;, tone )&lt;br /&gt;
 +        sound_path = os.path.join( installprefix, &amp;quot;usr/share/sounds/&amp;quot;, tone )&lt;br /&gt;
  &lt;br /&gt;
          if self.cmd == &amp;quot;play&amp;quot;:&lt;br /&gt;
              logger.info( &amp;quot;Start ringing : tone=%s, volume=%s&amp;quot;, tone, volume )&lt;br /&gt;
&lt;br /&gt;
Note about that : there seems to be a patch for debian somewhere on the way to the repos : http://lists.alioth.debian.org/pipermail/pkg-fso-commits/2008-September/000158.html that mangles the installprefix instead. Same spirit, maybe a little cleaner than yours.&lt;br /&gt;
&lt;br /&gt;
==The milestone 2 way==&lt;br /&gt;
The ringtone in milestone 2 is stored here:&lt;br /&gt;
&lt;br /&gt;
 /usr/share/sounds/Arkanoid_PSID.sid&lt;br /&gt;
&lt;br /&gt;
Fun fact : according to the gstreamer documentation, .sid files are in fact small Commodore 64 programs that are executed on an emulated 6502 CPU and a MOS 6581 sound chip. &lt;br /&gt;
&lt;br /&gt;
Now to change it is a little bit of fun.&lt;br /&gt;
&lt;br /&gt;
first change directory to&lt;br /&gt;
&lt;br /&gt;
 /usr/lib/python2.5/site-packages/framework/subsystems/oeventd/&lt;br /&gt;
&lt;br /&gt;
and open the file parser.py&lt;br /&gt;
&lt;br /&gt;
#this will be /var/lib/python-support/python2.5/framework/subsystems/oeventd/parser.py if you are using FSO under Debian&lt;br /&gt;
&lt;br /&gt;
Search for PlaySound. Edit the 2 lines to point to your wav or mp3 file.&lt;br /&gt;
&lt;br /&gt;
There does seem to be a lag of a few vibrations before the sound starts but that might desirable. (I didn't compare against the original code).  The code to specifically handle formats, (oggs for example) can be a little complicated and makes things messy.&lt;br /&gt;
Since, it seems like this code is changing in FSO, I'm leaving it for the moment.&lt;br /&gt;
&lt;br /&gt;
Then&lt;br /&gt;
&lt;br /&gt;
 mv receiver.pyo /home/root &lt;br /&gt;
&lt;br /&gt;
#receiver.pyo will be receiver.pyc in FSO under Debian&lt;br /&gt;
&lt;br /&gt;
 python&lt;br /&gt;
  &amp;gt;&amp;gt;&amp;gt; import py_compile&lt;br /&gt;
  &amp;gt;&amp;gt;&amp;gt; py_compile.compile(&amp;quot;parser.py&amp;quot;)&lt;br /&gt;
  &amp;gt;&amp;gt;&amp;gt; quit()&lt;br /&gt;
#You may not have the py_compile module. You can install them like this:&lt;br /&gt;
 opkg install python-compile&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/fso-frameworkd restart &amp;amp;&amp;amp; /etc/init.d/zhone-session stop &amp;amp;&amp;amp; sleep 2 &amp;amp;&amp;amp; /etc/init.d/zhone-session start&lt;br /&gt;
#I've only run the above restart commands in Debian so I'm not sure if they are the same in the default FSO image&lt;br /&gt;
#the default zhone-session file doesn't have a working restart command, hence the stop-&amp;gt;sleep 2-&amp;gt;start&lt;br /&gt;
&lt;br /&gt;
zhone for FSO seems to be launched by Xsession.d so maybe try:&lt;br /&gt;
 /etc/init.d/xserver-nodm restart&lt;br /&gt;
&lt;br /&gt;
Now you can link /usr/share/sounds/ringtone to any mp3 (or other sound file if you took the second option) and that will be your ringtone&lt;br /&gt;
&lt;br /&gt;
[[Category:Add-on data]]&lt;br /&gt;
[[Category:FSO]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/FSO_ringtones</id>
		<title>FSO ringtones</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/FSO_ringtones"/>
				<updated>2008-09-21T09:57:25Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FSO}}&lt;br /&gt;
&lt;br /&gt;
The ringtone in milestone 2 is stored here:&lt;br /&gt;
&lt;br /&gt;
 /usr/share/sounds/Arkanoid_PSID.sid&lt;br /&gt;
&lt;br /&gt;
Fun fact : according to the gstreamer documentation, .sid files are in fact small Commodore 64 programs that are executed on an emulated 6502 CPU and a MOS 6581 sound chip. &lt;br /&gt;
&lt;br /&gt;
Now to change it is a little bit of fun.&lt;br /&gt;
&lt;br /&gt;
first change directory to&lt;br /&gt;
&lt;br /&gt;
 /usr/lib/python2.5/site-packages/framework/subsystems/oeventd/&lt;br /&gt;
&lt;br /&gt;
and open the file parser.py&lt;br /&gt;
&lt;br /&gt;
#this will be /var/lib/python-support/python2.5/framework/subsystems/oeventd/parser.py if you are using FSO under Debian&lt;br /&gt;
&lt;br /&gt;
Search for PlaySound. Edit the 2 lines to point to your wav or mp3 file.&lt;br /&gt;
&lt;br /&gt;
There does seem to be a lag of a few vibrations before the sound starts but that might desirable. (I didn't compare against the original code).  The code to specifically handle formats, (oggs for example) can be a little complicated and makes things messy.&lt;br /&gt;
Since, it seems like this code is changing in FSO, I'm leaving it for the moment.&lt;br /&gt;
&lt;br /&gt;
Then&lt;br /&gt;
&lt;br /&gt;
 mv receiver.pyo /home/root &lt;br /&gt;
&lt;br /&gt;
#receiver.pyo will be receiver.pyc in FSO under Debian&lt;br /&gt;
&lt;br /&gt;
 python&lt;br /&gt;
  &amp;gt;&amp;gt;&amp;gt; import py_compile&lt;br /&gt;
  &amp;gt;&amp;gt;&amp;gt; py_compile.compile(&amp;quot;parser.py&amp;quot;)&lt;br /&gt;
  &amp;gt;&amp;gt;&amp;gt; quit()&lt;br /&gt;
#You may not have the py_compile module. You can install them like this:&lt;br /&gt;
 opkg install python-compile&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/fso-frameworkd restart &amp;amp;&amp;amp; /etc/init.d/zhone-session stop &amp;amp;&amp;amp; sleep 2 &amp;amp;&amp;amp; /etc/init.d/zhone-session start&lt;br /&gt;
#I've only run the above restart commands in Debian so I'm not sure if they are the same in the default FSO image&lt;br /&gt;
#the default zhone-session file doesn't have a working restart command, hence the stop-&amp;gt;sleep 2-&amp;gt;start&lt;br /&gt;
&lt;br /&gt;
zhone for FSO seems to be launched by Xsession.d so maybe try:&lt;br /&gt;
 /etc/init.d/xserver-nodm restart&lt;br /&gt;
&lt;br /&gt;
Now you can link /usr/share/sounds/ringtone to any mp3 (or other sound file if you took the second option) and that will be your ringtone&lt;br /&gt;
&lt;br /&gt;
[[Category:Add-on data]]&lt;br /&gt;
[[Category:FSO]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Debian</id>
		<title>Debian</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Debian"/>
				<updated>2008-08-22T17:28:38Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* XFCE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installation =&lt;br /&gt;
There are official instructions on how to install Debian on http://wiki.debian.org/DebianOnFreeRunner, and the [http://lists.linuxtogo.org/pipermail/smartphones-standards/2008-August/000232.html announcement].&lt;br /&gt;
&lt;br /&gt;
Previous, partly now outdated information on how to install Debian manually has been moved to [[Manual Debian]].&lt;br /&gt;
&lt;br /&gt;
= System =&lt;br /&gt;
== Password ==&lt;br /&gt;
&lt;br /&gt;
The default root password is blank.  You should change that as soon as you can.&lt;br /&gt;
&lt;br /&gt;
== Speeding up booting ==&lt;br /&gt;
What's good for every linux booting is also good for our debian on the freerunner: booting in quiet mode. To do so by default just boot your Neo Freerunner in NOR-Flash and execute this configure-script: [http://paste.ubuntuusers.de/391456/ configure-uboot.sh].&lt;br /&gt;
&lt;br /&gt;
It changes default booting to quiet-mode and adds another boot-option to boot without quiet-mode for debugging purpose.&lt;br /&gt;
== Suspend ==&lt;br /&gt;
To make suspend available you have to install apmd:&lt;br /&gt;
 apt-get install apmd&lt;br /&gt;
After that you can suspend your phone with:&lt;br /&gt;
 apm -s&lt;br /&gt;
and make it wake up again with pressing the power button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Issues:&lt;br /&gt;
* [[User:Wuth|Wuth]] 06:28, 17 August 2008 (UTC): I found that apmd was already installed by using the official debian installation procedure, but that the kernel didn't support apm.  I haven't yet resolved this issue.&lt;br /&gt;
&lt;br /&gt;
* [[User:Phyce|Phyce]] 21:33, 20 August 2008 (UTC)  installed apm without problems; apm -s shutdowns the freerunner but I couldn't wake it up with power button... I had to remove the battery to boot again. suspend/resume was working quite reliably with latest kernels on ASU.&lt;br /&gt;
&lt;br /&gt;
== Time ==&lt;br /&gt;
&lt;br /&gt;
The default time zone is UTC.  Reconfigure it by running&lt;br /&gt;
&lt;br /&gt;
 # dpkg-reconfigure tzdata&lt;br /&gt;
&lt;br /&gt;
Set the clock manual using, e.g.&lt;br /&gt;
&lt;br /&gt;
 # date -s 00:33&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Issues:&lt;br /&gt;
* That's probably not sufficient to keep the clock accurate.  It might be worth configuring some form of NTP.&lt;br /&gt;
** Setting the clock could be done via GPS: [[Getting_GPS_console_output_with_gllin#GPRMC_message]]&lt;br /&gt;
&lt;br /&gt;
== WLAN ==&lt;br /&gt;
&lt;br /&gt;
You can set up the wireless connection to your home router.&lt;br /&gt;
Assuming your wireless router uses WPA security and DHCP:&lt;br /&gt;
 # apt-get install wireless-tools wpasupplicant dhcp3-client&lt;br /&gt;
&lt;br /&gt;
Edit &amp;lt;code&amp;gt;/etc/network/interfaces&amp;lt;/code&amp;gt; to include a section like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
auto eth0&lt;br /&gt;
iface eth0 inet dhcp&lt;br /&gt;
       wpa-driver wext&lt;br /&gt;
       wpa-ssid &amp;quot;MyWirelessName&amp;quot;&lt;br /&gt;
       wpa-psk &amp;quot;MyWirelessPassword&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Where, of course, you're using the name of your wireless network and it's password&lt;br /&gt;
instead of ''MyWirelessName'' and ''MyWirelessPassword''.&lt;br /&gt;
&lt;br /&gt;
You can test by running&lt;br /&gt;
 # ifup eth0&lt;br /&gt;
&lt;br /&gt;
You can determine your IP address by running&lt;br /&gt;
 # ifconfig eth0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Issues:&lt;br /&gt;
* only works if in presence of wireless network on boot, or when manually running &amp;lt;code&amp;gt;ifup eth0&amp;lt;/code&amp;gt;&lt;br /&gt;
* booting away from wireless network is slower because waits for DHCP to time out&lt;br /&gt;
* does not reestablish connection when leaving wireless area and then returning&lt;br /&gt;
* does not support multiple wireless networks or open hotspots that you may travel between&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
&lt;br /&gt;
The Freerunner uses the standard Linux bluez stack, installed with&lt;br /&gt;
 # apt-get install bluez-utils&lt;br /&gt;
&lt;br /&gt;
There is also a module missing from /etc/modules, which is critical to getting your device recognized. (kudos to johnsu01 on irc.freenode.net:#openmoko-debian for the find)&lt;br /&gt;
 # echo ohci-hcd &amp;gt;&amp;gt; /etc/modules&lt;br /&gt;
&lt;br /&gt;
The first time you try this, you can also&lt;br /&gt;
 # modprobe ochi-hcd&lt;br /&gt;
&lt;br /&gt;
The only atypical part of using bluetooth on the Freerunner is turning it on, which can be done with&lt;br /&gt;
 # echo 1 &amp;gt; /sys/bus/platform/devices/neo1973-pm-bt.0/power_on&lt;br /&gt;
 # echo 0 &amp;gt; /sys/bus/platform/devices/neo1973-pm-bt.0/reset&lt;br /&gt;
&lt;br /&gt;
Then the device should be visible using&lt;br /&gt;
 # hcitool dev&lt;br /&gt;
&lt;br /&gt;
= Software =&lt;br /&gt;
== TangoGPS ==&lt;br /&gt;
{{main|TangoGPS}}&lt;br /&gt;
&lt;br /&gt;
== XFCE ==&lt;br /&gt;
&lt;br /&gt;
xfce is small and lightweight and so quite fast for the Freerunner.&lt;br /&gt;
&lt;br /&gt;
 apt-get install xfce4&lt;br /&gt;
 cp /etc/init.d/zhone-session /etc/init.d/xfce&lt;br /&gt;
&lt;br /&gt;
Then you may hack /etc/init.d/xfce making&lt;br /&gt;
&lt;br /&gt;
 PROG_FSO=/usr/bin/startxfce4&lt;br /&gt;
&lt;br /&gt;
Customize the boot process :&lt;br /&gt;
&lt;br /&gt;
 update-rc.d -f zhone-session remove&lt;br /&gt;
 update-rc.d -f xfce defaults&lt;br /&gt;
&lt;br /&gt;
edit your /etc/hosts to have :&lt;br /&gt;
&lt;br /&gt;
 127.0.0.1 localhost debian-gta02&lt;br /&gt;
&lt;br /&gt;
Start XFCE !&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/zhone-session stop&lt;br /&gt;
 /etc/init.d/xfce start&lt;br /&gt;
&lt;br /&gt;
The desktop takes a while to start but once up was snappy as can be expected.&lt;br /&gt;
I've not yet looked at the reason for the seemingly too slow start for the desktop.&lt;br /&gt;
&lt;br /&gt;
zhone is available from the &amp;quot;Office&amp;quot; menu in xfce.&lt;br /&gt;
The matchbox keyboard is available in &amp;quot;Accessories&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
= Miscellaneous =&lt;br /&gt;
== Making the cursor invisible ==&lt;br /&gt;
To make the cursor invisible create a file called empty.cursor with this content:&lt;br /&gt;
 #define empty.cursor_width 16&lt;br /&gt;
 #define empty.cursor_height 16&lt;br /&gt;
 static unsigned char empty.cursor_bits[] = {&lt;br /&gt;
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,&lt;br /&gt;
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,&lt;br /&gt;
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};&lt;br /&gt;
Now you can execute:&lt;br /&gt;
 xsetroot -cursor empty.cursor empty.cursor&lt;br /&gt;
and the cursor will be invisible. To make this permanent you have to invent something ;) It must be executed after zhone has finished starting up.&lt;br /&gt;
&lt;br /&gt;
== Using the mouse and keyboard from your desktop on the OM device ==&lt;br /&gt;
If you are running Linux (or a similar xorg capable operating system) on your Desktop, you can export your xsession to the openmoko device and use your mouse and keyboard on the Neo screen. A little program called x2x makes it even possible to do this simultaneously on the fly. When activated you just move your mouse to the edge of your monitor and then the mouse cursor continues on the screen of your openmoko device. If you select a window on the OM, the input of your keyboard is automatically entered in that window. You can even use the clipboard to copy data from tour desktop to OM and in the reverse direction.&lt;br /&gt;
&lt;br /&gt;
Configure your desktop computer to export your xsession:&lt;br /&gt;
 On your desktop (with root permissions):&lt;br /&gt;
 Make sure that sshd is installed and in /etc/ssh/sshd_config you have set&lt;br /&gt;
 X11Forwarding yes&lt;br /&gt;
&lt;br /&gt;
In K/Ubuntu sshd is in the package openssh-server.&lt;br /&gt;
&lt;br /&gt;
On your OM device install x2x (with root permissions)&lt;br /&gt;
 apt-get install x2x&lt;br /&gt;
Now open a new X terminal on your desktop computer. You MUST be the same user that is running the xsession on your desktop (i.e. do not su to root or another user in your x terminal!). On your OM device you should be running an xsession as the user openmoko. Assuming that you have a usb networking connection to OM (with standard configuration) on the user prompt of your desktop type:&lt;br /&gt;
 user@desktop:~$ ssh -X openmoko@192.168.0.202 &amp;quot;/usr/bin/x2x -east -to :0.0&amp;quot;&lt;br /&gt;
Hit return and enter your password. The xterm window will be unresponsive after that, but keep it open until you disconnect your OM device.&lt;br /&gt;
&lt;br /&gt;
Now move your mouse cursor across the right edge of your monitor. It should enter the screen of your OM device from the left. Of course you can also use -west, -north or -south, depending on your preference where you place your OM.&lt;br /&gt;
&lt;br /&gt;
[[Category:Distributions| ]]&lt;br /&gt;
[[Category:Documentation]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Debian</id>
		<title>Debian</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Debian"/>
				<updated>2008-08-22T17:07:20Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installation =&lt;br /&gt;
There are official instructions on how to install Debian on http://wiki.debian.org/DebianOnFreeRunner, and the [http://lists.linuxtogo.org/pipermail/smartphones-standards/2008-August/000232.html announcement].&lt;br /&gt;
&lt;br /&gt;
Previous, partly now outdated information on how to install Debian manually has been moved to [[Manual Debian]].&lt;br /&gt;
&lt;br /&gt;
= System =&lt;br /&gt;
== Password ==&lt;br /&gt;
&lt;br /&gt;
The default root password is blank.  You should change that as soon as you can.&lt;br /&gt;
&lt;br /&gt;
== Speeding up booting ==&lt;br /&gt;
What's good for every linux booting is also good for our debian on the freerunner: booting in quiet mode. To do so by default just boot your Neo Freerunner in NOR-Flash and execute this configure-script: [http://paste.ubuntuusers.de/391456/ configure-uboot.sh].&lt;br /&gt;
&lt;br /&gt;
It changes default booting to quiet-mode and adds another boot-option to boot without quiet-mode for debugging purpose.&lt;br /&gt;
== Suspend ==&lt;br /&gt;
To make suspend available you have to install apmd:&lt;br /&gt;
 apt-get install apmd&lt;br /&gt;
After that you can suspend your phone with:&lt;br /&gt;
 apm -s&lt;br /&gt;
and make it wake up again with pressing the power button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Issues:&lt;br /&gt;
* [[User:Wuth|Wuth]] 06:28, 17 August 2008 (UTC): I found that apmd was already installed by using the official debian installation procedure, but that the kernel didn't support apm.  I haven't yet resolved this issue.&lt;br /&gt;
&lt;br /&gt;
* [[User:Phyce|Phyce]] 21:33, 20 August 2008 (UTC)  installed apm without problems; apm -s shutdowns the freerunner but I couldn't wake it up with power button... I had to remove the battery to boot again. suspend/resume was working quite reliably with latest kernels on ASU.&lt;br /&gt;
&lt;br /&gt;
== Time ==&lt;br /&gt;
&lt;br /&gt;
The default time zone is UTC.  Reconfigure it by running&lt;br /&gt;
&lt;br /&gt;
 # dpkg-reconfigure tzdata&lt;br /&gt;
&lt;br /&gt;
Set the clock manual using, e.g.&lt;br /&gt;
&lt;br /&gt;
 # date -s 00:33&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Issues:&lt;br /&gt;
* That's probably not sufficient to keep the clock accurate.  It might be worth configuring some form of NTP.&lt;br /&gt;
** Setting the clock could be done via GPS: [[Getting_GPS_console_output_with_gllin#GPRMC_message]]&lt;br /&gt;
&lt;br /&gt;
== WLAN ==&lt;br /&gt;
&lt;br /&gt;
You can set up the wireless connection to your home router.&lt;br /&gt;
Assuming your wireless router uses WPA security and DHCP:&lt;br /&gt;
 # apt-get install wireless-tools wpasupplicant dhcp3-client&lt;br /&gt;
&lt;br /&gt;
Edit &amp;lt;code&amp;gt;/etc/network/interfaces&amp;lt;/code&amp;gt; to include a section like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
auto eth0&lt;br /&gt;
iface eth0 inet dhcp&lt;br /&gt;
       wpa-driver wext&lt;br /&gt;
       wpa-ssid &amp;quot;MyWirelessName&amp;quot;&lt;br /&gt;
       wpa-psk &amp;quot;MyWirelessPassword&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Where, of course, you're using the name of your wireless network and it's password&lt;br /&gt;
instead of ''MyWirelessName'' and ''MyWirelessPassword''.&lt;br /&gt;
&lt;br /&gt;
You can test by running&lt;br /&gt;
 # ifup eth0&lt;br /&gt;
&lt;br /&gt;
You can determine your IP address by running&lt;br /&gt;
 # ifconfig eth0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Issues:&lt;br /&gt;
* only works if in presence of wireless network on boot, or when manually running &amp;lt;code&amp;gt;ifup eth0&amp;lt;/code&amp;gt;&lt;br /&gt;
* booting away from wireless network is slower because waits for DHCP to time out&lt;br /&gt;
* does not reestablish connection when leaving wireless area and then returning&lt;br /&gt;
* does not support multiple wireless networks or open hotspots that you may travel between&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
&lt;br /&gt;
The Freerunner uses the standard Linux bluez stack, installed with&lt;br /&gt;
 # apt-get install bluez-utils&lt;br /&gt;
&lt;br /&gt;
There is also a module missing from /etc/modules, which is critical to getting your device recognized. (kudos to johnsu01 on irc.freenode.net:#openmoko-debian for the find)&lt;br /&gt;
 # echo ohci-hcd &amp;gt;&amp;gt; /etc/modules&lt;br /&gt;
&lt;br /&gt;
The first time you try this, you can also&lt;br /&gt;
 # modprobe ochi-hcd&lt;br /&gt;
&lt;br /&gt;
The only atypical part of using bluetooth on the Freerunner is turning it on, which can be done with&lt;br /&gt;
 # echo 1 &amp;gt; /sys/bus/platform/devices/neo1973-pm-bt.0/power_on&lt;br /&gt;
 # echo 0 &amp;gt; /sys/bus/platform/devices/neo1973-pm-bt.0/reset&lt;br /&gt;
&lt;br /&gt;
Then the device should be visible using&lt;br /&gt;
 # hcitool dev&lt;br /&gt;
&lt;br /&gt;
= Software =&lt;br /&gt;
== TangoGPS ==&lt;br /&gt;
{{main|TangoGPS}}&lt;br /&gt;
&lt;br /&gt;
== XFCE ==&lt;br /&gt;
&lt;br /&gt;
xfce is small and lightweight and so quite fast for the Freerunner.&lt;br /&gt;
&lt;br /&gt;
 apt-get install xfce4&lt;br /&gt;
&lt;br /&gt;
Then you may hack /etc/init.d/zhone-session making&lt;br /&gt;
&lt;br /&gt;
 PROG_FSO=/usr/bin/startxfce4&lt;br /&gt;
&lt;br /&gt;
..reboot and check it out...  The desktop took awhile to start but once up was snappy as can be expected.&lt;br /&gt;
I've not yet looked at the reason for the seemingly too slow start for the desktop.&lt;br /&gt;
&lt;br /&gt;
zhone is available from the &amp;quot;Office&amp;quot; menu in xfce.&lt;br /&gt;
The matchbox keyboard is available in &amp;quot;Accessories&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
You could create a different init.d start script for xfce instead of hacking...&lt;br /&gt;
&lt;br /&gt;
= Miscellaneous =&lt;br /&gt;
== Making the cursor invisible ==&lt;br /&gt;
To make the cursor invisible create a file called empty.cursor with this content:&lt;br /&gt;
 #define empty.cursor_width 16&lt;br /&gt;
 #define empty.cursor_height 16&lt;br /&gt;
 static unsigned char empty.cursor_bits[] = {&lt;br /&gt;
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,&lt;br /&gt;
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,&lt;br /&gt;
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};&lt;br /&gt;
Now you can execute:&lt;br /&gt;
 xsetroot -cursor empty.cursor empty.cursor&lt;br /&gt;
and the cursor will be invisible. To make this permanent you have to invent something ;) It must be executed after zhone has finished starting up.&lt;br /&gt;
&lt;br /&gt;
== Using the mouse and keyboard from your desktop on the OM device ==&lt;br /&gt;
If you are running Linux (or a similar xorg capable operating system) on your Desktop, you can export your xsession to the openmoko device and use your mouse and keyboard on the Neo screen. A little program called x2x makes it even possible to do this simultaneously on the fly. When activated you just move your mouse to the edge of your monitor and then the mouse cursor continues on the screen of your openmoko device. If you select a window on the OM, the input of your keyboard is automatically entered in that window. You can even use the clipboard to copy data from tour desktop to OM and in the reverse direction.&lt;br /&gt;
&lt;br /&gt;
Configure your desktop computer to export your xsession:&lt;br /&gt;
 On your desktop (with root permissions):&lt;br /&gt;
 Make sure that sshd is installed and in /etc/ssh/sshd_config you have set&lt;br /&gt;
 X11Forwarding yes&lt;br /&gt;
&lt;br /&gt;
In K/Ubuntu sshd is in the package openssh-server.&lt;br /&gt;
&lt;br /&gt;
On your OM device install x2x (with root permissions)&lt;br /&gt;
 apt-get install x2x&lt;br /&gt;
Now open a new X terminal on your desktop computer. You MUST be the same user that is running the xsession on your desktop (i.e. do not su to root or another user in your x terminal!). On your OM device you should be running an xsession as the user openmoko. Assuming that you have a usb networking connection to OM (with standard configuration) on the user prompt of your desktop type:&lt;br /&gt;
 user@desktop:~$ ssh -X openmoko@192.168.0.202 &amp;quot;/usr/bin/x2x -east -to :0.0&amp;quot;&lt;br /&gt;
Hit return and enter your password. The xterm window will be unresponsive after that, but keep it open until you disconnect your OM device.&lt;br /&gt;
&lt;br /&gt;
Now move your mouse cursor across the right edge of your monitor. It should enter the screen of your OM device from the left. Of course you can also use -west, -north or -south, depending on your preference where you place your OM.&lt;br /&gt;
&lt;br /&gt;
[[Category:Distributions| ]]&lt;br /&gt;
[[Category:Documentation]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Debian</id>
		<title>Debian</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Debian"/>
				<updated>2008-08-20T21:34:00Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Suspend */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installation =&lt;br /&gt;
There are official instructions on how to install Debian on http://wiki.debian.org/DebianOnFreeRunner, and the [http://lists.linuxtogo.org/pipermail/smartphones-standards/2008-August/000232.html announcement].&lt;br /&gt;
&lt;br /&gt;
Previous, partly now outdated information on how to install Debian manually has been moved to [[Manual Debian]].&lt;br /&gt;
&lt;br /&gt;
= System =&lt;br /&gt;
== Password ==&lt;br /&gt;
&lt;br /&gt;
The default root password is blank.  You should change that as soon as you can.&lt;br /&gt;
&lt;br /&gt;
== Speeding up booting ==&lt;br /&gt;
What's good for every linux booting is also good for our debian on the freerunner: booting in quiet mode. To do so by default just boot your Neo Freerunner in NOR-Flash and execute this configure-script: [http://paste.ubuntuusers.de/391456/ configure-uboot.sh].&lt;br /&gt;
&lt;br /&gt;
It changes default booting to quiet-mode and adds another boot-option to boot without quiet-mode for debugging purpose.&lt;br /&gt;
== Suspend ==&lt;br /&gt;
To make suspend available you have to install apmd:&lt;br /&gt;
 apt-get install apmd&lt;br /&gt;
After that you can suspend your phone with:&lt;br /&gt;
 apm -s&lt;br /&gt;
and make it wake up again with pressing the power button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Issues:&lt;br /&gt;
* [[User:Wuth|Wuth]] 06:28, 17 August 2008 (UTC): I found that apmd was already installed by using the official debian installation procedure, but that the kernel didn't support apm.  I haven't yet resolved this issue.&lt;br /&gt;
&lt;br /&gt;
* [[User:Phyce|Phyce]] 21:33, 20 August 2008 (UTC)  installed apm without problems; apm -s shutdowns the freerunner but I couldn't wake it up with power button... I had to remove the battery to boot again. suspend/resume was working quite reliably with latest kernels on ASU.&lt;br /&gt;
&lt;br /&gt;
== Time ==&lt;br /&gt;
&lt;br /&gt;
The default time zone is UTC.  Reconfigure it by running&lt;br /&gt;
&lt;br /&gt;
 # dpkg-reconfigure tzdata&lt;br /&gt;
&lt;br /&gt;
Set the clock manual using, e.g.&lt;br /&gt;
&lt;br /&gt;
 # date -s 00:33&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Issues:&lt;br /&gt;
* That's probably not sufficient to keep the clock accurate.  It might be worth configuring some form of NTP.&lt;br /&gt;
** Setting the clock could be done via GPS: [[Getting_GPS_console_output_with_gllin#GPRMC_message]]&lt;br /&gt;
&lt;br /&gt;
== WLAN ==&lt;br /&gt;
&lt;br /&gt;
You can set up the wireless connection to your home router.&lt;br /&gt;
Assuming your wireless router uses WPA security and DHCP:&lt;br /&gt;
 # apt-get install wireless-tools wpasupplicant dhcp3-client&lt;br /&gt;
&lt;br /&gt;
Edit &amp;lt;code&amp;gt;/etc/network/interfaces&amp;lt;/code&amp;gt; to include a section like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
auto eth0&lt;br /&gt;
iface eth0 inet dhcp&lt;br /&gt;
       wpa-driver wext&lt;br /&gt;
       wpa-ssid &amp;quot;MyWirelessName&amp;quot;&lt;br /&gt;
       wpa-psk &amp;quot;MyWirelessPassword&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Where, of course, you're using the name of your wireless network and it's password&lt;br /&gt;
instead of ''MyWirelessName'' and ''MyWirelessPassword''.&lt;br /&gt;
&lt;br /&gt;
You can test by running&lt;br /&gt;
 # ifup eth0&lt;br /&gt;
&lt;br /&gt;
You can determine your IP address by running&lt;br /&gt;
 # ifconfig eth0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Issues:&lt;br /&gt;
* only works if in presence of wireless network on boot, or when manually running &amp;lt;code&amp;gt;ifup eth0&amp;lt;/code&amp;gt;&lt;br /&gt;
* booting away from wireless network is slower because waits for DHCP to time out&lt;br /&gt;
* does not reestablish connection when leaving wireless area and then returning&lt;br /&gt;
* does not support multiple wireless networks or open hotspots that you may travel between&lt;br /&gt;
&lt;br /&gt;
= Software =&lt;br /&gt;
== TangoGPS ==&lt;br /&gt;
{{main|TangoGPS}}&lt;br /&gt;
&lt;br /&gt;
= Miscellaneous =&lt;br /&gt;
== Making the cursor invisible ==&lt;br /&gt;
To make the cursor invisible create a file called empty.cursor with this content:&lt;br /&gt;
 #define empty.cursor_width 16&lt;br /&gt;
 #define empty.cursor_height 16&lt;br /&gt;
 static unsigned char empty.cursor_bits[] = {&lt;br /&gt;
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,&lt;br /&gt;
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,&lt;br /&gt;
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};&lt;br /&gt;
Now you can execute:&lt;br /&gt;
 xsetroot -cursor empty.cursor empty.cursor&lt;br /&gt;
and the cursor will be invisible. To make this permanent you have to invent something ;) It must be executed after zhone has finished starting up.&lt;br /&gt;
&lt;br /&gt;
== Using the mouse and keyboard from your desktop on the OM device ==&lt;br /&gt;
If you are running Linux (or a similar xorg capable operating system) on your Desktop, you can export your xsession to the openmoko device and use your mouse and keyboard on the Neo screen. A little program called x2x makes it even possible to do this simultaneously on the fly. When activated you just move your mouse to the edge of your monitor and then the mouse cursor continues on the screen of your openmoko device. If you select a window on the OM, the input of your keyboard is automatically entered in that window. You can even use the clipboard to copy data from tour desktop to OM and in the reverse direction.&lt;br /&gt;
&lt;br /&gt;
Configure your desktop computer to export your xsession:&lt;br /&gt;
 On your desktop (with root permissions):&lt;br /&gt;
 Make sure that sshd is installed and in /etc/ssh/sshd_config you have set&lt;br /&gt;
 X11Forwarding yes&lt;br /&gt;
&lt;br /&gt;
In K/Ubuntu sshd is in the package openssh-server.&lt;br /&gt;
&lt;br /&gt;
On your OM device install x2x (with root permissions)&lt;br /&gt;
 apt-get install x2x&lt;br /&gt;
Now open a new X terminal on your desktop computer. You MUST be the same user that is running the xsession on your desktop (i.e. do not su to root or another user in your x terminal!). On your OM device you should be running an xsession as the user openmoko. Assuming that you have a usb networking connection to OM (with standard configuration) on the user prompt of your desktop type:&lt;br /&gt;
 user@desktop:~$ ssh -X openmoko@192.168.0.202 &amp;quot;/usr/bin/x2x -east -to :0.0&amp;quot;&lt;br /&gt;
Hit return and enter your password. The xterm window will be unresponsive after that, but keep it open until you disconnect your OM device.&lt;br /&gt;
&lt;br /&gt;
Now move your mouse cursor across the right edge of your monitor. It should enter the screen of your OM device from the left. Of course you can also use -west, -north or -south, depending on your preference where you place your OM.&lt;br /&gt;
&lt;br /&gt;
[[Category:Distributions| ]]&lt;br /&gt;
[[Category:Documentation]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Phyce</id>
		<title>User:Phyce</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Phyce"/>
				<updated>2008-07-21T08:59:59Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Interest */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Interest ==&lt;br /&gt;
&lt;br /&gt;
For the moment, I learn to use it and I file bugs and feature requests.&lt;br /&gt;
&lt;br /&gt;
When the soft stacks are stabilized maybe I'll try to improve little things on my own...&lt;br /&gt;
&lt;br /&gt;
== Location == &lt;br /&gt;
&lt;br /&gt;
Plaisir (Ile de France), France&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/Phyce Email]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Getting_Started_with_your_Neo_FreeRunner</id>
		<title>Getting Started with your Neo FreeRunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Getting_Started_with_your_Neo_FreeRunner"/>
				<updated>2008-07-12T09:53:35Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Installing the Micro-SD card, the SIM card, and the Battery */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Getting Started with your Neo FreeRunner}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;2&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;padding: 0%; margin:0em 0em 1em 0em; border:1px solid #cccccc; background:#eeeeee; width:100%;floating=&amp;quot;center&amp;quot;; &amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#fcfcfc;border-left:1px solid #9999cc;border-right:1px ; border-top:2px solid 75d806; border:1px solid #222222; width:75% &amp;quot; |  &lt;br /&gt;
 &amp;lt;div align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
Thank you for purchasing this Developer release of Neo FreeRunner. The [[Neo FreeRunner]] phone is the second hardware platform to take advantage of [[Openmoko]]. This guide will help you get to know your Neo FreeRunner and how to start using your Neo FreeRunner.&lt;br /&gt;
! style=&amp;quot;background:#fcfcfc;border-left:1px solid #9999cc;border-right:1px ; border-top:2px solid 75d806; border:1px solid #222222; width:25% &amp;quot; |&lt;br /&gt;
[[Image:Freerunner box.png|200px|thumb|Neo FreeRunner Package]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== The Package Contents ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;2&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;padding: 0%; margin:0em 0em 1em 0em; border:1px solid #ffffff; background:#ffffff; width:80%; floating=&amp;quot;center&amp;quot;; &amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#ffffff;border-left:1px solid #ffffff;border-right:1px ; border-top:2px solid ffffff; border:1px solid #ffffff; &amp;quot; |  &lt;br /&gt;
&amp;lt;div align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:GTA02ALL.png|400px|thumb|Inside package]]&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Neo FreeRunner&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Stylus&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Battery&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Charger&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  USB Cable &lt;br /&gt;
: [[Image:Circle２.gif|10px]]  microSD Card 512MB&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Getting To Know the Neo FreeRunner==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;80%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:menu8.jpg|370px|thumb|AUX Button and phone jack(From left to right)|center]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #ffffff;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu9.jpg|365px|thumb|Power Button, USB and external GPS Antenna (From left to right)|center]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;80%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:menu12.jpg|233px|thumb|AUX Back side with battery|center]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #ffffff;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu11.jpg|260px|thumb|Put the SIM card and SD card here|center]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;80%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:menu13.jpg|233px|thumb|open case from this side |center]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #ffffff;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu14.jpg|250px|thumb|Opened|center]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Installing the Micro-SD card, the SIM card, and the Battery ===&lt;br /&gt;
&lt;br /&gt;
# Remove the rear cover of the Neo FreeRunner by first holding the Neo FreeRunner on the side and then use your fingernail to prise off the rear cover at the slot on top of the device.&lt;br /&gt;
# Now you should be able to locate the combined SIM and Micro-SD card holder at the bottom of the battery compartment.&lt;br /&gt;
# Unlock the SIM card holder by sliding the metal clip down, towards the USB socket, with your fingernail. Use caution, as these parts are delicate and could be damaged by forcing them in the wrong direction.&lt;br /&gt;
# Lift up on the SIM card holder.&lt;br /&gt;
# The Micro-SD card holder is held in place by a latch on either side.  It is easiest to open the Micro-SD card holder by releasing these latches one at a time rather than by lifting from the middle, as lifting from the middle tends to increase the latching pressure.  A small screwdriver or knife can be used for this.&lt;br /&gt;
# Insert the Micro-SD card into the Micro-SD card holder. Note that on the inside of metal part of the holder there are little holding tabs for the card. Slide the card in these holders (on the metal part) before closing the card holder. Note that the electrical contacts should face down and towards the edge of the Neo Freerunner.&lt;br /&gt;
# Close the Micro-SD card holder, making sure that both latches of the holder are securely fastened.&lt;br /&gt;
# Insert the SIM card into the SIM card holder, taking care to slide inside the two metal tabs in the cover. Note that the electrical contacts should face down and that the cut corner should be closest to the external GPS Antenna Socket.&lt;br /&gt;
# Close the SIM card holder and lock it by sliding the metal clip towards the external GPS Antenna Socket on the FreeRunner.&lt;br /&gt;
# Insert the battery into the battery compartment, aligning the electrical contacts on the battery with the electrical contacts in the battery compartment.  Insert the side with the electrical contacts first.&lt;br /&gt;
# Replace the rear cover on the FreeRunner.&lt;br /&gt;
&lt;br /&gt;
===Turning on the Neo Freerunner===&lt;br /&gt;
&lt;br /&gt;
====Charging the Neo Freerunner====&lt;br /&gt;
&lt;br /&gt;
When using the Neo Freerunner for the first time, you should charge the battery completely. The battery can be charged using the provided charger (at 1000mA) or from a powered USB port capable of providing 500mA worth of current.  Most computers will be able to charge the FreeRunner without any problems.&lt;br /&gt;
&lt;br /&gt;
Charging at 100mA takes 6-12 hours and at 500mA takes 1-2 hours. (from [http://openmoko.togaware.com/survivor/Charging.html openmoko.togaware.com])&lt;br /&gt;
&lt;br /&gt;
===Unlocking the screen===&lt;br /&gt;
&lt;br /&gt;
When the screen is locked, you should see a Matrix-style green graphic with the Openmoko symbol in the middle of the bottom of the screen along with lock and unlock symbols.  If you drag the Openmoko symbol to the unlock symbol at the top then the screen will become unlocked.&lt;br /&gt;
&lt;br /&gt;
=== Importing contacts ===&lt;br /&gt;
&lt;br /&gt;
If you can export your contacts to VCard format, either multiple files or single file containing all of them, you may use the script on [[Import Vcf Contacts]] page to bring them to Neo.&lt;br /&gt;
&lt;br /&gt;
==Connect to the Neo FreeRunner By USB Networking==&lt;br /&gt;
&lt;br /&gt;
Connect the Neo FreeRunner to a GNU/Linux host with the USB cable. For Mac OS X please refer to [[MacOS_X]]. After booting into the Openmoko image there will be a new interface, usb0, on your GNU/Linux host.&lt;br /&gt;
&lt;br /&gt;
=====Manual Method=====&lt;br /&gt;
Type in the following commands in the terminal of a GNU/Linux host:&lt;br /&gt;
&lt;br /&gt;
 ifconfig usb0 192.168.0.200 netmask 255.255.255.0&lt;br /&gt;
 ssh root@192.168.0.202&lt;br /&gt;
&lt;br /&gt;
Press Enter to get by the password.&lt;br /&gt;
&lt;br /&gt;
=====Automatic Method=====&lt;br /&gt;
*Debian and derivatives (Ubuntu, Sidux etc.)&lt;br /&gt;
Edit /etc/network/interfaces:&lt;br /&gt;
&lt;br /&gt;
 auto usb0&lt;br /&gt;
 iface usb0 inet static&lt;br /&gt;
 address 192.168.0.200&lt;br /&gt;
 netmask 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
*Gentoo &lt;br /&gt;
Edit /etc/conf.d/net:&lt;br /&gt;
&lt;br /&gt;
 config_usb0=&amp;quot;192.168.0.200/24&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Restart the networking service ('/etc/init.d/networking restart' for Debian-based systems) and then type the following command in the terminal of the GNU/Linux host:&lt;br /&gt;
&lt;br /&gt;
 ssh root@192.168.0.202&lt;br /&gt;
&lt;br /&gt;
Press Enter to get by the password.&lt;br /&gt;
&lt;br /&gt;
{{note|&lt;br /&gt;
If your network device is using the ip range 192.168.0.x you may have to use the following command before you are able to connect&lt;br /&gt;
&lt;br /&gt;
 route add -host 192.168.0.202 dev usb0 }}&lt;br /&gt;
&lt;br /&gt;
=====Making things even more automatic=====&lt;br /&gt;
If you don't want to remember the IP address of your phone then you can create an alias by adding the following line to your /etc/hosts:&lt;br /&gt;
&lt;br /&gt;
 192.168.0.202   openmoko&lt;br /&gt;
&lt;br /&gt;
Now it should be possible to connect to your phone using the following command:&lt;br /&gt;
&lt;br /&gt;
 ssh root@openmoko&lt;br /&gt;
&lt;br /&gt;
The above only gets you a Secure Shell connection to the Openmoko device, it does not allow the Openmoko device to connect to the Internet.  If you are interested in connecting the device to the internet then check out the [[USB_Networking]] section.&lt;br /&gt;
&lt;br /&gt;
=====Sharing your Internet connection via USB=====&lt;br /&gt;
In Ubuntu:&lt;br /&gt;
&lt;br /&gt;
Within /etc/network/interfaces, change your interface setup to this:&lt;br /&gt;
&lt;br /&gt;
 auto usb0&lt;br /&gt;
 iface usb0 inet static&lt;br /&gt;
    address 192.168.0.200&lt;br /&gt;
    netmask 255.255.255.0&lt;br /&gt;
    network 192.168.0.0&lt;br /&gt;
    up iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24 &amp;amp;&lt;br /&gt;
    up echo 1 &amp;gt; /proc/sys/net/ipv4/ip_forward &amp;amp;&lt;br /&gt;
    up iptables -P FORWARD ACCEPT &amp;amp;&lt;br /&gt;
    down iptables -D POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24 &amp;amp;&lt;br /&gt;
&lt;br /&gt;
Then, on your Freerunner, edit /etc/network/interfaces&lt;br /&gt;
and modify the code from this:&lt;br /&gt;
&lt;br /&gt;
 iface usb0 inet static&lt;br /&gt;
        address 192.168.0.202&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        network 192.168.0.0&lt;br /&gt;
        gateway 192.168.0.200&lt;br /&gt;
        up echo nameserver 192.168.0.200 &amp;gt; /etc/resolv.conf&lt;br /&gt;
&lt;br /&gt;
to something that points to a real name server, like a public DNS system from OpenDNS, like this:&lt;br /&gt;
&lt;br /&gt;
 iface usb0 inet static&lt;br /&gt;
        address 192.168.0.202&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        network 192.168.0.0&lt;br /&gt;
        gateway 192.168.0.200&lt;br /&gt;
        up echo nameserver 208.67.222.222 &amp;gt; /etc/resolv.conf&lt;br /&gt;
        up echo nameserver 208.67.220.220 &amp;gt;&amp;gt; /etc/resolv.conf&lt;br /&gt;
&lt;br /&gt;
==Un-crippling the 2007.2 image==&lt;br /&gt;
&lt;br /&gt;
The stock 2007.2 image flashed onto the Neo FreeRunner is really just the bare bones. For example, you don't have the clock and the quick-launch icons showing. Here's how you can change that:&lt;br /&gt;
&lt;br /&gt;
 # dbus-launch gconftool-2 -t boolean -s /desktop/poky/interface/reduced false&lt;br /&gt;
 # /etc/init.d/xserver-nodm restart&lt;br /&gt;
&lt;br /&gt;
If you rather have a regular clock instead of the digital one, do this instead:&lt;br /&gt;
&lt;br /&gt;
 # dbus-launch gconftool-2 -t boolean -s /desktop/poky/interface/reduced false&lt;br /&gt;
 # dbus-launch gconftool-2 -t boolean -s /desktop/poky/interface/digital_clock false&lt;br /&gt;
 # /etc/init.d/xserver-nodm restart&lt;br /&gt;
&lt;br /&gt;
With either clock, you may wish to set the correct [[Timezone]].&lt;br /&gt;
&lt;br /&gt;
Also, if you prefer having a full keyboard, see [http://www.ginguppin.de/node/15 these instructions].&lt;br /&gt;
&lt;br /&gt;
Finally, you might want to update your package list to know about the most recent versions:&lt;br /&gt;
&lt;br /&gt;
 # opkg update&lt;br /&gt;
&lt;br /&gt;
====Recommended software====&lt;br /&gt;
&lt;br /&gt;
To test GPS, you can use agpsui:&lt;br /&gt;
&lt;br /&gt;
 # opkg install openmoko-agpsui&lt;br /&gt;
&lt;br /&gt;
For a nice map, try tangoGPS:&lt;br /&gt;
&lt;br /&gt;
 # opkg install tangogps&lt;br /&gt;
 # opkg install gpsd&lt;br /&gt;
 # echo &amp;quot;GPS_DEV=\&amp;quot;/dev/ttySAC1\&amp;quot;&amp;quot; &amp;gt; /etc/default/gpsd&lt;br /&gt;
&lt;br /&gt;
And if you want the Media Player back:&lt;br /&gt;
&lt;br /&gt;
 # opkg install openmoko-mediaplayer2&lt;br /&gt;
 # wget http://abraxa.dyndns.org:81/random/openmoko-mediaplayer-theme.tar.bz2&lt;br /&gt;
 # tar xjf openmoko-mediaplayer-theme.tar.bz2 -C /usr/share/themes/Moko/gtk-2.0&lt;br /&gt;
&lt;br /&gt;
If you want a basic image viewer, have a look at the one from the gpe suite:&lt;br /&gt;
&lt;br /&gt;
 # opkg install gpe-icons gpe-gallery&lt;br /&gt;
&lt;br /&gt;
To obtain the standard web browser, use:&lt;br /&gt;
&lt;br /&gt;
 # opkg install openmoko-browser2&lt;br /&gt;
&lt;br /&gt;
There are tons more apps you can install - check out the [[Repositories]] for a list of packages.&lt;br /&gt;
&lt;br /&gt;
====Booting the Neo Freerunner====&lt;br /&gt;
&lt;br /&gt;
You can boot your Neo FreeRunner in the following ways:&lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]    You can power it up into an Openmoko image directly. &lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]    You can boot it into [[Bootloader|U-Boot]] via [[NAND Flash]].&lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]    You can boot it into U-Boot via NOR Flash.&lt;br /&gt;
&lt;br /&gt;
Booting the device into NAND and NOR Flash allows you to update the kernel and root filesystem.&lt;br /&gt;
&lt;br /&gt;
====Start the Openmoko Image====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:Menu2.jpg|200px|right|thumb]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #eeeeee;&amp;quot;&amp;gt;&lt;br /&gt;
Press and hold Power button for about 8 seconds, until the Openmoko splash screen turns up.  You may now release the Power button and the Neo FreeRunner will continue to boot into the Openmoko Image.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Log into U-Boot in the NAND Flash====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:Menu7.jpg|200px|right|thumb]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #eeeeee;&amp;quot;&amp;gt;&lt;br /&gt;
Press and hold Power button, then press and hold AUX button for about 5 to 8 seconds. You should see the boot menu for the NAND Flash.  Press the AUX button to select one of the options and then press the Power button to execute.&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Log into U-Boot in the NOR Flash====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:Menu6.jpg|200px|right|thumb]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #eeeeee;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Press and hold the AUX button, then press and hold the Power button. Then, release the AUX button. You should see the boot menu for the NOR Flash.  This option is usually used by developers or when flashing the FreeRunner.  If you cannot log into U-Boot in NAND then you can log into U-Boot in the NOR Flash either. &lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{note| There are six options you can choose when you log into the NOR Flash.&lt;br /&gt;
1. Boot&lt;br /&gt;
&lt;br /&gt;
2. [[Boot from sd card|Boot from MicroSD]]&lt;br /&gt;
&lt;br /&gt;
3. Set console to USB &lt;br /&gt;
&lt;br /&gt;
4. Set console to Serial&lt;br /&gt;
&lt;br /&gt;
5. Reset&lt;br /&gt;
&lt;br /&gt;
6. Power off}}&lt;br /&gt;
&lt;br /&gt;
{{note|The term ''Logging in'' used in this context means to turn on the device using the described method, and leaving it at the U-Boot menu. To avoid the device automatically booting, tap the AUX key to move the selector bar. Note also that the device will '''not''' automatically turn off while flashing is in progress.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Flashing the Neo FreeRunner==&lt;br /&gt;
As Openmoko development continues, Openmoko regularly releases updated versions of the Openmoko root filesystem, the kernel, and the[[Bootloader| U-Boot]]. These may be programmed into the Flash memory of Neo FreeRunner. You can use the USB cable and Openmoko provided tool to flash Neo FreeRunner.&lt;br /&gt;
&lt;br /&gt;
{{note|The Openmoko software team builds images daily. If you want to use the latest images, you can download the image from the daily build, but we recommend you download the most stable image from http://downloads.openmoko.org/releases/Freerunner/. Images here have been tested by the test team.&lt;br /&gt;
&lt;br /&gt;
More about current Images: http://wiki.openmoko.org/wiki/Latest_Images}}&lt;br /&gt;
&lt;br /&gt;
===Step1. Download the DFU-util===&lt;br /&gt;
&lt;br /&gt;
You can download the flashing tool from: &lt;br /&gt;
http://downloads.openmoko.org/releases/Freerunner/dfu-util&lt;br /&gt;
&lt;br /&gt;
On the GNU/Linux host you can use the following command to download the dfu-util:&lt;br /&gt;
 wget http://downloads.openmoko.org/releases/Freerunner/dfu-util&lt;br /&gt;
&lt;br /&gt;
Afterwards you have to change the rights on the file:&lt;br /&gt;
 chmod a+x dfu-util&lt;br /&gt;
&lt;br /&gt;
===Step 2. Flashing the Kernel===&lt;br /&gt;
&lt;br /&gt;
You can download the kernel from &lt;br /&gt;
http://downloads.openmoko.org/releases/Freerunner/&lt;br /&gt;
&lt;br /&gt;
Type in the following command in the terminal on a GNU/Linux host. On some systems you need to be root before this will work.&lt;br /&gt;
 ./dfu-util -a (partion name) -R -D (download image file name)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ex:&lt;br /&gt;
&lt;br /&gt;
 ./dfu-util -a kernel -R -D uImage-2.6.24+svnr4082-r4055-r3-neo1973.bin&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;2&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;padding: 0%; margin:0em 0em 1em 0em; border:0px solid #ffffff; background:#ffffff; width:100%;floating=&amp;quot;center&amp;quot;; &amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#ffffff;border-left:1px solid #ffffff;border-right:1px ; border-top:2px solid ffffff; border:1px solid #ffffff; width:75% &amp;quot; |  &lt;br /&gt;
&amp;lt;div align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu15.jpg|thumb|Log into U-Boot in NOR Flash, connect your Neo with Linux Host via USB cable]]&lt;br /&gt;
Before you execute the command, please log into U-Boot in the NOR Flash. The Neo FreeRunner needs to be booted into U-Boot for flashing.&lt;br /&gt;
&lt;br /&gt;
You will then need to connect your Neo with the GNU/Linux host via USB cable. Press Enter to execute the command. When flashing succeeds the following will be shown:&lt;br /&gt;
&lt;br /&gt;
status(0) = No error condition is present&amp;lt;br&amp;gt;&lt;br /&gt;
Done!&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{note| The meaning of the parameters you specified:&lt;br /&gt;
-a  --alt alt Specify the altsetting of the DFU interface by name or by number&amp;lt;br&amp;gt;&lt;br /&gt;
-R  --reset Issue USB Reset signalling once we're finished&amp;lt;br&amp;gt;&lt;br /&gt;
-D  --download file Write firmware from&amp;lt;file&amp;gt; into device &amp;lt;br&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Step 3. Flashing the Root Filesystem ===&lt;br /&gt;
You can download the root filesystem from:&lt;br /&gt;
http://downloads.openmoko.org/releases/Freerunner/&lt;br /&gt;
&lt;br /&gt;
Type the following command in the terminal of a GNU/Linux host. On some systems you will need to be root.&lt;br /&gt;
&lt;br /&gt;
 ./dfu-util -a rootfs -R -D openmoko-devel-image-fic-gta02.jffs2&lt;br /&gt;
&lt;br /&gt;
When flashing succeeds the following will be shown:&lt;br /&gt;
&lt;br /&gt;
status(0) = No error condition is present&amp;lt;br&amp;gt;&lt;br /&gt;
Done!&lt;br /&gt;
&lt;br /&gt;
==Appendix==&lt;br /&gt;
If you want to know more about the Neo FreeRunner then you can get more information in the following topics:&lt;br /&gt;
&lt;br /&gt;
* [[GTA02 Openness]]&lt;br /&gt;
* [[Neo FreeRunner]]&lt;br /&gt;
* [[Neo FreeRunner GTA02 Hardware]]&lt;br /&gt;
* [[FreeRunner/Buttons and LEDs]]&lt;br /&gt;
* [[Latest_Images]]&lt;br /&gt;
* [[Distributions]]&lt;br /&gt;
&lt;br /&gt;
[[Category:GTA02 Hardware]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Manuals/Neo_FreeRunner/fr</id>
		<title>Manuals/Neo FreeRunner/fr</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Manuals/Neo_FreeRunner/fr"/>
				<updated>2008-07-06T19:22:27Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: minor french corrections&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Prise en main de votre Neo FreeRunner}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;2&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;padding: 0%; margin:0em 0em 1em 0em; border:1px solid #cccccc; background:#eeeeee; width:100%;floating=&amp;quot;center&amp;quot;; &amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#fcfcfc;border-left:1px solid #9999cc;border-right:1px ; border-top:2px solid 75d806; border:1px solid #222222; width:75% &amp;quot; |  &lt;br /&gt;
 &amp;lt;div align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
Merci d'avoir acheté cette version du Neo FreeRunner pour les développeurs. Le téléphone [[Neo FreeRunner]] est la deuxième plate-forme matérielle à utiliser OpenMoko. Ce guide vous aidera à mieux connaître votre Neo FreeRunner et commencer à utiliser votre Neo FreeRunner.&lt;br /&gt;
! style=&amp;quot;background:#fcfcfc;border-left:1px solid #9999cc;border-right:1px ; border-top:2px solid 75d806; border:1px solid #222222; width:25% &amp;quot; |&lt;br /&gt;
[[Image:Freerunner box.png|200px|thumb|La Boîte Neo FreeRunner]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Ce que contient la boîte==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;2&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;padding: 0%; margin:0em 0em 1em 0em; border:1px solid #ffffff; background:#ffffff; width:80%; floating=&amp;quot;center&amp;quot;; &amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#ffffff;border-left:1px solid #ffffff;border-right:1px ; border-top:2px solid ffffff; border:1px solid #ffffff; &amp;quot; |  &lt;br /&gt;
&amp;lt;div align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:GTA02ALL.png|400px|thumb|Contenu de la boîte]]&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Neo FreeRunner&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Stylet&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Batterie&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Chargeur&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Cable USB &lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Carte microSD 512MB&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Aperçu du Neo FreeRunner==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;80%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #ffffff;&amp;quot;&amp;gt;[[Image:menu8.jpg|370px|thumb|Bouton AUX et jack du casque-micro (De gauche à droite)|center]]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #ffffff;&amp;quot;&amp;gt;[[Image:menu9.jpg|365px|thumb|Bouton d'Alimentation, USB et Antenne GPS externe (De gauche à droite)|center]]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;80%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:menu12.jpg|233px|thumb|Dos de l'AUX avec sa batterie|center]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #ffffff;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu11.jpg|260px|thumb|Mettez la carte SIM et la carte SD ici|center]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;80%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:menu13.jpg|233px|thumb|ouvrir le boîtier de ce côté |center]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #ffffff;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu14.jpg|250px|thumb|Ouvert|center]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Installation de la carte Micro SD, de la carte SIM, et de la batterie ===&lt;br /&gt;
&lt;br /&gt;
# Retirez le capot arrière du Néo Freerunner en maintenant le Neo Freerunner par le côté, et utiliser votre ongle pour détacher le capot arrière au niveau de la fente en haut&lt;br /&gt;
# Identifier l'emplacement combiné de la carte SIM et de la carte SD au fond du compartiment à piles&lt;br /&gt;
# Déverrouiller la carte SIM en faisant glisser la languette de métal vers le bas (vers la prise USB) avec votre ongle. Soyez prudent car ces languettes sont délicates et pourraient être endommagées en forçant dans la mauvaise direction. Les propriétaires du Neo 1973 devraient accorder une attention particulière, puisque la direction pour l'ouverture est opposé à celle du Neo 1973.&lt;br /&gt;
# Soulevez la carte SIM&lt;br /&gt;
# Le compartiment Micro-SD de la carte est maintenue en place par un verrouillage par languette de chaque côté. Il est plus facile d'ouvrir le compartitement Micro-SD de la carte par la libération de ces languettes une par une plutôt que par la levée par le milieu, comme la levée par le milieu tend à augmenter la pression de fermeture. Un petit tournevis ou un couteau peut être utilisé pour:&lt;br /&gt;
# Insérez la carte Micro SD dans le compartiment Micro SD de la carte. Notez que les contacts doivent être dirigés vers le bas, et sont sur le front du Néo Freerunner:&lt;br /&gt;
# Fermer le compartiment Micro SD de la carte, en vous assurant que les deux doigts sont bien fermé:&lt;br /&gt;
# Insérez la carte SIM dans le compartiment de la carte SIM, en prenant soin de glisser les deux languettes de métal dans la couverture. Note que les languettes doivent être dirigés vers le bas, et que le chanfrein (le coin coupé) sera plus proche de l'emplacement de l'antenne GPS externe:&lt;br /&gt;
# Fermer le compartiment de la carte SIM et verrouillez-le en glissant la languette vers l'emplacement de l' antenne GPS externe:&lt;br /&gt;
# Insérez la batterie dans son compartiment, en alignant les contacts de la batterie avec ceux de son compartiment. Insérez en premier le côté possédant les contacts.&lt;br /&gt;
# Remettez le couvercle&lt;br /&gt;
&lt;br /&gt;
===Allumer le Neo Freerunner===&lt;br /&gt;
&lt;br /&gt;
====Charger the Neo Freerunner====&lt;br /&gt;
&lt;br /&gt;
Lors de la première utilisation du Neo Freerunner, vous devez charger complétement la batterie. La batterie peut être chargé avec le chargeur fourni, ou part un port USB capable de fournir 500mA d'un ordinateur.&lt;br /&gt;
La charge à 100mA prend de 6 à 12 heures et celle à 500mA prend de 1 à 2 heures. (from [http://openmoko.togaware.com/survivor/Charging.html openmoko.togaware.com])&lt;br /&gt;
&lt;br /&gt;
Vous pouvez démarrer votre Neo FreeRunner des façons suivantes:&lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]    Vous pouvez démarrer directement sur une image Openmoko. &lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]    Démarrer par [[Bootloader|U-Boot]] par l'intermédiaire de la [[NAND Flash]].&lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]    Démarrer par U-Boot par l'intermédiaire de la Flash NOR.&lt;br /&gt;
&lt;br /&gt;
Ces manières vous permettent de mettre à jour le noyau et le système de fichiers racine.&lt;br /&gt;
&lt;br /&gt;
====Démarrer sur l'Image Openmoko====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:Menu2.jpg|200px|right|thumb]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #eeeeee;&amp;quot;&amp;gt;&lt;br /&gt;
Maintenez enfoncée la touche bouton d'alimentation (environ 8 secondes) jusqu'à ce que l'écran d'accueil OpenMoko se présente. Vous pouvez lachez le bouton d'alimentation, ainsi Le Neo FreeRunner s'amorera avec l'Image OpenMoko.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Démarrer par U-Boot par l'intermédiaire de la Flash NAND====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:Menu7.jpg|200px|right|thumb]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #eeeeee;&amp;quot;&amp;gt;&lt;br /&gt;
Maintenez le bouton d'alimentation enfoncé, puis appuyez sur le bouton AUX (environ 5 ~ 8 secondes). Vous pouvez voir le menu de démarrage de la Flash NAND. Appuyez sur le bouton AUX pour sélectionner les options, et sur celui de l'alimentation pour les exécuter.&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Démarrer par U-Boot par l'intermédiaire de la Flash NOR====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:Menu6.jpg|200px|right|thumb]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #eeeeee;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Maintenez le bouton AUX enfoncé, puis appuyez sur le bouton d'alimentation et maintenez enfoncé. Relachez le bouton AUX. Vous pouvez voir le menu de démarrage de la Flash NOR. (Cette option est généralement utilisée par les développeurs ou lorsque vous flashezle FreeRunner. Aussi, si vous ne pouvez pas vous connecter par U-Boot dans la flash NAND, alors vous pouvez vous connecter par U-Boot dans la Flash NOR.)&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{note| Il ya six options que vous pouvez choisir lorsque vous vous connectez par la Flash NOR.&lt;br /&gt;
1. Démarrer&lt;br /&gt;
&lt;br /&gt;
2. [[Boot from sd card|Démarrer à partir de la MicroSD]]&lt;br /&gt;
&lt;br /&gt;
3. Lier la console à l'USB&lt;br /&gt;
&lt;br /&gt;
4. Lier la console au port série&lt;br /&gt;
&lt;br /&gt;
5. Réinitialiser&lt;br /&gt;
&lt;br /&gt;
6. Eteindre&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Déverouiller l'écran===&lt;br /&gt;
&lt;br /&gt;
Lorsque l'écran est verrouillé, vous voyez un graphique vert du style Matrix avec le symbole OpenMoko au centre du bas de l'écran, un symbole verrouiller et déverrouiller. Si vous faites glisser le symbole OpenMoko sur le symbole déverrouiller en haut, alors l'écran sera déverrouillée.&lt;br /&gt;
&lt;br /&gt;
==Flasher le Neo FreeRunner==&lt;br /&gt;
Comme le développement d'Openmoko continu, Openmoko publie réguliérement des versions mises à jour du système de fichier racine Openoko, du noyau, et de[[Bootloader|U-Boot]]. Ils peuvent être programmé dans la mémoire Flash du Neo FreeRunner. Vous pouvez utiliser le cable USB et l'outil fourni par Openmoko pour flasher le Neo FreeRunner.&lt;br /&gt;
&lt;br /&gt;
{{note|L'équipe du département logiciel d'Openmoko construit des images chaque jour. Si vous souhaitez utiliser les dernières images, vous pouvez les téléchargé à partir de la construction journalière, mais nous vous recommandons de télécharger des images plus stable à partir de http://downloads.openmoko.org/releases/Freerunner/. Ces Images ont été vérifié par l'équipe de test.}}&lt;br /&gt;
&lt;br /&gt;
===Etape 1. Télécharger DFU-util===&lt;br /&gt;
&lt;br /&gt;
Vous pouvez télécharger l'outil qui permet de flasher le Neo Freerunner à partir de: &lt;br /&gt;
http://downloads.openmoko.org/releases/Freerunner/dfu-util&lt;br /&gt;
&lt;br /&gt;
Sur l'hôte GNU/Linux, vous pouvez utiliser la ligne de commande suivante pour télécharger dfu-util:&lt;br /&gt;
 wget http://downloads.openmoko.org/releases/Freerunner/dfu-util&lt;br /&gt;
&lt;br /&gt;
Ensuite vous devez changer les droits:&lt;br /&gt;
 chmod a+x dfu-util&lt;br /&gt;
&lt;br /&gt;
===Etape 2. Flasher le noyau===&lt;br /&gt;
&lt;br /&gt;
Vous pouvez télécharger le noyau à partir de &lt;br /&gt;
http://downloads.openmoko.org/releases/Freerunner/&lt;br /&gt;
&lt;br /&gt;
Taper la ligne de commande suivante dans le terminal d'un hôte GNU/Linux. Sur certains systèmes vous aurez besoins d'être root.&lt;br /&gt;
 ./dfu-util -a (partion name) -R -D (download image file name)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ex:&lt;br /&gt;
&lt;br /&gt;
 ./dfu-util -a kernel -R -D uImage-2.6.24+svnr4082-r4055-r3-neo1973.bin&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;2&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;padding: 0%; margin:0em 0em 1em 0em; border:0px solid #ffffff; background:#ffffff; width:100%;floating=&amp;quot;center&amp;quot;; &amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#ffffff;border-left:1px solid #ffffff;border-right:1px ; border-top:2px solid ffffff; border:1px solid #ffffff; width:75% &amp;quot; |  &lt;br /&gt;
&amp;lt;div align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu15.jpg|thumb|Connectez-vous par U-Boot dans la Flash NOR, connectez votre Neo avec l'hôte Linux par un câble USB]]&lt;br /&gt;
Avant d'exécuter la commande, s’il vous plaît connectez-vous par U-Boot dans la Flash NOR. Neo FreeRunner doit démarrer en U-boot pour être flasher.&lt;br /&gt;
&lt;br /&gt;
Ensuite, connectez votre Neo avec Linux hôte par un câble USB. Appuyez sur Entrée pour exécuter la commande. Lorsque le flash a réussi vous verrez:&lt;br /&gt;
&lt;br /&gt;
status(0) = No error condition is present&amp;lt;br&amp;gt;&lt;br /&gt;
Done!&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{note| La signification des paramètres que vous avez entré:&lt;br /&gt;
-a  --alt alt Specifie le parametrage alt de l'interface DFU par un nom ou par un nombre&amp;lt;br&amp;gt;&lt;br /&gt;
-R  --reset Effectue une Réinitialisation USB une fois que c'est fini&amp;lt;br&amp;gt;&lt;br /&gt;
-D  --download file Ecrit le micrologiciel à partir de&amp;lt;file&amp;gt; dans l'appareil &amp;lt;br&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Step 3. Flasher le système de fichier Racine ===&lt;br /&gt;
Vous pouvez télécharger le système de fichier racine à partir de :&lt;br /&gt;
http://downloads.openmoko.org/releases/Freerunner/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Taper la ligne de commande suivante dans le terminal d'un hôte GNU/Linux. Sur certains systèmes vous aurez besoins d'être root.&lt;br /&gt;
&lt;br /&gt;
 ./dfu-util -a rootfs -R -D openmoko-devel-image-fic-gta02.jffs2&lt;br /&gt;
&lt;br /&gt;
Lorsque le flash a réussi vous verrez:&lt;br /&gt;
&lt;br /&gt;
status(0) = No error condition is present&amp;lt;br&amp;gt;&lt;br /&gt;
Done!&lt;br /&gt;
&lt;br /&gt;
==Connectez-vous à Neo FreeRunner par la mise en réseau USB==&lt;br /&gt;
&lt;br /&gt;
Connecter le Neo FreeRunner à l'hôte Linux avec le cable USB. Pour OS X veuillez suivre le lien suivant [[MacOS_X]]. Après le démarrage sur l'image Openmoko, il y aura une nouvelle interface, usb0, dans votre hôte Linux.&lt;br /&gt;
&lt;br /&gt;
=====Méthode Manuelle=====&lt;br /&gt;
Taper les lignes suivantes dans un terminal de l'hôte GNU/Linux.&lt;br /&gt;
&lt;br /&gt;
 ifconfig usb0 192.168.0.200 netmask 255.255.255.0&lt;br /&gt;
 ssh root@192.168.0.202&lt;br /&gt;
&lt;br /&gt;
Appuyer sur la touche Entrée pour donner le mot de passe.&lt;br /&gt;
&lt;br /&gt;
=====Methode Automatique=====&lt;br /&gt;
*Debian et derivées (Ubuntu, Sidux etc.)&lt;br /&gt;
Editer /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
 auto usb0&lt;br /&gt;
 iface usb0 inet static&lt;br /&gt;
 address 192.168.0.200&lt;br /&gt;
 netmask 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
*Gentoo &lt;br /&gt;
Editer /etc/conf.d/net&lt;br /&gt;
&lt;br /&gt;
 config_usb0=&amp;quot;192.168.0.200/24&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Redémarrer le service de mise en réseau (/etc/init.d/networking restart pour les distributions basées sur Debian) et taper la commande suivante dans un terminal d'un hôte GNU/Linux.&lt;br /&gt;
&lt;br /&gt;
 ssh root@192.168.0.202&lt;br /&gt;
&lt;br /&gt;
Appuyer sur la touche Entrée pour donner le mot de passe.&lt;br /&gt;
&lt;br /&gt;
=====Rendre les choses encore plus automatique=====&lt;br /&gt;
Si vous ne voulez pas vous souvenir de l'addresse IP de votre téléphone, vous pouvez créer un alias en ajoutant la ligne suivante dans votre fichier /etc/hosts:&lt;br /&gt;
&lt;br /&gt;
 192.168.0.202   openmoko&lt;br /&gt;
&lt;br /&gt;
Maintenant, il devrait être immédiatement possible de vous connecter à votre téléphone en utilisant la ligne de commande suivante:&lt;br /&gt;
&lt;br /&gt;
 ssh root@openmoko&lt;br /&gt;
&lt;br /&gt;
La ligne ajoutée ci-dessus vous permet d'ouvrir une connection ssh sur OpenMoko, elle ne permet pas OpenMoko de se connecter à l'Internet. Pour faire cela, suivre les instructions dans la section [[USB_Networking]].&lt;br /&gt;
&lt;br /&gt;
==Annexe==&lt;br /&gt;
Si vous souhaitez en savoir plus sur le FreeRunner, vous pouvez obtenir davantage d'information sur les sujets qui suivent:&lt;br /&gt;
* [[GTA02 Openness]]&lt;br /&gt;
* [[Neo FreeRunner]]&lt;br /&gt;
* [[Neo FreeRunner GTA02 Hardware]]&lt;br /&gt;
* [[FreeRunner/Buttons and LEDs]]&lt;br /&gt;
&lt;br /&gt;
[[Category:GTA02 Hardware]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/MokoMakefile</id>
		<title>MokoMakefile</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/MokoMakefile"/>
				<updated>2008-07-06T17:26:40Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Building Openmoko with MokoMakefile */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|MokoMakefile}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MokoMakefile is a Makefile which saves lots of work when setting up an Openmoko build environment.&lt;br /&gt;
By automating the setup process of a new Openmoko build environment, it provides an environment which is configured the same for all the existing developers and should therefore be preferred over manual procedures or individual setup procedures.&lt;br /&gt;
It brings the same repeatability to build environment creation and maintenance as that which the BitBake scripts bring to [[OpenEmbedded]] ease and standardize the process of building OpenEmbedded.&lt;br /&gt;
&lt;br /&gt;
Unlike the manual process described at [[Building OpenMoko from scratch]], MokoMakefile does not install anything into your system (it can and should be started as normal user).&lt;br /&gt;
MokoMakefile is a wrapper around all that is required to make it easy to set up and maintain a development environment that fully complies with the setup instructions published by Openmoko.&lt;br /&gt;
&lt;br /&gt;
MokoMakefile is developed by [[User:RodWhitby|Rod Whitby]] - it is not an official product of OpenMoko (although I would be happy for them to pick it up and use it internally).  If there is any discrepancy between the [[OpenMoko2007.2#How_to_build|official OpenMoko build instructions]], and the operation of the MokoMakefile, then you should consider the official instructions to be correct.&lt;br /&gt;
&lt;br /&gt;
The MokoMakefile is able to build both OM-2007.2 and QTopia-X11 images.&lt;br /&gt;
&lt;br /&gt;
MokoMakefile also builds the QEMU-based Neo1973 emulator as part of the build process and has make targets to install the OpenMoko images into it and run it. These commands can also be used without downloading and building the whole OpenMoko OpenEmbedded distribution. This part is described in [[Using QEMU with MokoMakefile]].&lt;br /&gt;
&lt;br /&gt;
== Requirements for building Openmoko ==&lt;br /&gt;
Independent on whether MokoMakefile or a manual process is used to setup an OpenMoko build environment, there are several requirements which must be fulfilled in order for the OpenMoko build to succeed:&lt;br /&gt;
&lt;br /&gt;
* RAM: The build host needs to have at least 512MB of RAM, and about the same amount of swap. Some packages built by OpenEmbedded like busybox are built by compiling all source files into one binary which causes gcc to grow beyond 300MB of size and no part of this memory may be on swap for the compile to finish in predictable time. For busybox, this can be turned off, but turning this off means that busybox will not as well optimized by gcc.&lt;br /&gt;
&lt;br /&gt;
* Disk space: You need about 12 GB of available disk space for the OpenMoko build to succeed (see below for a tip on how to reduce this).&lt;br /&gt;
&lt;br /&gt;
* Time: The initial build takes at least 5 hours (on 2GHz core2duo without multiprocessor optimization) and may take several days on slower machines.&lt;br /&gt;
&lt;br /&gt;
=== Required software ===&lt;br /&gt;
&lt;br /&gt;
Some distribution specific hints on preparing your build host for building OpenEmbedded are on   http://www.openembedded.org/wiki/OEandYourDistro but they may be outdated, incomplete and do not cover everything which OpenMoko needs to build.&lt;br /&gt;
&lt;br /&gt;
A good guide is [[Building OpenMoko from scratch#Build host prerequisites|the section on build host prerequisites]] in [[Building OpenMoko from scratch]]&lt;br /&gt;
&lt;br /&gt;
If you forgot anything which OE needs itself, OE will tell you shortly after you start building, but it does not check build dependencies of OpenMoko, so you either have to install them before starting or install them after the build failed. OpenEmbedded will continue where it stopped when you restart the build afterwards.&lt;br /&gt;
&lt;br /&gt;
==== Package requirements by distribution ====&lt;br /&gt;
Your distribution needs to provide these commands in order for OpenEmbedded to start building:&lt;br /&gt;
 subversion texi2html texinfo help2man&lt;br /&gt;
&lt;br /&gt;
OpenMoko needs the development packages (with header files, development libraries and tools) in order to finish building:&lt;br /&gt;
 ncurses zlib (or libz) OpenSSL GTK++&lt;br /&gt;
&lt;br /&gt;
Because there are bugs in the interaction of QEMU and GCC-4, you'll need a copy of gcc-3.x installed as well.&lt;br /&gt;
&lt;br /&gt;
===== Debian / Ubuntu =====&lt;br /&gt;
  apt-get install subversion build-essential help2man diffstat texi2html texinfo cvs gawk cogito&lt;br /&gt;
&lt;br /&gt;
  apt-get install libncurses5-dev zlib1g-dev libssl-dev libgtk2.0-dev &lt;br /&gt;
  # To prevent errors in host validation&lt;br /&gt;
  apt-get install ca-certificates&lt;br /&gt;
  # For OpenMoko 2007.2 using BitBake-1.8.8:&lt;br /&gt;
  apt-get install python-pysqlite2 sqlite3 sqlite3-doc python-pysqlite2-dbg&lt;br /&gt;
  # For building faster&lt;br /&gt;
  apt-get install quilt python-psyco ccache&lt;br /&gt;
  # For qemu, install a second compiler for bug avoidance; MokoMakefile knows to look for it.&lt;br /&gt;
  apt-get install gcc-3.4 g++-3.4 libsdl1.2-dev lynx netpbm dosfstools&lt;br /&gt;
&lt;br /&gt;
===== SuSE =====&lt;br /&gt;
For building Openmoko on 10.3, you need&lt;br /&gt;
 gcc-c++ ncurses-devel zlib-devel libopenssl-devel gtk2-devel subversion diffstat texinfo help2man&lt;br /&gt;
For MokoMakefile to not fail on compiling qemu-user, you need to use gcc33:&lt;br /&gt;
 wget download.opensuse.org/repositories/devel:/tools:/gcc/openSUSE_Factory/i586/{cpp,gcc}33-3.3.3-41.8.i586.rpm&lt;br /&gt;
 rpm -Uhv {cpp,gcc}33-3.3.3-41.8.i586.rpm&lt;br /&gt;
&lt;br /&gt;
See also the [[Talk:MokoMakefile#Building_on_SuSE_Linux_10.3-AMD64|Talk page on Building on SuSE Linux 10.3-AMD64]]&lt;br /&gt;
&lt;br /&gt;
10.1 and 10.2: same packages as 10.3, but install &amp;lt;code&amp;gt;openssl-devel&amp;lt;/code&amp;gt; instead of libopenssl-devel.&lt;br /&gt;
&lt;br /&gt;
==== For all distributions ====&lt;br /&gt;
As the QEMU-based neo1973 emulator is also built as part of the build process started by MokoMakefile, so you need gcc-3.3 and other packages for building QEMU installed. See [[Using QEMU with MokoMakefile#Build requirements|the build requirements section]] in [[Using QEMU with MokoMakefile]] for information on the required software.&lt;br /&gt;
&lt;br /&gt;
If you are having problems compiling QEMU and do not need it, you can disable building of QEMU by adding following line to build/conf/local.conf file:&lt;br /&gt;
 ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===== Proxy =====&lt;br /&gt;
Users behind a proxy should ensure that their proxy is configured in their wgetrc file as the http_proxy environment variable is unset by MokoMakefile.&lt;br /&gt;
&lt;br /&gt;
== Building Openmoko with MokoMakefile ==&lt;br /&gt;
&lt;br /&gt;
1 - Create your $OMDIR directory (note that you can change ~/moko to any directory you like. If you have your ~moko dir mounted from a different file system, be sure to edit /etc/mtab to add the 'exec' permission to the file system, else bitbake will fail with error messages stating that /usr/bin/env is an invalid interpreter):&lt;br /&gt;
   mkdir ~/moko ; cd ~/moko&lt;br /&gt;
2 - Grab MokoMakefile:&lt;br /&gt;
   wget http://www.rwhitby.net/files/openmoko/Makefile&lt;br /&gt;
&lt;br /&gt;
If that doesn't work, try &lt;br /&gt;
&lt;br /&gt;
   wget http://svn.projects.openmoko.org/svnroot/mokomakefile/trunk/Makefile&lt;br /&gt;
&lt;br /&gt;
{{note|MokoMakefile uses BitBake 1.8.8 which requires python-sqlite2 and sqlite-3.3 or later. Users of SUSE Linux 10.1 can update to [http://download.opensuse.org/pub/opensuse/distribution/10.2/repo/oss/suse/i586/sqlite-3.3.8-14.i586.rpm the version of openSUSE 10.2]}}&lt;br /&gt;
&lt;br /&gt;
3 - Set up the environment:&lt;br /&gt;
&lt;br /&gt;
   make setup&lt;br /&gt;
&lt;br /&gt;
If you want to make the ASU, at this point you need to edit your Makefile.  Change:&lt;br /&gt;
  OM_GIT_BRANCH := org.openmoko.dev&lt;br /&gt;
to say&lt;br /&gt;
  OM_GIT_BRANCH := org.openmoko.asu.dev&lt;br /&gt;
or&lt;br /&gt;
  OM_GIT_BRANCH := org.openmoko.asu.stable  &lt;br /&gt;
And, for the FSO use:&lt;br /&gt;
  OM_GIT_BRANCH := org.openembedded.dev&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4 - Start building. Before starting a lengthy make process, check the Tips section below for how to make Make multicore aware. You may want to modify the build/conf/local.conf file for your target (emulation/chroot) environment:&lt;br /&gt;
   make openmoko-devel-image&lt;br /&gt;
   (or use &amp;quot;make openmoko-qtopia-x11-image&amp;quot; if you're building the ASU)&lt;br /&gt;
   (or use &amp;quot;make fso-image&amp;quot; if you're building the FSO)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''Hint:'' The images build with this command can be found under {$OMDIR}/build/tmp/deploy/images/neo1973&lt;br /&gt;
&lt;br /&gt;
This will set up the recommended directory structure as described in [[Building OpenMoko from scratch]], will download all the required software (from the right places with the right versions), and will immediately start building an image.&lt;br /&gt;
&lt;br /&gt;
Once you have done this, you can choose to continue using the MokoMakefile to initiate your subsequent builds, or you can go into the build directory and run bitbake commands manually.  The choice is yours.&lt;br /&gt;
&lt;br /&gt;
==Updating the environment==&lt;br /&gt;
For easy maintenance of your build environment the following commands are available.&lt;br /&gt;
&lt;br /&gt;
1 - To update the MokoMakefile to the latest version:&lt;br /&gt;
   make update-makefile &lt;br /&gt;
&lt;br /&gt;
2 - To make sure that any recent changes to the build directory structure have been applied:&lt;br /&gt;
   make setup &lt;br /&gt;
&lt;br /&gt;
3 - To update the OpenMoko repository checkout and the MokoMakefile patches to the latest version:&lt;br /&gt;
   make update&lt;br /&gt;
&lt;br /&gt;
A quick way to rebuild a new image with the latest updates:&lt;br /&gt;
   make update-makefile &amp;amp;&amp;amp; make setup update openmoko-devel-image&lt;br /&gt;
&lt;br /&gt;
==Build issues==&lt;br /&gt;
First, make sure that the problem is reproducible after running&lt;br /&gt;
&lt;br /&gt;
 make update-makefile &amp;amp;&amp;amp; make setup &amp;amp;&amp;amp; make update&lt;br /&gt;
&lt;br /&gt;
then run&lt;br /&gt;
&lt;br /&gt;
 make clean-package-&amp;lt;foo&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where you replace &amp;lt;foo&amp;gt; with the name of the package which is failing)&lt;br /&gt;
&lt;br /&gt;
and finally&lt;br /&gt;
&lt;br /&gt;
 make openmoko-devel-image&lt;br /&gt;
&lt;br /&gt;
With luck - you should now have images in your $omdir/build/tmp/deploy/glibc/images/neo1973/ directory.&lt;br /&gt;
You can then [[Flashing openmoko||flash these.]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If not, and you can get the error to occur three times in a row after running that sequence of commands (including the update and setup steps) three times, then feel free to report it to rwhitby in #openmoko on [http://wiki.openmoko.org/wiki/Development_resources#IRC IRC].&lt;br /&gt;
&lt;br /&gt;
If you have chronic build problems, cleaning your environment variables and re-running the build from scratch may help.  The following script should remove all non-essential variables; you should also manually trim your path to the minimum.&lt;br /&gt;
  `env | grep -Ev '^SHELL=|^TERM=|^OLDPWD=|^USER=|^USERNAME=|^PATH=|^EDITOR=|^LANG=|^HOME=|^DISPLAY=|^_='  | sed 's/^\(.*\)=.*/unset \1/'`&lt;br /&gt;
&lt;br /&gt;
(you must include the backtics)&lt;br /&gt;
&lt;br /&gt;
===Known MokoMakefile errors ===&lt;br /&gt;
&lt;br /&gt;
===Fixes for distribution/environment-specific or isolated issues===&lt;br /&gt;
&lt;br /&gt;
Work-arounds for temporary or isolated problems can be found and should be added to the [[Talk:MokoMakefile|Discussion page]] which is associated with this page.  As they are fixed, they will be removed from that page.&lt;br /&gt;
&lt;br /&gt;
==Tips==&lt;br /&gt;
*You can reduce the amount of consumed disk space significantly by adding&lt;br /&gt;
   INHERIT += &amp;quot;rm_work&amp;quot;&lt;br /&gt;
in your local.conf (e.g. ~/moko/build/conf/local.conf). This will remove the contents of each build/tmp/work/*/&amp;lt;package&amp;gt; directory after the corresponding package builds correctly. As of 10/16/07, this appears to be present in local.conf by default.&lt;br /&gt;
&lt;br /&gt;
*If a certain package does not build due to corrupted download or some such try to remove the sources and rebuild it.&lt;br /&gt;
 rm sources/&amp;lt;package&amp;gt;*&lt;br /&gt;
 cd build&lt;br /&gt;
 . ../setup-env&lt;br /&gt;
 bitbake -crebuild &amp;lt;package&amp;gt;&lt;br /&gt;
after that your build might just work again.&lt;br /&gt;
&lt;br /&gt;
*For people with multiple CPU's (or dual-core ones) this small patch might be useful to build things faster.&lt;br /&gt;
Edit the local.conf and add the following lines:&lt;br /&gt;
 PARALLEL_MAKE = &amp;quot;-j 4&amp;quot;&lt;br /&gt;
 BB_NUMBER_THREADS = &amp;quot;4&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Change the PARALLEL_MAKE and BB_NUMBER_THREADS values to something that suits better if it chokes your machine.&lt;br /&gt;
&lt;br /&gt;
* I have some problem with the parallel building, mkfs.jffs failed to build the image because the directory was modify while the building of the fs. [[User:Patrick.hetu|patrick.hetu]] 02:19, 27 May 2008 (UTC) &lt;br /&gt;
&lt;br /&gt;
*For amd64 host users you need the patch from http://bugs.openembedded.org/show_bug.cgi?id=1765 to build db3-native&lt;br /&gt;
&lt;br /&gt;
* If you encounter an error related with the qemu-native package and not compiling for the qemu, you can edit the build/conf/local.conf file and add ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot; line to avoid the error.&lt;br /&gt;
&lt;br /&gt;
* To prevent building tons of locales, add a line like this to local.conf:&lt;br /&gt;
 GLIBC_GENERATE_LOCALES = &amp;quot;en_US.UTF-8 nl_NL.UTF-8&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* To not build any binary locales at all, add this to local.conf:&lt;br /&gt;
 ENABLE_BINARY_LOCALE_GENERATION = &amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* If you want to rebuild the package indexes (for instance, after compiling a new version of a package) without building &amp;lt;code&amp;gt;openmoko-devel-image&amp;lt;/code&amp;gt;, run &amp;lt;code&amp;gt;make build-package-package-index&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[User:Wurp]] will update this to be a little more comprehensible, but maybe it can help someone as-is in the meantime:&lt;br /&gt;
* If MokoMakefile always fails on some fetch in zlib, just find the binary somewhere, add it to the downloads or sources directory manually (create the .md5 matching file if necessary), and retry.&lt;br /&gt;
&lt;br /&gt;
=== Useful commands ===&lt;br /&gt;
Here is the list (not complete) of useful MokoMakefile commands (actually make targets) and a short description of each one. These should be run inside $OMDIR directory.&lt;br /&gt;
&lt;br /&gt;
; make openmoko-devel-image : build the full development image&lt;br /&gt;
&lt;br /&gt;
; make openmoko-devel-tools : build statically-linked [[dfu-util]] and [[openocd]] binaries&lt;br /&gt;
&lt;br /&gt;
; make openmoko-toolchain : builds [[toolchain]]&lt;br /&gt;
&lt;br /&gt;
; make qemu : builds qemu, downloads flash images from official repository, flashes qemu emulated Neo1973 and runs emulator (see also [[OpenMoko under QEMU]]). &lt;br /&gt;
&lt;br /&gt;
; make qemu-local : same as ''make qemu'', but uses locally built images instead of official ones.&lt;br /&gt;
&lt;br /&gt;
; make run-qemu : runs qemu with usb keyboard ''(note: qemu must first be built!)''. This target starts the emulator with some predefined set of options. If you need to start it with other options (enable telnet, etc), see [[QEMU_command_line]].&lt;br /&gt;
&lt;br /&gt;
; make build-package-&amp;lt;package name&amp;gt; : buids ''&amp;lt;package name&amp;gt;'' package&lt;br /&gt;
&lt;br /&gt;
; make update-makefile : updates MokoMakefile&lt;br /&gt;
&lt;br /&gt;
; make clean-package-&amp;lt;foo&amp;gt;: cleans the &amp;quot;&amp;lt;foo&amp;gt;&amp;quot; package&lt;br /&gt;
&lt;br /&gt;
; make setup : to make sure that any recent changes to the build directory structure have been applied&lt;br /&gt;
   &lt;br /&gt;
; make update : to update the OpenMoko repository checkout and the MokoMakefile patches to the latest version&lt;br /&gt;
&lt;br /&gt;
==Developing with MokoMakefile==&lt;br /&gt;
&lt;br /&gt;
{{note|If using MokoMakefile with OM2007.2 then references to $OMDIR/openmoko should be replaced with $OMDIR/openembedded.  Also references to tmp/work/armv4t-linux should be replaced with tmp/work/fic-gta01-angstrom-linux-gnueabi}}&lt;br /&gt;
&lt;br /&gt;
For the following explanations $OMDIR is the directory where there Makefile puts all the stuff.&lt;br /&gt;
&lt;br /&gt;
To make in-tree changes and have them built and used by qemu:&lt;br /&gt;
&lt;br /&gt;
  cd $OMDIR/openmoko&lt;br /&gt;
  quilt new descriptive-patch-name.patch&lt;br /&gt;
  quilt add trunk/src/name-of-file-to-change # do this for every file you are about to modify&lt;br /&gt;
  ...make the changes...&lt;br /&gt;
  quilt refresh # this creates a file in $OMDIR/patches/openmoko-HEAD/ and updates the quilt series file there&lt;br /&gt;
&lt;br /&gt;
Note: Do '''NOT''' use absolute paths as this confuses quilt and will get you a diff of the file against /dev/null!&lt;br /&gt;
&lt;br /&gt;
To build the changes and have them used by qemu:&lt;br /&gt;
&lt;br /&gt;
  make build-qemu&lt;br /&gt;
  make flash-qemu-local&lt;br /&gt;
  make run-qemu&lt;br /&gt;
&lt;br /&gt;
If you want to modify applications instead of the openmoko toolchain, this is what you have to do (example: openmoko-messages):&lt;br /&gt;
&lt;br /&gt;
  cd $OMDIR/build&lt;br /&gt;
  . ../setup-env&lt;br /&gt;
  bitbake -c unpack openmoko-messages&lt;br /&gt;
  cd tmp/work/armv4t-linux/openmoko-messages-0.0.1+svnnow-r2_2276/openmoko-messages/&lt;br /&gt;
  ''...make the changes...''&lt;br /&gt;
  cd -&lt;br /&gt;
  bitbake openmoko-messages&lt;br /&gt;
&lt;br /&gt;
Then continue with MokoMakefile usage.&lt;br /&gt;
&lt;br /&gt;
If you want to add an application to your openmoko distribution, do this:&lt;br /&gt;
All file edits should be done using quilt as described above. That way a patch can easily be submitted to the openmoko project.&lt;br /&gt;
First, create a directory that will correspond to your package and edit a '''.bb''' file in there:&lt;br /&gt;
  cd $OMDIR/openmoko/&lt;br /&gt;
  quilt new mycoolpackage.patch&lt;br /&gt;
  mkdir trunk/oe/packages/mycoolpackage&lt;br /&gt;
  quilt add trunk/oe/packages/mycoolpackage/mycoolpackage_1.bb&lt;br /&gt;
  quilt edit trunk/oe/packages/mycoolpackage/mycoolpackage_1.bb&lt;br /&gt;
&lt;br /&gt;
The file should have the following content:&lt;br /&gt;
  DESCRIPTION = &amp;quot;This is a cool package&amp;quot;&lt;br /&gt;
  SECTION = &amp;quot;username/mycoolpackage&amp;quot;&lt;br /&gt;
  PV = &amp;quot;1&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
  inherit autotools&lt;br /&gt;
  &lt;br /&gt;
  SRC_URI = &amp;quot;http://www.example.com/download/mycoolpackage-1.tar.gz&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Explanation:&lt;br /&gt;
* DESCRIPTION - Just a short text explaining the package&lt;br /&gt;
* SECTION - I have no clue, but I'll use username/mycoolpackage for now&lt;br /&gt;
* PV - Package Version&lt;br /&gt;
* inherit autotools - The package can be compiled by './configure &amp;amp;&amp;amp; make &amp;amp;&amp;amp; make install' so we tell MokoMakefile to do it this way.&lt;br /&gt;
* SRC_URI = ... - This is the download location of the package source. It's imperative that the tar.gz contains a directory called '''packagename-packageversion''' (in this case: mycoolpackage-1) so that MokoMakefile can find it automatically or the build will fail.&lt;br /&gt;
&lt;br /&gt;
This is not all. We also need to tell MokoMakfile that it needs to build and include the package in the image. To do this, do&lt;br /&gt;
  $OMDIR/openmoko# quilt edit trunk/oe/packages/tasks/task-openmoko.bb&lt;br /&gt;
Here, increase the value '''PR''' by one and add '''mycoolpackage \''' (with the backslash!) just before the line reading '''#  update-alternatives \'''.&lt;br /&gt;
&lt;br /&gt;
Now run&lt;br /&gt;
  quilt refresh&lt;br /&gt;
  cd ..&lt;br /&gt;
  make update openmoko-devel-image&lt;br /&gt;
&lt;br /&gt;
And if everything's alright you should now have an OpenMoko image to flash to your phone or run in qemu as described above.&lt;br /&gt;
&lt;br /&gt;
=== Hello World application ===&lt;br /&gt;
&lt;br /&gt;
There is a [http://wiki.openmoko.org/wiki/Building_a_hello_world_application Hello World!] tutorial available too.&lt;br /&gt;
&lt;br /&gt;
==Testimonials==&lt;br /&gt;
MokoMakefile is recommended by 4 out of 4 new developers on #openmoko, with testimonials such as &amp;quot;For some reason last night I couldn't get my manual install of everything to work (bb complained about my bbpath I think) ... but with your makefile, it works great!&amp;quot;, &amp;quot;MokoMakefile rocks!&amp;quot;, &amp;quot;Wow this build system is nice - it just seems more polished than my gumstix toolchain buildroot system&amp;quot;, and &amp;quot;make openmoko-devel-image :) - no magic there&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Project page:&lt;br /&gt;
http://mokomakefile.projects.openmoko.org/&lt;br /&gt;
&lt;br /&gt;
[[Category:Openmoko]]&lt;br /&gt;
[[Category:Applications]]&lt;br /&gt;
[[Category:Application Developer]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:SHR</id>
		<title>Talk:SHR</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:SHR"/>
				<updated>2008-07-06T16:37:46Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The freesmartphone framework daemons (ophoned, opreferencesd, odevicesd, etc...) have all been merged into a single daemon (frameworkd) So you will only need one package for all the freesmartphone functionalities. I am not sure yet of the stability of this daemon though.&lt;br /&gt;
&lt;br /&gt;
Also, if you are looking for a set of applications using the framework, maybe you want to have a look at tichy (disclamer : this is my project) : http://charlie137-2.blogspot.com/2008/07/introducing-tichy.html&lt;br /&gt;
&lt;br /&gt;
If you base your softwares on tichy, all you need to provide in you image is the freesmartphone framework, python, and a few standard python libraries.&lt;br /&gt;
&lt;br /&gt;
--[[User:Charlie|Charlie]] 11:43, 5 July 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
A conversation between roh, wurp, paulproteus about how to get started on the project:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Jul 04 02:37:30 &amp;lt;paulproteus&amp;gt; wurp2|away, Cool, but I'd rather talk about the old-apps-on-FSO project. (-:&lt;br /&gt;
Jul 04 02:37:53 &amp;lt;paulproteus&amp;gt; I wonder if we can easily package this for opkg.&lt;br /&gt;
Jul 04 02:38:04 &amp;lt;wurp2|away&amp;gt; paulproteus: Sounds good.  Sorry, I wsa reading the backlog.&lt;br /&gt;
Jul 04 02:38:10 &amp;lt;paulproteus&amp;gt; No prob!&lt;br /&gt;
Jul 04 02:39:06 &amp;lt;wurp2|away&amp;gt; I kept asking mickey why someone wasn't doing this (SHR)&lt;br /&gt;
Jul 04 02:39:37 &amp;lt;paulproteus&amp;gt; His answer was, everyone else is too busy?&lt;br /&gt;
Jul 04 02:39:44 &amp;lt;wurp2|away&amp;gt; And he said someone should, and pointed out that you could just build a phonekit-to-ophoned adapter, so finally today I got off my duff and started it&lt;br /&gt;
Jul 04 02:40:02 &amp;lt;wurp2|away&amp;gt; Yeah, I knew he &amp;amp; his little group was too busy&lt;br /&gt;
Jul 04 02:40:28 &amp;lt;wurp2|away&amp;gt; But I thought someone from OM could take the relatively small amount of time it *seems* like it should take&lt;br /&gt;
Jul 04 02:40:29 * paulproteus nods and listens&lt;br /&gt;
Jul 04 02:40:43 &amp;lt;wurp2|away&amp;gt; But, hey, if you want something done...&lt;br /&gt;
Jul 04 02:41:17 &amp;lt;wurp2|away&amp;gt; So I'm not sure I have much more to say that isn't on the wiki&lt;br /&gt;
Jul 04 02:41:30 &amp;lt;wurp2|away&amp;gt; IMO the first step is to get a good FSO image running from our repo&lt;br /&gt;
Jul 04 02:41:33 &amp;lt;roh&amp;gt; hey guys&lt;br /&gt;
Jul 04 02:41:39 &amp;lt;paulproteus&amp;gt; Hey now roh.&lt;br /&gt;
Jul 04 02:41:42 * mwester hides&lt;br /&gt;
Jul 04 02:42:01 &amp;lt;nezza-_-&amp;gt; hey roh&lt;br /&gt;
Jul 04 02:42:05 &amp;lt;wurp2|away&amp;gt; Then build a phonekit stub that openmoko2-dialer (or whatever the name is) can pretend to connect to&lt;br /&gt;
Jul 04 02:42:06 &amp;lt;paulproteus&amp;gt; wurp2|away, I agree - the first thing to do is just cone the current branch and have a repeatable build system.&lt;br /&gt;
Jul 04 02:42:08 &amp;lt;wurp2|away&amp;gt; Hi roh&lt;br /&gt;
Jul 04 02:42:11 &amp;lt;roh&amp;gt; about your project... i think youre overshooting the goal by soundling like 'we need to fork'&lt;br /&gt;
Jul 04 02:42:29 &amp;lt;paulproteus&amp;gt; I see it more as a branch than a fork.  But can you explain what you mean?&lt;br /&gt;
Jul 04 02:42:32 &amp;lt;roh&amp;gt; but i see your goal and like it.&lt;br /&gt;
Jul 04 02:42:45 &amp;lt;wurp2&amp;gt; roh: If we can get away without it, that would be great.  I want to minimize what we're doing&lt;br /&gt;
Jul 04 02:42:51 &amp;lt;paulproteus&amp;gt; Hopefully, as FSO people get interested in this, our branch would get rebased and disappears into FSO.&lt;br /&gt;
Jul 04 02:42:59 &amp;lt;roh&amp;gt; eventually you should just do it where the main fun happens. in the repos we have. here is what i suggest:&lt;br /&gt;
Jul 04 02:42:59 * mwester thinks the community needs commit rights, whatever you call it (fork or whatever)&lt;br /&gt;
Jul 04 02:43:09 &amp;lt;wurp2&amp;gt; I fished around for suggestions of how we could go about just labelling, or just branching specific files, but got no feel-good answers&lt;br /&gt;
Jul 04 02:43:18 * wurp2 listens.&lt;br /&gt;
Jul 04 02:43:31 &amp;lt;roh&amp;gt; you start hacking and coding, and i will see that there is a milestone in trac, where you can organize tickets in&lt;br /&gt;
Jul 04 02:43:48 &amp;lt;paulproteus&amp;gt; roh, in the fso trac?  I'm sold.&lt;br /&gt;
Jul 04 02:43:56 &amp;lt;roh&amp;gt; also about commit-rights.. thats quite easy. currently 2007.2 is basically unmaintained&lt;br /&gt;
Jul 04 02:44:22 &amp;lt;paulproteus&amp;gt; So any development would really be the only branch, anyway? (-:&lt;br /&gt;
Jul 04 02:44:23 &amp;lt;roh&amp;gt; paulproteus i dunno for sure.&lt;br /&gt;
Jul 04 02:44:28 &amp;lt;paulproteus&amp;gt; Sure, but basically.&lt;br /&gt;
Jul 04 02:45:41 &amp;lt;roh&amp;gt; the point is: we are currently thinking about reorganizing the buildprocess anyways.. so i would say we should a) see to get less distro-trees b) have a branch where the man with the hat for the branch commits stuff to.&lt;br /&gt;
Jul 04 02:46:04 &amp;lt;wurp2&amp;gt; roh: Just to make sure I understand: are you suggesting we commit to the 2007.2 tree?&lt;br /&gt;
Jul 04 02:46:14 &amp;lt;paulproteus&amp;gt; That's in svn, right?&lt;br /&gt;
Jul 04 02:46:22 &amp;lt;wurp2&amp;gt; or I can just keep listening until you're done with your point :-)&lt;br /&gt;
Jul 04 02:46:28 &amp;lt;roh&amp;gt; but the main point is: 2007.2 apps are in the main svn, but unmaintained. if somebody steps up and basically claims maintainership by doing real work i see not why we should hinder that.&lt;br /&gt;
Jul 04 02:47:01 &amp;lt;roh&amp;gt; my only concern about that all is: i do not see reason for 'forking' or cluttering stuff even more than it currently is.&lt;br /&gt;
Jul 04 02:47:17 &amp;lt;paulproteus&amp;gt; Okay, I can agree with that.&lt;br /&gt;
Jul 04 02:47:25 * jeffszusz tries to make sense of the convo&lt;br /&gt;
Jul 04 02:47:25 &amp;lt;roh&amp;gt; on the contrary, we need to get better oversight. and thats not what happens by using more different repos&lt;br /&gt;
Jul 04 02:47:26 &amp;lt;wurp2&amp;gt; roh: Sounds great!&lt;br /&gt;
Jul 04 02:47:42 &amp;lt;paulproteus&amp;gt; Now as far as build process, we'd still use the git OE repos and improve the bitbake files there?&lt;br /&gt;
Jul 04 02:47:44 * mwester notes that he currently has a rather poor attitude about OM branches and commits, and steps out of the conversation.  :(&lt;br /&gt;
Jul 04 02:47:48 &amp;lt;nullpuppy&amp;gt; ok. finally home, now to try and put together a build environment ;)&lt;br /&gt;
Jul 04 02:47:57 &amp;lt;paulproteus&amp;gt; We'd just make our own branch in that central OM git repo?&lt;br /&gt;
Jul 04 02:47:57 &amp;lt;roh&amp;gt; i dunno for sure, but atm i think we do a daily build of gta01 and gta02 org.openmoko.dev&lt;br /&gt;
Jul 04 02:48:06 &amp;lt;roh&amp;gt; the asu branch as well..&lt;br /&gt;
Jul 04 02:48:11 * jeffszusz didn't know there were forks/branches in OM&lt;br /&gt;
Jul 04 02:48:13 &amp;lt;wurp2&amp;gt; So what do we do to get permission to check stuff into 2007.2?&lt;br /&gt;
Jul 04 02:48:21 &amp;lt;roh&amp;gt; but i dunno who even uses these image (non-asu, old gtk based) or if they work at all.&lt;br /&gt;
Jul 04 02:48:28 &amp;lt;paulproteus&amp;gt; Right.&lt;br /&gt;
Jul 04 02:48:44 &amp;lt;alphabeat&amp;gt; dvarnes: http://wiki.openmoko.org/wiki/Group_Sales_Australia&lt;br /&gt;
Jul 04 02:48:54 &amp;lt;wurp2&amp;gt; roh: They didn't work 3 weeks ago, then about 2 weeks ago someone said they (mostly) worked, but I dunno that they're maintained at all, as you say&lt;br /&gt;
Jul 04 02:49:03 &amp;lt;roh&amp;gt; wurp2 submit patches. i mean.. the recipe for the 2007.11 stuff should have a fixed svnrev, so even if you would break it it should even have the old states.&lt;br /&gt;
Jul 04 02:49:08 &amp;lt;wurp2&amp;gt; s/They/2007.2/&lt;br /&gt;
Jul 04 02:49:09 &amp;lt;apt&amp;gt; wurp2 meant: roh: 2007.2 didn't work 3 weeks ago, then about 2 weeks ago someone said they (mostly) worked, but I dunno that they're maintained at all, as you say&lt;br /&gt;
Jul 04 02:50:04 &amp;lt;roh&amp;gt; so i suggest: start hacking, start mailing patches.. i see that we clear up the repo as well as buildhost-situation.&lt;br /&gt;
Jul 04 02:50:06 &amp;lt;dvarnes&amp;gt; alphabeat, yep .. already sent message to simon mathews with inquiry&lt;br /&gt;
Jul 04 02:50:28 &amp;lt;wurp2&amp;gt; roh: OK, I'm very familiar with svn, and I have some experience with darcs and a knowledge of arch (RCSs like git)&lt;br /&gt;
Jul 04 02:50:37 &amp;lt;wurp2&amp;gt; But I dunno how we would work off an svn tree&lt;br /&gt;
Jul 04 02:50:41 &amp;lt;paulproteus&amp;gt; wurp2, IMHO we should use a git-svn repository to work on our patches then.&lt;br /&gt;
Jul 04 02:50:42 &amp;lt;wurp2&amp;gt; and easily share changes with one another&lt;br /&gt;
Jul 04 02:50:49 &amp;lt;paulproteus&amp;gt; That is quite feasible.&lt;br /&gt;
Jul 04 02:50:56 &amp;lt;roh&amp;gt; its a 2-part story.. one part is basic distribution-building work (means should happen in a branch or head on git)&lt;br /&gt;
Jul 04 02:50:59 &amp;lt;paulproteus&amp;gt; Another thing is to try quilt.&lt;br /&gt;
Jul 04 02:51:00 &amp;lt;wurp2&amp;gt; then submit patches once we're happy to whoever to merge into main tree&lt;br /&gt;
Jul 04 02:51:12 &amp;lt;paulproteus&amp;gt; I have to run in a minute, I'm very sorry to say!&lt;br /&gt;
Jul 04 02:51:13 &amp;lt;roh&amp;gt; the other part is porting and changing applications, which should happen where the app lives.&lt;br /&gt;
Jul 04 02:51:16 &amp;lt;wurp2&amp;gt; roh: Ah, I'm familiar with how to do it (basically) in git&lt;br /&gt;
Jul 04 02:51:29 &amp;lt;paulproteus&amp;gt; roh, Yes, re: distribution work: would we get a branch in the main OM git then?&lt;br /&gt;
Jul 04 02:51:35 &amp;lt;paulproteus&amp;gt; That would be fantastic.&lt;br /&gt;
Jul 04 02:51:51 &amp;lt;paulproteus&amp;gt; And I *really* appreciate you stepping in here.&lt;br /&gt;
Jul 04 02:51:56 &amp;lt;roh&amp;gt; i think that it would be the best way to do this.&lt;br /&gt;
Jul 04 02:52:12 &amp;lt;alphabeat&amp;gt; dvarnes: might be a little late. i think he bought a few as overhead so you might be lucky :) we bought 60 but only needed 53 or something&lt;br /&gt;
Jul 04 02:52:27 &amp;lt;wurp2&amp;gt; OK, I saw svn sneak in there for a bit, now we're talking about git again... which parts are git and which are svn?&lt;br /&gt;
Jul 04 02:52:34 &amp;lt;paulproteus&amp;gt; svn for apps; git for OE work&lt;br /&gt;
Jul 04 02:53:15 &amp;lt;wurp2&amp;gt; paulproteus: And you said quilt is a tool to help us share changes in our group, then create patches to submit to the main svn?&lt;br /&gt;
Jul 04 02:53:15 &amp;lt;paulproteus&amp;gt; Email patches for apps, and get them in a state to use the FSO backend that way, sharing work between us before they're ready for submission using git-svn.&lt;br /&gt;
Jul 04 02:53:16 &amp;lt;paulproteus&amp;gt; git for OE work - we'd get a branch in the OM git.&lt;br /&gt;
Jul 04 02:53:16 &amp;lt;paulproteus&amp;gt; That's what I understand.&lt;br /&gt;
Jul 04 02:53:26 &amp;lt;paulproteus&amp;gt; wurp2, Yes, quilt is an alternative to git-svn in this workflow.&lt;br /&gt;
Jul 04 02:53:27 &amp;lt;Dave&amp;gt; We meet again, Mr. Wurp.&lt;br /&gt;
Jul 04 02:53:38 &amp;lt;wurp2&amp;gt; wurp2: Ah, I think I prefer git-svn&lt;br /&gt;
Jul 04 02:53:41 &amp;lt;paulproteus&amp;gt; I think so too.&lt;br /&gt;
Jul 04 02:53:41 &amp;lt;wurp2&amp;gt; Dave: howdy&lt;br /&gt;
Jul 04 02:53:52 &amp;lt;Dave&amp;gt; Howdy ya'll&lt;br /&gt;
Jul 04 02:54:06 &amp;lt;wurp2&amp;gt; So we work in git, get it how we like it, then we create a patch&lt;br /&gt;
Jul 04 02:54:14 &amp;lt;wurp2&amp;gt; keeping our git in sync w/ svn via git-svn&lt;br /&gt;
Jul 04 02:54:25 &amp;lt;roh&amp;gt; wurp2 ?&lt;br /&gt;
Jul 04 02:54:29 &amp;lt;wurp2&amp;gt; (er, and we submit the patch back to the svn owner, of course)&lt;br /&gt;
Jul 04 02:54:29 &amp;lt;Dave&amp;gt; yep yep :)&lt;br /&gt;
Jul 04 02:54:45 &amp;lt;wurp2&amp;gt; roh: Did I drift into crazy talk?&lt;br /&gt;
Jul 04 02:55:04 &amp;lt;roh&amp;gt; i do not care how you branch/merge on your machine, but my point is that the app itself currently resides in svn.. and the distro which is 'one layer above' is in git&lt;br /&gt;
Jul 04 02:55:10 * jeffszusz pulls out his cardboard Freerunner and pretends to talk on it&lt;br /&gt;
Jul 04 02:55:26 &amp;lt;wurp2&amp;gt; roh: I think I understood that&lt;br /&gt;
Jul 04 02:55:31 &amp;lt;Dave&amp;gt; Is this not self-evident enough from the repositories themselves?&lt;br /&gt;
Jul 04 02:55:44 &amp;lt;Dave&amp;gt; jeffszusz: whoa, cool man, where can I get one? :D&lt;br /&gt;
Jul 04 02:55:46 &amp;lt;roh&amp;gt; Dave since we have loads of them, sadly not all the time.&lt;br /&gt;
Jul 04 02:55:53 &amp;lt;wurp2&amp;gt; roh: And dealing with the distro seems straightforward; we create a git repo that is a &amp;quot;child&amp;quot;(branch) of the main repo&lt;br /&gt;
Jul 04 02:55:57 &amp;lt;Dave&amp;gt; Yeah, I noticed that too, roh :)&lt;br /&gt;
Jul 04 02:56:04 &amp;lt;paulproteus&amp;gt; I have to run in 30-60s (-:&lt;br /&gt;
Jul 04 02:56:04 &amp;lt;wurp2&amp;gt; and can submit changes back&lt;br /&gt;
Jul 04 02:56:11 &amp;lt;wurp2&amp;gt; paulproteus: bye :-(&lt;br /&gt;
Jul 04 02:56:15 &amp;lt;SpeedEvil&amp;gt; How long are confirmation emails taking to get sent out?&lt;br /&gt;
Jul 04 02:56:19 &amp;lt;Dave&amp;gt; Even occasionally, and if it weren't for tagging, I'd mistake one for another frequently :)&lt;br /&gt;
Jul 04 02:56:24 &amp;lt;jeffszusz&amp;gt; Dave: print, cut, paste!&lt;br /&gt;
Jul 04 02:56:30 &amp;lt;paulproteus&amp;gt; wurp2, Right - we'll commit to a branch in OM git, and then we can ask the other branches to merge or cherry-pick our changes.&lt;br /&gt;
Jul 04 02:56:33 &amp;lt;roh&amp;gt; also most projects are just about apps and not about 'lets build a device.. and while were at it write drivers for it.. ah.. and bootloaders.. and apps.-. and then package it in a linux-distri&lt;br /&gt;
Jul 04 02:56:35 &amp;lt;SpeedEvil&amp;gt; Someone not had one after 3.5 hours. Is that overly delayed?&lt;br /&gt;
Jul 04 02:56:47 &amp;lt;Dave&amp;gt; heh, true enough :)&lt;br /&gt;
Jul 04 02:56:59 &amp;lt;wurp2&amp;gt; roh: But for apps, it seems that we need some way to share changes amongst ourselves w/o waiting for the patch to get accepted into the mainline, or even in some cases when we have things that aren't quite complete, that need another team member to finish&lt;br /&gt;
Jul 04 02:56:59 &amp;lt;alphabeat&amp;gt; jeffzusz: did you print out the CAD file and make your own phone out of cardboard too?&lt;br /&gt;
Jul 04 02:57:31 &amp;lt;roh&amp;gt; wurp2 for testing they could be applied in the distro dev branch.&lt;br /&gt;
Jul 04 02:57:32 &amp;lt;jeffszusz&amp;gt; alphabeat: nope, but i'm tempted&lt;br /&gt;
Jul 04 02:57:33 &amp;lt;dvarnes&amp;gt; alphabeat, yep .. understood .. I had looked a couple of times at the Group page, but the Aus one is not linked, so missed it.  Not urgent since I already have a Neo :-)  Still, am plannig to order a FR .. &lt;br /&gt;
Jul 04 02:57:54 &amp;lt;Dave&amp;gt; Oh, I should write that report to the ml now.&lt;br /&gt;
Jul 04 02:58:00 &amp;lt;wurp2&amp;gt; roh: So we were suggesting a SHR specific git repo, that would drift a bit from the app's svn until we get small changesets complete, then we would create patches&lt;br /&gt;
Jul 04 02:58:05 &amp;lt;paulproteus&amp;gt; You guys, please store the results of this discussion on that wiki page.&lt;br /&gt;
Jul 04 02:58:05 &amp;lt;paulproteus&amp;gt; Bye!&lt;br /&gt;
Jul 04 02:58:13 &amp;lt;roh&amp;gt; i guess it would start with a -dev only branch.. if that then takes 'form' make it a stable one and branch the new --dev&lt;br /&gt;
Jul 04 02:58:15 &amp;lt;wurp2&amp;gt; and keep our git repo in sync w/ the app repo via svn-git&lt;br /&gt;
Jul 04 02:58:21 &amp;lt;roh&amp;gt; (the distro)&lt;br /&gt;
Jul 04 02:58:43 &amp;lt;digitalslave&amp;gt; &amp;lt;would be happy just to get the emulator to compile blac&lt;br /&gt;
Jul 04 02:58:44 * jeffszusz is realizing how little he knows about the progress of OpenMoko&lt;br /&gt;
Jul 04 02:58:46 &amp;lt;wurp2&amp;gt; OK&lt;br /&gt;
Jul 04 02:58:56 &amp;lt;roh&amp;gt; testing patches is in -dev as patch in oe.. then merge it into the repo (work with minrev and maxrev in the recipes)&lt;br /&gt;
Jul 04 02:59:04 &amp;lt;wurp2&amp;gt; I'm hoping that our actual changes are fairly minimal&lt;br /&gt;
Jul 04 02:59:48 &amp;lt;roh&amp;gt; i guess so. even then.. really.. nobody would want to hinder future maintainers of apps to evolve ;)&lt;br /&gt;
Jul 04 02:59:57 &amp;lt;wurp2&amp;gt; A replacement for phonekit that delegates to ophoned, and a recipe to pull in compatible versions of all the basic apps&lt;br /&gt;
Jul 04 02:59:59 &amp;lt;digitalslave&amp;gt; cd ..&lt;br /&gt;
Jul 04 02:59:59 &amp;lt;digitalslave&amp;gt; ls&lt;br /&gt;
Jul 04 03:00:06 &amp;lt;alphabeat&amp;gt; dvarnes: it looks like he ordered 60 with 52 phones confirmed and payed for and 6 phones unconfirmed which leaves 2 spare. might be lucky hey? ps jealous of buying a neo1973. should have got one :P&lt;br /&gt;
Jul 04 03:00:13 &amp;lt;wurp2&amp;gt; digitalslave: Wrong window?&lt;br /&gt;
Jul 04 03:00:27 &amp;lt;digitalslave&amp;gt; haha yep damn track pad heh&lt;br /&gt;
Jul 04 03:00:48 &amp;lt;wurp2&amp;gt; digitalslave: At least it wasn't your root password&lt;br /&gt;
Jul 04 03:01:06 &amp;lt;jeffszusz&amp;gt; wurp2: i did that before&lt;br /&gt;
Jul 04 03:01:11 &amp;lt;digitalslave&amp;gt; hahaha&lt;br /&gt;
Jul 04 03:01:21 &amp;lt;alphabeat&amp;gt; wurp2|jeffszusz: yah me too xD&lt;br /&gt;
Jul 04 03:01:31 &amp;lt;wurp2&amp;gt; roh: I'll have to learn some more more before your -dev and --dev and minrev/maxrev stuff make sense to me :-)&lt;br /&gt;
Jul 04 03:01:34 &amp;lt;digitalslave&amp;gt; i like reading all the logs at work from everyone putting there password in for their username :)&lt;br /&gt;
Jul 04 03:01:38 &amp;lt;jeffszusz&amp;gt; i was due for a new password anyway... but i was lucky nobody used it before i had a chance to change it&lt;br /&gt;
Jul 04 03:01:38 &amp;lt;jeffszusz&amp;gt; heh&lt;br /&gt;
Jul 04 03:01:45 &amp;lt;wurp2&amp;gt; alphabeat, jeffszusz: :-(&lt;br /&gt;
Jul 04 03:01:50 &amp;lt;alphabeat&amp;gt; digitalslave: you're evil! i like that&lt;br /&gt;
Jul 04 03:02:11 &amp;lt;wurp2&amp;gt; It's also amazing what you'll see on a nic in promiscuous mode&lt;br /&gt;
Jul 04 03:02:21 &amp;lt;digitalslave&amp;gt; haha true that!&lt;br /&gt;
Jul 04 03:02:28 &amp;lt;roh&amp;gt; wurp2 in oe recipes one can define max, min or ranges thus of revisions which patches get applied.&lt;br /&gt;
Jul 04 03:02:30 &amp;lt;wurp2&amp;gt; Like people's pwds on all the sites that didn't know enough to use https for login form submission&lt;br /&gt;
Jul 04 03:03:04 &amp;lt;roh&amp;gt; wurp2 so if the patch which gets applied is merged, one sets the maxrev to one version below or so (atleast thats how i got it)&lt;br /&gt;
Jul 04 03:03:14 &amp;lt;wurp2&amp;gt; roh: I see&lt;br /&gt;
Jul 04 03:04:45 &amp;lt;wurp2&amp;gt; roh: How do we submit patches?  openmoko-devel?  Or is there a list of private email addys?&lt;br /&gt;
Jul 04 03:05:08 &amp;lt;roh&amp;gt; yeah.. just the list&lt;br /&gt;
Jul 04 03:05:16 &amp;lt;roh&amp;gt; or if you think it makes sense we &lt;br /&gt;
Jul 04 03:05:31 &amp;lt;roh&amp;gt; eh we can add a milestone and you add them as attachment to tickets&lt;br /&gt;
Jul 04 03:06:06 &amp;lt;wurp2&amp;gt; roh: That could work too... it seems like it would feel more reliable&lt;br /&gt;
Jul 04 03:06:22 &amp;lt;wurp2&amp;gt; roh: As in, we can see a comment on the ticket that says submitted, and don't have to search email logs for it&lt;br /&gt;
Jul 04 03:06:34 &amp;lt;roh&amp;gt; well.. its only how the 'group' of developers plans its workflow&lt;br /&gt;
Jul 04 03:07:01 &amp;lt;wurp2&amp;gt; roh: Is there any material I can read to get some clues about this?&lt;br /&gt;
Jul 04 03:07:19 &amp;lt;roh&amp;gt; eh.. which  part&lt;br /&gt;
Jul 04 03:07:31 &amp;lt;wurp2&amp;gt; Whichever parts have docs :-)&lt;br /&gt;
Jul 04 03:07:43 &amp;lt;roh&amp;gt; ehehe&lt;br /&gt;
Jul 04 03:08:01 &amp;lt;roh&amp;gt; well.. trac is easy.. it has documentation&lt;br /&gt;
Jul 04 03:08:03 &amp;lt;wurp2&amp;gt; bitbake, how you're using milestones, what the procedure has been to submit patches in the past&lt;br /&gt;
Jul 04 03:08:12 &amp;lt;wurp2&amp;gt; OK&lt;br /&gt;
Jul 04 03:08:20 &amp;lt;wurp2&amp;gt; I've had &amp;quot;read up on trac&amp;quot; in my todo for a long time&lt;br /&gt;
Jul 04 03:08:26 &amp;lt;wurp2&amp;gt; Now I guess I'll actually do it&lt;br /&gt;
Jul 04 03:08:37 &amp;lt;roh&amp;gt; submitting patches... eh.. well..the opensource-default.. send by mail, do not mangle long lines  ;)&lt;br /&gt;
Jul 04 03:08:45 &amp;lt;roh&amp;gt; use diff -u eh svn diff -u&lt;br /&gt;
Jul 04 03:09:09 &amp;lt;wurp2&amp;gt; Yeah, for that I was more concerned with internal procedures&lt;br /&gt;
Jul 04 03:09:33 &amp;lt;wurp2&amp;gt; But I'm not even sure what the questoins are right now, so I'll just try it the way that seems obvious the first time&lt;br /&gt;
Jul 04 03:09:34 &amp;lt;Dave&amp;gt; i.e. how the cabal performs its rituals ;)&lt;br /&gt;
Jul 04 03:09:37 &amp;lt;wurp2&amp;gt; And get corrected&lt;br /&gt;
Jul 04 03:09:44 &amp;lt;wurp2&amp;gt; Dave: exactly&lt;br /&gt;
Jul 04 03:09:48 &amp;lt;wurp2&amp;gt; tribal knowledge&lt;br /&gt;
Jul 04 03:09:52 &amp;lt;Dave&amp;gt; :)&lt;br /&gt;
Jul 04 03:10:11 &amp;lt;Dave&amp;gt; Every tribe is different ;)&lt;br /&gt;
Jul 04 03:10:23 &amp;lt;roh&amp;gt; wurp2 i think currently we are happy if people can code and submit good patches.. one easily looks over process minors then&lt;br /&gt;
Jul 04 03:10:45 &amp;lt;Dave&amp;gt; That sounds encouraging.&lt;br /&gt;
Jul 04 03:10:48 &amp;lt;wurp2&amp;gt; Well, I can code &amp;amp; submit patches&lt;br /&gt;
Jul 04 03:10:58 &amp;lt;wurp2&amp;gt; We'll see if you conclude they are good or not ;-)&lt;br /&gt;
Jul 04 03:11:27 &amp;lt;Dave&amp;gt; We'll see if you get voted off the island or not. ;)&lt;br /&gt;
Jul 04 03:12:12 &amp;lt;wurp2&amp;gt; OK, 2007.2 is OM distro, right?  Not apps, mostly?&lt;br /&gt;
Jul 04 03:12:30 &amp;lt;wurp2&amp;gt; and 2007.2 is a git branch, yes?&lt;br /&gt;
Jul 04 03:17:46 &amp;lt;roh&amp;gt; 2007.2 is a set of apps om did&lt;br /&gt;
Jul 04 03:18:59 &amp;lt;wurp2&amp;gt; roh: OK&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== some thoughts ==&lt;br /&gt;
&lt;br /&gt;
I was wondering what's the difference between this planned SHR and future release of FSO ? I mean, FSO is really great but lacks apps for the moment ; you're planning to port these apps from the GTK or the QT apps.&lt;br /&gt;
&lt;br /&gt;
Why not contribute these ported applications to the FSO milestone 2 ?&lt;br /&gt;
&lt;br /&gt;
I believe you should explain that in the page (or maybe I'm just confused by the description)&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Group_sales</id>
		<title>Group sales</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Group_sales"/>
				<updated>2008-06-16T15:36:22Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Paris */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Openmoko have announced a scheme to sell the forthcoming Neo Freerunner at a discount if bought in multiples of 10 (US$369, instead of 399), to be shipped in one package. Group buying will thus save money on the purchase, and on the shipping. This page is to to organise group purchases by region.&lt;br /&gt;
&lt;br /&gt;
For calculating shipping costs, the dimensions of one 10-pack is 435mm x 371mm x 119mm. The weight should be around 3kg.&lt;br /&gt;
&lt;br /&gt;
Steve from Openmoko announced &amp;quot;Every 10 pack, will come with a box of stuff. 10 pouches and 10 head sets.&amp;quot;&lt;br /&gt;
So join us within a local group !&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style='float:right'&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Australia ==&lt;br /&gt;
&lt;br /&gt;
=== Customs And Postage ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Because of Australian customs, it might be better to form groups of two. That way we (Australians) will fall under the $1000 amount for import items and not have to pay the extra customs / taxes . &lt;br /&gt;
Customs information for Australia can be found [http://www.customs.gov.au/site/page.cfm?u=5549 here].&lt;br /&gt;
&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/Monkeypanic Nick Devereaux] has worked out the per-phone cost of an Australian bulk order compared to an individual order. Thanks to [http://wiki.openmoko.org/wiki/Special:Emailuser/Simat Simon Matthews] for updating the shipping details. The postage is approximated on an estimate by Steve that shipping to Europe bulk is $160 and individual is $70. Australia should be similar to this. &lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
 |'''Bulk Order'''&lt;br /&gt;
 |'''$US'''&lt;br /&gt;
 |'''$AUS'''&lt;br /&gt;
 |-&lt;br /&gt;
 |Customs Value (Cval)&lt;br /&gt;
 |$3690.00&lt;br /&gt;
 |$3837.60&lt;br /&gt;
 |-&lt;br /&gt;
 |Postage&lt;br /&gt;
 |$160.00&lt;br /&gt;
 |$166.40&lt;br /&gt;
 |-&lt;br /&gt;
 |Value Of Taxable Importation (VoTI) =Cval+Postage&lt;br /&gt;
 |$3850.00&lt;br /&gt;
 |$4004.00&lt;br /&gt;
 |-&lt;br /&gt;
 |Goods And Services Tax (GST) =10% of VoTI&lt;br /&gt;
 |$385.00&lt;br /&gt;
 |$400.40&lt;br /&gt;
 |- &lt;br /&gt;
 |Total Cost&lt;br /&gt;
 |$4235.00&lt;br /&gt;
 |$4404.40&lt;br /&gt;
 |-&lt;br /&gt;
 |'''Per Person'''&lt;br /&gt;
 |'''$423.50'''&lt;br /&gt;
 |'''$440.44'''&lt;br /&gt;
 |}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
 |'''Individual Order'''&lt;br /&gt;
 |'''$US'''&lt;br /&gt;
 |'''$AUS'''&lt;br /&gt;
 |-&lt;br /&gt;
 |Value&lt;br /&gt;
 |$399.00&lt;br /&gt;
 |$414.96&lt;br /&gt;
 |-&lt;br /&gt;
 |Postage&lt;br /&gt;
 | $70.00&lt;br /&gt;
 | $72.80&lt;br /&gt;
 |-&lt;br /&gt;
 |'''Total Cost'''&lt;br /&gt;
 |'''N/A'''&lt;br /&gt;
 |'''$487.76'''&lt;br /&gt;
 |}&lt;br /&gt;
&lt;br /&gt;
using the above rates and calculations, an order for two people (small group) would cost &lt;br /&gt;
$414.96 + $414.96 = 829.92 for the total of the phones  and then 72.80  for the shipping.&lt;br /&gt;
Thus, the total cost would be 902.72 and $451.36 per a person ( as the value of the goods is less than $aud1000. i don't think taxes apply).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Postage quote from http://www1.auspost.com.au/pac/int_parcel.asp&lt;br /&gt;
&lt;br /&gt;
Figures accurate as of 26th May 2008, 1$ USD = $1.04 AUD.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Western Australia ===&lt;br /&gt;
==== Perth ====&lt;br /&gt;
&lt;br /&gt;
Status: 10/10&lt;br /&gt;
&lt;br /&gt;
* 1x Fred Janon mailto:fjanon@yahoo.com&lt;br /&gt;
&lt;br /&gt;
* 1x Shanon Loughton [http://wiki.openmoko.org/wiki/Special:Emailuser/cgltower contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Simon Matthews [http://wiki.openmoko.org/wiki/Special:Emailuser/simat contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Msquared [http://www.msquared.id.au/ contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Alex Wilkinson mailto:alex.wilkinson@dsto.defence.gov.au&lt;br /&gt;
&lt;br /&gt;
* 1x Daniel Foote mailto:freefoote@dview.net&lt;br /&gt;
&lt;br /&gt;
* 1x Russell Steicke mailto:russells@adelie.cx&lt;br /&gt;
&lt;br /&gt;
* 1x William Kenworthy mailto:billk@iinet.net.au&lt;br /&gt;
&lt;br /&gt;
* 1x Justin Dinale [http://wiki.openmoko.org/wiki/Special:Emailuser/Noledil Contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Paul Wise [http://pabs.zip.to Contact me here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 1x Bruce Mohan (via Simon Matthews)&lt;br /&gt;
&lt;br /&gt;
=== New South Wales  ===&lt;br /&gt;
==== Sydney ====&lt;br /&gt;
&lt;br /&gt;
status: 10/10 ( one group)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please add an &amp;quot;I exist&amp;quot; to end of your name here. &lt;br /&gt;
&lt;br /&gt;
We now have 10 people (that seem to exist). I would to suggest like openmoko the company allow group sale deposits into accounts on behalf of groups.&lt;br /&gt;
With perhaps the package sent to sydney and then to a po box or split to finish the journey to the buyers. &lt;br /&gt;
&lt;br /&gt;
=====Confirmed=====&lt;br /&gt;
* 1 x dbmoodb ---&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Dbmoodb contact me here] I exist.&lt;br /&gt;
* 1 x bing [http://wiki.openmoko.org/wiki/Special:Emailuser/Bingquick contact me here] I exist.&lt;br /&gt;
* 1 x Chris [http://wiki.openmoko.org/wiki/Special:Emailuser/ch0gan contact me here]. I exist.&lt;br /&gt;
* 1 x Neil Brown [http://wiki.openmoko.org/wiki/Special:Emailuser/Neilbrown contact me here] I'm wondering why I need to assert that I exist.&lt;br /&gt;
* 1 x Rob [http://wiki.openmoko.org/wiki/Special:Emailuser/Rob contact me here] Exist?  Of course I do.&lt;br /&gt;
* 1 x Tim [http://wiki.openmoko.org/wiki/Special:Emailuser/Voyd contact me here] I am almost certain I exist.&lt;br /&gt;
* 1 x porl [http://wiki.openmoko.org/wiki/Special:Emailuser/porl contact me here] I exist.&lt;br /&gt;
* 1 x tom [http://wiki.openmoko.org/wiki/Special:Emailuser/tom contact me here] I think I exist.&lt;br /&gt;
* 1 x Scott [http://wiki.openmoko.org/wiki/Special:Emailuser/Cysp wikimail]&lt;br /&gt;
* 1 x Kallax [http://wiki.openmoko.org/wiki/Special:Emailuser/Kallax contact me here] I exist&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Unconfirmed=====&lt;br /&gt;
* 1 x Mark Chandler [http://wiki.openmoko.org/wiki/Special:Emailuser/Openmarko contact me here]&lt;br /&gt;
* 1 x cbaird [http://wiki.openmoko.org/wiki/Special:Emailuser/Cbaird contact me here] I exist-- but I assume someone's vetting confirmation?&lt;br /&gt;
&lt;br /&gt;
=====potential group 2 (1/10)=====&lt;br /&gt;
** 1 x Surfless [http://wiki.openmoko.org/wiki/Special:Emailuser/surfless contact me here] I exist &lt;br /&gt;
Surfless From the edit revisions we can see that you added your self to group one of sydney after we had ten members. &lt;br /&gt;
As per http://wiki.openmoko.org/index.php?title=GroupSales&amp;amp;diff=34002&amp;amp;oldid=33677&lt;br /&gt;
If this is not correct please state so under here. You have been contacted regardless as we are not sure of &lt;br /&gt;
the confirmed number of people. However, in the future could all users who want to join a group try to follow the documentation set out. &lt;br /&gt;
You can at least say yes i am 11 / 10 (for the first group - aka i am the extra).&lt;br /&gt;
&lt;br /&gt;
=== Victoria ===&lt;br /&gt;
==== Melbourne ====&lt;br /&gt;
Status: 8/10&lt;br /&gt;
&lt;br /&gt;
* 4x Dennis Wollersheim, mailto: dewoller (at) gmail (dot) com&lt;br /&gt;
* 1x Dale Maggee, mailto: antisol (at) earthling (dot) net&lt;br /&gt;
* 1x Matt Price: mailto: coolcat22 (at) bigpond (dot) com&lt;br /&gt;
* 1x Daniel Chandler: [http://wiki.openmoko.org/wiki/Special:Emailuser/AlphaGremlin contact me here]&lt;br /&gt;
* 1X Hugh Stephens, mailto: hughstephens &amp;lt;at&amp;gt; hughstephens &amp;lt;dot&amp;gt; com&lt;br /&gt;
&lt;br /&gt;
=== ACT ===&lt;br /&gt;
==== Canberra ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* Fergus [http://wiki.openmoko.org/wiki/Special:Emailuser/Someone Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Queensland ===&lt;br /&gt;
==== Brisbane ====&lt;br /&gt;
Status: 10/10&lt;br /&gt;
&lt;br /&gt;
* Nick Devereaux x 3 [http://wiki.openmoko.org/wiki/Special:Emailuser/Monkeypanic Contact me here]&lt;br /&gt;
* Matt Gallagher [http://wiki.openmoko.org/wiki/Special:Emailuser/mattg Contact me here]&lt;br /&gt;
* Jordan Keith [http://wiki.openmoko.org/wiki/Special:Emailuser/Zedd_D1abl0 Contact me here]&lt;br /&gt;
* Matt Blyde [http://wiki.openmoko.org/wiki/Special:Emailuser/Mattblyde Contact me here]&lt;br /&gt;
* David Baker [http://wiki.openmoko.org/wiki/Special:Emailuser/dtbaker Contact me here]&lt;br /&gt;
* Neil Davey (confirmed 1, maybe 2) [http://wiki.openmoko.org/wiki/Special:Emailuser/Ndavey Contact me here]&lt;br /&gt;
* Patrick Mahoney [http://wiki.openmoko.org/wiki/Special:Emailuser/Xanther Contact me here]&lt;br /&gt;
* Annie Belcher (Confirmed 1, maybe 2) [http://wiki.openmoko.org/wiki/Special:Emailuser/River Contact me here]&lt;br /&gt;
&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Daniel Jarrott [http://wiki.openmoko.org/wiki/Special:Emailuser/Daniel.jarrott Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== South Australia ===&lt;br /&gt;
==== Adelaide ====&lt;br /&gt;
Status: 7/10&lt;br /&gt;
&lt;br /&gt;
* Adrian Billiau *2 [http://wiki.openmoko.org/wiki/Special:Emailuser/Carcin Contact me here]&lt;br /&gt;
* John Briggs [http://wiki.openmoko.org/wiki/Special:Emailuser/Erflungued Contact me here]&lt;br /&gt;
* Daniel Sobey [http://wiki.openmoko.org/wiki/Special:Emailuser/dns Contact me here]&lt;br /&gt;
* Nicholas Steicke [http://wiki.openmoko.org/wiki/Special:Emailuser/narthollis Contact me here]&lt;br /&gt;
* Joel Stanley [http://wiki.openmoko.org/wiki/Special:Emailuser/shenki Contact me here]&lt;br /&gt;
* Karl Goetz [http://wiki.openmoko.org/wiki/Special:Emailuser/kgoetz Contact me here]&lt;br /&gt;
&lt;br /&gt;
  There is an email list available [1] for people in SA who want to try and organise together.&lt;br /&gt;
 [1] http://lists.maincontent.net/listinfo.cgi/openmoko-orders-sa-maincontent.net&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
There is a group-buy page at MetaLab, available here: http://metalab.at/wiki/OpenMoko .. we almost have the full 10 slots assigned, and its quite possible that we will order *20* phones, so please register on the Metalab pages and let us know if you're interested .. &lt;br /&gt;
&lt;br /&gt;
=== Salzburg ===&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* D. Kepplinger (at MetaLab)&lt;br /&gt;
&lt;br /&gt;
=== Wien ===&lt;br /&gt;
Status: 2/10&lt;br /&gt;
* M. Greifeneder [http://wiki.openmoko.org/wiki/Special:Emailuser/mikegr Contact me here]&lt;br /&gt;
* J. Vaughan (torpor) -- http://metalab.at/wiki/OpenMoko [http://wiki.openmoko.org/wiki/Special:Emailuser/torpor Contact me here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Styria ===&lt;br /&gt;
==== Graz ====&lt;br /&gt;
Group 1: Status: 10/10&lt;br /&gt;
&lt;br /&gt;
* F Hackenberger [http://wiki.openmoko.org/wiki/Special:Emailuser/Deadman66 Contact me here]&lt;br /&gt;
* J Florineth [http://wiki.openmoko.org/wiki/Special:Emailuser/Flojoh Contact me here]&lt;br /&gt;
* G Michelitsch [http://wiki.openmoko.org/wiki/Special:Emailuser/graf_ithaka Contact me here]&lt;br /&gt;
* R Stoegbuchner [http://wiki.openmoko.org/wiki/Special:Emailuser/stoero Contact me here]&lt;br /&gt;
* M Lipp [http://wiki.openmoko.org/wiki/Special:Emailuser/Neldoreth Contact me here]&lt;br /&gt;
* M Maier [http://wiki.openmoko.org/wiki/Special:Emailuser/species Contact me here]&lt;br /&gt;
* M Konrad [http://wiki.openmoko.org/wiki/Special:Emailuser/konni Contact me here]&lt;br /&gt;
* K Krammer [http://wiki.openmoko.org/wiki/Special:Emailuser/krake Contact me here]&lt;br /&gt;
* M Prokop [http://wiki.openmoko.org/wiki/Special:Emailuser/mika Contact me here]&lt;br /&gt;
* C Lauermann [http://wiki.openmoko.org/wiki/Special:Emailuser/cms Contact me here]&lt;br /&gt;
&lt;br /&gt;
Group 2: Status: 3/10&lt;br /&gt;
* S Simmer [http://wiki.openmoko.org/wiki/Special:Emailuser/StefanS Contact me here]&lt;br /&gt;
* K Holler [http://wiki.openmoko.org/wiki/Special:Emailuser/kho Contact me here]&lt;br /&gt;
* T Schlager [http://wiki.openmoko.org/wiki/Special:Emailuser/sgrtho Contact me here]&lt;br /&gt;
&lt;br /&gt;
== Belgium ==&lt;br /&gt;
=== Flanders ===&lt;br /&gt;
==== Brussel/Aalst/Aarschot/Gent/Brugge ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
* Yorick, mailto: yorick DOT matthys AT gmail DOT com&lt;br /&gt;
* 2x Dolfje [http://wiki.openmoko.org/wiki/Special:Emailuser/Dolfje Contact me here]&lt;br /&gt;
* XVens, mailto: xavier DOT vens AT gmail DOT com&lt;br /&gt;
* Arno85, mailto: aaron DOT helin AT gmail DOT com, Kortrijk&lt;br /&gt;
* Rubenv, mailto: ruben D0T vandamme MAILAT belgacom D0T net, Kortrijk&lt;br /&gt;
* Yvo Brasseur, mailto: yvo_brasseur AT archon DOT be Living in Aarschot, working in Brussels.&lt;br /&gt;
* Emmanuel Mathot, mailto: aiieeee DOT gmail DOT com, Brussels&lt;br /&gt;
* Kamil Kubacki, mailto: kamil DOT kubacki AT gmail DOT com  [or kamil.kubacki@gmail.com]&lt;br /&gt;
* Hans Vanpée, mailto: hans AT vanpee DOT be&lt;br /&gt;
ps: Dolfje can bring freerunners to Brugge if needed&lt;br /&gt;
&lt;br /&gt;
==== Antwerp ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
* michielv [http://wiki.openmoko.org/wiki/Special:Emailuser/Michielv Contact me here]&lt;br /&gt;
* Peter N [http://wiki.openmoko.org/wiki/Special:Emailuser/Bubsy Contact me here]&lt;br /&gt;
* Ivo [http://wiki.openmoko.org/wiki/Special:Emailuser/Ivo Contact me here]&lt;br /&gt;
* Peter Leemans, mailto: peter AT x-tend DOT be&lt;br /&gt;
* Richard B [http://wiki.openmoko.org/wiki/Special:Emailuser/richardb Contact me here]&lt;br /&gt;
* Jeroen Van Goey [http://wiki.openmoko.org/wiki/Special:Emailuser/BioGeek Contact me here]&lt;br /&gt;
* Jeroen D [http://wiki.openmoko.org/wiki/Special:Emailuser/jeroendoggen Contact me here]&lt;br /&gt;
* Diego Garcia, mailto: didac.garcia AT gmail DOT com&lt;br /&gt;
* Sam Geeraerts (Laakdal) [http://wiki.openmoko.org/wiki/Special:Emailuser/Samgee Contact me here]&lt;br /&gt;
* Stefaan [http://wiki.openmoko.org/wiki/Special:Emailuser/Stefaan Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Wallonia ===&lt;br /&gt;
==== Walloon Brabant / Liège ====&lt;br /&gt;
Status: 2/10&lt;br /&gt;
* Istvan, mailto: buki DOT istvan AT gmail DOT com&lt;br /&gt;
* Léo, mailto leo DOT studer AT gmail DOT com&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
=== Sofia ===&lt;br /&gt;
==== Sofia ====&lt;br /&gt;
Status : 5/10&lt;br /&gt;
&lt;br /&gt;
* Dimitar Staykov, [http://wiki.openmoko.org/wiki/Special:Emailuser/OpenMitko Contact]&lt;br /&gt;
* Vernim, [http://wiki.openmoko.org/wiki/Special:Emailuser/Vernim Contact]&lt;br /&gt;
* Geo, [http://wiki.openmoko.org/wiki/Special:Emailuser/geomer Contact]&lt;br /&gt;
* Iceman, [http://wiki.openmoko.org/wiki/Special:Emailuser/ice Contact], 30 May 2008&lt;br /&gt;
* jdivanov, [http://wiki.openmoko.org/wiki/Special:Emailuser/jdivanov Contact], 16 June 2008&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&lt;br /&gt;
=== British Columbia ===&lt;br /&gt;
Status : 12/10&lt;br /&gt;
&lt;br /&gt;
* Justin (Vancouver): mailto: stryderjzw AT gmail&lt;br /&gt;
* Dave (Vancouver) Vancouver Linux users group (unconfirmed but about 7 so far): mailto: doc AT skynet REMOVE dot REMOVE ie&lt;br /&gt;
* Steven (Victoria) - If someone in the group will remail the package for me. mailto: skurylo --&amp;gt; gmail dot com&lt;br /&gt;
* Morley (Victoria) - If someone in the group will mail to the island. mailto:morleyw@gmail.com&lt;br /&gt;
* Robert (Vancouver) - robtaylor &amp;lt;AT&amp;gt; tinsputnik &amp;lt;DOT&amp;gt; com (1 unit)&lt;br /&gt;
* Jeff (Vancouver) - jef dot jef gmail com&lt;br /&gt;
&lt;br /&gt;
=== Alberta ===&lt;br /&gt;
Status : 8/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Wuth|Wuth]] : [mailto:wuth@acm.org]&lt;br /&gt;
* [[User:Slm3095om|stacy]] (2 units) : slm3095om AT millions dOt ca&lt;br /&gt;
* [[User:Abnormal|Morgan]] : [mailto:lightningperf@hotmail.com]&lt;br /&gt;
* [[User:picosrfr|Will]] : [mailto:will.siddall@gmail.com]&lt;br /&gt;
* [[User:Dewey|Dewey]] (Calgary) : [http://wiki.openmoko.org/wiki/Special:Emailuser/Dewey Contact me here]&lt;br /&gt;
* [[User:Shadowwolf|Vince]] (Red Deer) : 1 Unit + 1 Debug board [http://wiki.openmoko.org/wiki/Special:Emailuser/Shadowwolf Get a hold of me here]&lt;br /&gt;
* [[User:Deanb2|Dean]] (Calgary) : [mailto:deanb@gbtn.net]&lt;br /&gt;
&lt;br /&gt;
=== Ontario/Quebec ===&lt;br /&gt;
==== GTA (Toronto) ====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
* Gerald A [http://wiki.openmoko.org/wiki/Special:Emailuser/Historybuff Contact me here]&lt;br /&gt;
* MattC, mailto: quirkz AT gmail&lt;br /&gt;
* Sergey K, openmoko AT deeptown dOt org&lt;br /&gt;
* Kristin Low, kristin dot low at gmail dot com (Kingston)&lt;br /&gt;
* Daniel Lister, gmail(dan.lister)&lt;br /&gt;
* Ronnie Wong: '''3 units''' - r25wong AT ryerson dOT ca&lt;br /&gt;
* Paul V [http://wiki.openmoko.org/wiki/Special:Emailuser/Roju Contact me here]&lt;br /&gt;
* Matt Manjos, matt (AT) manjos * com&lt;br /&gt;
&lt;br /&gt;
Group 2 Status (Hamilton): 7/10&lt;br /&gt;
&lt;br /&gt;
* Gabriel D - ace AT staticwave DOT ca&lt;br /&gt;
* Richard D - rtdegelder --&amp;gt; gmail.com&lt;br /&gt;
* Steve S   - ssinger_pg AT sympatico dot ca&lt;br /&gt;
* Wolfram Kahl - kahl McMaster CA&lt;br /&gt;
* Paul Wouters - paul@xelerance.com '''2 units'''&lt;br /&gt;
* John Hurley - nybble at eml dot cc&lt;br /&gt;
&lt;br /&gt;
Group 3 Status (Montréal): 2/10&lt;br /&gt;
* Patrick Hétu - patrick AT koumbit DOT org&lt;br /&gt;
* Eric Lebel - lebeleri AT aei DOT ca&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
=== Santiago ===&lt;br /&gt;
Status : 6/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Mankeke]] Ricardo Manríquez C., mailto: ricardo.manriquez &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:XKnightmareX]] Gonzalo Pesenti., mailto: mare.knight1 &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:Freyes]] Felipe Reyes., mailto: felipereyes &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:Zeus]] Jonathan Gonzalez., mailto: zeus &amp;quot;remove this and add AT&amp;quot; gnu &amp;quot;dot&amp;quot; org&lt;br /&gt;
* [[User:crsepulv]] Cristian Sepúlveda, mailto: sepulveda.cristian@gmail.com&lt;br /&gt;
* [[User:nischg]] Nicolás Schubert, mailto: nischg@gmail.com&lt;br /&gt;
&lt;br /&gt;
== China ==&lt;br /&gt;
=== BeiJing ===&lt;br /&gt;
Status:9/10&lt;br /&gt;
*Luther  &amp;lt;br/&amp;gt; mailto:lutherluo@qq.com &amp;lt;br/&amp;gt;  1 freerunner and 1 debug board.&lt;br /&gt;
*Gnosy &amp;lt;br/&amp;gt; mailto:gnosyhh@gmail.com &amp;lt;br/&amp;gt;   1 freerunner and 1 debug board.&lt;br /&gt;
*Bin Zong &amp;lt;br /&amp;gt; mailto:hunter_00zb@hotmail.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt; MSN:hunter_00zb@hotmail.com&lt;br /&gt;
*Lee zaixin&amp;lt;br /&amp;gt; mailto:shqlzx@126.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt;&lt;br /&gt;
*Zhuwei&amp;lt;br /&amp;gt; mailto:grissom_zhu@139.com &amp;lt;br/&amp;gt; MSN:wyh0310@hotmail.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt;&lt;br /&gt;
*zhaojun&amp;lt;br/&amp;gt; mailto:zhaojun1631@163.com &amp;lt;br/&amp;gt;  1 freerunner and 1 debug board&lt;br /&gt;
*Benoit Begue&amp;lt;br/&amp;gt; mailto:snk4ever@gmail.com &amp;lt;br/&amp;gt;  1 freerunner&lt;br /&gt;
*Tristan&amp;lt;br/&amp;gt; mailto:0x5478(at)gmail.com &amp;lt;br/&amp;gt;  MSN:liu_bei_bei(at)hotmail.com &amp;lt;br/&amp;gt;  1 freerunner and 1 debug board.&lt;br /&gt;
&lt;br /&gt;
=== ShangHai ===&lt;br /&gt;
Status:1/10&lt;br /&gt;
&amp;lt;br/&amp;gt; &lt;br /&gt;
* Pajda, info on my [[User:Pajda|user page]], or you can [[Special:Emailuser/Pajda|contact me here]]. 1x freerunner&lt;br /&gt;
&lt;br /&gt;
=== Guangzhou ===&lt;br /&gt;
Status:1/10&lt;br /&gt;
*Geoffrey &amp;lt;br/&amp;gt; mailto:dghfalcon@gmail.com &amp;lt;br/&amp;gt; 1 freerunner and 1 debug borad.&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
If we do not reach a total large enough, Denmark **is** a very small place - surely we could figure out a way of getting them to find their way 'round the country :)&lt;br /&gt;
&lt;br /&gt;
=== Jutland ===&lt;br /&gt;
==== Aalborg ====&lt;br /&gt;
Status: 6/10&lt;br /&gt;
&lt;br /&gt;
Should anyone need it, transportation from Aalborg to Thisted for phones can be arranged, if you don't want to pick it up in Aalborg yourself :) ~leinir&lt;br /&gt;
&lt;br /&gt;
As it looks right now, it seems that it would be cheaper and easier for us to buy through Pulster in Germany - see the following email: http://lists.openmoko.org/pipermail/community/2008-May/017778.html ~leinir&lt;br /&gt;
&lt;br /&gt;
* Dan Leinir Turthra Jensen &amp;lt;br /&amp;gt; mailto:admin@leinir.dk &amp;lt;br /&amp;gt; [[User:Leinir]]&lt;br /&gt;
* Fabian Olesen &amp;lt;br /&amp;gt; mailto:firewalkerx@gmail.com&lt;br /&gt;
* Helge Willum Larsen &amp;lt;br /&amp;gt; mailto:helge.at.helges.dk&lt;br /&gt;
* Kristian Lindemann Larsen &amp;lt;br /&amp;gt; mailto:walker@pandia.dk&lt;br /&gt;
* Brian Olsen &amp;lt;br /&amp;gt; mailto:downloader@pandia.dk&lt;br /&gt;
* Henrik Odder Jensen &amp;lt;br /&amp;gt; mailto:herakles@pandia.dk&lt;br /&gt;
&lt;br /&gt;
==== Aarhus ====&lt;br /&gt;
Status: 3/10&lt;br /&gt;
&lt;br /&gt;
* Kent S. Knudsen - [http://wiki.openmoko.org/wiki/Special:Emailuser/Forestmountain contact me here] - [[User:Forestmountain]] (1 phone; will join any danish group if necessary)&lt;br /&gt;
* Lars Jensen - [http://wiki.openmoko.org/wiki/Special:Emailuser/el_senator contact me here] (1 phone)&lt;br /&gt;
* Martin Pedersen - [http://wiki.openmoko.org/wiki/Special:Emailuser/Cheeses contact me here] (1 phone; will join any danish group if necessary)&lt;br /&gt;
&lt;br /&gt;
==== Skjern ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Carlo]]&lt;br /&gt;
&lt;br /&gt;
==== Sønderborg ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* Theis Hjorth [http://wiki.openmoko.org/wiki/Special:Emailuser/Theis.hjorth contact me here] (1 phone + 1 devkit) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Fyn ===&lt;br /&gt;
Status: 4/10&lt;br /&gt;
(Unnless others join Esben and Peter will join the Copenhagen order and Peter will pick up the phones for Fyn in Copenhagen)&lt;br /&gt;
&lt;br /&gt;
* [[User:EsbenDamgaard]] (need 3 (Looney &amp;amp; Gert))&lt;br /&gt;
* [[User:apm]] (need 1 with invoice - can pick up in Copenhagen)&lt;br /&gt;
&lt;br /&gt;
=== Sjælland ===&lt;br /&gt;
==== Copenhagen ====&lt;br /&gt;
Status: 29/10 (33 including the 4 for Fyn - see above)&lt;br /&gt;
&lt;br /&gt;
* [[User:jrcarlsen | Johnny Rose Carlsen]] (+45) 28 14 60 04 [http://wiki.openmoko.org/wiki/Special:Emailuser/jrcarlsen (contact)] 1 phone&lt;br /&gt;
* [[User:Fursund]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Fursund (contact)] 1 phone&lt;br /&gt;
* [[User:tabac | Thomas Ammitzbøll-Bach ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/tabac (contact)] 1 phone&lt;br /&gt;
* [[User:chel | Christian E. Lysel ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/chel (contact)]&lt;br /&gt;
* [[User:UlrikRasmussen | Ulrik Rasmussen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/UlrikRasmussen (contact)] (1)&lt;br /&gt;
* [[User:KlaymenDK | Jan Gundtofte-Bruun]]  [http://wiki.openmoko.org/wiki/Special:Emailuser/KlaymenDK (contact)] (Pending final hw, eg. low-power LEDs)&lt;br /&gt;
* [[User:OleTange | Ole Tange]] [http://wiki.openmoko.org/wiki/Special:Emailuser/OleTange (contact)] (I need 14 with invoice)&lt;br /&gt;
* [[User:Pascal | Pascal d'Hermilly]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Pascal (contact)] (I need 1 with invoice)&lt;br /&gt;
* [[User:Miwer | Michael Andersen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Miwer (contact)] (2 freerunners, 1 debug board, and a copy of invoice)&lt;br /&gt;
* [[User:maha | Martin Hansen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/maha (contact)] (3 with invoice)&lt;br /&gt;
* [[User:SvenneK | Svenne Krap ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/SvenneK (contact)] (1+devkit with invoice)&lt;br /&gt;
* [[User:bss | Bo Stendal Sørensen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/bss (contact)] (1)&lt;br /&gt;
* [[User:Glenn | Glenn Møller-Holst]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Glenn (contact)] (2 freerunners + debug board, +invoice)&lt;br /&gt;
* [[User:knmeister | Kristian Nielsen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/knmeister (contact)] (I need 1 with invoice)&lt;br /&gt;
* [[User:Sir_Gallivant | Henrik Jordahn]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Sir_Gallivant (contact)] (I need one, probably one more later)&lt;br /&gt;
* [[User:hammerfar | Henrik Hammer Berthelsen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/hammerfar (contact)] (2 with invoice)&lt;br /&gt;
&lt;br /&gt;
== Estonia ==&lt;br /&gt;
=== Tallinn ===&lt;br /&gt;
Let's see if we can get ten people together for this. I'm willing to organise the local distribution if we can. Spread the word and try to get more locals interested in it. [[User:Yogiz|Yogiz]] 08:22, 3 June 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Yogiz | Yogiz]] ([mailto:yogizz@gmail.com contact]) 1 phone&lt;br /&gt;
&lt;br /&gt;
== Finland ==&lt;br /&gt;
=== Uusimaa ===&lt;br /&gt;
Note to gta02v6 waiting people:&amp;quot;The A5 boards have been reworked to remove the [LED] issue. So WRT&lt;br /&gt;
LEDs a5 and a6 have the same power consumption&amp;quot;. So, no problem? Also a quote from [[Neo FreeRunner GTA02 Hardware#GTA02v6]]: &amp;quot;Capacitor and resistor change A6 also on mass production A5&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Helsinki I (Full)====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
* Mikko Rauhala x2 [mailto:mjr@iki.fi mjr@iki.fi]&lt;br /&gt;
* Aleksi Hankalahti &amp;lt;br /&amp;gt; [mailto:aleksi.hankalahti@iki.fi aleksi.hankalahti@iki.fi]&lt;br /&gt;
* Seppo Hätönen &amp;lt;br /&amp;gt; [mailto:karrde@iki.fi karrde@iki.fi]&lt;br /&gt;
* Arttu Sund &amp;lt;br /&amp;gt; thearttu AT gmail DOT com&lt;br /&gt;
* Ville-Pekka Vainio &amp;lt;br /&amp;gt; vpivaini AT cs.helsinki.fi&lt;br /&gt;
* Heikki Hallamaa &amp;lt;br /&amp;gt; [mailto:heikki.hallamaa@iki.fi heikki.hallamaa@iki.fi]&lt;br /&gt;
* Tomi Jylhä-Ollila &amp;lt;br /&amp;gt; tomi.jylha-ollila@helsinki.fi&lt;br /&gt;
* Richard Braakman&lt;br /&gt;
* Timo Jyrinki &amp;lt;br /&amp;gt; [mailto:timo.jyrinki@iki.fi timo.jyrinki@iki.fi]&lt;br /&gt;
&lt;br /&gt;
==== Helsinki II, Turku &amp;amp; Vaasa====&lt;br /&gt;
&lt;br /&gt;
Status : 7/10&lt;br /&gt;
&lt;br /&gt;
Helsinki:&lt;br /&gt;
&lt;br /&gt;
* Risto H. Kurppa &amp;lt;br /&amp;gt; risto AT kurppa DOT fi&lt;br /&gt;
* Aapo Rantalainen &amp;lt;br /&amp;gt; aapo DOT rantalainen AT gmail DOT com&lt;br /&gt;
* Matti Laakso &amp;lt;br /&amp;gt; matti DOT laakso AT kotiposti DOT net&lt;br /&gt;
* Ismo Haanaho &amp;lt;br /&amp;gt; ismo DOT haanaho AT gmail DOT com&lt;br /&gt;
* Ilari Oras &amp;lt;br /&amp;gt; ilari DOT oras AT welho DOT com&lt;br /&gt;
&lt;br /&gt;
Turku:&lt;br /&gt;
&lt;br /&gt;
* Jaakko Lehtinen, jaakko dot lehtinen at gmail dot com&lt;br /&gt;
&lt;br /&gt;
Vaasa:&lt;br /&gt;
&lt;br /&gt;
* Mikko Niemikorpi, mikefulli ÄT gmail PISTE com&lt;br /&gt;
&lt;br /&gt;
FYI, removed from list (waiting for GTA02v6):&lt;br /&gt;
&lt;br /&gt;
* ''[[User:Piksi]], openmoko ÄT pi-xi PISTE net''&lt;br /&gt;
* ''2x Teemu Välimäki, [mailto:teemu.valimaki@iki.fi teemu.valimaki@iki.fi]''&lt;br /&gt;
&lt;br /&gt;
=== Lappi ===&lt;br /&gt;
==== Kemi ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
'''[[User:Cg|Discuss the order here]]'''&lt;br /&gt;
&lt;br /&gt;
Kemi:&lt;br /&gt;
* Henri Valta &amp;lt;br /&amp;gt;henri PISTE valta ÄT kemi PISTE fi&lt;br /&gt;
* Tommi Juvonen &amp;lt;br /&amp;gt;tassi ÄT mediapumppu PISTE info&lt;br /&gt;
* Jaakko Pörhö &amp;lt;br /&amp;gt;ensteinfrank ÄT hotmail PISTE com&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
=== Bretagne ===&lt;br /&gt;
==== Brest ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* StevenLeRoux [mailto:steven@pourri.fr steven@pourri.fr] Jabber_Id:Steven@jabber.fr&lt;br /&gt;
* Acheteur potentiel #2&lt;br /&gt;
&lt;br /&gt;
==== Rennes ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Cédric DUFOUIL (openmoko at tsleg point com)&lt;br /&gt;
* Yves MAHE (ymahe at zindep dot com)&lt;br /&gt;
* Guillaume BERTHELOM (yogui29 at gmail dot com)&lt;br /&gt;
&lt;br /&gt;
=== Pays de la Loire ===&lt;br /&gt;
==== La Roche sur Yon ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Vtouchar Vincent Touchard]&lt;br /&gt;
&lt;br /&gt;
==== Nantes ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
* [[User:Yoann|Yoann ARNAUD]]. OK for a ship in Rennes if needed. [http://wiki.openmoko.org/wiki/Special:Emailuser/Yoann Contact me here]&lt;br /&gt;
* [[User:sim51|Benoît SIMARD]]. Idem  [http://wiki.openmoko.org/wiki/Special:Emailuser/sim51 Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Nord ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Ile de france ===&lt;br /&gt;
==== Paris ====&lt;br /&gt;
Status : 21/30&lt;br /&gt;
&lt;br /&gt;
* StevenLeRoux&lt;br /&gt;
* &amp;lt;s&amp;gt;[[User:Phyce|Phyce]]&amp;lt;/s&amp;gt; (''commandé sur http://bearstech.com/shop '')&lt;br /&gt;
* Yann SLADEK ([http://wiki.openmoko.org/wiki/Special:Emailuser/Maveryck Contact me here])&lt;br /&gt;
* [[User:Wilk|Wilk]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Wilk Contact me here]&lt;br /&gt;
* Jonathan Magano ([http://wiki.openmoko.org/wiki/Special:Emailuser/JonathanMM Contact me here])&lt;br /&gt;
* Benjamin Renard (bn8[AT]zionetrix.net)&lt;br /&gt;
* [[User:OlivierBerger|OlivierBerger]]&lt;br /&gt;
* [[User:BartGS|BartGS]] [http://wiki.openmoko.org/wiki/Special:Emailuser/BartGS Contact me here]&lt;br /&gt;
* [[User:rcoscali|Rémi Cohen-Scali]]&lt;br /&gt;
* [[User:Valos|Valéry Febvre]]&lt;br /&gt;
* [[User:Manou|Emmanuel Raviart]]&lt;br /&gt;
* Le Troll Farceur ([http://wiki.openmoko.org/wiki/Special:Emailuser/LeTrollFarceur Contact me here])&lt;br /&gt;
* [[User:mshook|Mathieu Chouquet-Stringer]]&lt;br /&gt;
* [[User:LoicMinier|Loïc Minier]]&lt;br /&gt;
* [[User:chansen|Cyril Hansen]]&lt;br /&gt;
* [[User:hbernard|hugues]]&lt;br /&gt;
* Titilambert ([http://wiki.openmoko.org/wiki/Special:Emailuser/titilambert Contact me here])&lt;br /&gt;
* [[User:Raphux|Raphux]]([http://wiki.openmoko.org/wiki/Special:Emailuser/Raphux Contact me here])&lt;br /&gt;
* [[User:tuXXX|Damien Thébault]] (Contact me [[User:tuXXX|here]] or [[Special:Emailuser/tuXXX|here]])&lt;br /&gt;
* [[User:kkum|Kumar]] (contact me [[Special:Emailuser/kkum|here]])&lt;br /&gt;
* Gand' ([http://wiki.openmoko.org/wiki/Special:Emailuser/Gand' Contact me here])&lt;br /&gt;
* [[User:Sporniket|David SPORN]]&lt;br /&gt;
You may also see :&lt;br /&gt;
http://bearstech.com/openmoko/register&lt;br /&gt;
&lt;br /&gt;
=== Lorraine ===&lt;br /&gt;
==== Nancy ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:mosan|Nicolas Salles]]&lt;br /&gt;
&lt;br /&gt;
=== Rhône-Alpes ===&lt;br /&gt;
==== Lyon ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/patou Vincent MEURISSE]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/pini Gilles FILIPPINI]&lt;br /&gt;
&lt;br /&gt;
==== Grenoble ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/pbollard Philippe BOLLARD]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/aurelien Aurelien]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Hey_popey Damien]&lt;br /&gt;
&lt;br /&gt;
=== Alpes de Haute Provence ===&lt;br /&gt;
==== Manosque ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/cfdev Cyril]&lt;br /&gt;
&lt;br /&gt;
=== Provence Alpes Cote d'Azur ===&lt;br /&gt;
==== Sophia Antipolis ====&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/nico.inc Nicolas HUOT]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Xavier_OM Xavier CREMASCHI]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Vasile Vasile Jureschi]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Herve5 Hervé Sainct]&lt;br /&gt;
&lt;br /&gt;
=== Midi-Pyrénées ===&lt;br /&gt;
==== Toulouse ====&lt;br /&gt;
&lt;br /&gt;
Status: 2/10&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Ortalo|Ortalo]]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Micktaiwan Mickael Faivre-Maçon]&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
=== Baden-Württemberg ===&lt;br /&gt;
==== Karlsruhe ====&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Spacemarine|Spacemarine]] 2 Freerunner. -- I'm managing the communication between the groupbuyers, so please contact me if you are interested and haven't received an email from me yet. We will meet at the Kalug Meeting http://www.karlsruhe.linux.de/ on 26. 5. 2008 to discuss things further.&lt;br /&gt;
* [[Special:Emailuser/Dr.Nop|Dr.Nop]] (inzw. Ludwigsburg, falls es sich anbietet könnte ich auch zur Leonberger Gruppe wechseln)&lt;br /&gt;
* [[Special:Emailuser/JensB|JensB]]&lt;br /&gt;
* [[Special:Emailuser/Tedo|Tedo]]&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Gromgull|Gromgull]] (in Kaiserslautern, but Karlsruhe is close enough, and I doubt that I'll find 10 people here.&lt;br /&gt;
* [[Special:Emailuser/Ebi|Ebi]]&lt;br /&gt;
* [[Special:Emailuser/RIdd3r|Fabian]]&lt;br /&gt;
* [[Special:Emailuser/Gollum|Gollum]] in Mannheim, ditto :)  Maybe local postal service is an option?&lt;br /&gt;
* [[Special:Emailuser/Archimedes|Sebastian]] (in Kaiserslautern on workdays and Daun/Eifel during the weekend)&lt;br /&gt;
* [[Special:Emailuser/Roduit|Roduit]] In Heidelberg. Karlsruhe is close enough.&lt;br /&gt;
* [[Special:Emailuser/Cfo|cfo]] Karlsruhe&lt;br /&gt;
* [[Special:Emailuser/Adonres|Adonres]] Karlsruhe - Hope I'm not too late.&lt;br /&gt;
&lt;br /&gt;
==== Leonberg ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
* [[Special:Emailuser/ZaPPaS|ZaPPaS]] about 8 Freerunners.&lt;br /&gt;
* [[Special:Emailuser/Cc|Cc]]&lt;br /&gt;
* [[Special:Emailuser/Agon|Agon]] Maybe 1 Freerunner.&lt;br /&gt;
&lt;br /&gt;
==== Tübingen ====&lt;br /&gt;
Status 5/10&lt;br /&gt;
* [[Special:Emailuser/MiTo|MiTo]]&lt;br /&gt;
* [[Special:Emailuser/NoBody|NoBody]] close to tuebingen and stuttgart (between both)&lt;br /&gt;
* [[Special:Emailuser/eliasp|eliasp]] (3 Freerunner (me, qknight + sbock) - Tübingen downtown&lt;br /&gt;
* [[Special:Emailuser/nobs|nobs]] thinking about buying one; if I am #10, count me in; if there is someone else #11 you can drop me&lt;br /&gt;
&lt;br /&gt;
==== Ulm ====&lt;br /&gt;
Status: 2/10&lt;br /&gt;
* [[Special:Emailuser/mzanetti|mzanetti]] &lt;br /&gt;
* [[Special:Emailuser/Lord_Evil|Lord_Evil]] ich nehm auch eins. Evtl. kann ich mich auch an Augsburg anhängen.&lt;br /&gt;
&lt;br /&gt;
=== Bayern ===&lt;br /&gt;
&lt;br /&gt;
==== Augsburg ====&lt;br /&gt;
&lt;br /&gt;
Status 6/10&lt;br /&gt;
I just want to see if there are enough people to fill up to ten. So add your name here if you are interested.&lt;br /&gt;
&lt;br /&gt;
*[[Special:Emailuser/Whoever|whoever]] - Ich nehm eins, wenn die Münchner keines übrig haben.&lt;br /&gt;
*[[Special:Emailuser/Nightmare|Nightmare]] - Ich will auf jeden Fall eins haben&lt;br /&gt;
*[[Special:Emailuser/paddy2706|paddy2706]] - Ein OpenMoko bitte :)&lt;br /&gt;
&lt;br /&gt;
Wann werden die dann bestellt/gezahlt? Dauert bei mir no kurz bis ichs Geld für zusammen hab aber dann nehm ich eins.&lt;br /&gt;
MfG [http://wiki.openmoko.org/wiki/Special:Emailuser/MookiE MookiE]&lt;br /&gt;
&lt;br /&gt;
Hallo, ich würde mich für einen Freerunner interessieren. Wie sieht es mit Zoll aus? Kommt der noch dazu?&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/Murks Murks]&lt;br /&gt;
&lt;br /&gt;
   $3690 (10 Freerunner) &lt;br /&gt;
 + $ 160 (Versand lt. Australiern)&lt;br /&gt;
 =======&lt;br /&gt;
   $3850&lt;br /&gt;
&lt;br /&gt;
   $3850&lt;br /&gt;
 + $ 732 (19% Einfuhrumsatzsteuer)&lt;br /&gt;
 + $   0 (kein Zoll für Handys)&lt;br /&gt;
 =======&lt;br /&gt;
   $4582&lt;br /&gt;
&lt;br /&gt;
 $458 / 1,5$/€ = 305 € pro Telefon (als Richtwert)&lt;br /&gt;
&lt;br /&gt;
==== München ====&lt;br /&gt;
&lt;br /&gt;
Wir suchen noch einen Organisator für die Bestellung!&lt;br /&gt;
Weiß jemand, was man so alles beachten muss?&lt;br /&gt;
&lt;br /&gt;
Hilf mit, eine [[OpenMoko_Local_Groups:_Munich|Münchner UserGroup]] aufzubauen!&lt;br /&gt;
&lt;br /&gt;
Status 13/20&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Imitation|Imitation]] 30 April 2008&lt;br /&gt;
* [[Special:Emailuser/meyerm|meyerm]] 16:25 CEST, 01. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/Koebi|koebi]] 05. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/wof|wof]] (2) 07. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/floe|floe]] 10. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/mathew muc|mathew muc]] 12. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/einalex|einalex]] 13. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/smurfy|smurfy]] 18. Mai 2008&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Whoever|whoever]] 02. Juni 2008 (München oder Augsburg, ich mach bei der Gruppe mit, die mir als erste ein Freerunner &amp;quot;garantiert&amp;quot;)&lt;br /&gt;
* [[Special:Emailuser/Beni|Beni]] 05. Juni 2008&lt;br /&gt;
* [[Special:Emailuser/Nosyjoe|Nosyjoe]] 08. Juni 2008&lt;br /&gt;
* [[Special:Emailuser/peter_b|peter_b]] needs 2 Freerunner 16. Juni 2008&lt;br /&gt;
----&lt;br /&gt;
* [[Special:Emailuser/Eriks|Eriks]] Unfortunately I have to sign me off. So somebody else has to arrange it. I'm really sorry about that. :-(&lt;br /&gt;
&lt;br /&gt;
=== Berlin===&lt;br /&gt;
==== Berlin ====&lt;br /&gt;
&lt;br /&gt;
Help to form a [[OpenMoko_Local_Groups:_Berlin|Berlin User Group]]!&lt;br /&gt;
&lt;br /&gt;
Status 14/20&lt;br /&gt;
* Stephan [http://wiki.openmoko.org/wiki/User:Fischel Contact me here]&lt;br /&gt;
* Robert [http://wiki.openmoko.org/wiki/User:Thebohemian Contact me here]&lt;br /&gt;
* Nico [http://wiki.openmoko.org/wiki/User:Nico Contact me here]&lt;br /&gt;
* Bastian [[User:Fries43]]&lt;br /&gt;
* Sven-Ola [http://wiki.openmoko.org/wiki/User:Sven-ola Contact]&lt;br /&gt;
* Arne [http://wiki.openmoko.org/wiki/User:arnepp Contact me here]&lt;br /&gt;
* MM [http://wiki.openmoko.org/wiki/User:MM Contact]&lt;br /&gt;
* Keks [http://wiki.openmoko.org/wiki/User:Keksdosenmann Contact]&lt;br /&gt;
* Matthias [http://wiki.openmoko.org/wiki/User:mk Contact]&lt;br /&gt;
* Norbert [http://wiki.openmoko.org/wiki/User:Noha Contact]&lt;br /&gt;
* Joscha [http://wiki.openmoko.org/wiki/User:Joka Contact]&lt;br /&gt;
* Janne [http://wiki.openmoko.org/wiki/User:Janne Contact]&lt;br /&gt;
* Robert [http://wiki.openmoko.org/wiki/Special:Emailuser/Robx Contact]&lt;br /&gt;
* Conrad [http://wiki.openmoko.org/wiki/User:Caribu Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Bremen ===&lt;br /&gt;
==== Bremen ====&lt;br /&gt;
Status 3/10&lt;br /&gt;
* Gero Mudersbach [http://wiki.openmoko.org/wiki/Special:Emailuser/Gero Contact me here]&lt;br /&gt;
* Hartje Bruns [http://wiki.openmoko.org/wiki/Special:Emailuser/MrBurns Contact me here]&lt;br /&gt;
* Timo Scheffler [http://wiki.openmoko.org/wiki/Special:Emailuser/Faldrian Contact me here]&lt;br /&gt;
&lt;br /&gt;
==== Bremerhaven ====&lt;br /&gt;
&lt;br /&gt;
=== Hamburg ===&lt;br /&gt;
==== Hamburg ====&lt;br /&gt;
Status 9-10&lt;br /&gt;
&lt;br /&gt;
* Jan 4-5[http://wiki.openmoko.org/wiki/Special:Emailuser/Jan07 Contact me here]&lt;br /&gt;
* Varacanero [http://wiki.openmoko.org/wiki/Special:Emailuser/varacanero Contact me here]&lt;br /&gt;
* Ole 3-5 pcs [http://wiki.openmoko.org/wiki/Special:Emailuser/Olemoko Contact me here]&lt;br /&gt;
* Arne [http://wiki.openmoko.org/wiki/Special:Emailuser/GuraX Contact me here]&lt;br /&gt;
* Arne.anka 1pc [http://wiki.openmoko.org/wiki/Special:Emailuser/Arne.anka Contact me here]&lt;br /&gt;
* Wasili Goutas 1pc + debug adapter [http://wiki.openmoko.org/wiki/Special:Emailuser/Laki Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Hessen ===&lt;br /&gt;
==== Frankfurt ====&lt;br /&gt;
Status 1-10&lt;br /&gt;
&lt;br /&gt;
* Blacky [http://wiki.openmoko.org/wiki/Special:Emailuser/Blacky Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Niedersachsen===&lt;br /&gt;
==== Hannover====&lt;br /&gt;
Status 1&lt;br /&gt;
&lt;br /&gt;
* Dattel83 [http://wiki.openmoko.org/wiki/Special:Emailuser/Dattel83 Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== NRW ===&lt;br /&gt;
==== Aachen ====&lt;br /&gt;
Status 4/10&lt;br /&gt;
* Henrik, infos on my [[User:Henrikz|user page]], or you can [[Special:Emailuser/Henrikz|contact me here]]&lt;br /&gt;
* David, infos on my [[User:TechnoFan|user page]], or you can [[Special:Emailuser/TechnoFan|contact me here]]&lt;br /&gt;
* Stephan, infos on my [[User:chaq|user page]], or you can [[Special:Emailuser/chaq|contact me here]]&lt;br /&gt;
* Michael, infos on my [[User:knut|user page]], or you can [[Special:Emailuser/knut|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Bielefeld ====&lt;br /&gt;
Status 4/10&lt;br /&gt;
&lt;br /&gt;
* David, infos on my [[User:Raven|user page]], or you can [[Special:Emailuser/Raven|contact me here]]&lt;br /&gt;
* Sebastian, infos on my [[User:Seppi|user page]], or you can [[Special:Emailuser/Seppi|contact me here]]&lt;br /&gt;
* Dackel, infos on my [[User:Killerdackel|user page]], or you can [[Special:Emailuser/Killerdackel|contact me here]]&lt;br /&gt;
* Conny&lt;br /&gt;
* Arndt, infos on my [[User:Arndot|user page]], or you can [[Special:Emailuser/Arndot|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Bocholt ====&lt;br /&gt;
===== (Fachhochschule in Bocholt) =====&lt;br /&gt;
* 1 x adslex&lt;br /&gt;
* 1 x dg [[Special:Emailuser/dg|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Düsseldorf ====&lt;br /&gt;
* mac2k, infos on my [[User:mac2k|user page]], or you can [[Special:Emailuser/mac2k|contact me here]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Sachsen-Anhalt ===&lt;br /&gt;
==== Stendal (evtl. Magdeburg) ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Fabian Off [http://wiki.openmoko.org/wiki/Special:Emailuser/Fabian2de Contact me here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Thueringen ===&lt;br /&gt;
==== Weimar ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fries43]]&lt;br /&gt;
&lt;br /&gt;
==== Ilmenau ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:KimKiesel]]&lt;br /&gt;
&lt;br /&gt;
=== Sachsen ===&lt;br /&gt;
Eventuell sollten wir eine gemeinsame Bestellung für ganz Sachsen machen, damit wir auf ausreichend Leute kommen.&lt;br /&gt;
&lt;br /&gt;
==== Chemnitz ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* Tobias [http://wiki.openmoko.org/wiki/Special:Emailuser/Tobydox Contact me here]&lt;br /&gt;
* Michael [http://wiki.openmoko.org/wiki/Special:Emailuser/her Contact me here]&lt;br /&gt;
==== Dresden ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Martin [http://wiki.openmoko.org/wiki/Special:Emailuser/nodge Contact me here]&lt;br /&gt;
&lt;br /&gt;
==== Leipzig ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* Natanael [http://wiki.openmoko.org/wiki/Special:Emailuser/white_gecko Contact me here]&lt;br /&gt;
* Micha [http://wiki.openmoko.org/wiki/Special:Emailuser/Adian Contact me here]&lt;br /&gt;
&lt;br /&gt;
== Hungary == &lt;br /&gt;
Good to know:&lt;br /&gt;
*discussion here: http://hup.hu/node/54588&lt;br /&gt;
*mailing list: http://groups.google.com/group/freerunner-groupsales-hungary&lt;br /&gt;
*group ordering coordinator: Dániel Vásárhelyi (see below) - please contact me on any questions&lt;br /&gt;
&lt;br /&gt;
ordering rules:&lt;br /&gt;
* anyone can add and remove him/herself on the list - new names MUST be _appended_ to the list&lt;br /&gt;
* please use real name and working e-mail address&lt;br /&gt;
* although this list is informative, please extend it _only_ if you are really serious about ordering it&lt;br /&gt;
* coordinator contacts everyone interested prior to actual buying&lt;br /&gt;
&lt;br /&gt;
=== Budapest ===&lt;br /&gt;
&lt;br /&gt;
# Ferenc 'Lion' Veres [http://wiki.openmoko.org/wiki/Special:Emailuser/kempelen Contact] lion kukac netngine pont hu&lt;br /&gt;
# Laszlo 'rka' Szabo [http://wiki.openmoko.org/wiki/Special:Emailuser/rka Contact]&lt;br /&gt;
# tg [http://wiki.openmoko.org/wiki/Special:Emailuser/tg?wpSubject=OpenMoko%20GroupSales Contact]&lt;br /&gt;
# LiRul - lirul [KUKAC] hixsplit [PONT] hu&lt;br /&gt;
# Nyosigomboc - nyos [KUKAC] nyos [PONT] homelinux [PONT] net&lt;br /&gt;
# Ludvig Adam - hunludvig [KUKAC] gmail [PONT] com&lt;br /&gt;
# [http://wiki.openmoko.org/wiki/Special:Emailuser/asdmin?wpSubject=OpenMoko%20GroupSales Dániel 'asd' Vásárhelyi]&lt;br /&gt;
# asch, asch [KUKAC] freemail [PONT] hu&lt;br /&gt;
# btamas, [http://wiki.openmoko.org/wiki/Special:Emailuser/btamas Contact]&lt;br /&gt;
# Kovács 'ka87' András, andras [kukac] csevego [pont] net&lt;br /&gt;
# pcm, pcm [kukac] freemail [pont] hu&lt;br /&gt;
# gpiros, geza [PONT] piros [KUKAC] gmail [PONT] com&lt;br /&gt;
# Áron Preisinger, appa00 [kukac] gmail [pont] com [http://wiki.openmoko.org/wiki/Special:Emailuser/appa Contact]&lt;br /&gt;
# pierre286, [http://wiki.openmoko.org/wiki/Special:Emailuser/pierre286 Contact]&lt;br /&gt;
# Hélei Zoltán, heleiz [kukac] gmail&lt;br /&gt;
# Radics Áron, raron @ vipmail . hu&lt;br /&gt;
# Laszlo Szomor [http://wiki.openmoko.org/wiki/Special:Emailuser/Lci Contact]&lt;br /&gt;
# tr3w [http://wiki.openmoko.org/wiki/Special:Emailuser/tr3w Contact]&lt;br /&gt;
# Ferenc Szomor [http://wiki.openmoko.org/wiki/Special:Emailuser/Lci Contact]&lt;br /&gt;
# Bolyóczki Zsombor, mogorva kukac tuxworx pont hu&lt;br /&gt;
# Sütő Zoltán, suto dot zoltan at t dash online dot hu&lt;br /&gt;
# Zsolt Pittmann, pittmann dot zsolt at gmail dot com&lt;br /&gt;
# KREKACS Laszlo, laszlo {pont} krekacs {pont} list {kukacka} gmail {pont} com&lt;br /&gt;
# Móker Tamás - rwind [KUKAC]  apacheweb  [PONT] hu&lt;br /&gt;
# Krisztián Kovács, [http://wiki.openmoko.org/wiki/Special:Emailuser/Krisztian Contact]&lt;br /&gt;
# Tamas Michalik, [http://wiki.openmoko.org/wiki/Special:Emailuser/dotmind Contact]&lt;br /&gt;
# Peter Roosz, [http://wiki.openmoko.org/wiki/Special:Emailuser/rope Contact]&lt;br /&gt;
# Eduard Iacoboaia, [http://wiki.openmoko.org/wiki/Special:Emailuser/Polaru Contact]&lt;br /&gt;
# László Vadász, [http://wiki.openmoko.org/wiki/Special:Emailuser/Lvadasz Contact]&lt;br /&gt;
&lt;br /&gt;
=== Kecskemét ===&lt;br /&gt;
Dániel Vásárhelyi handles transportation to Kecskemét, therefore it is not necessary to collect 10 all pieces here.&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
=== Bangalore ===&lt;br /&gt;
Status 1/10&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/sh4r4d sharad]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/gadiyar Anand Gadiyar]&lt;br /&gt;
&lt;br /&gt;
=== Delhi/NCR ===&lt;br /&gt;
Status 2/10&lt;br /&gt;
* Sameer Mohamed Thahir [http://wiki.openmoko.org/wiki/Special:Emailuser/sameerthahir Contact]&lt;br /&gt;
* Pratul Kalia (lut4rp) ''pratulkalia [at] gmail [dot] com''&lt;br /&gt;
&lt;br /&gt;
== Italy == &lt;br /&gt;
For more informations and to organize groups, visit the&lt;br /&gt;
*[http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''''Italian Freerunner Group Sales Google Group'''''] (ML/Web/Feeds) ([mailto:freerunner-italian-group-sales@googlegroups.com freerunner-italian-group-sales@googlegroups.com]).&lt;br /&gt;
&lt;br /&gt;
'''BUT please keep adding your name and email to the list below'''&lt;br /&gt;
&lt;br /&gt;
If we don't reach the 10 phones limit in each city, maybe we could place an order in the &amp;quot;most requested city&amp;quot;, and from shipping to other buyers. We'll have anyway a good discount although the &amp;quot;double-shipping&amp;quot;. ([http://thread.gmane.org/gmane.comp.handhelds.openmoko.community/10937/focus=10981 Read here for reference]).&lt;br /&gt;
&lt;br /&gt;
=== Toscana ===&lt;br /&gt;
==== Firenze (e dintorni) ====&lt;br /&gt;
Status 11/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Treviño|Marco Trevisan (Treviño)]] - [http://blog.3v1n0.net/contatti-trevino/ Contacts here]&lt;br /&gt;
* [[User:Niccolo|Niccolo Rigacci]] - ''niccolo [AT] rigacci.org''&lt;br /&gt;
* [[User:pcav|Paolo Cavallini]] - ''cavallini [AT] faunalia.it''&lt;br /&gt;
* [[User:BiggMatt|Mattia Gentile]] - ''biggmatt@hotmail.it''&lt;br /&gt;
* Elisa ''[mailto:lab@kkk.it lab@kkk.it]'' (Empoli)&lt;br /&gt;
* [[User:Sugacapra|Sugacapra]] - ''alessio.chemeri [AT] gmail.com''&lt;br /&gt;
* [[User:tom_morello|Carlo Ascani (Morello)]] - ''carlo.ratm [AT] gmail.com''&lt;br /&gt;
* [[User:marrano|Stefano Burchietti (Marrano)]] - ''stefano [AT] nontelodiromai.it''&lt;br /&gt;
* [[User:Geli86|Matteo Gelimeri X 2 (Imola - Bologna)]] - ''gelimatteo [AT] gmail.com''&lt;br /&gt;
* [[User:dcoppa|David Coppa (Borgo a Buggiano, Pistoia)]] - ''dcoppa@gmail.com''&lt;br /&gt;
&lt;br /&gt;
=== Lombardia ===&lt;br /&gt;
&lt;br /&gt;
==== Milano e dintorni ====&lt;br /&gt;
Status 24/30&lt;br /&gt;
&lt;br /&gt;
[[GroupSales_Milano_e_dintorni|Organizzazione preliminare]] DEPRECATA lì 11 Maggio 2008.&lt;br /&gt;
&lt;br /&gt;
Da ora in poi usiamo il [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''].&lt;br /&gt;
&lt;br /&gt;
Ad ogni modo, per stabilire le precedenze nella prenotazione dei pacchi da 10 pezzi&amp;lt;br&amp;gt;&lt;br /&gt;
'''continuate ad aggiugerVi nella lista qui sotto'''&lt;br /&gt;
&lt;br /&gt;
*'''Gruppo 1'''&lt;br /&gt;
*# Marcello Gorla [mailto:marcello.gorla@gmail.com Contacts here] (Milano città)&lt;br /&gt;
*# Maxxer [mailto:maxxer@yetopen.it maxxer@yetopen.it] (Lecco)&lt;br /&gt;
*# Pietro Montorfano [mailto:monto84@gmail.com monto84@gmail.com] (from como)&lt;br /&gt;
*# Gianluigi Belli - [http://wiki.openmoko.org/wiki/Special:Emailuser/Pulciux Contacts here] (Milano)&lt;br /&gt;
*# Michele Castellano - [http://wiki.openmoko.org/wiki/Special:Emailuser/mubumba Contacts here] (Milano)&lt;br /&gt;
*# Maurizio Lipreri -  [http://wiki.openmoko.org/wiki/Special:Emailuser/Maldido Contacts here]( Como )&lt;br /&gt;
*# Guido Conaldi - [http://wiki.openmoko.org/wiki/Special:Emailuser/skepz Contacts here] (Varese)&lt;br /&gt;
*# [[User:Furester|Igor Scabini (furester)]] - [http://wiki.openmoko.org/wiki/Special:Emailuser/Furester Contacts here] (Milano)&lt;br /&gt;
*# Dario Panico [http://wiki.openmoko.org/wiki/Special:Emailuser/Dareus Contacts here] (Busto Arsizio, VA)&lt;br /&gt;
*# Marco Zanzotera (Milano città) &lt;br /&gt;
&lt;br /&gt;
*'''Gruppo 2'''&lt;br /&gt;
*# Francesco Ricci (Milano, Dipartimento di Scienze dell'Informazione, via Comelico 39/41) - possibile punto di ricezione/distribuzione - [http://wiki.openmoko.org/wiki/Special:Emailuser/Alfa21 Contacts here]&lt;br /&gt;
*# Danilo Sia (Birdack) [http://wiki.openmoko.org/wiki/Special:Emailuser/Birdack Contacts here] (Milano città)&lt;br /&gt;
*# Federico Belvisi - [http://wiki.openmoko.org/wiki/Special:Emailuser/Armalite Contacts here] (Legnano, MI/Varese)&lt;br /&gt;
*# Francesco Leserri - [http://wiki.openmoko.org/wiki/Special:Emailuser/Francy Contacts here] (Vimercate, MI)&lt;br /&gt;
*# [[User:Cga|Callea Gaetano Andrea]] (Milano zona Forlanini) [http://wiki.openmoko.org/wiki/Special:Emailuser/Cga Contacts here]&lt;br /&gt;
*# [[User:Pietrao| Pietro Isotti]] - [mailto:isottipietro@gmail.com isottipietro@gmail.com]&lt;br /&gt;
*# Baz - [mailto:buzzi.paolo@gmail.com buzzi.paolo@gmail.com]&lt;br /&gt;
*# Mario Signorino ('''2 unità''') ([[User:Dodiesis|Dodiesis]])- [mailto:mario@sgrunt.net mario@sgrunt.net] (Milano - possibile punto di ricezione alternativo )&lt;br /&gt;
*# [[user:Stemby|Carlo Stemberger]] (Stemby) - '''carlo'''&amp;lt;small&amp;gt;dot&amp;lt;/small&amp;gt;'''stemberger'''&amp;lt;small&amp;gt;at&amp;lt;/small&amp;gt;'''gmail'''&amp;lt;small&amp;gt;dot&amp;lt;/small&amp;gt;'''com''' (Missaglia, LC)&lt;br /&gt;
&lt;br /&gt;
*Gruppo 3 - incompleto&lt;br /&gt;
*# Marco Crobu - [http://wiki.openmoko.org/wiki/Special:Emailuser/Tron.tron Contacts here] (Zogno, BG)&lt;br /&gt;
*# Maurizio [[User:Trizio!|&amp;quot;Trizio!&amp;quot;]] Ciceri (Novara)&lt;br /&gt;
*# Gianluca [mailto:cimi.luca@gmail.com Contacts here] (Lugano-CH)&lt;br /&gt;
*# Matteo Tarantino [mailto:matteo.tarantino@gmail.com Contacts here] (Milano città)&lt;br /&gt;
*# Jacopo [mailto:jacopo.anselmi@gmail.com] (Milano Citta')&lt;br /&gt;
&lt;br /&gt;
=== Piemonte ===&lt;br /&gt;
==== Torino (and province) ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
Per coordinamento [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''] (Torino)&lt;br /&gt;
&lt;br /&gt;
Precedenza è stabilita in base all'ordine di aggiunta nella lista inizale&amp;lt;br&amp;gt;&lt;br /&gt;
*'''Gruppo 1''' (prime persone a fare l'ordine):&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Claudio Carnino (jollyr0g3r AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Alessandro Degano (a.degano AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Enrico Pigozzi (videokill71 AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Max Ciavarella - [http://wiki.openmoko.org/wiki/Special:Emailuser/Cicchetebom Contacts here]&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Giuseppe Barbieri (elect86 at gmail dot com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Riccardo Issoglio (riccardo.issoglio AT polito DOT it)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Flavio Pastore [http://wiki.openmoko.org/wiki/Special:Emailuser/Iron_Bishop Contacts here]&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Michele Renda ( mic DOT renda AT email DOT it )&amp;lt;br&amp;gt;&lt;br /&gt;
2 x Katjia Mirri (gattoniglia AT gmail DOT com ) two items (ne voglio due)!!&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*'''Gruppo 2''' (coloro che non ci stanno nel primo gruppo o che vogliono aspettare che il primo gruppo abbia ricevuto il telefono):&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Giovanni Di Mingo ( pino_otto AT yahoo DOT com )&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Marco Forasacco (zer0fil3 AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Gabriele Martino (pierino DOT the DOT living DOT joke AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Massimo Valerio (my AT massimovalerio DOT it)&amp;lt;br&amp;gt;&lt;br /&gt;
...&amp;lt;br&amp;gt;&lt;br /&gt;
(aggiungersi chi è nuovo)&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-------------------------------------&lt;br /&gt;
LISTA ORIGINALE (24/05/08 14:48):&lt;br /&gt;
* Claudio Carnino &amp;lt;br/&amp;gt; (jollyr0g3r AT gmail DOT com)&lt;br /&gt;
* Alessandro Degano &amp;lt;br/&amp;gt; (a.degano AT gmail DOT com)&lt;br /&gt;
* Enrico Pigozzi &amp;lt;br/&amp;gt; (videokill71 AT gmail DOT com)&lt;br /&gt;
* Max Ciavarella - [http://wiki.openmoko.org/wiki/Special:Emailuser/Cicchetebom Contacts here]&lt;br /&gt;
* Giuseppe Barbieri (elect86 at gmail dot com)&lt;br /&gt;
* Riccardo Issoglio &amp;lt;br/&amp;gt; (riccardo.issoglio AT polito DOT it)&lt;br /&gt;
* Flavio Pastore [http://wiki.openmoko.org/wiki/Special:Emailuser/Iron_Bishop Contacts here]&lt;br /&gt;
* Michele Renda ( mic DOT renda AT email DOT it )&lt;br /&gt;
* Katjia Mirri (gattoniglia AT gmail DOT com ) two items (ne voglio due)!!&lt;br /&gt;
* Giovanni Di Mingo ( pino_otto AT yahoo DOT com )&lt;br /&gt;
* Marco Forasacco &amp;lt;br/&amp;gt; (zer0fil3 AT gmail DOT com)&lt;br /&gt;
* Gabriele Martino &amp;lt;br/&amp;gt; (pierino DOT the DOT living DOT joke AT gmail DOT com)&lt;br /&gt;
* Massimo Valerio &amp;lt;br/&amp;gt; (my AT massimovalerio DOT it)&lt;br /&gt;
--------------------------------------&lt;br /&gt;
&lt;br /&gt;
=== Trentino-Alto Adige ===&lt;br /&gt;
==== Trento ====&lt;br /&gt;
Status 4/10&lt;br /&gt;
&lt;br /&gt;
* Vincenzo D'Andrea (vincenzo.dandrea AT gmail DOT com) &amp;lt;br/&amp;gt; (also Verona is OK - and I can carry others' phone VR to TN or viceversa)&lt;br /&gt;
* 1x [[User:Tarch|Tarcisio Fedrizzi]] (tarcisio.fedrizzi AT gmail DOT com)&lt;br /&gt;
* Emanuele Olivetti (emanuele CHIOCCIOLA relativita PUNTO com)&lt;br /&gt;
* Marco Ciampa (ciampix (*) libero (*) it)&lt;br /&gt;
&lt;br /&gt;
=== Friuli Venezia Giulia ===&lt;br /&gt;
==== Trieste ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* dorje [mailto:dorje@libero.it dorje@libero.it] - [[User:dorje|dorje]]&lt;br /&gt;
&lt;br /&gt;
=== Veneto ===&lt;br /&gt;
Status: 14/20&lt;br /&gt;
&lt;br /&gt;
==== Verona ====&lt;br /&gt;
&lt;br /&gt;
* Persegat [mailto:persegat@alice.it persegat@alice.it] - [[User:Pecce|Pecce]]&lt;br /&gt;
* Sylar91 [mailto:sylar1991@gmail.com sylar1991@gmail.com] - [[User:Sylar91|Sylar91]]&lt;br /&gt;
* Marco Franceschetti - [http://wiki.openmoko.org/wiki/Special:Emailuser/vonfritz Contacts here]&lt;br /&gt;
* AleksFalcone [mailto:aleks.falcone@gmail.com aleks.falcone@gmail.com] - [[User:AleksFalcone|AleksFalcone]]&lt;br /&gt;
* Roberto Previdi [mailto:hariseldon78(AT)gmail.com hariseldon78(AT)gmail.com] - [[User:hariseldon78|hariseldon78]] (also Milano is ok)&lt;br /&gt;
&lt;br /&gt;
==== Vicenza ====&lt;br /&gt;
&lt;br /&gt;
* Michele [mailto:michele@cooperativabiosphaera.it michele(at)cooperativabiosphaera.it] - &amp;lt;br /&amp;gt;Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Paolo [mailto:paolo.sartore@gmail.com paolo.sartore(at)gmail.com]&amp;lt;br /&amp;gt; Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Renato [mailto:wasgiventofly@gmail.com wasgiventofly AT gmail DOT com]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Sandro [http://wiki.openmoko.org/wiki/Special:Emailuser/vigerty contact me here]&amp;lt;br /&amp;gt; Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Marco [mailto:marco.napetti@linux.it marco.napetti(at)linux.it]&amp;lt;br /&amp;gt; Also Padova and Verona are ok.&lt;br /&gt;
&lt;br /&gt;
==== Venezia ====&lt;br /&gt;
&lt;br /&gt;
* Tommaso [mailto:tommaso.gardumi@gmail.com tommaso.gardumi@gmail.com] - [[User:Tobarello|Tobarello]] &amp;lt;br /&amp;gt;Also Padova, Vicenza &amp;amp; Trento are ok.&lt;br /&gt;
&lt;br /&gt;
==== Treviso ====&lt;br /&gt;
&lt;br /&gt;
* Dario [mailto:aliasbrain@gmail.com aliasbrain(at)gmail.com] - [[User:Rastafan|Rastafan]] &amp;lt;br /&amp;gt;one, maybe two.&lt;br /&gt;
&lt;br /&gt;
* Pedro [mailto:paguilar@junkerhq.net paguilar(at)junkerhq.net] - [[User:Paguilar|Paguilar]] &amp;lt;br/&amp;gt;Also Padova and Vicenza are ok.&lt;br /&gt;
&lt;br /&gt;
* mr [mailto:maurizio.rottin@gmail.com maurizio.rottin a-t gmail d-o-t com] - [[User:Mr|Mr]] &amp;lt;br/&amp;gt;one for sure, maybe two&lt;br /&gt;
&lt;br /&gt;
=== Emilia Romagna ===&lt;br /&gt;
Status : 6/10&lt;br /&gt;
==== Parma ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Delian|Marco Albanese]] [mailto:delian2@gmail.com delian2@gmail.com] For Me, it's ok for the decentralized shipment ( Milano for example :) ).&lt;br /&gt;
&lt;br /&gt;
* [[User:Hachreak|Leonardo Rossi]] ssj3gokou AT libero Dot it Also for me it's ok the decentralized shipping.&lt;br /&gt;
&lt;br /&gt;
==== Ravenna ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fano|Stefano Ronconi]] fanharlok AT libero Dot it decentralized shipping is ok.&lt;br /&gt;
* vagamente AT gmail DOT com (even hub if it's necessary...). ( se ti vanno bene ambo le citta' basta dirlo tra parentesi. Cosi', si fa confusione :) )&lt;br /&gt;
&lt;br /&gt;
==== Bologna ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:nixy_999|Lorenzo]] nixy_999 AT yahoo Dot it Also for me it's ok the decentralized shipping.&lt;br /&gt;
* vagamente AT gmail DOT com (even hub if it's necessary...).&lt;br /&gt;
* [[User:lord.of.the.dimm|Mauro]] lord.of.the.dimm AT gmail DOT com decentralized shipping: OK.&lt;br /&gt;
&lt;br /&gt;
=== Puglia ===&lt;br /&gt;
==== Lecce ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Morpheus90|Morpheus90]] [mailto:ugopiemontese@rudiaelinux.com ugopiemontese@rudiaelinux.com]&lt;br /&gt;
* [[User:Italyanker|italyanker]] [mailto:italyanker@gmail.com italyanker@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==== Bari ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fradeve11|Fradeve11]] [mailto:fradeve@ubuntu-it.org fradeve@ubuntu-it.org]&lt;br /&gt;
&lt;br /&gt;
=== Abruzzo ===&lt;br /&gt;
==== Pescara ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* ZarZ [mailto:zarz25@gmail.com zarz25@gmail.com]&lt;br /&gt;
&lt;br /&gt;
=== Campania ===&lt;br /&gt;
==== Caserta (and province) ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* fenoxxx [mailto:fenoxxx@gmail.com] - Aversa&lt;br /&gt;
&lt;br /&gt;
=== Lazio ===&lt;br /&gt;
==== Roma ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
Per coordinamento [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''] (Roma)&lt;br /&gt;
&lt;br /&gt;
La precedenza è stabilita in base all'ordine di aggiunta nella lista inizale&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Gruppo 1 (completo):&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Hire X 2 [mailto:hiretto@gmail.com hiretto@gmail.com] (Roma)&lt;br /&gt;
* Darkbasic X 1 [mailto:darkbasic4(at)gmail darkbasic4(at)gmail] (Ancona)&lt;br /&gt;
* zione X 1 [mailto:alessio.filipponio@gmail.com alessio.filipponio@gmail.com](Roma)&lt;br /&gt;
* AntoMan X 1 [mailto:obe_65@yahoo.it AntoMan](Roma)&lt;br /&gt;
* Christian X 1(Gino46) [mailto:christian.marzola@alice.it] (ferrara) Qualcuno me lo dovrebbe spedire. || Ci pensa Hire a spedirli a chi non è di Roma, mettete semplicemente in conto 8/9 euro in più per la spedizione.&lt;br /&gt;
* Tempix X 1 [mailto:tempix11@gmail.com tempix11@gmail.com] (Ancona)&lt;br /&gt;
* 6xsempre X 1 [mailto:6xsempre@jumpy.it] (frosinone)&lt;br /&gt;
* lynx1673 X1 [mailto: acarfi at yahoo dot com] - lynx sei di Roma?&lt;br /&gt;
* PauLoX x 1 [mailto:paulox@paulox.net paulox@paulox.net] (Pescara) Lavoro a Roma durante la settimana&lt;br /&gt;
&lt;br /&gt;
=== Liguria ===&lt;br /&gt;
==== Genova ====&lt;br /&gt;
Status 5/10&lt;br /&gt;
&lt;br /&gt;
* Luca Maranzano X 1 (liuk AT linux DOT it) [[User:liuk|liuk]]&lt;br /&gt;
* Lorenzo Fornara X 1 (fw1987 AT hotmail DOT it)&lt;br /&gt;
* Stefano Cutelle' X 1 (staff@ascservices.it) [[User:ascservices|ascservices]]&lt;br /&gt;
* Andrea De Gaetano X 1 (dega1999 AT gmail DOT com) [[User:Dega1999|Dega1999]]&lt;br /&gt;
* Salvo Schiavone X 1 (salvoschiavone AT gmail DOT com [[User:Salvador|Salvador]]&lt;br /&gt;
&lt;br /&gt;
=== Sicilia ===&lt;br /&gt;
==== Palermo ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
* Giorgio Marciano' X 1 [mailto:giorgio.marciano@email.it giorgio]&lt;br /&gt;
* Michele Puccio X 1 [mailto:narkos@iol.it michele]&lt;br /&gt;
* Roberto Calandra X 1 [mailto:isokazi@yahoo.it roberto]&lt;br /&gt;
* Vincenzo Moreno Luna X 6 [mailto:ciop85plus@hotmail.com vincenzo]&lt;br /&gt;
* Daniele Lupo X 1 [mailto:danwolf80@libero.it daniele]&lt;br /&gt;
&lt;br /&gt;
==== Messina ====&lt;br /&gt;
Status 6/10&lt;br /&gt;
&lt;br /&gt;
* Melug X 6 [mailto:suuuper@messinalug.org MeLug]&lt;br /&gt;
&lt;br /&gt;
=== Calabria ===&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
==== Catanzaro ====&lt;br /&gt;
* Carlo Mangani X 1 [mailto:carlo.mangani@gmail.com carlo.mangani@gmail.com] - Lamezia Terme&lt;br /&gt;
&lt;br /&gt;
==== Cosenza ====&lt;br /&gt;
* Francesco Portus X 1 [mailto:portusgraphics@gmail.com portusgraphics@gmail.com] - Bisignano (Cosenza)&lt;br /&gt;
&lt;br /&gt;
=== Sardegna ===&lt;br /&gt;
==== Cagliari ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Panta x 1 [[User:Panta]]&lt;br /&gt;
Viaggio per tutta l'Isola, per cui, nel caso in cui arrivassimo a 10 utenti...&lt;br /&gt;
&lt;br /&gt;
== Macedonia ==&lt;br /&gt;
=== Skopje ===&lt;br /&gt;
Status 1/10&lt;br /&gt;
* Kristijan Krsteski 1/10 &amp;lt;br /&amp;gt; [[User:neutrino]] &amp;lt;br /&amp;gt; [mailto:kristijan.krsteski@gmail.com]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== México ==&lt;br /&gt;
=== Ciudad de México ===&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Kozapatista [[Special:Emailuser/User:kozapatista|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Ciudad Victoria ===&lt;br /&gt;
Status 3/10&lt;br /&gt;
&lt;br /&gt;
* 3x  Gregorio Toscano [mailto:gtoscano@cinvestav.mx email]&lt;br /&gt;
&lt;br /&gt;
== [http://wiki.openmoko.org/wiki/Talk:GroupSales#The_Netherlands The Netherlands] ==&lt;br /&gt;
(Discuss this group sale on the [http://wiki.openmoko.org/wiki/Talk:GroupSales#The_Netherlands talk page])&lt;br /&gt;
&lt;br /&gt;
* Marijn Kruisselbrink 1 [[Special:Emailuser/User:mkruisselbrink|Contact]]&lt;br /&gt;
* Andy Powell 1/10 [[Special:Emailuser/User:ScaredyCat|Contact]]&lt;br /&gt;
* Arjan Veenstra 1/10 [[User:AVee]] [[Special:Emailuser/User:AVee|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Gelderland ===&lt;br /&gt;
&lt;br /&gt;
==== Nijkerk ====&lt;br /&gt;
* [[User:Nicolas|Nico Veenkamp]] (Nijkerk 1x) [[Special:Emailuser/User:Nicolas|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Nijmegen ====&lt;br /&gt;
* [[User:A.dre|André Disselhorst]] (Nijmegen 1x) [[Special:Emailuser/User:A.dre|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Groningen ===&lt;br /&gt;
&lt;br /&gt;
==== Haren ====&lt;br /&gt;
* [[User:akrabbe|Albert Krabbe]] (Haren 1x) [[Special:Emailuser/User:akrabbe|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Limburg ===&lt;br /&gt;
&lt;br /&gt;
==== Griendtsveen ====&lt;br /&gt;
* [[User:KenSentMe|Jeroen van de Nieuwenhof]] (Griendtsveen 1x) [[Special:Emailuser/User:KenSentMe|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Noord-Brabant ===&lt;br /&gt;
&lt;br /&gt;
==== Bergen op Zoom ====&lt;br /&gt;
* [[User:Madjo|Marcel de Jong]] 1/10 [[Special:Emailuser/User:Madjo|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Eindhoven ====&lt;br /&gt;
* Christ van Willegen 1 [[User:ChristW]]&lt;br /&gt;
* Jan van Nijnatten 1 [[Special:Emailuser/User:Javany|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Noord Holland ===&lt;br /&gt;
&lt;br /&gt;
==== Amsterdam ====&lt;br /&gt;
* Michel van Horssen 1/10 [[Special:Emailuser/User:mivaho|Contact]]&lt;br /&gt;
* Frank Richter 1 [[Special:Emailuser/User:res|Contact]]&lt;br /&gt;
* Eric Smith 1/10 [[User:Eric Smith]]&lt;br /&gt;
* Buddy Baars 1 [[Special:Emailuser/User:Budster|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Beverwijk ====&lt;br /&gt;
* Theo Martens 1x [[Special:Emailuser/User:T_M|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Bussum ====&lt;br /&gt;
* Remco van Zuijlen 1x [[Special:Emailuser/User:Remco|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Overijssel ===&lt;br /&gt;
&lt;br /&gt;
==== Deventer ====&lt;br /&gt;
* Jan de Haan 1/10 [[User:Jan de Haan]] [[Special:Emailuser/User:Jan de Haan|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Enschede ====&lt;br /&gt;
* Peter Hageman 1x [[Special:Emailuser/User:PingPong|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Hengelo ====&lt;br /&gt;
* Sander Hoentjen 1/10 [[Special:Emailuser/User:Tjikkun|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Zwolle ====&lt;br /&gt;
* Boudewijn 1/10 [[User:Boudewijn|empty user page]] [[Special:Emailuser/User:Boudewijn|Contact]]; possibly got a second person interested&lt;br /&gt;
&lt;br /&gt;
=== Zuid-Holland ===&lt;br /&gt;
&lt;br /&gt;
==== Rijswijk ====&lt;br /&gt;
* Fernando Martins 1x [[User:fmartins]]  [[Special:Emailuser/User:fmartins|Contact]]&lt;br /&gt;
* Igor 1x [[User:igorn]] [[Special:Emailuser/User:igorn|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Zoetermeer ====&lt;br /&gt;
* S.Rademaker 1x [[User:S.rademaker]] [[Special:Emailuser/User:S.rademaker|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Utrecht ===&lt;br /&gt;
&lt;br /&gt;
==== Utrecht ====&lt;br /&gt;
* Eric Spierings 1/10 [[Special:Emailuser/User:ericsp|Contact]]&lt;br /&gt;
* Peter van de Werken 1/10 [[Special:Emailuser/User:PWerken|Contact]]&lt;br /&gt;
* Kenny van Wanrooij 1/10 [[Special:Emailuser/User:kenneth|Contact]]&lt;br /&gt;
* Eduard Goudakov 1/10 [[Special:Emailuser/User:VreVo|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
27/30&lt;br /&gt;
&lt;br /&gt;
== New Zealand ==&lt;br /&gt;
As Telecom are using the 850MHz network for their GSM network, and Vodafone/northelia (possibly aka orcon) are using 900/1800MHz, please state which version you want. This may need more research, I'm not 100%; see [http://www.gsmworld.com/roaming/gsminfo/cou_nz.shtml] for more info&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Based on info from steve (openmoko marketing) concerning weight and size, shipping via UPS will be about US$185 (NZ$23 each phone) to Auckland.&amp;lt;br&amp;gt;&lt;br /&gt;
UPS are far from the cheapest, but (again according to steve), OM have a contract with them, so this is what we are stuck with&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Someone on the community list suggested using [http://www.myus.com], a shipping company that will re-post items overseas at decent rates. They claim US$66 for a 3kg package, or NZ$8 per phone. Of course, the cost of shipping the phone from OM to the shipping company has to be added in as well.&lt;br /&gt;
&lt;br /&gt;
As of 2008-06-14, US$369 is worth NZ$492&lt;br /&gt;
&lt;br /&gt;
import duty on mobile phones is 0%[http://www.customs.govt.nz/importers/Private+Importers/Customs+Charges.htm], and GST is 12.5% so the GST added to each phone will be NZ$64; 12.5% * (477 + 23), cos we pay GST on postage too...&lt;br /&gt;
&lt;br /&gt;
So, the total cost of a Freerunner as part of a 10 pack, will be:&amp;lt;br&amp;gt;&lt;br /&gt;
492 + 23 + 64&amp;lt;br&amp;gt;&lt;br /&gt;
= '''NZ$579'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
+ any possible charges to get it posted elsewhere in New Zealand&lt;br /&gt;
&lt;br /&gt;
=== Auckland ===&lt;br /&gt;
==== [[Auckland group sales|Auckland]] ====&lt;br /&gt;
Status:10 phones requested, the required minimum (10 phones) is reached, but more buyers are still welcome to join.&lt;br /&gt;
*Rob Paulson [[User:Myfanwy]] [mailto:robin.paulson@gmail.com] 900MHz&lt;br /&gt;
**i'm quite happy to organise the purchase, if no-one has any objections. to ease any worries about me running off with the money, we could use an escrow service such as [http://safetrader.co.nz], or paypal. or does anyone have any other ideas?&lt;br /&gt;
*Simon Wells [[User:Swel024]] 900MHz&lt;br /&gt;
*Jeremy List [[User:Jeremy-list]] mailto:quick.dudley@gmail.com (Wellington, not Auckland, will pay for courier) 900MHz&lt;br /&gt;
*David Murrell [[User:Viddy]] - [mailto:dmurrell@waikato.ac.nz] I'm in Hamilton, either courier, or I'll drive up :) 900MHz&lt;br /&gt;
*Jeremy Gray [[User:Bogdan237]] [mailto:jgra163@ec.auckland.ac.nz] Auckland, 900MHz&lt;br /&gt;
*Xuân Baldauf [[User:xbaldauf]] [mailto:xuan--2008.05--GroupSales--wiki.openmoko.org@baldauf.org] Auckland CBD, 900MHz+1800MHz GSM with an [http://www.ak2.com.tw/pd_main.asp?sg_id=11 '''EU''' charger clip] instead of an Australian one (if this is in need to be selected). This is &amp;lt;u&amp;gt;conditional&amp;lt;/u&amp;gt;: the transaction must complete by 2008-06-30, else I cannot participate, because I'm leaving the country afterwards.&lt;br /&gt;
*Paul Roe [[User:Par08]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Par08 contact me here] Christchurch, 2 x 900MHz&lt;br /&gt;
*Dave Lane [[User:dangerpossum]] [http://wiki.openmoko.org/wiki/Special:Emailuser/dangerpossum contact] Christchurch, 1 x 900MHz + 1800MHz GSM&lt;br /&gt;
*Paul Hunkin [[User:paulhunkin]] [mailto:pwh4@cs.waikato.ac.nz Contact] Hamilton (I'll pay for a courier), 1 x 900MHz.&lt;br /&gt;
*Paul Sandkuijl [[User:Edictor]] [http://www.edictor.com/contact.php Contact me here] Napier (I'll pay for postage to Napier from Auckland) and I also suggest a PayPal/Safetrader similar service, 1 Vodafone compatible 900/1800MHz.&lt;br /&gt;
&lt;br /&gt;
=== Wellington ===&lt;br /&gt;
==== [[Wellington group sales|Wellington]] ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
*Andrew Stephen [[User:lizardb0y]] [http://wiki.openmoko.org/wiki/Special:Emailuser/lizardb0y email me] Wellington, 1 x 900/1800Mhz GSM Vodafone compatible.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
=== Nordland ===&lt;br /&gt;
==== Bodø ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:AlecTBM|Alexander Frøyseth]] [mailto:alexander.froyseth@gmail.com alexander.froyseth@gmail.com]&lt;br /&gt;
* Ole Marius&lt;br /&gt;
* Stian Vading&lt;br /&gt;
* [[User:Kolbjorn.Dahle|Kolbjorn Dahle]][mailto:kolbjorn@dahlenett.org]&lt;br /&gt;
&lt;br /&gt;
=== Sør-Trøndelag ===&lt;br /&gt;
==== Trondheim ====&lt;br /&gt;
Status 13/20&lt;br /&gt;
&lt;br /&gt;
*[[User:andy000|Andreas Kalvå]] [mailto:andy@samfundet.no andy@samfundet.no]&lt;br /&gt;
Send mail om du er interessert.&lt;br /&gt;
&lt;br /&gt;
=== Østlandet ===&lt;br /&gt;
==== Oslo, Akershus, Buskerud, Vestfold ====&lt;br /&gt;
Status 27/30 (+2?)&lt;br /&gt;
&lt;br /&gt;
* [[User:Ixian|Heikki Sørum]] [mailto:heikkis@matnat.uio.no] &amp;lt;br/&amp;gt; Interessert? mail meg.&lt;br /&gt;
* [[User:Bobkare|Knut Arne Bjørndal]] [mailto:bob@cakebox.net]&lt;br /&gt;
* [[User:StianEllingsen|Stian Ellingsen]]&lt;br /&gt;
&lt;br /&gt;
==== Østfold ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:MrBlonde|Petter Nygård]] [mailto:pettnyg@frisurf.no] &amp;lt;br /&amp;gt;Interessert? -&amp;gt; Mail meg....&lt;br /&gt;
* Eirik Lavik&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&lt;br /&gt;
* Special group buy site: https://www.kumulator.pl/show/group/35 (in edition moment: 24/30)&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
Portuguese who are associates of ANSOL, please consider joining [[TeamANSOL]] (currently 3/10 members).&lt;br /&gt;
&lt;br /&gt;
We also need to have a cost estimation for Portuguese customs (like the Australians did). 20% sales tax + customs tax is to be expected both for individual or bulk sales, because the price is quite high. But freedom is priceless :)&lt;br /&gt;
&lt;br /&gt;
=== Aveiro ===&lt;br /&gt;
==== Aveiro ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Ruben|Ruben Mendes]] ([[TeamANSOL]])&lt;br /&gt;
&lt;br /&gt;
=== Lisboa ===&lt;br /&gt;
==== Lisboa ====&lt;br /&gt;
Status : 6/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Danielblues Daniel Branco]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Knuckles Ivo Anjo]&lt;br /&gt;
* [[User:Pedrosilva|Pedro Silva]]&lt;br /&gt;
* Ricardo Sousa ([[TeamANSOL]])&lt;br /&gt;
* [[User:RuiSeabra|Rui Seabra]] ([[TeamANSOL]])&lt;br /&gt;
* [[User:Vasco|Vasco Névoa]]&lt;br /&gt;
&lt;br /&gt;
=== Porto ===&lt;br /&gt;
==== Porto ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:villate|Jaime Villate]] ([[TeamANSOL]])&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
If insufficient number of people, orders could be merged and remailed perhaps.&lt;br /&gt;
&lt;br /&gt;
Domestic remailing with Posten as A-class mail of a letter (criteria: length+width+height max 900 mm) weighing max 1 kg, without insurance should [http://www.posten.se/foretag/vara_tjanster/postageguide/postguideLetterDom.jspv cost 44 SEK]. 50 SEK more for insurance.&lt;br /&gt;
&lt;br /&gt;
If we end up with more than one 10-pack in Sweden, my guess is that it would probably pay to order everything in one shipment to one address in Sweden to save on the international shipping, and then remail domestically.&lt;br /&gt;
&lt;br /&gt;
=== Götaland ===&lt;br /&gt;
==== Göteborg ====&lt;br /&gt;
&lt;br /&gt;
* [[User:Fwendt|Fredrik Wendt]] [[Special:Emailuser/Fwendt|Contact]]/wendt.se&lt;br /&gt;
&lt;br /&gt;
==== Malmö ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Lars Jarlvik &amp;lt;br /&amp;gt; mailto:lars@larsfactory.se&lt;br /&gt;
&lt;br /&gt;
=== Svealand ===&lt;br /&gt;
==== Stockholm ====&lt;br /&gt;
Status : 9/10&lt;br /&gt;
&lt;br /&gt;
* Erland Lewin &amp;lt;br /&amp;gt; mailto:erland@lewin.nu&lt;br /&gt;
* Simon Kågström &amp;lt;br /&amp;gt; mailto:simon.kagstrom@gmail.com&lt;br /&gt;
* Ingvaldur Sigurjonsson &amp;lt;br /&amp;gt; mailto:ingi@ultimalabor.se&lt;br /&gt;
* Adam Johansson &amp;lt;br /&amp;gt; mailto:adam@sollentunaholm.se&lt;br /&gt;
* Lowe Schmidt &amp;lt;br /&amp;gt; mailto:lowe.schmidt@gmail.com&lt;br /&gt;
* [[User:Dex|Johan Eklundh]]&amp;lt;br/&amp;gt; Mail automated via contact page.&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/esbjorn Esbjörn Dominique]&lt;br /&gt;
* Elis Axelsson &amp;lt;br /&amp;gt; mailto:elis.axelsson@gmail.com&lt;br /&gt;
* Johan Erlands &amp;lt;br /&amp;gt; mailto:johan.erlands@gmail.com&lt;br /&gt;
&lt;br /&gt;
==== Örebro ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Anders Petersson &amp;lt;br /&amp;gt; [mailto:demitar@worldforge.org demitar@worldforge.org]&lt;br /&gt;
&lt;br /&gt;
==== Västerås ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
* Jörgen Lidholm, could join the Falun/Borlänge or Stockholm group &amp;lt;br /&amp;gt; [mailto:jorgen.lidholm@gmail.com]&lt;br /&gt;
* John Törnblom, can also join the Stockholm group &amp;lt;br /&amp;gt; [mailto:f04jto@student.lth.se]&lt;br /&gt;
&lt;br /&gt;
==== Falun &amp;amp; Borlänge ====&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openstreetmap.org/index.php/User:Jth Johan Thelmén], Åke Hoff &amp;amp; a demo/backup&lt;br /&gt;
* [http://wiki.openstreetmap.org/index.php/User:eagle87 Pär Eriksson], Borlänge&lt;br /&gt;
&lt;br /&gt;
=== Norrland ===&lt;br /&gt;
==== Umeå ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Zash|Zash]] [[Special:Emailuser/Zash|Contact]]&lt;br /&gt;
* [[User:Benjamin|Benjamin]] [[Special:Emailuser/Benjamin|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Luleå ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Mjukis|Mjukis]] [[Special:Emailuser/Mjukis|Contact]] - 2 Units. Can also join the Malmö group order.&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&lt;br /&gt;
François Bianco is trying to create a new group of 10 (will be mostly for French Switzerland). -&amp;gt; The group moved to the EPFL group, which will try to reach 20 persons. --[[User:Fbianco|Fbianco]] 11:42, 11 June 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gabriel Ambuehl would volunteer to order the initial 10pack. &amp;lt;- still accurate ? &amp;lt;br /&amp;gt;&lt;br /&gt;
-- Gabriel will not organize the 10packs for Zürich due to not being in Switzerland. We are in contact to find a solution so please wait until we know what to do. Order in Germany (each for himself or as a group, not clear yet) could be as cheap as a 10pack. We are in contact with pulster.de and will be contacted form pulster about the price. We will contact you guys in the Zürich list as soon as we know more --[[User:Tuxfux.ch|Tuxfux.ch]] 10:26, 6 June 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Alexandre Ghisoli '''will not''' organize the second 10pack, since the order moved in the Lucca's group.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Luca Capello could organize the third 10pack (mostly for French Switzerland). &amp;lt;br /&amp;gt;&lt;br /&gt;
Mathieu will probably organisze the 4th 10pack. (Lausanne) &amp;lt;br /&amp;gt;&lt;br /&gt;
All the 4 with payment in advance (a 10pack will cost approx 3'800 USD). &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Probably we will organize shipping, if we cannot all move to Zürich/Genève to get our Neo.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Customs and Postage ===&lt;br /&gt;
I called the [http://www.ezv.admin.ch/index.html?lang=en Swiss Federal Customs Administration] and it seems that we only need to pay VAT (7.6%) and the UPS taxes as well (since the parcel will be sent through UPS).  Thus I called [http://www.ups.com/content/ch/en/contact/ UPS] and it seems that UPS directly pays the VAT instead of the customer, then asking the customer for refund (plus a fixed tax of EUR13.00).  So I think the following per-phone cost for a Swiss bulk order should be a good estimate.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
 |'''Bulk Order'''&lt;br /&gt;
 |'''USD'''&lt;br /&gt;
 |'''CHF'''&lt;br /&gt;
 |-&lt;br /&gt;
 |Customs Value (Cval)&lt;br /&gt;
 |3690.00&lt;br /&gt;
 |3837.60&lt;br /&gt;
 |-&lt;br /&gt;
 |Postage&lt;br /&gt;
 |160.00&lt;br /&gt;
 |166.40&lt;br /&gt;
 |-&lt;br /&gt;
 |Value of Taxable Importation (VoTI) = Cval+Postage&lt;br /&gt;
 |3850.00&lt;br /&gt;
 |4004.00&lt;br /&gt;
 |-&lt;br /&gt;
 |VAT = 7.6% of VoTI&lt;br /&gt;
 |292.60&lt;br /&gt;
 |304.30&lt;br /&gt;
 |-&lt;br /&gt;
 |UPS fixed tax (EUR13.00)&lt;br /&gt;
 |20.00&lt;br /&gt;
 |20.80&lt;br /&gt;
 |-&lt;br /&gt;
 |Total Cost&lt;br /&gt;
 |4162.60&lt;br /&gt;
 |4329.10&lt;br /&gt;
 |-&lt;br /&gt;
 |'''Per Person'''&lt;br /&gt;
 |'''416.26'''&lt;br /&gt;
 |'''432.91'''&lt;br /&gt;
 |}&lt;br /&gt;
&lt;br /&gt;
Figures accurate as of 4th Jun 2008 from [http://www.ubs.com/1/e/index/bcqv/calculator.html UBS]: 1EUR = 1.54USD and 1USD = 1.04CHF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Shipping ====&lt;br /&gt;
If we would ship Neos, here is the Swiss PostPac prices :&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
! Description&lt;br /&gt;
! Size [cm]&lt;br /&gt;
! Price CHF TTC&lt;br /&gt;
|-&lt;br /&gt;
| Size 1&lt;br /&gt;
| 22.9 x 14.7 x 9.9&lt;br /&gt;
| 2.20&lt;br /&gt;
|-&lt;br /&gt;
| Size 2&lt;br /&gt;
| 31.5 x 22.5 x 12.5&lt;br /&gt;
| 2.40&lt;br /&gt;
|-&lt;br /&gt;
| Shipping Priority&lt;br /&gt;
| up to 2Kg&lt;br /&gt;
| 8.-&lt;br /&gt;
|-&lt;br /&gt;
| Shipping Economy&lt;br /&gt;
| up to 2Kg&lt;br /&gt;
| 6.-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Steve posted informations about boxes that will be out with Neo :&lt;br /&gt;
&lt;br /&gt;
* 10 pack : 435mm x 371mm x 119mm, approx 3kg, UPS will charge 160USD (need to be verified)&lt;br /&gt;
* Individual pack : 178mm  x 104mm x 84mm, 237 grams&lt;br /&gt;
&lt;br /&gt;
So size 1 will fit ! Local delivery in Switzerland will cost 8.20 for Economy or 10.20 Priority.&lt;br /&gt;
&lt;br /&gt;
==== Zurich ====&lt;br /&gt;
Status : 30/30 &amp;lt;br /&amp;gt;&lt;br /&gt;
'''Contact person who order the 10Pack : ??'''&lt;br /&gt;
&lt;br /&gt;
WARNING, this list already contains 20 people! -- LucaCapello &amp;lt;br /&amp;gt;&lt;br /&gt;
-- I changed from 20 -&amp;gt; 30 Devices in this order. --[[User:Tuxfux.ch|Tuxfux.ch]] 18:48, 3 June 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
* Simon Wenner &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Nowic Contact]&lt;br /&gt;
* Simon Schreiber &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Magbeat Contact]&lt;br /&gt;
* Markus Huggler (Winterthur)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Magbeat Contact]&lt;br /&gt;
* Andre Timmermann &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Raffael Schmid &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Pascal Weller &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Nick Zbinden (Luzern)&amp;lt;br /&amp;gt; [mailto:nickik@gmx.ch] oder [http://wiki.openmoko.org/wiki/Special:Emailuser/nickik Contact]&lt;br /&gt;
* Marcel Wirth &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Skarhand Contact]&lt;br /&gt;
* Marcel Lütolf (Luzern)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/NeRo Contact]&lt;br /&gt;
* Christian Corrodi &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Matto Contact]&lt;br /&gt;
* Mirko Klingauf &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/RealAtaman Contact]&lt;br /&gt;
* Marcel Jost (Bern, with debug board if possible) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Onsonic Contact]&lt;br /&gt;
* Marc Andre Tanner (Biel)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/mat Contact]&lt;br /&gt;
* Tobias Kündig (2 Geräte) (Luzern)&amp;lt;br /&amp;gt; [mailto:info@it-media.ch]&lt;br /&gt;
* Peter Salvisberg&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Psal Contact]&lt;br /&gt;
* Martin Kos &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/KoS Contact]&lt;br /&gt;
* Lorenz Schori (Bern) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Znerol Contact]&lt;br /&gt;
* Matthias Cramer (Zürich) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/cramer Contact]&lt;br /&gt;
* Pascal Mages (Bern/Zürich) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/FreeMind Contact]&lt;br /&gt;
* Esra Kummer (2 Geräte!) (Winterthur)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Tuxfux.ch Contact]&lt;br /&gt;
* Joerg Maeder (Opfikon) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/goergel Contact]&lt;br /&gt;
* Marc Bodmer (Solothurn) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/minxx Contact]&lt;br /&gt;
* Carlos Diener (Winterthur) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/Emonkey Contact]&lt;br /&gt;
* Philipp Meier (Zürich) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/PhilippMeier Contact]&lt;br /&gt;
* Adrian Rudin (Basel) &amp;lt;br /&amp;gt;  [mailto:adrian@mav.ch] or [http://wiki.openmoko.org/wiki/Special:Emailuser/blackmav Contact]&lt;br /&gt;
* Christof Pfister (Lyss) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/chpfister Contact]&lt;br /&gt;
* Walter Sutter (Winterthur) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/seraphim Contact]&lt;br /&gt;
* Philipp Hug (St. Gallen) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/Philipphug Contact]&lt;br /&gt;
&lt;br /&gt;
==== Geneve ====&lt;br /&gt;
Status : 10/10 &amp;lt;br /&amp;gt;&lt;br /&gt;
'''Contact person who order the 10Pack : Luca Capello &amp;lt;br /&amp;gt;'''&lt;br /&gt;
WARNING, this list already contains 10 people! -- LucaCapello&lt;br /&gt;
&lt;br /&gt;
* Diego Abelenda&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Aelia Contact]&lt;br /&gt;
* Luca Capello&amp;lt;br /&amp;gt; [mailto:luca@pca.it]&lt;br /&gt;
* Nicolas Produit&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Produit Contact]&lt;br /&gt;
* Sebastien Nanchen &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Sn Contact]&lt;br /&gt;
* Jonas Schwarz (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/jnsc Contact]&lt;br /&gt;
* Robin Farine (Auvernier)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/rfarine Contact]&lt;br /&gt;
* Alexandre Ghisoli (Yverdon)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Agh Contact]&lt;br /&gt;
* Raphael Studer (Thurgau) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Tschudder Contact]&lt;br /&gt;
* Christian Wäckerlin &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/boognu Contact]&lt;br /&gt;
* Michael Stähli (Lausanne EPFL) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/adler Contact]&lt;br /&gt;
&lt;br /&gt;
==== Suisse romande / Lausanne (EPFL) ====&lt;br /&gt;
Status : 17/20 &amp;lt;br /&amp;gt;&lt;br /&gt;
'''Contact person who order the 10Pack : Mathieu Habegger &amp;lt;br /&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
* Mathieu Habegger (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/Habi Contact]&lt;br /&gt;
* Matthias Brändli (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/hb9egm Contact]&lt;br /&gt;
* Yorick Brunet (EPFL) &amp;lt;br /&amp;gt;[mailto:yorick.brunet@epfl.ch Contact]&lt;br /&gt;
* Frédéric Fokan(Lausanne) &amp;lt;br /&amp;gt;[mailto:fredericfokan@gmail.com Contact]&lt;br /&gt;
* Gulu (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Gulu Contact]&lt;br /&gt;
* Edomaur (Lausanne, with Gulu) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Edomaur Contact]&lt;br /&gt;
* Layx (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Layx Contact]&lt;br /&gt;
* Mélanie Baumann (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/calis Contact]&lt;br /&gt;
* Laurent Fasnacht (EPFL) &amp;lt;br /&amp;gt;[http://gnugeneration.epfl.ch/users/fasnacht Contact]&lt;br /&gt;
* Urs Blaser (UNIL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/arctus Contact]&lt;br /&gt;
* David Lütolf (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/dlutolf Contact]&lt;br /&gt;
* François Bianco  &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/fbianco Contact]&lt;br /&gt;
* Samuel Dorsaz &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/akira Contact]&lt;br /&gt;
* Ludovic Fardel  &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/lfardel Contact]&lt;br /&gt;
* David Pelichet &amp;lt;br /&amp;gt;&lt;br /&gt;
* Vincent Hentsch &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/Vincos Contact]&lt;br /&gt;
* Carruzzo Gilles &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/Willows Contact]&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
=== Spain (Country Group Sale) ===&lt;br /&gt;
Status: 11/10&lt;br /&gt;
&lt;br /&gt;
=== Madrid ===&lt;br /&gt;
==== Madrid ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Rafael Campos [http://wiki.openmoko.org/wiki/Special:Emailuser/Methril Contact] &amp;lt;br /&amp;gt;1x ([[Image:MokoBox.jpg]] - advanced) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Pablo Ruiz Múzquiz [http://wiki.openmoko.org/wiki/User_talk:Pabloruiz contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Carlos Padilla Sorbas [http://wiki.openmoko.org/wiki/User_talk:cymonline contact me here]&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Troy|Alvaro Garcia Roy]] 1 phone&lt;br /&gt;
&lt;br /&gt;
* [[User:kresp0 | Santiago Crespo]] 1 phone&lt;br /&gt;
&lt;br /&gt;
=== Zaragoza ===&lt;br /&gt;
==== Zaragoza ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* Alejandro R. Mosteo &amp;lt;br /&amp;gt; alejandro AT mosteo · com&lt;br /&gt;
* Arturo Giner&amp;lt;br/&amp;gt;[[Special:Emailuser/artginer|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Barcelona ===&lt;br /&gt;
==== Barcelona ====&lt;br /&gt;
Status : 7/10&lt;br /&gt;
&lt;br /&gt;
* José Luis Pérez &amp;lt;br/&amp;gt;[[Special:Emailuser/jluis|Contact]]&lt;br /&gt;
* David Reyes Samblas Martinez&amp;lt;br/&amp;gt;[[Special:Emailuser/mutrox|Contact]]&lt;br /&gt;
* Sergio Arias &amp;lt;br/&amp;gt;[[Special:Emailuser/saerguio|Contact]]&lt;br /&gt;
* Alex Muntada &amp;lt;br/&amp;gt;[[Special:Emailuser/alexm|Contact]]&lt;br /&gt;
* Pascal co &amp;lt;br/&amp;gt;[[Special:Emailuser/pascalco|Contact]]&lt;br /&gt;
* Antonio Rodríguez ( x2 )&amp;lt;br/&amp;gt;[[Special:Emailuser/AntonioR|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Valencia ===&lt;br /&gt;
==== Valencia ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Pau Gaspar Díaz &amp;lt;br/&amp;gt;[[Special:Emailuser/pau|Contact]]&lt;br /&gt;
&lt;br /&gt;
== UAE ==&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Yaser Ammar &amp;lt;br /&amp;gt; [[Special:Emailuser/Waraqa|Contact]]&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
=== Arizona ===&lt;br /&gt;
==== Tucson ====&lt;br /&gt;
Willing to reship to nonlocal people within the US (cheaper if you're closer), or get absorbed into another group that's willing to reship.  In talks with Boulder (Colorado) group.&lt;br /&gt;
&lt;br /&gt;
Status: 3/10&lt;br /&gt;
* [mailto:wes.shull@gmail.com wesshull] Wes Shull - 1x GTA02 + 1x debug board&lt;br /&gt;
* Richard Reichenbacher - 2x GTA02&lt;br /&gt;
&lt;br /&gt;
=== Colorado ===&lt;br /&gt;
==== Boulder ====&lt;br /&gt;
Status: 8/10&lt;br /&gt;
* Vinc Duran x2 (I can purchase and distribute locally) &amp;lt;br /&amp;gt; [mailto:uberpfloyd@gmail.com?subject=Openmoko%20group%20sales Pfloyd]  [http://wiki.openmoko.org/wiki/Special:Emailuser/Pfloyd Contact]&lt;br /&gt;
* John Miller &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/jwm jwm]&lt;br /&gt;
* D Padilla &amp;lt;br /&amp;gt;&lt;br /&gt;
* Joey Stanford &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/k0fcc k0fcc]&lt;br /&gt;
* J Hinegardner &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/jjh jjh]&lt;br /&gt;
* S Derrick of New Mexico x2 &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Denver (Full) ====&lt;br /&gt;
Status: 10/10 (includes the gentleman from Utah)&lt;br /&gt;
* Shawn Sullivan &amp;lt;br /&amp;gt; [[mailto:shelbydz87@yahoo.com shelbydz87@yahoo.com]]&lt;br /&gt;
* Peter Abplanalp &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/alderion Contact]&lt;br /&gt;
* Ben Burdette &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Ansible Contact]&lt;br /&gt;
* Tom Russell &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/tazbert Contact]&lt;br /&gt;
* Trace &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/gnork Contact]&lt;br /&gt;
&lt;br /&gt;
==== Fort Collins ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Paul Hummer &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Rockstar Contact]&lt;br /&gt;
&lt;br /&gt;
=== California ===&lt;br /&gt;
==== Los Angeles ====&lt;br /&gt;
Status: 7/10&lt;br /&gt;
&lt;br /&gt;
* Ian Douglas, Santa Monica &amp;lt;br /&amp;gt; I'll help organize a group sale, meet &amp;amp; greet, but since I was selected to help test the Freerunner, I won't need to actually purchase one. [http://wiki.openmoko.org/wiki/Special:Emailuser/Iandouglas Contact me here]&lt;br /&gt;
* Matthew Wetmore, Westchester 90045 &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Wetmoko Contact]&lt;br /&gt;
* Daniel &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Beaker82 Contact]&lt;br /&gt;
* James Robertson, Irvine &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/JamesRobertson Contact]&lt;br /&gt;
* Bill Sun &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/DancingSun Contact]&lt;br /&gt;
* Michael, Santa Monica &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Bstudios Contact]&lt;br /&gt;
* Russel Dwiggins, Cerritos &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/undrwater Contact]&lt;br /&gt;
* Dima, Pasadena &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/dima Contact]&lt;br /&gt;
&lt;br /&gt;
==== San Diego ====&lt;br /&gt;
&lt;br /&gt;
Status: 7/10&lt;br /&gt;
&lt;br /&gt;
Includes North County, Riverside, Tijuana, etc.&lt;br /&gt;
&lt;br /&gt;
* Peter Naulls, Carlsbad (South)/Mira Mesa (near Qualcomm) - will coordinate.&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Pnaulls Contact]&lt;br /&gt;
* Tracy Reed &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/treed Contact]&lt;br /&gt;
* Adam Hughes &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/ajinxa Contact]&lt;br /&gt;
* Paul Breed &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/pbreed Contact]&lt;br /&gt;
* Greg Davidson &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/JGregD Contact]&lt;br /&gt;
* Larry Riedel &amp;lt;br /&amp;gt; [mailto:Larry@Riedel.org Contact]&lt;br /&gt;
* David Wilhelm &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/bluefir Contact]&lt;br /&gt;
&lt;br /&gt;
==== San Francisco Bay Area ====&lt;br /&gt;
Status: 10/10 Full&lt;br /&gt;
&lt;br /&gt;
We should take advantage of the pickup service in Fremont. See [http://lists.openmoko.org/pipermail/community/2008-June/018407.html Steve's email]&lt;br /&gt;
&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/wolfmanjm I] live pretty close to Fremont so can pick them up. &lt;br /&gt;
I have contacted Steve asking for the procedure for the Will Call. How does everyone want to pay for them?&lt;br /&gt;
I could accept Paypal if people want to go that way. I think for pickup they will want one payment rather than a bunch of checks :) Email me with ideas, unless someone else wants to take the lead. - Thanks&lt;br /&gt;
&lt;br /&gt;
* Ajit Natarajan - [http://wiki.openmoko.org/wiki/Special:Emailuser/ajitk Contact]&lt;br /&gt;
&lt;br /&gt;
* Dirk Bergstrom - [http://wiki.openmoko.org/wiki/Special:Emailuser/krid Contact]&lt;br /&gt;
&lt;br /&gt;
* Tupshin Harper - [http://wiki.openmoko.org/wiki/Special:Emailuser/tupshin Contact]&lt;br /&gt;
&lt;br /&gt;
* Lothar Werzinger (900MHz) - [http://wiki.openmoko.org/wiki/Special:Emailuser/Elektrolott Contact]&lt;br /&gt;
&lt;br /&gt;
* William Ray Yeager - [http://wiki.openmoko.org/wiki/Special:Emailuser/wyeager Contact]&lt;br /&gt;
&lt;br /&gt;
* Sebastian Coe - [http://wiki.openmoko.org/wiki/Special:Emailuser/savari Contact]&lt;br /&gt;
&lt;br /&gt;
* Jim Morris - (Agreed to organize purchase) [http://wiki.openmoko.org/wiki/Special:Emailuser/wolfmanjm Contact]&lt;br /&gt;
&lt;br /&gt;
* Brian Carver - (Emailed Jim - Agreed to use Paypal) [http://wiki.openmoko.org/wiki/Special:Emailuser/brianwc Contact]&lt;br /&gt;
&lt;br /&gt;
* Jim Lutz - [http://wiki.openmoko.org/wiki/Special:Emailuser/JLutz Contact]&lt;br /&gt;
&lt;br /&gt;
* Kelley Eitzen - [http://wiki.openmoko.org/wiki/Special:Emailuser/Xeromist Contact]&lt;br /&gt;
&lt;br /&gt;
Status 4/10&lt;br /&gt;
&lt;br /&gt;
* Cry Regarder (3 units from monterey) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Cry_Regarder Contact]&lt;br /&gt;
&lt;br /&gt;
* Paul Mahon - [http://wiki.openmoko.org/wiki/Special:Emailuser/dufflebunk Contact] (San Jose)&lt;br /&gt;
&lt;br /&gt;
==== Monterey ====&lt;br /&gt;
Status: 3/10&lt;br /&gt;
&lt;br /&gt;
* Cry Regarder &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Cry_Regarder Contact]&lt;br /&gt;
&lt;br /&gt;
=== Idaho ===&lt;br /&gt;
==== Southwestern Idaho ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
* 1 × Eugene Kravtsov [[Special:Emailuser/theUg|Contact]], Garden City (Boise).&lt;br /&gt;
* 1 × Christopher Blay [[Special:Emailuser/blayde|Contact]], Twin Falls.&lt;br /&gt;
&lt;br /&gt;
=== Midwest ===&lt;br /&gt;
'''(combine Illinois / Iowa / Tennesee / Texas / Wisconsin)'''&lt;br /&gt;
Status: 9/10&lt;br /&gt;
* Steven M  [[Special:Emailuser/Montgoss|Contact]] - Cedar Rapids, IA&lt;br /&gt;
* Joseph Booker [[Special:Emailuser/Sargas|Contact]] - Chicago, IL&lt;br /&gt;
* Matt McCormick [[Special:Emailuser/Thewtex|Contact]] - Madison, WI&lt;br /&gt;
* Charles Hill [mailto:charles.e.hill@gmail.com email] - Chicago, IL&lt;br /&gt;
* Greg Bonett [mailto:greg@bonett.org email] - Iowa City, IA&lt;br /&gt;
* Tushar Dayal [mailto:tdayal@gmail.com Contact] - Ames, IA&lt;br /&gt;
* solomon jacob herscovitch [[Special:Emailuser/SoloSalsa|Contact]] - Chicago, IL&lt;br /&gt;
* Eric Olson [mailto:ericools@gmail.com Contact] - Madison, WI&lt;br /&gt;
* Frederick Wells [mailto:pandabrand@gmail.com email] - Chicago, IL&lt;br /&gt;
&lt;br /&gt;
=== Indiana / Kentucky ===&lt;br /&gt;
Status: 7/10&lt;br /&gt;
* Dan Staley      [[Special:Emailuser/Pyrasi|Contact]] (Lexington, KY)&lt;br /&gt;
* Donnie Jones    [[Special:Emailuser/Donniejones18|Contact]] (Lexington, KY)&lt;br /&gt;
* John Sterling   [[Special:Emailuser/Sterling|Contact]] (Lexington, KY)&lt;br /&gt;
* James MacLachlan [[Special:Emailuser/Jmaclachlan|Contact]] (Louisville, KY)&lt;br /&gt;
* John Askew [[Special:Emailuser/Johnaskyou|Contact]] (Lexington, KY)&lt;br /&gt;
* Devin Cook [[Special:Emailuser/Dcook|Contact]] (Lexington, KY)&lt;br /&gt;
* Geoff Ruscoe    [[Special:Emailuser/Geocode|Contact]] - Louisville, KY&lt;br /&gt;
&lt;br /&gt;
=== Ohio / Michigan ===&lt;br /&gt;
Status: 10/10&lt;br /&gt;
* David Pais (Unknown City) [mailto:davioh2001@yahoo.com email]&lt;br /&gt;
* Dave Ludlow (Toledo) (I can purchase and distribute) [[Special:Emailuser/adsllc|Contact]]&lt;br /&gt;
* Adam Steele (Cincinnati) [mailto:adam@laurasteele.net Contact]&lt;br /&gt;
* Elliot Bailey (Canton) [mailto:elliot.bailey@yahoo.com Contact]&lt;br /&gt;
* Richard Rowell (Grand Rapids) [mailto:richard.rowell@gmail.com Contact]&lt;br /&gt;
* [mailto:sf_openmoko10pak@paulwehr.com Paul Wehr] Ann Arbor&lt;br /&gt;
* Micah Krafcik (Youngstown) [mailto:mjk20xx@yahoo.com Contact]&lt;br /&gt;
* Doug Wurtzbacher (Centerville) x2 [mailto:doug@medicineshoppekett.com Contact]&lt;br /&gt;
* Martin Dicks (Columbus) [[Special:Emailuser/mdicks|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Oregon ===&lt;br /&gt;
==== Eugene ====&lt;br /&gt;
* Quentin Hartman [[Special:Emailuser/qhartman|Contact]] Willing to organize the Oregon group buy and/or be absorbed into another Pacific NW group if too few locals sign up.&lt;br /&gt;
&lt;br /&gt;
=== Washington ===&lt;br /&gt;
==== Seattle ====&lt;br /&gt;
Status: 5/10&lt;br /&gt;
* Jon Pomeroy [[Special:Emailuser/Jepomeroy|Contact]]&lt;br /&gt;
* Andrew Hirata [[Special:Emailuser/tonkatsu182|Contact]] Note: I live in Bellevue&lt;br /&gt;
* Chris Baker [[Special:Emailuser/cwainb|Contact]]&lt;br /&gt;
* Mark Zimmerman [[Special:Emailuser/mawazi|Contact]]&lt;br /&gt;
* Wim Lewis [[Special:Emailuser/Wiml|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Tennessee ===&lt;br /&gt;
==== Memphis ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Peter O'Connor &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/poconnor Contact]&lt;br /&gt;
&lt;br /&gt;
=== Texas ===&lt;br /&gt;
==== Austin (15/10) ====&lt;br /&gt;
* Dale Schumacher [[Special:Emailuser/dalnefre|Contact]]&lt;br /&gt;
* Michael Cosby [[Special:Emailuser/mcosby|Contact]]&lt;br /&gt;
* Paul Jimenez [[Special:Emailuser/pj|Contact]]&lt;br /&gt;
* Charles [[Special:Emailuser/rbn|Contact]]&lt;br /&gt;
* Anthony Kitchin [[Special:Emailuser/akitchin|Contact]]&lt;br /&gt;
* Carl (x2) [[Special:Emailuser/texatopia|Contact]]&lt;br /&gt;
* Robert (+Debug Board) [[Special:Emailuser/SHaRK|Contact]] (Houston)&lt;br /&gt;
* Bryan DeLuca [[Special: Emailuser/Stupkid|Contact]] (Fort Worth)&lt;br /&gt;
* Dennis Parker [[Special: Emailuser/dparker|Contact]]&lt;br /&gt;
* Chip Rosenthal [[Special: Emailuser/chip|Contact]]&lt;br /&gt;
* Brad Mouring [[Special: Emailuser/Bmouring|Contact]] (Moving to Austin by mid-June, likely earlier)&lt;br /&gt;
* Joel Greenberg [[Special: Emailuser/joelg|Contact]]&lt;br /&gt;
* Hans Loeblich [[Special: Emailuser/Peepsalot|Contact]]&lt;br /&gt;
* Mark Rinaudo [[Special:Emailuser/Mrinaudo|Contact]]&lt;br /&gt;
* Scott Farrell [[Special:Emailuser/sfarrell|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Dallas (2/10) ====&lt;br /&gt;
* Philip White [[Special:Emailuser/pmw|Contact]]&lt;br /&gt;
* Stephen Shelton [[Special:Emailuser/stephenashelton|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Mid-Atlantic ===&lt;br /&gt;
==== District of Columbia (DC) Metro Area ====&lt;br /&gt;
* Brian DeRocher [[Special:Emailuser/brian_252|email]]&lt;br /&gt;
==== Virginia====&lt;br /&gt;
===== Virginia Tech (1/10) =====&lt;br /&gt;
* Lally Singh [[Special:Emailuser/lally|email]] -- yeah, if you're ordering anywhere in VA, lemme know.&amp;lt;br /&amp;gt;&lt;br /&gt;
===== Richmond (1/10)=====&lt;br /&gt;
*Steve Watson mailto:ssw0213@gmail.com&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== New York (11/20) ====&lt;br /&gt;
&lt;br /&gt;
* Bert Hartmann [http://wiki.openmoko.org/wiki/Special:Emailuser/BertHartm Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Michael Cole mailto:mjcole137@gmail.com &amp;lt;br /&amp;gt;&lt;br /&gt;
* Remy Frerebeau  [http://wiki.openmoko.org/wiki/Special:Emailuser/Rfrerebe Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Ulises E. Erickson  [http://wiki.openmoko.org/wiki/Special:Emailuser/Ulix Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Justin Daly [http://wiki.openmoko.org/wiki/Special:Emailuser/justo Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Philippe Gerard [[Special:Emailuser/feydreva|Contact]] I live in Richmond (VA) but we will never be 10 there&amp;lt;br/&amp;gt;&lt;br /&gt;
* Evan Charlton mailto:evancharlton+om@gmail.com &amp;lt;br /&amp;gt;&lt;br /&gt;
* Paul Buede mailto:paul@buede.com &amp;lt;br /&amp;gt;&lt;br /&gt;
* Baruch Even [[Special:Emailuser/poka|Contact me here]]&amp;lt;br/&amp;gt;&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced)Paul Hurlock [[Special:Emailuser/triclosan|Contact me here]] &amp;lt;br/&amp;gt;&lt;br /&gt;
* Ryan [[Special:Emailuser/ryan|Contact me here]] (Connecticut, actually, but close enough.) &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Maryland (2/10)====&lt;br /&gt;
* Paul Buede I switched to New York, cause we don't have enough. Look up ^ &amp;lt;br /&amp;gt;&lt;br /&gt;
* Charles Lohr&lt;br /&gt;
* Alex (DC/Rosslyn; not 100% sure that will be able to afford it) [[Special:Emailuser/rakukin|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== North Carolina (3/10)====&lt;br /&gt;
* Jason Sharpee [[Special:Emailuser/zonyl|Contact]] - Charlotte Metro area &amp;lt;br /&amp;gt;&lt;br /&gt;
* William Vidrine [[Special:Emailuser/Infoport|Contact]] - Greensboro/Triad area, will be part of an NC order; will drop out and order individually if 10/10 not reached. &amp;lt;br /&amp;gt;&lt;br /&gt;
* Joe White [[Special:Emailuser/Raygions|Contact]] - Winston-Salem/Triad area &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Massachusetts ===&lt;br /&gt;
Status: 10/10 (Full)&lt;br /&gt;
* Benjamin Moody [[Special:Emailuser/FloppusMaximus|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Ken Young, Cambridge (Note, if we're not up to 10/10 on the day the Freerunner is announced, I'm going to drop out and order individually).[[Special:Emailuser/Dolson|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Chris White (for 2) [[Special:Emailuser/Safire|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Nick Dube - Pembroke, NH (Will also drop out if we do not have 10 by Freerunner release.) [http://wiki.openmoko.org/wiki/Special:Emailuser/Doobe01 Contact]&lt;br /&gt;
&lt;br /&gt;
* Justin Brzozoski - Worcester, MA area [[Special:Emailuser/Jabski|Contact]]&lt;br /&gt;
&lt;br /&gt;
* John Nicholson - Amherst, MA (Will also drop out if we do not have 10 by Freerunner release.) [[Special:Emailuser/nicklogan|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Matthew Campbell - Worcester, MA [[Special:Emailuser/lifeisafractal|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Jeff Gold [[Special:Emailuser/jgold|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Craig Allen [[Special:Emailuser/knodalyte|Contact]]&lt;br /&gt;
&lt;br /&gt;
Status: 5/10&lt;br /&gt;
&lt;br /&gt;
* Bala Nair - Acton, MA [[Special:Emailuser/bnair|Contact]]&lt;br /&gt;
* Mike Doody - Groton, MA [[Special:Emailuser/dude|Contact]]&lt;br /&gt;
* 0x Nathan Perry - Derry, NH (cannot switch to GSM at this time)&lt;br /&gt;
* Kyle Harrington - Amherst, MA (Will drop out if we do not have 10 by Freerunner release.) [[Special:Emailuser/dancingcuziwanna|Contact]]&lt;br /&gt;
* Ryan Svoboda - Worcester, MA (Will buy one individually on release day if this group is incomplete) [[Special:Emailuser/ryansv|Contact]]&lt;br /&gt;
* Ryan Meador - Worcester, MA (Will drop out if we do not have 10 by Freerunner release.) [[Special:Emailuser/Yanroy|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Nevada ===&lt;br /&gt;
==== Reno/Sparks ====&lt;br /&gt;
Including Northwestern Nevada/ Northeastern California&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Tyrell Berry [[Special:Emailuser/Alawatsakima|Contact]]&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&lt;br /&gt;
* Stroller (Milton Keynes, can travel) &amp;lt;br /&amp;gt;mailto:stroller@stellar.eclipse.co.uk 01908 663 513. &amp;lt;br /&amp;gt;Thinks that breaking the UK up into regions - at least outside London - is silly. There are unlikely to be 10 people in $your_town who want a Freerunner, so some posting of Freerunners will surely be required; see [http://wiki.openmoko.org/wiki/Talk:GroupSales#Oxford the talk page]. This is the same cost anywhere in the UK.&lt;br /&gt;
&lt;br /&gt;
=== Scotland ===&lt;br /&gt;
==== Edinburgh ====&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* Joe Wells (Edinburgh) [http://wiki.openmoko.org/wiki/Special:Emailuser/jbw Contact] [http://www.macs.hw.ac.uk/~jbw/ Web] (I tried to contact Dave Ball and Stuart MacKinnon by the Wiki's e-mail feature, but I got no reply.  So I am worried the Wiki's e-mail feature may be broken.  So please contact me by going to my web page and using my e-mail address listed there.)&lt;br /&gt;
* Dave Ball (Edinburgh) [http://wiki.openmoko.org/wiki/Special:Emailuser/Daveb Contact]&lt;br /&gt;
* Stuart MacKinnon(Livingston) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/hoagster Contact]&lt;br /&gt;
* george Maistros (Edinburgh) [http://wiki.openmoko.org/wiki/Special:Emailuser/mordilo_k Contact]&lt;br /&gt;
&lt;br /&gt;
==== Glasgow ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Kyle Gordon [http://wiki.openmoko.org/wiki/Special:Emailuser/Kylegordon Contact]&lt;br /&gt;
* Sean Anderson [http://wiki.openmoko.org/wiki/Special:Emailuser/Moniker42 Contact]&lt;br /&gt;
* Kenny Duffus [http://wiki.openmoko.org/wiki/Special:Emailuser/Sealne Contact]&lt;br /&gt;
&lt;br /&gt;
=== England ===&lt;br /&gt;
&lt;br /&gt;
==== Hampshire ====&lt;br /&gt;
&lt;br /&gt;
Status: 16/20 at 2008-05-24&lt;br /&gt;
&lt;br /&gt;
http://www.hants.lug.org.uk/cgi-bin/wiki.pl?FreerunnerBulkBuy&lt;br /&gt;
&lt;br /&gt;
Willing to re-ship within the UK.&lt;br /&gt;
&lt;br /&gt;
(Sorry, we set up the page before we knew about this one)&lt;br /&gt;
&lt;br /&gt;
==== London ====&lt;br /&gt;
&lt;br /&gt;
Status : 16/10&lt;br /&gt;
&lt;br /&gt;
* Juergen Schinker &amp;lt;br /&amp;gt; mailto:ba1020@homie.homelinux.net&lt;br /&gt;
* aled &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/aled Contact]&lt;br /&gt;
* Robert Piasek (actually in Southampton)&amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/Queen6 Contact]&lt;br /&gt;
* Tom Scholl (Cambridge, travel to London now and then anyway so could pick up) &amp;lt;br /&amp;gt; [mailto:thomasscholl@gmail.com]&lt;br /&gt;
* Weiss (Cambridge, could collect from London) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Weiss Contact]&lt;br /&gt;
* Neil Bentley (in Wiltshire) [http://wiki.openmoko.org/wiki/Special:Emailuser/Ohnez Contact]&lt;br /&gt;
* rhn x 2 &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/rhn Contact]&lt;br /&gt;
* Tim Coggins&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/sonicated Contact]&lt;br /&gt;
* Michele Mattioni (I'm based in Cambridge too, but if Tom can go to London I can grab the phone in Cambridge) &amp;lt;br /&amp;gt;[mailto:mattions@gmail.com]&lt;br /&gt;
* Johan Badenhorst (London - Can't believe it's almost here!) &amp;lt;br /&amp;gt;[mailto:ezuall@gmail.com]&lt;br /&gt;
* '''Group Buyer''' Ben F-W (Fulham, London) [http://wiki.openmoko.org/wiki/Special:Emailuser/benfw Contact]&lt;br /&gt;
* T. Chan (Cambridge, vaguely knows Weiss) [http://wiki.openmoko.org/wiki/Special:Emailuser/TC Contact]&lt;br /&gt;
* Rob Paulson (Derby, but will be visiting London in July) [http://wiki.openmoko.org/wiki/Special:Emailuser/Myfanwy Contact]&lt;br /&gt;
* Mario &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Spirer Contact]&lt;br /&gt;
* David Pottage (actually in Reading)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/chrestomanci Contact]&lt;br /&gt;
&lt;br /&gt;
==== West Midlands ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* Mo Abrahams (Walsall) &amp;lt;br /&amp;gt; mailto:moabrahams@dashavoo.com&lt;br /&gt;
* Jonathan Spooner (Walsall)&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
=== Riga ===&lt;br /&gt;
==== Riga ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
* Ilya &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/VRGhost Contact]&lt;br /&gt;
* Deniss [http://wiki.openmoko.org/wiki/Special:Emailuser/Druidegrey Contact]&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
Status : 2/10&lt;br /&gt;
* Wee Kiam Peng [http://wiki.openmoko.org/wiki/Special:Emailuser/Jipi Contact]&lt;br /&gt;
* Chen Ruo Fei [http://wiki.openmoko.org/wiki/Special:Emailuser/Crf Contact]&lt;br /&gt;
&lt;br /&gt;
== Israel==&lt;br /&gt;
Status : 3/10&lt;br /&gt;
* Ofer Herman &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/oferhe Contact]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Talba Talba]&lt;br /&gt;
* Dan &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Da-x Contact]&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Brněnská větev:''' Koordinátorem objednávání je Martin Šenkeřík [[User:Ohin | Kontakty na mě]]&lt;br /&gt;
&lt;br /&gt;
'''Pražská větev:''' Koordinátorem objednávání je Jan Mareš [[User:iVir | Kontakty na mě]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Aktuálně ===&lt;br /&gt;
*16. 6. 2008 - '''Martin Šenkeřík vs. Pulster:'''&lt;br /&gt;
Tak jsem si vyměnil pár mailů s Chrisem Pulsterem (pulster.de), a nabízí nám cenu 299€ a zaslání zdarma. To znamená (a snad se nemýlím), že těch 299€ by byla koncová cena pro každého z nás, žádné poplatky kolem, jenom 299€. Debug board vyjde na 99€ = 2400Kč (zde se sice nabízí hrůzostrašné srovnání s 99$ = 1550Kč, ale je potřeba si uvědomit, že k 99$ se musí přičíst daň a clo a bůhví co ještě). Ano, asi vyjde ten debug board o něco dráž, proto jsem zájemcům o DB zaslal email, aby mi řekli svůj pohled na věc.&lt;br /&gt;
Pulster může nabídnout sluchátka zdarma ke každému telefonu, o tom obalu zatím neví.&lt;br /&gt;
&lt;br /&gt;
Teď otevírám na pár dnů diskusi o výběru dodavatele. ''Já jsem za Pulster, u kterého je zaručena cena a nebudu kolem toho mít žádné létání, zkrátka je to objednávka z EU.'' Pokud dojde k nějaké všeobecné shodě, ve čtvrtek zahájíme shromažďování peněz. I z toho důvodu, že někteří z vás odjíždí v přístích dnech pryč.&lt;br /&gt;
&lt;br /&gt;
*15. 6. 2008 - Steve:&lt;br /&gt;
 SMT is running. This means printed circuit boards are being produced daily.&lt;br /&gt;
 &lt;br /&gt;
 Then, the circuit boards are being assembled into phones. This means the plastic casing is being mounted&lt;br /&gt;
 As well as other bits and pieces.&lt;br /&gt;
 &lt;br /&gt;
 Then the phones are tested. Then they are packed and shipped.&lt;br /&gt;
 &lt;br /&gt;
 So figure, assembly is going to start in the week of june 16, pack and ship by june 23&lt;br /&gt;
 Arrive and clear customs by july 1.&lt;br /&gt;
 &lt;br /&gt;
 Hey 4th of july sale! Sorry american bias. But I'd figure early july.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*5.6. 2008 - Steve:&lt;br /&gt;
 The latest update I have from the factory indicates that mass Production (&lt;br /&gt;
 that means running the SMT line without stopping to check stuff every two&lt;br /&gt;
 seconds) has been CLEARED TO START.&lt;br /&gt;
&lt;br /&gt;
=== Základní informace ===&lt;br /&gt;
Jedná se o hromadnou objednávku [[Neo_FreeRunner|Neo FreeRunner]] ([[Neo_FreeRunner_GTA02_Hardware|hardware]] - GSM, GPS, WiFi, CPU 400MHz, ...; software - [http://people.openmoko.org/ninjutsu/freerunner1.4.swf náhled na připravovanou Qtopii]) do České republiky, vzhledem k tomu, že balení po 10kusech je za $369 USD oproti $399 USD za kus a navíc přijde každému obal a sluchátko a ušetří se za poštovné '''A TO SE VYPLATÍ'''.&lt;br /&gt;
&lt;br /&gt;
=== Postup registrace a objednání ===&lt;br /&gt;
&amp;lt;center&amp;gt;'''Platí pro obě větve!'''&amp;lt;/center&amp;gt;&lt;br /&gt;
Zatím se provádí jenom krok 1, v okamžiku kdy budou známy konkrétnější informace o termínu zahájení prodeje, přejde se na body 2 a 3.&lt;br /&gt;
# Registraci provedete zápisem svého jména a kontaktu do patřičné větve odpovídající místu vašeho osobního převzítí telefonu. Můžete nabídnout distribuci do míst, které ještě nikdo neposkytuje.&lt;br /&gt;
# stanoví se lehce nadhodnocená částka (zatím to vypadá na 7800Kč za telefon, s debug boardem na 9800Kč), na bezpečné pokrytí očekávaných i neočekávaných výdajů spojených s objednávkou&lt;br /&gt;
# každý zájemce odešle tuto sumu na účet svého koordinátora, identifikuje se svým jménem a příjmením&lt;br /&gt;
# jakmile budou peníze nashromážděny, provede koordinátor objednávku tolika telefonů, kolik zájemců mu zašle peníze&lt;br /&gt;
# po obdržení balíku s telefony se vypočte finální částka za telefon, a případný přeplatek bude vrácen každému osobně při převzetí telefonu (lokální distributoři samozřejmě obdrží patřičný počet telefonů a peněz, aby mohly být předány dále)&lt;br /&gt;
# všem se dítko šťastně dopraví do rukou&lt;br /&gt;
*Stále přetrvává otazník nad objednávkou množství nedělitelného desíti.&lt;br /&gt;
&lt;br /&gt;
*[[Talk:GroupSales#Diskuze | Diskuse]]&lt;br /&gt;
*[[Talk:GroupSales#Dopl.C5.88uj.C3.ADc.C3.AD_informace | Doplňující informace]]&lt;br /&gt;
&lt;br /&gt;
=== Brno ===&lt;br /&gt;
&lt;br /&gt;
==== Distribuční schéma ====&lt;br /&gt;
&lt;br /&gt;
 '''[n]'''  n je počet kusů, bez n 1 kus&lt;br /&gt;
 '''[nD]''' [[Neo1973_Debug_Board_v3|debug board]] $99 USD + DPH (n počet kusů, bez n 1 kus)&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Jednotlivé volby píšeme za jméno v [] a více voleb oddělujeme čárkou''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;'''&amp;lt;font size=&amp;quot;3&amp;quot; color=&amp;quot;green&amp;quot;&amp;gt;Status : 22&amp;lt;/font&amp;gt;'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''Martin Šenkeřík''' - [[User:Ohin | Kontakty na mě]]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Brno&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Radek Bartoň''' - [[Special:Emailuser/Blackhex|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Frýdek-Místek&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****-&lt;br /&gt;
***'''Radek Machulka''' - [[Special:Emailuser/Werty|Contact]]&lt;br /&gt;
***'''Aleš Dvořák''' - [[Special:Emailuser/Setr|Contact]]&lt;br /&gt;
***'''Jozef Mlich [2, 1D]''' - [[Special:Emailuser/joejoe|Contact]]&lt;br /&gt;
***'''Martin Faltičko''' - [[Special:Emailuser/MafRaf|Contact]]&lt;br /&gt;
***'''Karel Volný''' - [[Special:Emailuser/kavol|Contact]]&lt;br /&gt;
***'''Jan Brezina''' - [[Special:Emailuser/Fletcher|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Bratislava&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****'''František Horínek''' - [[Special:Emailuser/PipBoy2000|Contact]]&lt;br /&gt;
*****'''Martin Vyšný''' - [mailto:vysny@baka.sk Contact]&lt;br /&gt;
*****'''Tomáš Sirný''' - [[Special:Emailuser/Junckritter|Contact]]&lt;br /&gt;
*****'''Ján Janech''' - [[Special:Emailuser/Janik|Contact]]&lt;br /&gt;
*****'''Ivan Šeďo [1, 1D]''' - [[Special:Emailuser/ikoframe|Contact]]&lt;br /&gt;
******'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;SK/Žilina&amp;lt;/span&amp;gt;''':&lt;br /&gt;
******'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;SK/Piešťany&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Tom Varga''' - [[Special:Emailuser/Varg|Contact]]&lt;br /&gt;
***'''Petr Ondo [2]''' - [[Special:Emailuser/Votik|Contact]]&lt;br /&gt;
***'''Pavel Krátký''' - [[Special:Emailuser/MrBobby|Contact]]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Zlín&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Martin Holec''' - [[Special:Emailuser/Martix|Contact]]&lt;br /&gt;
***'''Pavel Kovář''' - [[Special:Emailuser/Fox|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Ostrava&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****'''Marian Krucina [D]''' - [[Special:Emailuser/oak|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Praha ===&lt;br /&gt;
&lt;br /&gt;
==== Distribuční schéma ====&lt;br /&gt;
'''Vzhledem ke jednodušší distribuci půjde balíček do Brna a odtud jej převeze Tomáš Varga.'''&lt;br /&gt;
&lt;br /&gt;
 '''[n]'''  n je počet kusů, bez n 1 kus&lt;br /&gt;
 '''[nD]''' [[Neo1973_Debug_Board_v3|debug board]] $99 USD + DPH (n počet kusů, bez n 1 kus)&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Jednotlivé volby píšeme za jméno v [] a více voleb oddělujeme čárkou''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;'''&amp;lt;font size=&amp;quot;3&amp;quot;&amp;gt;Status : 14&amp;lt;/font&amp;gt;'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''Jan Mareš [2]''' - [http://wiki.openmoko.org/wiki/User:iVir Contact]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Praha&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Martin Dvořák''' - [[Special:Emailuser/masca|Contact]]&lt;br /&gt;
***'''Roman Dergam [2]''' - [[Special:Emailuser/Dergam|Contact]](do poloviny června)&lt;br /&gt;
***'''Michal Pěnka''' - [http://michal.penka.name/kontakt Contact]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Kolín&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Dag Rauer''' - [[Special:Emailuser/drag|Contact]]&lt;br /&gt;
***'''Miloslav Machotka''' - [[Special:Emailuser/Machy|Contact]]&lt;br /&gt;
***'''David Kozub [D]''' - [[Special:Emailuser/Zub|Contact]] (Kdyby z Prahy seslo, volim Zlin jako fallback.)&lt;br /&gt;
***'''Milan Vontorčík''' - [[Special:Emailuser/Mvontorcik|Contact]]&lt;br /&gt;
***'''Vojtěch Vozáb''' - [mailto:vojtav@centrum.cz Contact]&lt;br /&gt;
***'''Zdeněk Trávníček [D]''' - [[User:V154c1|Contact]] (Klidne si zajedu i jinam po republice)&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Písek&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***''' Luboš Podrázský''' - [[Special:Emailuser/zsman|Contact]]&lt;br /&gt;
***''' Petr Marvan''' - [mailto:petr.marvan1@seznam.cz Contact]&lt;br /&gt;
&lt;br /&gt;
== Slovak Republic ==&lt;br /&gt;
[http://wiki.openmoko.org/wiki/GroupSales#Czech_Republic Spojeno s Czech Republic]&lt;br /&gt;
&lt;br /&gt;
== Croatia ==&lt;br /&gt;
Status : 12/10&lt;br /&gt;
* w00t - [[Special:Emailuser/W00t|Contact]]&lt;br /&gt;
* matija - [[Special:Emailuser/Matija.z|Contact]]&lt;br /&gt;
* valajbeg - [[Special:Emailuser/valajbeg|Contact]]&lt;br /&gt;
* kost - [[Special:Emailuser/kost|Contact]]&lt;br /&gt;
* mnalis - [[Special:Emailuser/mnalis|Contact]]&lt;br /&gt;
* tcavrag - [[Special:Emailuser/tcavrag|Contact]]&lt;br /&gt;
* slavus - [[Special:Emailuser/slavus|Contact]]&lt;br /&gt;
* bsevo - [[Special:Emailuser/bsevo|Contact]]&lt;br /&gt;
* amd64 - [[Special:Emailuser/SilverSpace|Contact]]&lt;br /&gt;
* v-v - [[Special:Emailuser/v-v|Contact]]&lt;br /&gt;
* Lovro - [[Special:Emailuser/Lovro|Contact]]&lt;br /&gt;
* Zlotvor - [[Special:Emailuser/zlotvor|Contact]]&lt;br /&gt;
(maybe we should make one group for bosnia, croatia &amp;amp; serbia together?) [http://wiki.openmoko.org/index.php/Talk:GroupSales#Croatia the talk page]&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
=== Moscow ===&lt;br /&gt;
Status : 10/20&lt;br /&gt;
* 1x sinister - [[Special:Emailuser/sinister|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) shallburn - [[Special:Emailuser/shallburn|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) vadson - [[Special:Emailuser/vadson|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Tallex - [[Special:Emailuser/Tallex|Contact]] &lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) mex3 - [[Special:Emailuser/mex3|Contact]]&lt;br /&gt;
* 1x Alexxy (with debug board if possible) - [[Special:Emailuser/Alexxy|Contact]] (Actual location - Saint-Petersburg)&lt;br /&gt;
* 1x pva (with debug board if possible) - [[Special:Emailuser/Pva|Contact]] (Moscow if matters)&lt;br /&gt;
* 2x (1x [[Image:MokoBox.jpg]] - advanced + 1x Base) cbou (Moscow) - [[Special:Emailuser/cbou|Contact]]&lt;br /&gt;
* 1x (Base) Buffet - [[Special:Emailuser/Buffet|Contact]]&lt;br /&gt;
* 1x homeboy - [[Special:Emailuser/homeboy|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Saint-Petersburg ===&lt;br /&gt;
Status : 7/10&lt;br /&gt;
* 2x [[User:Kainspb|Nikolay Kasatkin]]&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
* 1x (3x?) ([[Image:MokoBox.jpg]] - phone+board) cracatau - [[Special:Emailuser/cracatau|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - phone+board) alexei379 - [[Special:Emailuser/alexei379|Contact]]&lt;br /&gt;
* 3x krigstask - [[Special:Emailuser/krigstask|Contact]]&lt;br /&gt;
&lt;br /&gt;
== Belarus ==&lt;br /&gt;
=== Minsk ===&lt;br /&gt;
Status : 1/10&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Const - [[Special:Emailuser/Const|Contact]]&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
&lt;br /&gt;
== Taiwan ==&lt;br /&gt;
=== Taipei ===&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Cruz [http://wiki.openmoko.org/wiki/Special:Emailuser/cruz Contact]&lt;br /&gt;
* mkl23 @ShinChu [http://wiki.openmoko.org/wiki/Special:Emailuser/mkl23 Contact]&lt;br /&gt;
* htchien [http://wiki.openmoko.org/wiki/Special:Emailuser/htchien Contact]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Group_sales</id>
		<title>Group sales</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Group_sales"/>
				<updated>2008-06-16T15:35:57Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Paris */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Openmoko have announced a scheme to sell the forthcoming Neo Freerunner at a discount if bought in multiples of 10 (US$369, instead of 399), to be shipped in one package. Group buying will thus save money on the purchase, and on the shipping. This page is to to organise group purchases by region.&lt;br /&gt;
&lt;br /&gt;
For calculating shipping costs, the dimensions of one 10-pack is 435mm x 371mm x 119mm. The weight should be around 3kg.&lt;br /&gt;
&lt;br /&gt;
Steve from Openmoko announced &amp;quot;Every 10 pack, will come with a box of stuff. 10 pouches and 10 head sets.&amp;quot;&lt;br /&gt;
So join us within a local group !&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style='float:right'&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Australia ==&lt;br /&gt;
&lt;br /&gt;
=== Customs And Postage ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Because of Australian customs, it might be better to form groups of two. That way we (Australians) will fall under the $1000 amount for import items and not have to pay the extra customs / taxes . &lt;br /&gt;
Customs information for Australia can be found [http://www.customs.gov.au/site/page.cfm?u=5549 here].&lt;br /&gt;
&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/Monkeypanic Nick Devereaux] has worked out the per-phone cost of an Australian bulk order compared to an individual order. Thanks to [http://wiki.openmoko.org/wiki/Special:Emailuser/Simat Simon Matthews] for updating the shipping details. The postage is approximated on an estimate by Steve that shipping to Europe bulk is $160 and individual is $70. Australia should be similar to this. &lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
 |'''Bulk Order'''&lt;br /&gt;
 |'''$US'''&lt;br /&gt;
 |'''$AUS'''&lt;br /&gt;
 |-&lt;br /&gt;
 |Customs Value (Cval)&lt;br /&gt;
 |$3690.00&lt;br /&gt;
 |$3837.60&lt;br /&gt;
 |-&lt;br /&gt;
 |Postage&lt;br /&gt;
 |$160.00&lt;br /&gt;
 |$166.40&lt;br /&gt;
 |-&lt;br /&gt;
 |Value Of Taxable Importation (VoTI) =Cval+Postage&lt;br /&gt;
 |$3850.00&lt;br /&gt;
 |$4004.00&lt;br /&gt;
 |-&lt;br /&gt;
 |Goods And Services Tax (GST) =10% of VoTI&lt;br /&gt;
 |$385.00&lt;br /&gt;
 |$400.40&lt;br /&gt;
 |- &lt;br /&gt;
 |Total Cost&lt;br /&gt;
 |$4235.00&lt;br /&gt;
 |$4404.40&lt;br /&gt;
 |-&lt;br /&gt;
 |'''Per Person'''&lt;br /&gt;
 |'''$423.50'''&lt;br /&gt;
 |'''$440.44'''&lt;br /&gt;
 |}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
 |'''Individual Order'''&lt;br /&gt;
 |'''$US'''&lt;br /&gt;
 |'''$AUS'''&lt;br /&gt;
 |-&lt;br /&gt;
 |Value&lt;br /&gt;
 |$399.00&lt;br /&gt;
 |$414.96&lt;br /&gt;
 |-&lt;br /&gt;
 |Postage&lt;br /&gt;
 | $70.00&lt;br /&gt;
 | $72.80&lt;br /&gt;
 |-&lt;br /&gt;
 |'''Total Cost'''&lt;br /&gt;
 |'''N/A'''&lt;br /&gt;
 |'''$487.76'''&lt;br /&gt;
 |}&lt;br /&gt;
&lt;br /&gt;
using the above rates and calculations, an order for two people (small group) would cost &lt;br /&gt;
$414.96 + $414.96 = 829.92 for the total of the phones  and then 72.80  for the shipping.&lt;br /&gt;
Thus, the total cost would be 902.72 and $451.36 per a person ( as the value of the goods is less than $aud1000. i don't think taxes apply).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Postage quote from http://www1.auspost.com.au/pac/int_parcel.asp&lt;br /&gt;
&lt;br /&gt;
Figures accurate as of 26th May 2008, 1$ USD = $1.04 AUD.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Western Australia ===&lt;br /&gt;
==== Perth ====&lt;br /&gt;
&lt;br /&gt;
Status: 10/10&lt;br /&gt;
&lt;br /&gt;
* 1x Fred Janon mailto:fjanon@yahoo.com&lt;br /&gt;
&lt;br /&gt;
* 1x Shanon Loughton [http://wiki.openmoko.org/wiki/Special:Emailuser/cgltower contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Simon Matthews [http://wiki.openmoko.org/wiki/Special:Emailuser/simat contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Msquared [http://www.msquared.id.au/ contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Alex Wilkinson mailto:alex.wilkinson@dsto.defence.gov.au&lt;br /&gt;
&lt;br /&gt;
* 1x Daniel Foote mailto:freefoote@dview.net&lt;br /&gt;
&lt;br /&gt;
* 1x Russell Steicke mailto:russells@adelie.cx&lt;br /&gt;
&lt;br /&gt;
* 1x William Kenworthy mailto:billk@iinet.net.au&lt;br /&gt;
&lt;br /&gt;
* 1x Justin Dinale [http://wiki.openmoko.org/wiki/Special:Emailuser/Noledil Contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Paul Wise [http://pabs.zip.to Contact me here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 1x Bruce Mohan (via Simon Matthews)&lt;br /&gt;
&lt;br /&gt;
=== New South Wales  ===&lt;br /&gt;
==== Sydney ====&lt;br /&gt;
&lt;br /&gt;
status: 10/10 ( one group)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please add an &amp;quot;I exist&amp;quot; to end of your name here. &lt;br /&gt;
&lt;br /&gt;
We now have 10 people (that seem to exist). I would to suggest like openmoko the company allow group sale deposits into accounts on behalf of groups.&lt;br /&gt;
With perhaps the package sent to sydney and then to a po box or split to finish the journey to the buyers. &lt;br /&gt;
&lt;br /&gt;
=====Confirmed=====&lt;br /&gt;
* 1 x dbmoodb ---&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Dbmoodb contact me here] I exist.&lt;br /&gt;
* 1 x bing [http://wiki.openmoko.org/wiki/Special:Emailuser/Bingquick contact me here] I exist.&lt;br /&gt;
* 1 x Chris [http://wiki.openmoko.org/wiki/Special:Emailuser/ch0gan contact me here]. I exist.&lt;br /&gt;
* 1 x Neil Brown [http://wiki.openmoko.org/wiki/Special:Emailuser/Neilbrown contact me here] I'm wondering why I need to assert that I exist.&lt;br /&gt;
* 1 x Rob [http://wiki.openmoko.org/wiki/Special:Emailuser/Rob contact me here] Exist?  Of course I do.&lt;br /&gt;
* 1 x Tim [http://wiki.openmoko.org/wiki/Special:Emailuser/Voyd contact me here] I am almost certain I exist.&lt;br /&gt;
* 1 x porl [http://wiki.openmoko.org/wiki/Special:Emailuser/porl contact me here] I exist.&lt;br /&gt;
* 1 x tom [http://wiki.openmoko.org/wiki/Special:Emailuser/tom contact me here] I think I exist.&lt;br /&gt;
* 1 x Scott [http://wiki.openmoko.org/wiki/Special:Emailuser/Cysp wikimail]&lt;br /&gt;
* 1 x Kallax [http://wiki.openmoko.org/wiki/Special:Emailuser/Kallax contact me here] I exist&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Unconfirmed=====&lt;br /&gt;
* 1 x Mark Chandler [http://wiki.openmoko.org/wiki/Special:Emailuser/Openmarko contact me here]&lt;br /&gt;
* 1 x cbaird [http://wiki.openmoko.org/wiki/Special:Emailuser/Cbaird contact me here] I exist-- but I assume someone's vetting confirmation?&lt;br /&gt;
&lt;br /&gt;
=====potential group 2 (1/10)=====&lt;br /&gt;
** 1 x Surfless [http://wiki.openmoko.org/wiki/Special:Emailuser/surfless contact me here] I exist &lt;br /&gt;
Surfless From the edit revisions we can see that you added your self to group one of sydney after we had ten members. &lt;br /&gt;
As per http://wiki.openmoko.org/index.php?title=GroupSales&amp;amp;diff=34002&amp;amp;oldid=33677&lt;br /&gt;
If this is not correct please state so under here. You have been contacted regardless as we are not sure of &lt;br /&gt;
the confirmed number of people. However, in the future could all users who want to join a group try to follow the documentation set out. &lt;br /&gt;
You can at least say yes i am 11 / 10 (for the first group - aka i am the extra).&lt;br /&gt;
&lt;br /&gt;
=== Victoria ===&lt;br /&gt;
==== Melbourne ====&lt;br /&gt;
Status: 8/10&lt;br /&gt;
&lt;br /&gt;
* 4x Dennis Wollersheim, mailto: dewoller (at) gmail (dot) com&lt;br /&gt;
* 1x Dale Maggee, mailto: antisol (at) earthling (dot) net&lt;br /&gt;
* 1x Matt Price: mailto: coolcat22 (at) bigpond (dot) com&lt;br /&gt;
* 1x Daniel Chandler: [http://wiki.openmoko.org/wiki/Special:Emailuser/AlphaGremlin contact me here]&lt;br /&gt;
* 1X Hugh Stephens, mailto: hughstephens &amp;lt;at&amp;gt; hughstephens &amp;lt;dot&amp;gt; com&lt;br /&gt;
&lt;br /&gt;
=== ACT ===&lt;br /&gt;
==== Canberra ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* Fergus [http://wiki.openmoko.org/wiki/Special:Emailuser/Someone Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Queensland ===&lt;br /&gt;
==== Brisbane ====&lt;br /&gt;
Status: 10/10&lt;br /&gt;
&lt;br /&gt;
* Nick Devereaux x 3 [http://wiki.openmoko.org/wiki/Special:Emailuser/Monkeypanic Contact me here]&lt;br /&gt;
* Matt Gallagher [http://wiki.openmoko.org/wiki/Special:Emailuser/mattg Contact me here]&lt;br /&gt;
* Jordan Keith [http://wiki.openmoko.org/wiki/Special:Emailuser/Zedd_D1abl0 Contact me here]&lt;br /&gt;
* Matt Blyde [http://wiki.openmoko.org/wiki/Special:Emailuser/Mattblyde Contact me here]&lt;br /&gt;
* David Baker [http://wiki.openmoko.org/wiki/Special:Emailuser/dtbaker Contact me here]&lt;br /&gt;
* Neil Davey (confirmed 1, maybe 2) [http://wiki.openmoko.org/wiki/Special:Emailuser/Ndavey Contact me here]&lt;br /&gt;
* Patrick Mahoney [http://wiki.openmoko.org/wiki/Special:Emailuser/Xanther Contact me here]&lt;br /&gt;
* Annie Belcher (Confirmed 1, maybe 2) [http://wiki.openmoko.org/wiki/Special:Emailuser/River Contact me here]&lt;br /&gt;
&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Daniel Jarrott [http://wiki.openmoko.org/wiki/Special:Emailuser/Daniel.jarrott Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== South Australia ===&lt;br /&gt;
==== Adelaide ====&lt;br /&gt;
Status: 7/10&lt;br /&gt;
&lt;br /&gt;
* Adrian Billiau *2 [http://wiki.openmoko.org/wiki/Special:Emailuser/Carcin Contact me here]&lt;br /&gt;
* John Briggs [http://wiki.openmoko.org/wiki/Special:Emailuser/Erflungued Contact me here]&lt;br /&gt;
* Daniel Sobey [http://wiki.openmoko.org/wiki/Special:Emailuser/dns Contact me here]&lt;br /&gt;
* Nicholas Steicke [http://wiki.openmoko.org/wiki/Special:Emailuser/narthollis Contact me here]&lt;br /&gt;
* Joel Stanley [http://wiki.openmoko.org/wiki/Special:Emailuser/shenki Contact me here]&lt;br /&gt;
* Karl Goetz [http://wiki.openmoko.org/wiki/Special:Emailuser/kgoetz Contact me here]&lt;br /&gt;
&lt;br /&gt;
  There is an email list available [1] for people in SA who want to try and organise together.&lt;br /&gt;
 [1] http://lists.maincontent.net/listinfo.cgi/openmoko-orders-sa-maincontent.net&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
There is a group-buy page at MetaLab, available here: http://metalab.at/wiki/OpenMoko .. we almost have the full 10 slots assigned, and its quite possible that we will order *20* phones, so please register on the Metalab pages and let us know if you're interested .. &lt;br /&gt;
&lt;br /&gt;
=== Salzburg ===&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* D. Kepplinger (at MetaLab)&lt;br /&gt;
&lt;br /&gt;
=== Wien ===&lt;br /&gt;
Status: 2/10&lt;br /&gt;
* M. Greifeneder [http://wiki.openmoko.org/wiki/Special:Emailuser/mikegr Contact me here]&lt;br /&gt;
* J. Vaughan (torpor) -- http://metalab.at/wiki/OpenMoko [http://wiki.openmoko.org/wiki/Special:Emailuser/torpor Contact me here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Styria ===&lt;br /&gt;
==== Graz ====&lt;br /&gt;
Group 1: Status: 10/10&lt;br /&gt;
&lt;br /&gt;
* F Hackenberger [http://wiki.openmoko.org/wiki/Special:Emailuser/Deadman66 Contact me here]&lt;br /&gt;
* J Florineth [http://wiki.openmoko.org/wiki/Special:Emailuser/Flojoh Contact me here]&lt;br /&gt;
* G Michelitsch [http://wiki.openmoko.org/wiki/Special:Emailuser/graf_ithaka Contact me here]&lt;br /&gt;
* R Stoegbuchner [http://wiki.openmoko.org/wiki/Special:Emailuser/stoero Contact me here]&lt;br /&gt;
* M Lipp [http://wiki.openmoko.org/wiki/Special:Emailuser/Neldoreth Contact me here]&lt;br /&gt;
* M Maier [http://wiki.openmoko.org/wiki/Special:Emailuser/species Contact me here]&lt;br /&gt;
* M Konrad [http://wiki.openmoko.org/wiki/Special:Emailuser/konni Contact me here]&lt;br /&gt;
* K Krammer [http://wiki.openmoko.org/wiki/Special:Emailuser/krake Contact me here]&lt;br /&gt;
* M Prokop [http://wiki.openmoko.org/wiki/Special:Emailuser/mika Contact me here]&lt;br /&gt;
* C Lauermann [http://wiki.openmoko.org/wiki/Special:Emailuser/cms Contact me here]&lt;br /&gt;
&lt;br /&gt;
Group 2: Status: 3/10&lt;br /&gt;
* S Simmer [http://wiki.openmoko.org/wiki/Special:Emailuser/StefanS Contact me here]&lt;br /&gt;
* K Holler [http://wiki.openmoko.org/wiki/Special:Emailuser/kho Contact me here]&lt;br /&gt;
* T Schlager [http://wiki.openmoko.org/wiki/Special:Emailuser/sgrtho Contact me here]&lt;br /&gt;
&lt;br /&gt;
== Belgium ==&lt;br /&gt;
=== Flanders ===&lt;br /&gt;
==== Brussel/Aalst/Aarschot/Gent/Brugge ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
* Yorick, mailto: yorick DOT matthys AT gmail DOT com&lt;br /&gt;
* 2x Dolfje [http://wiki.openmoko.org/wiki/Special:Emailuser/Dolfje Contact me here]&lt;br /&gt;
* XVens, mailto: xavier DOT vens AT gmail DOT com&lt;br /&gt;
* Arno85, mailto: aaron DOT helin AT gmail DOT com, Kortrijk&lt;br /&gt;
* Rubenv, mailto: ruben D0T vandamme MAILAT belgacom D0T net, Kortrijk&lt;br /&gt;
* Yvo Brasseur, mailto: yvo_brasseur AT archon DOT be Living in Aarschot, working in Brussels.&lt;br /&gt;
* Emmanuel Mathot, mailto: aiieeee DOT gmail DOT com, Brussels&lt;br /&gt;
* Kamil Kubacki, mailto: kamil DOT kubacki AT gmail DOT com  [or kamil.kubacki@gmail.com]&lt;br /&gt;
* Hans Vanpée, mailto: hans AT vanpee DOT be&lt;br /&gt;
ps: Dolfje can bring freerunners to Brugge if needed&lt;br /&gt;
&lt;br /&gt;
==== Antwerp ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
* michielv [http://wiki.openmoko.org/wiki/Special:Emailuser/Michielv Contact me here]&lt;br /&gt;
* Peter N [http://wiki.openmoko.org/wiki/Special:Emailuser/Bubsy Contact me here]&lt;br /&gt;
* Ivo [http://wiki.openmoko.org/wiki/Special:Emailuser/Ivo Contact me here]&lt;br /&gt;
* Peter Leemans, mailto: peter AT x-tend DOT be&lt;br /&gt;
* Richard B [http://wiki.openmoko.org/wiki/Special:Emailuser/richardb Contact me here]&lt;br /&gt;
* Jeroen Van Goey [http://wiki.openmoko.org/wiki/Special:Emailuser/BioGeek Contact me here]&lt;br /&gt;
* Jeroen D [http://wiki.openmoko.org/wiki/Special:Emailuser/jeroendoggen Contact me here]&lt;br /&gt;
* Diego Garcia, mailto: didac.garcia AT gmail DOT com&lt;br /&gt;
* Sam Geeraerts (Laakdal) [http://wiki.openmoko.org/wiki/Special:Emailuser/Samgee Contact me here]&lt;br /&gt;
* Stefaan [http://wiki.openmoko.org/wiki/Special:Emailuser/Stefaan Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Wallonia ===&lt;br /&gt;
==== Walloon Brabant / Liège ====&lt;br /&gt;
Status: 2/10&lt;br /&gt;
* Istvan, mailto: buki DOT istvan AT gmail DOT com&lt;br /&gt;
* Léo, mailto leo DOT studer AT gmail DOT com&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
=== Sofia ===&lt;br /&gt;
==== Sofia ====&lt;br /&gt;
Status : 5/10&lt;br /&gt;
&lt;br /&gt;
* Dimitar Staykov, [http://wiki.openmoko.org/wiki/Special:Emailuser/OpenMitko Contact]&lt;br /&gt;
* Vernim, [http://wiki.openmoko.org/wiki/Special:Emailuser/Vernim Contact]&lt;br /&gt;
* Geo, [http://wiki.openmoko.org/wiki/Special:Emailuser/geomer Contact]&lt;br /&gt;
* Iceman, [http://wiki.openmoko.org/wiki/Special:Emailuser/ice Contact], 30 May 2008&lt;br /&gt;
* jdivanov, [http://wiki.openmoko.org/wiki/Special:Emailuser/jdivanov Contact], 16 June 2008&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&lt;br /&gt;
=== British Columbia ===&lt;br /&gt;
Status : 12/10&lt;br /&gt;
&lt;br /&gt;
* Justin (Vancouver): mailto: stryderjzw AT gmail&lt;br /&gt;
* Dave (Vancouver) Vancouver Linux users group (unconfirmed but about 7 so far): mailto: doc AT skynet REMOVE dot REMOVE ie&lt;br /&gt;
* Steven (Victoria) - If someone in the group will remail the package for me. mailto: skurylo --&amp;gt; gmail dot com&lt;br /&gt;
* Morley (Victoria) - If someone in the group will mail to the island. mailto:morleyw@gmail.com&lt;br /&gt;
* Robert (Vancouver) - robtaylor &amp;lt;AT&amp;gt; tinsputnik &amp;lt;DOT&amp;gt; com (1 unit)&lt;br /&gt;
* Jeff (Vancouver) - jef dot jef gmail com&lt;br /&gt;
&lt;br /&gt;
=== Alberta ===&lt;br /&gt;
Status : 8/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Wuth|Wuth]] : [mailto:wuth@acm.org]&lt;br /&gt;
* [[User:Slm3095om|stacy]] (2 units) : slm3095om AT millions dOt ca&lt;br /&gt;
* [[User:Abnormal|Morgan]] : [mailto:lightningperf@hotmail.com]&lt;br /&gt;
* [[User:picosrfr|Will]] : [mailto:will.siddall@gmail.com]&lt;br /&gt;
* [[User:Dewey|Dewey]] (Calgary) : [http://wiki.openmoko.org/wiki/Special:Emailuser/Dewey Contact me here]&lt;br /&gt;
* [[User:Shadowwolf|Vince]] (Red Deer) : 1 Unit + 1 Debug board [http://wiki.openmoko.org/wiki/Special:Emailuser/Shadowwolf Get a hold of me here]&lt;br /&gt;
* [[User:Deanb2|Dean]] (Calgary) : [mailto:deanb@gbtn.net]&lt;br /&gt;
&lt;br /&gt;
=== Ontario/Quebec ===&lt;br /&gt;
==== GTA (Toronto) ====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
* Gerald A [http://wiki.openmoko.org/wiki/Special:Emailuser/Historybuff Contact me here]&lt;br /&gt;
* MattC, mailto: quirkz AT gmail&lt;br /&gt;
* Sergey K, openmoko AT deeptown dOt org&lt;br /&gt;
* Kristin Low, kristin dot low at gmail dot com (Kingston)&lt;br /&gt;
* Daniel Lister, gmail(dan.lister)&lt;br /&gt;
* Ronnie Wong: '''3 units''' - r25wong AT ryerson dOT ca&lt;br /&gt;
* Paul V [http://wiki.openmoko.org/wiki/Special:Emailuser/Roju Contact me here]&lt;br /&gt;
* Matt Manjos, matt (AT) manjos * com&lt;br /&gt;
&lt;br /&gt;
Group 2 Status (Hamilton): 7/10&lt;br /&gt;
&lt;br /&gt;
* Gabriel D - ace AT staticwave DOT ca&lt;br /&gt;
* Richard D - rtdegelder --&amp;gt; gmail.com&lt;br /&gt;
* Steve S   - ssinger_pg AT sympatico dot ca&lt;br /&gt;
* Wolfram Kahl - kahl McMaster CA&lt;br /&gt;
* Paul Wouters - paul@xelerance.com '''2 units'''&lt;br /&gt;
* John Hurley - nybble at eml dot cc&lt;br /&gt;
&lt;br /&gt;
Group 3 Status (Montréal): 2/10&lt;br /&gt;
* Patrick Hétu - patrick AT koumbit DOT org&lt;br /&gt;
* Eric Lebel - lebeleri AT aei DOT ca&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
=== Santiago ===&lt;br /&gt;
Status : 6/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Mankeke]] Ricardo Manríquez C., mailto: ricardo.manriquez &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:XKnightmareX]] Gonzalo Pesenti., mailto: mare.knight1 &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:Freyes]] Felipe Reyes., mailto: felipereyes &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:Zeus]] Jonathan Gonzalez., mailto: zeus &amp;quot;remove this and add AT&amp;quot; gnu &amp;quot;dot&amp;quot; org&lt;br /&gt;
* [[User:crsepulv]] Cristian Sepúlveda, mailto: sepulveda.cristian@gmail.com&lt;br /&gt;
* [[User:nischg]] Nicolás Schubert, mailto: nischg@gmail.com&lt;br /&gt;
&lt;br /&gt;
== China ==&lt;br /&gt;
=== BeiJing ===&lt;br /&gt;
Status:9/10&lt;br /&gt;
*Luther  &amp;lt;br/&amp;gt; mailto:lutherluo@qq.com &amp;lt;br/&amp;gt;  1 freerunner and 1 debug board.&lt;br /&gt;
*Gnosy &amp;lt;br/&amp;gt; mailto:gnosyhh@gmail.com &amp;lt;br/&amp;gt;   1 freerunner and 1 debug board.&lt;br /&gt;
*Bin Zong &amp;lt;br /&amp;gt; mailto:hunter_00zb@hotmail.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt; MSN:hunter_00zb@hotmail.com&lt;br /&gt;
*Lee zaixin&amp;lt;br /&amp;gt; mailto:shqlzx@126.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt;&lt;br /&gt;
*Zhuwei&amp;lt;br /&amp;gt; mailto:grissom_zhu@139.com &amp;lt;br/&amp;gt; MSN:wyh0310@hotmail.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt;&lt;br /&gt;
*zhaojun&amp;lt;br/&amp;gt; mailto:zhaojun1631@163.com &amp;lt;br/&amp;gt;  1 freerunner and 1 debug board&lt;br /&gt;
*Benoit Begue&amp;lt;br/&amp;gt; mailto:snk4ever@gmail.com &amp;lt;br/&amp;gt;  1 freerunner&lt;br /&gt;
*Tristan&amp;lt;br/&amp;gt; mailto:0x5478(at)gmail.com &amp;lt;br/&amp;gt;  MSN:liu_bei_bei(at)hotmail.com &amp;lt;br/&amp;gt;  1 freerunner and 1 debug board.&lt;br /&gt;
&lt;br /&gt;
=== ShangHai ===&lt;br /&gt;
Status:1/10&lt;br /&gt;
&amp;lt;br/&amp;gt; &lt;br /&gt;
* Pajda, info on my [[User:Pajda|user page]], or you can [[Special:Emailuser/Pajda|contact me here]]. 1x freerunner&lt;br /&gt;
&lt;br /&gt;
=== Guangzhou ===&lt;br /&gt;
Status:1/10&lt;br /&gt;
*Geoffrey &amp;lt;br/&amp;gt; mailto:dghfalcon@gmail.com &amp;lt;br/&amp;gt; 1 freerunner and 1 debug borad.&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
If we do not reach a total large enough, Denmark **is** a very small place - surely we could figure out a way of getting them to find their way 'round the country :)&lt;br /&gt;
&lt;br /&gt;
=== Jutland ===&lt;br /&gt;
==== Aalborg ====&lt;br /&gt;
Status: 6/10&lt;br /&gt;
&lt;br /&gt;
Should anyone need it, transportation from Aalborg to Thisted for phones can be arranged, if you don't want to pick it up in Aalborg yourself :) ~leinir&lt;br /&gt;
&lt;br /&gt;
As it looks right now, it seems that it would be cheaper and easier for us to buy through Pulster in Germany - see the following email: http://lists.openmoko.org/pipermail/community/2008-May/017778.html ~leinir&lt;br /&gt;
&lt;br /&gt;
* Dan Leinir Turthra Jensen &amp;lt;br /&amp;gt; mailto:admin@leinir.dk &amp;lt;br /&amp;gt; [[User:Leinir]]&lt;br /&gt;
* Fabian Olesen &amp;lt;br /&amp;gt; mailto:firewalkerx@gmail.com&lt;br /&gt;
* Helge Willum Larsen &amp;lt;br /&amp;gt; mailto:helge.at.helges.dk&lt;br /&gt;
* Kristian Lindemann Larsen &amp;lt;br /&amp;gt; mailto:walker@pandia.dk&lt;br /&gt;
* Brian Olsen &amp;lt;br /&amp;gt; mailto:downloader@pandia.dk&lt;br /&gt;
* Henrik Odder Jensen &amp;lt;br /&amp;gt; mailto:herakles@pandia.dk&lt;br /&gt;
&lt;br /&gt;
==== Aarhus ====&lt;br /&gt;
Status: 3/10&lt;br /&gt;
&lt;br /&gt;
* Kent S. Knudsen - [http://wiki.openmoko.org/wiki/Special:Emailuser/Forestmountain contact me here] - [[User:Forestmountain]] (1 phone; will join any danish group if necessary)&lt;br /&gt;
* Lars Jensen - [http://wiki.openmoko.org/wiki/Special:Emailuser/el_senator contact me here] (1 phone)&lt;br /&gt;
* Martin Pedersen - [http://wiki.openmoko.org/wiki/Special:Emailuser/Cheeses contact me here] (1 phone; will join any danish group if necessary)&lt;br /&gt;
&lt;br /&gt;
==== Skjern ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Carlo]]&lt;br /&gt;
&lt;br /&gt;
==== Sønderborg ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* Theis Hjorth [http://wiki.openmoko.org/wiki/Special:Emailuser/Theis.hjorth contact me here] (1 phone + 1 devkit) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Fyn ===&lt;br /&gt;
Status: 4/10&lt;br /&gt;
(Unnless others join Esben and Peter will join the Copenhagen order and Peter will pick up the phones for Fyn in Copenhagen)&lt;br /&gt;
&lt;br /&gt;
* [[User:EsbenDamgaard]] (need 3 (Looney &amp;amp; Gert))&lt;br /&gt;
* [[User:apm]] (need 1 with invoice - can pick up in Copenhagen)&lt;br /&gt;
&lt;br /&gt;
=== Sjælland ===&lt;br /&gt;
==== Copenhagen ====&lt;br /&gt;
Status: 29/10 (33 including the 4 for Fyn - see above)&lt;br /&gt;
&lt;br /&gt;
* [[User:jrcarlsen | Johnny Rose Carlsen]] (+45) 28 14 60 04 [http://wiki.openmoko.org/wiki/Special:Emailuser/jrcarlsen (contact)] 1 phone&lt;br /&gt;
* [[User:Fursund]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Fursund (contact)] 1 phone&lt;br /&gt;
* [[User:tabac | Thomas Ammitzbøll-Bach ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/tabac (contact)] 1 phone&lt;br /&gt;
* [[User:chel | Christian E. Lysel ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/chel (contact)]&lt;br /&gt;
* [[User:UlrikRasmussen | Ulrik Rasmussen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/UlrikRasmussen (contact)] (1)&lt;br /&gt;
* [[User:KlaymenDK | Jan Gundtofte-Bruun]]  [http://wiki.openmoko.org/wiki/Special:Emailuser/KlaymenDK (contact)] (Pending final hw, eg. low-power LEDs)&lt;br /&gt;
* [[User:OleTange | Ole Tange]] [http://wiki.openmoko.org/wiki/Special:Emailuser/OleTange (contact)] (I need 14 with invoice)&lt;br /&gt;
* [[User:Pascal | Pascal d'Hermilly]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Pascal (contact)] (I need 1 with invoice)&lt;br /&gt;
* [[User:Miwer | Michael Andersen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Miwer (contact)] (2 freerunners, 1 debug board, and a copy of invoice)&lt;br /&gt;
* [[User:maha | Martin Hansen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/maha (contact)] (3 with invoice)&lt;br /&gt;
* [[User:SvenneK | Svenne Krap ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/SvenneK (contact)] (1+devkit with invoice)&lt;br /&gt;
* [[User:bss | Bo Stendal Sørensen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/bss (contact)] (1)&lt;br /&gt;
* [[User:Glenn | Glenn Møller-Holst]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Glenn (contact)] (2 freerunners + debug board, +invoice)&lt;br /&gt;
* [[User:knmeister | Kristian Nielsen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/knmeister (contact)] (I need 1 with invoice)&lt;br /&gt;
* [[User:Sir_Gallivant | Henrik Jordahn]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Sir_Gallivant (contact)] (I need one, probably one more later)&lt;br /&gt;
* [[User:hammerfar | Henrik Hammer Berthelsen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/hammerfar (contact)] (2 with invoice)&lt;br /&gt;
&lt;br /&gt;
== Estonia ==&lt;br /&gt;
=== Tallinn ===&lt;br /&gt;
Let's see if we can get ten people together for this. I'm willing to organise the local distribution if we can. Spread the word and try to get more locals interested in it. [[User:Yogiz|Yogiz]] 08:22, 3 June 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Yogiz | Yogiz]] ([mailto:yogizz@gmail.com contact]) 1 phone&lt;br /&gt;
&lt;br /&gt;
== Finland ==&lt;br /&gt;
=== Uusimaa ===&lt;br /&gt;
Note to gta02v6 waiting people:&amp;quot;The A5 boards have been reworked to remove the [LED] issue. So WRT&lt;br /&gt;
LEDs a5 and a6 have the same power consumption&amp;quot;. So, no problem? Also a quote from [[Neo FreeRunner GTA02 Hardware#GTA02v6]]: &amp;quot;Capacitor and resistor change A6 also on mass production A5&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Helsinki I (Full)====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
* Mikko Rauhala x2 [mailto:mjr@iki.fi mjr@iki.fi]&lt;br /&gt;
* Aleksi Hankalahti &amp;lt;br /&amp;gt; [mailto:aleksi.hankalahti@iki.fi aleksi.hankalahti@iki.fi]&lt;br /&gt;
* Seppo Hätönen &amp;lt;br /&amp;gt; [mailto:karrde@iki.fi karrde@iki.fi]&lt;br /&gt;
* Arttu Sund &amp;lt;br /&amp;gt; thearttu AT gmail DOT com&lt;br /&gt;
* Ville-Pekka Vainio &amp;lt;br /&amp;gt; vpivaini AT cs.helsinki.fi&lt;br /&gt;
* Heikki Hallamaa &amp;lt;br /&amp;gt; [mailto:heikki.hallamaa@iki.fi heikki.hallamaa@iki.fi]&lt;br /&gt;
* Tomi Jylhä-Ollila &amp;lt;br /&amp;gt; tomi.jylha-ollila@helsinki.fi&lt;br /&gt;
* Richard Braakman&lt;br /&gt;
* Timo Jyrinki &amp;lt;br /&amp;gt; [mailto:timo.jyrinki@iki.fi timo.jyrinki@iki.fi]&lt;br /&gt;
&lt;br /&gt;
==== Helsinki II, Turku &amp;amp; Vaasa====&lt;br /&gt;
&lt;br /&gt;
Status : 7/10&lt;br /&gt;
&lt;br /&gt;
Helsinki:&lt;br /&gt;
&lt;br /&gt;
* Risto H. Kurppa &amp;lt;br /&amp;gt; risto AT kurppa DOT fi&lt;br /&gt;
* Aapo Rantalainen &amp;lt;br /&amp;gt; aapo DOT rantalainen AT gmail DOT com&lt;br /&gt;
* Matti Laakso &amp;lt;br /&amp;gt; matti DOT laakso AT kotiposti DOT net&lt;br /&gt;
* Ismo Haanaho &amp;lt;br /&amp;gt; ismo DOT haanaho AT gmail DOT com&lt;br /&gt;
* Ilari Oras &amp;lt;br /&amp;gt; ilari DOT oras AT welho DOT com&lt;br /&gt;
&lt;br /&gt;
Turku:&lt;br /&gt;
&lt;br /&gt;
* Jaakko Lehtinen, jaakko dot lehtinen at gmail dot com&lt;br /&gt;
&lt;br /&gt;
Vaasa:&lt;br /&gt;
&lt;br /&gt;
* Mikko Niemikorpi, mikefulli ÄT gmail PISTE com&lt;br /&gt;
&lt;br /&gt;
FYI, removed from list (waiting for GTA02v6):&lt;br /&gt;
&lt;br /&gt;
* ''[[User:Piksi]], openmoko ÄT pi-xi PISTE net''&lt;br /&gt;
* ''2x Teemu Välimäki, [mailto:teemu.valimaki@iki.fi teemu.valimaki@iki.fi]''&lt;br /&gt;
&lt;br /&gt;
=== Lappi ===&lt;br /&gt;
==== Kemi ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
'''[[User:Cg|Discuss the order here]]'''&lt;br /&gt;
&lt;br /&gt;
Kemi:&lt;br /&gt;
* Henri Valta &amp;lt;br /&amp;gt;henri PISTE valta ÄT kemi PISTE fi&lt;br /&gt;
* Tommi Juvonen &amp;lt;br /&amp;gt;tassi ÄT mediapumppu PISTE info&lt;br /&gt;
* Jaakko Pörhö &amp;lt;br /&amp;gt;ensteinfrank ÄT hotmail PISTE com&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
=== Bretagne ===&lt;br /&gt;
==== Brest ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* StevenLeRoux [mailto:steven@pourri.fr steven@pourri.fr] Jabber_Id:Steven@jabber.fr&lt;br /&gt;
* Acheteur potentiel #2&lt;br /&gt;
&lt;br /&gt;
==== Rennes ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Cédric DUFOUIL (openmoko at tsleg point com)&lt;br /&gt;
* Yves MAHE (ymahe at zindep dot com)&lt;br /&gt;
* Guillaume BERTHELOM (yogui29 at gmail dot com)&lt;br /&gt;
&lt;br /&gt;
=== Pays de la Loire ===&lt;br /&gt;
==== La Roche sur Yon ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Vtouchar Vincent Touchard]&lt;br /&gt;
&lt;br /&gt;
==== Nantes ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
* [[User:Yoann|Yoann ARNAUD]]. OK for a ship in Rennes if needed. [http://wiki.openmoko.org/wiki/Special:Emailuser/Yoann Contact me here]&lt;br /&gt;
* [[User:sim51|Benoît SIMARD]]. Idem  [http://wiki.openmoko.org/wiki/Special:Emailuser/sim51 Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Nord ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Ile de france ===&lt;br /&gt;
==== Paris ====&lt;br /&gt;
Status : 22/30&lt;br /&gt;
&lt;br /&gt;
* StevenLeRoux&lt;br /&gt;
* &amp;lt;s&amp;gt;[[User:Phyce|Phyce]]&amp;lt;/s&amp;gt; (''commandé sur http://bearstech.com/shop '')&lt;br /&gt;
* Yann SLADEK ([http://wiki.openmoko.org/wiki/Special:Emailuser/Maveryck Contact me here])&lt;br /&gt;
* [[User:Wilk|Wilk]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Wilk Contact me here]&lt;br /&gt;
* Jonathan Magano ([http://wiki.openmoko.org/wiki/Special:Emailuser/JonathanMM Contact me here])&lt;br /&gt;
* Benjamin Renard (bn8[AT]zionetrix.net)&lt;br /&gt;
* [[User:OlivierBerger|OlivierBerger]]&lt;br /&gt;
* [[User:BartGS|BartGS]] [http://wiki.openmoko.org/wiki/Special:Emailuser/BartGS Contact me here]&lt;br /&gt;
* [[User:rcoscali|Rémi Cohen-Scali]]&lt;br /&gt;
* [[User:Valos|Valéry Febvre]]&lt;br /&gt;
* [[User:Manou|Emmanuel Raviart]]&lt;br /&gt;
* Le Troll Farceur ([http://wiki.openmoko.org/wiki/Special:Emailuser/LeTrollFarceur Contact me here])&lt;br /&gt;
* [[User:mshook|Mathieu Chouquet-Stringer]]&lt;br /&gt;
* [[User:LoicMinier|Loïc Minier]]&lt;br /&gt;
* [[User:chansen|Cyril Hansen]]&lt;br /&gt;
* [[User:hbernard|hugues]]&lt;br /&gt;
* Titilambert ([http://wiki.openmoko.org/wiki/Special:Emailuser/titilambert Contact me here])&lt;br /&gt;
* [[User:Raphux|Raphux]]([http://wiki.openmoko.org/wiki/Special:Emailuser/Raphux Contact me here])&lt;br /&gt;
* [[User:tuXXX|Damien Thébault]] (Contact me [[User:tuXXX|here]] or [[Special:Emailuser/tuXXX|here]])&lt;br /&gt;
* [[User:kkum|Kumar]] (contact me [[Special:Emailuser/kkum|here]])&lt;br /&gt;
* Gand' ([http://wiki.openmoko.org/wiki/Special:Emailuser/Gand' Contact me here])&lt;br /&gt;
* [[User:Sporniket|David SPORN]]&lt;br /&gt;
You may also see :&lt;br /&gt;
http://bearstech.com/openmoko/register&lt;br /&gt;
&lt;br /&gt;
=== Lorraine ===&lt;br /&gt;
==== Nancy ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:mosan|Nicolas Salles]]&lt;br /&gt;
&lt;br /&gt;
=== Rhône-Alpes ===&lt;br /&gt;
==== Lyon ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/patou Vincent MEURISSE]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/pini Gilles FILIPPINI]&lt;br /&gt;
&lt;br /&gt;
==== Grenoble ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/pbollard Philippe BOLLARD]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/aurelien Aurelien]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Hey_popey Damien]&lt;br /&gt;
&lt;br /&gt;
=== Alpes de Haute Provence ===&lt;br /&gt;
==== Manosque ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/cfdev Cyril]&lt;br /&gt;
&lt;br /&gt;
=== Provence Alpes Cote d'Azur ===&lt;br /&gt;
==== Sophia Antipolis ====&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/nico.inc Nicolas HUOT]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Xavier_OM Xavier CREMASCHI]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Vasile Vasile Jureschi]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Herve5 Hervé Sainct]&lt;br /&gt;
&lt;br /&gt;
=== Midi-Pyrénées ===&lt;br /&gt;
==== Toulouse ====&lt;br /&gt;
&lt;br /&gt;
Status: 2/10&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Ortalo|Ortalo]]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Micktaiwan Mickael Faivre-Maçon]&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
=== Baden-Württemberg ===&lt;br /&gt;
==== Karlsruhe ====&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Spacemarine|Spacemarine]] 2 Freerunner. -- I'm managing the communication between the groupbuyers, so please contact me if you are interested and haven't received an email from me yet. We will meet at the Kalug Meeting http://www.karlsruhe.linux.de/ on 26. 5. 2008 to discuss things further.&lt;br /&gt;
* [[Special:Emailuser/Dr.Nop|Dr.Nop]] (inzw. Ludwigsburg, falls es sich anbietet könnte ich auch zur Leonberger Gruppe wechseln)&lt;br /&gt;
* [[Special:Emailuser/JensB|JensB]]&lt;br /&gt;
* [[Special:Emailuser/Tedo|Tedo]]&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Gromgull|Gromgull]] (in Kaiserslautern, but Karlsruhe is close enough, and I doubt that I'll find 10 people here.&lt;br /&gt;
* [[Special:Emailuser/Ebi|Ebi]]&lt;br /&gt;
* [[Special:Emailuser/RIdd3r|Fabian]]&lt;br /&gt;
* [[Special:Emailuser/Gollum|Gollum]] in Mannheim, ditto :)  Maybe local postal service is an option?&lt;br /&gt;
* [[Special:Emailuser/Archimedes|Sebastian]] (in Kaiserslautern on workdays and Daun/Eifel during the weekend)&lt;br /&gt;
* [[Special:Emailuser/Roduit|Roduit]] In Heidelberg. Karlsruhe is close enough.&lt;br /&gt;
* [[Special:Emailuser/Cfo|cfo]] Karlsruhe&lt;br /&gt;
* [[Special:Emailuser/Adonres|Adonres]] Karlsruhe - Hope I'm not too late.&lt;br /&gt;
&lt;br /&gt;
==== Leonberg ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
* [[Special:Emailuser/ZaPPaS|ZaPPaS]] about 8 Freerunners.&lt;br /&gt;
* [[Special:Emailuser/Cc|Cc]]&lt;br /&gt;
* [[Special:Emailuser/Agon|Agon]] Maybe 1 Freerunner.&lt;br /&gt;
&lt;br /&gt;
==== Tübingen ====&lt;br /&gt;
Status 5/10&lt;br /&gt;
* [[Special:Emailuser/MiTo|MiTo]]&lt;br /&gt;
* [[Special:Emailuser/NoBody|NoBody]] close to tuebingen and stuttgart (between both)&lt;br /&gt;
* [[Special:Emailuser/eliasp|eliasp]] (3 Freerunner (me, qknight + sbock) - Tübingen downtown&lt;br /&gt;
* [[Special:Emailuser/nobs|nobs]] thinking about buying one; if I am #10, count me in; if there is someone else #11 you can drop me&lt;br /&gt;
&lt;br /&gt;
==== Ulm ====&lt;br /&gt;
Status: 2/10&lt;br /&gt;
* [[Special:Emailuser/mzanetti|mzanetti]] &lt;br /&gt;
* [[Special:Emailuser/Lord_Evil|Lord_Evil]] ich nehm auch eins. Evtl. kann ich mich auch an Augsburg anhängen.&lt;br /&gt;
&lt;br /&gt;
=== Bayern ===&lt;br /&gt;
&lt;br /&gt;
==== Augsburg ====&lt;br /&gt;
&lt;br /&gt;
Status 6/10&lt;br /&gt;
I just want to see if there are enough people to fill up to ten. So add your name here if you are interested.&lt;br /&gt;
&lt;br /&gt;
*[[Special:Emailuser/Whoever|whoever]] - Ich nehm eins, wenn die Münchner keines übrig haben.&lt;br /&gt;
*[[Special:Emailuser/Nightmare|Nightmare]] - Ich will auf jeden Fall eins haben&lt;br /&gt;
*[[Special:Emailuser/paddy2706|paddy2706]] - Ein OpenMoko bitte :)&lt;br /&gt;
&lt;br /&gt;
Wann werden die dann bestellt/gezahlt? Dauert bei mir no kurz bis ichs Geld für zusammen hab aber dann nehm ich eins.&lt;br /&gt;
MfG [http://wiki.openmoko.org/wiki/Special:Emailuser/MookiE MookiE]&lt;br /&gt;
&lt;br /&gt;
Hallo, ich würde mich für einen Freerunner interessieren. Wie sieht es mit Zoll aus? Kommt der noch dazu?&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/Murks Murks]&lt;br /&gt;
&lt;br /&gt;
   $3690 (10 Freerunner) &lt;br /&gt;
 + $ 160 (Versand lt. Australiern)&lt;br /&gt;
 =======&lt;br /&gt;
   $3850&lt;br /&gt;
&lt;br /&gt;
   $3850&lt;br /&gt;
 + $ 732 (19% Einfuhrumsatzsteuer)&lt;br /&gt;
 + $   0 (kein Zoll für Handys)&lt;br /&gt;
 =======&lt;br /&gt;
   $4582&lt;br /&gt;
&lt;br /&gt;
 $458 / 1,5$/€ = 305 € pro Telefon (als Richtwert)&lt;br /&gt;
&lt;br /&gt;
==== München ====&lt;br /&gt;
&lt;br /&gt;
Wir suchen noch einen Organisator für die Bestellung!&lt;br /&gt;
Weiß jemand, was man so alles beachten muss?&lt;br /&gt;
&lt;br /&gt;
Hilf mit, eine [[OpenMoko_Local_Groups:_Munich|Münchner UserGroup]] aufzubauen!&lt;br /&gt;
&lt;br /&gt;
Status 13/20&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Imitation|Imitation]] 30 April 2008&lt;br /&gt;
* [[Special:Emailuser/meyerm|meyerm]] 16:25 CEST, 01. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/Koebi|koebi]] 05. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/wof|wof]] (2) 07. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/floe|floe]] 10. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/mathew muc|mathew muc]] 12. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/einalex|einalex]] 13. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/smurfy|smurfy]] 18. Mai 2008&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Whoever|whoever]] 02. Juni 2008 (München oder Augsburg, ich mach bei der Gruppe mit, die mir als erste ein Freerunner &amp;quot;garantiert&amp;quot;)&lt;br /&gt;
* [[Special:Emailuser/Beni|Beni]] 05. Juni 2008&lt;br /&gt;
* [[Special:Emailuser/Nosyjoe|Nosyjoe]] 08. Juni 2008&lt;br /&gt;
* [[Special:Emailuser/peter_b|peter_b]] needs 2 Freerunner 16. Juni 2008&lt;br /&gt;
----&lt;br /&gt;
* [[Special:Emailuser/Eriks|Eriks]] Unfortunately I have to sign me off. So somebody else has to arrange it. I'm really sorry about that. :-(&lt;br /&gt;
&lt;br /&gt;
=== Berlin===&lt;br /&gt;
==== Berlin ====&lt;br /&gt;
&lt;br /&gt;
Help to form a [[OpenMoko_Local_Groups:_Berlin|Berlin User Group]]!&lt;br /&gt;
&lt;br /&gt;
Status 14/20&lt;br /&gt;
* Stephan [http://wiki.openmoko.org/wiki/User:Fischel Contact me here]&lt;br /&gt;
* Robert [http://wiki.openmoko.org/wiki/User:Thebohemian Contact me here]&lt;br /&gt;
* Nico [http://wiki.openmoko.org/wiki/User:Nico Contact me here]&lt;br /&gt;
* Bastian [[User:Fries43]]&lt;br /&gt;
* Sven-Ola [http://wiki.openmoko.org/wiki/User:Sven-ola Contact]&lt;br /&gt;
* Arne [http://wiki.openmoko.org/wiki/User:arnepp Contact me here]&lt;br /&gt;
* MM [http://wiki.openmoko.org/wiki/User:MM Contact]&lt;br /&gt;
* Keks [http://wiki.openmoko.org/wiki/User:Keksdosenmann Contact]&lt;br /&gt;
* Matthias [http://wiki.openmoko.org/wiki/User:mk Contact]&lt;br /&gt;
* Norbert [http://wiki.openmoko.org/wiki/User:Noha Contact]&lt;br /&gt;
* Joscha [http://wiki.openmoko.org/wiki/User:Joka Contact]&lt;br /&gt;
* Janne [http://wiki.openmoko.org/wiki/User:Janne Contact]&lt;br /&gt;
* Robert [http://wiki.openmoko.org/wiki/Special:Emailuser/Robx Contact]&lt;br /&gt;
* Conrad [http://wiki.openmoko.org/wiki/User:Caribu Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Bremen ===&lt;br /&gt;
==== Bremen ====&lt;br /&gt;
Status 3/10&lt;br /&gt;
* Gero Mudersbach [http://wiki.openmoko.org/wiki/Special:Emailuser/Gero Contact me here]&lt;br /&gt;
* Hartje Bruns [http://wiki.openmoko.org/wiki/Special:Emailuser/MrBurns Contact me here]&lt;br /&gt;
* Timo Scheffler [http://wiki.openmoko.org/wiki/Special:Emailuser/Faldrian Contact me here]&lt;br /&gt;
&lt;br /&gt;
==== Bremerhaven ====&lt;br /&gt;
&lt;br /&gt;
=== Hamburg ===&lt;br /&gt;
==== Hamburg ====&lt;br /&gt;
Status 9-10&lt;br /&gt;
&lt;br /&gt;
* Jan 4-5[http://wiki.openmoko.org/wiki/Special:Emailuser/Jan07 Contact me here]&lt;br /&gt;
* Varacanero [http://wiki.openmoko.org/wiki/Special:Emailuser/varacanero Contact me here]&lt;br /&gt;
* Ole 3-5 pcs [http://wiki.openmoko.org/wiki/Special:Emailuser/Olemoko Contact me here]&lt;br /&gt;
* Arne [http://wiki.openmoko.org/wiki/Special:Emailuser/GuraX Contact me here]&lt;br /&gt;
* Arne.anka 1pc [http://wiki.openmoko.org/wiki/Special:Emailuser/Arne.anka Contact me here]&lt;br /&gt;
* Wasili Goutas 1pc + debug adapter [http://wiki.openmoko.org/wiki/Special:Emailuser/Laki Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Hessen ===&lt;br /&gt;
==== Frankfurt ====&lt;br /&gt;
Status 1-10&lt;br /&gt;
&lt;br /&gt;
* Blacky [http://wiki.openmoko.org/wiki/Special:Emailuser/Blacky Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Niedersachsen===&lt;br /&gt;
==== Hannover====&lt;br /&gt;
Status 1&lt;br /&gt;
&lt;br /&gt;
* Dattel83 [http://wiki.openmoko.org/wiki/Special:Emailuser/Dattel83 Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== NRW ===&lt;br /&gt;
==== Aachen ====&lt;br /&gt;
Status 4/10&lt;br /&gt;
* Henrik, infos on my [[User:Henrikz|user page]], or you can [[Special:Emailuser/Henrikz|contact me here]]&lt;br /&gt;
* David, infos on my [[User:TechnoFan|user page]], or you can [[Special:Emailuser/TechnoFan|contact me here]]&lt;br /&gt;
* Stephan, infos on my [[User:chaq|user page]], or you can [[Special:Emailuser/chaq|contact me here]]&lt;br /&gt;
* Michael, infos on my [[User:knut|user page]], or you can [[Special:Emailuser/knut|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Bielefeld ====&lt;br /&gt;
Status 4/10&lt;br /&gt;
&lt;br /&gt;
* David, infos on my [[User:Raven|user page]], or you can [[Special:Emailuser/Raven|contact me here]]&lt;br /&gt;
* Sebastian, infos on my [[User:Seppi|user page]], or you can [[Special:Emailuser/Seppi|contact me here]]&lt;br /&gt;
* Dackel, infos on my [[User:Killerdackel|user page]], or you can [[Special:Emailuser/Killerdackel|contact me here]]&lt;br /&gt;
* Conny&lt;br /&gt;
* Arndt, infos on my [[User:Arndot|user page]], or you can [[Special:Emailuser/Arndot|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Bocholt ====&lt;br /&gt;
===== (Fachhochschule in Bocholt) =====&lt;br /&gt;
* 1 x adslex&lt;br /&gt;
* 1 x dg [[Special:Emailuser/dg|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Düsseldorf ====&lt;br /&gt;
* mac2k, infos on my [[User:mac2k|user page]], or you can [[Special:Emailuser/mac2k|contact me here]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Sachsen-Anhalt ===&lt;br /&gt;
==== Stendal (evtl. Magdeburg) ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Fabian Off [http://wiki.openmoko.org/wiki/Special:Emailuser/Fabian2de Contact me here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Thueringen ===&lt;br /&gt;
==== Weimar ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fries43]]&lt;br /&gt;
&lt;br /&gt;
==== Ilmenau ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:KimKiesel]]&lt;br /&gt;
&lt;br /&gt;
=== Sachsen ===&lt;br /&gt;
Eventuell sollten wir eine gemeinsame Bestellung für ganz Sachsen machen, damit wir auf ausreichend Leute kommen.&lt;br /&gt;
&lt;br /&gt;
==== Chemnitz ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* Tobias [http://wiki.openmoko.org/wiki/Special:Emailuser/Tobydox Contact me here]&lt;br /&gt;
* Michael [http://wiki.openmoko.org/wiki/Special:Emailuser/her Contact me here]&lt;br /&gt;
==== Dresden ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Martin [http://wiki.openmoko.org/wiki/Special:Emailuser/nodge Contact me here]&lt;br /&gt;
&lt;br /&gt;
==== Leipzig ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* Natanael [http://wiki.openmoko.org/wiki/Special:Emailuser/white_gecko Contact me here]&lt;br /&gt;
* Micha [http://wiki.openmoko.org/wiki/Special:Emailuser/Adian Contact me here]&lt;br /&gt;
&lt;br /&gt;
== Hungary == &lt;br /&gt;
Good to know:&lt;br /&gt;
*discussion here: http://hup.hu/node/54588&lt;br /&gt;
*mailing list: http://groups.google.com/group/freerunner-groupsales-hungary&lt;br /&gt;
*group ordering coordinator: Dániel Vásárhelyi (see below) - please contact me on any questions&lt;br /&gt;
&lt;br /&gt;
ordering rules:&lt;br /&gt;
* anyone can add and remove him/herself on the list - new names MUST be _appended_ to the list&lt;br /&gt;
* please use real name and working e-mail address&lt;br /&gt;
* although this list is informative, please extend it _only_ if you are really serious about ordering it&lt;br /&gt;
* coordinator contacts everyone interested prior to actual buying&lt;br /&gt;
&lt;br /&gt;
=== Budapest ===&lt;br /&gt;
&lt;br /&gt;
# Ferenc 'Lion' Veres [http://wiki.openmoko.org/wiki/Special:Emailuser/kempelen Contact] lion kukac netngine pont hu&lt;br /&gt;
# Laszlo 'rka' Szabo [http://wiki.openmoko.org/wiki/Special:Emailuser/rka Contact]&lt;br /&gt;
# tg [http://wiki.openmoko.org/wiki/Special:Emailuser/tg?wpSubject=OpenMoko%20GroupSales Contact]&lt;br /&gt;
# LiRul - lirul [KUKAC] hixsplit [PONT] hu&lt;br /&gt;
# Nyosigomboc - nyos [KUKAC] nyos [PONT] homelinux [PONT] net&lt;br /&gt;
# Ludvig Adam - hunludvig [KUKAC] gmail [PONT] com&lt;br /&gt;
# [http://wiki.openmoko.org/wiki/Special:Emailuser/asdmin?wpSubject=OpenMoko%20GroupSales Dániel 'asd' Vásárhelyi]&lt;br /&gt;
# asch, asch [KUKAC] freemail [PONT] hu&lt;br /&gt;
# btamas, [http://wiki.openmoko.org/wiki/Special:Emailuser/btamas Contact]&lt;br /&gt;
# Kovács 'ka87' András, andras [kukac] csevego [pont] net&lt;br /&gt;
# pcm, pcm [kukac] freemail [pont] hu&lt;br /&gt;
# gpiros, geza [PONT] piros [KUKAC] gmail [PONT] com&lt;br /&gt;
# Áron Preisinger, appa00 [kukac] gmail [pont] com [http://wiki.openmoko.org/wiki/Special:Emailuser/appa Contact]&lt;br /&gt;
# pierre286, [http://wiki.openmoko.org/wiki/Special:Emailuser/pierre286 Contact]&lt;br /&gt;
# Hélei Zoltán, heleiz [kukac] gmail&lt;br /&gt;
# Radics Áron, raron @ vipmail . hu&lt;br /&gt;
# Laszlo Szomor [http://wiki.openmoko.org/wiki/Special:Emailuser/Lci Contact]&lt;br /&gt;
# tr3w [http://wiki.openmoko.org/wiki/Special:Emailuser/tr3w Contact]&lt;br /&gt;
# Ferenc Szomor [http://wiki.openmoko.org/wiki/Special:Emailuser/Lci Contact]&lt;br /&gt;
# Bolyóczki Zsombor, mogorva kukac tuxworx pont hu&lt;br /&gt;
# Sütő Zoltán, suto dot zoltan at t dash online dot hu&lt;br /&gt;
# Zsolt Pittmann, pittmann dot zsolt at gmail dot com&lt;br /&gt;
# KREKACS Laszlo, laszlo {pont} krekacs {pont} list {kukacka} gmail {pont} com&lt;br /&gt;
# Móker Tamás - rwind [KUKAC]  apacheweb  [PONT] hu&lt;br /&gt;
# Krisztián Kovács, [http://wiki.openmoko.org/wiki/Special:Emailuser/Krisztian Contact]&lt;br /&gt;
# Tamas Michalik, [http://wiki.openmoko.org/wiki/Special:Emailuser/dotmind Contact]&lt;br /&gt;
# Peter Roosz, [http://wiki.openmoko.org/wiki/Special:Emailuser/rope Contact]&lt;br /&gt;
# Eduard Iacoboaia, [http://wiki.openmoko.org/wiki/Special:Emailuser/Polaru Contact]&lt;br /&gt;
# László Vadász, [http://wiki.openmoko.org/wiki/Special:Emailuser/Lvadasz Contact]&lt;br /&gt;
&lt;br /&gt;
=== Kecskemét ===&lt;br /&gt;
Dániel Vásárhelyi handles transportation to Kecskemét, therefore it is not necessary to collect 10 all pieces here.&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
=== Bangalore ===&lt;br /&gt;
Status 1/10&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/sh4r4d sharad]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/gadiyar Anand Gadiyar]&lt;br /&gt;
&lt;br /&gt;
=== Delhi/NCR ===&lt;br /&gt;
Status 2/10&lt;br /&gt;
* Sameer Mohamed Thahir [http://wiki.openmoko.org/wiki/Special:Emailuser/sameerthahir Contact]&lt;br /&gt;
* Pratul Kalia (lut4rp) ''pratulkalia [at] gmail [dot] com''&lt;br /&gt;
&lt;br /&gt;
== Italy == &lt;br /&gt;
For more informations and to organize groups, visit the&lt;br /&gt;
*[http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''''Italian Freerunner Group Sales Google Group'''''] (ML/Web/Feeds) ([mailto:freerunner-italian-group-sales@googlegroups.com freerunner-italian-group-sales@googlegroups.com]).&lt;br /&gt;
&lt;br /&gt;
'''BUT please keep adding your name and email to the list below'''&lt;br /&gt;
&lt;br /&gt;
If we don't reach the 10 phones limit in each city, maybe we could place an order in the &amp;quot;most requested city&amp;quot;, and from shipping to other buyers. We'll have anyway a good discount although the &amp;quot;double-shipping&amp;quot;. ([http://thread.gmane.org/gmane.comp.handhelds.openmoko.community/10937/focus=10981 Read here for reference]).&lt;br /&gt;
&lt;br /&gt;
=== Toscana ===&lt;br /&gt;
==== Firenze (e dintorni) ====&lt;br /&gt;
Status 11/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Treviño|Marco Trevisan (Treviño)]] - [http://blog.3v1n0.net/contatti-trevino/ Contacts here]&lt;br /&gt;
* [[User:Niccolo|Niccolo Rigacci]] - ''niccolo [AT] rigacci.org''&lt;br /&gt;
* [[User:pcav|Paolo Cavallini]] - ''cavallini [AT] faunalia.it''&lt;br /&gt;
* [[User:BiggMatt|Mattia Gentile]] - ''biggmatt@hotmail.it''&lt;br /&gt;
* Elisa ''[mailto:lab@kkk.it lab@kkk.it]'' (Empoli)&lt;br /&gt;
* [[User:Sugacapra|Sugacapra]] - ''alessio.chemeri [AT] gmail.com''&lt;br /&gt;
* [[User:tom_morello|Carlo Ascani (Morello)]] - ''carlo.ratm [AT] gmail.com''&lt;br /&gt;
* [[User:marrano|Stefano Burchietti (Marrano)]] - ''stefano [AT] nontelodiromai.it''&lt;br /&gt;
* [[User:Geli86|Matteo Gelimeri X 2 (Imola - Bologna)]] - ''gelimatteo [AT] gmail.com''&lt;br /&gt;
* [[User:dcoppa|David Coppa (Borgo a Buggiano, Pistoia)]] - ''dcoppa@gmail.com''&lt;br /&gt;
&lt;br /&gt;
=== Lombardia ===&lt;br /&gt;
&lt;br /&gt;
==== Milano e dintorni ====&lt;br /&gt;
Status 24/30&lt;br /&gt;
&lt;br /&gt;
[[GroupSales_Milano_e_dintorni|Organizzazione preliminare]] DEPRECATA lì 11 Maggio 2008.&lt;br /&gt;
&lt;br /&gt;
Da ora in poi usiamo il [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''].&lt;br /&gt;
&lt;br /&gt;
Ad ogni modo, per stabilire le precedenze nella prenotazione dei pacchi da 10 pezzi&amp;lt;br&amp;gt;&lt;br /&gt;
'''continuate ad aggiugerVi nella lista qui sotto'''&lt;br /&gt;
&lt;br /&gt;
*'''Gruppo 1'''&lt;br /&gt;
*# Marcello Gorla [mailto:marcello.gorla@gmail.com Contacts here] (Milano città)&lt;br /&gt;
*# Maxxer [mailto:maxxer@yetopen.it maxxer@yetopen.it] (Lecco)&lt;br /&gt;
*# Pietro Montorfano [mailto:monto84@gmail.com monto84@gmail.com] (from como)&lt;br /&gt;
*# Gianluigi Belli - [http://wiki.openmoko.org/wiki/Special:Emailuser/Pulciux Contacts here] (Milano)&lt;br /&gt;
*# Michele Castellano - [http://wiki.openmoko.org/wiki/Special:Emailuser/mubumba Contacts here] (Milano)&lt;br /&gt;
*# Maurizio Lipreri -  [http://wiki.openmoko.org/wiki/Special:Emailuser/Maldido Contacts here]( Como )&lt;br /&gt;
*# Guido Conaldi - [http://wiki.openmoko.org/wiki/Special:Emailuser/skepz Contacts here] (Varese)&lt;br /&gt;
*# [[User:Furester|Igor Scabini (furester)]] - [http://wiki.openmoko.org/wiki/Special:Emailuser/Furester Contacts here] (Milano)&lt;br /&gt;
*# Dario Panico [http://wiki.openmoko.org/wiki/Special:Emailuser/Dareus Contacts here] (Busto Arsizio, VA)&lt;br /&gt;
*# Marco Zanzotera (Milano città) &lt;br /&gt;
&lt;br /&gt;
*'''Gruppo 2'''&lt;br /&gt;
*# Francesco Ricci (Milano, Dipartimento di Scienze dell'Informazione, via Comelico 39/41) - possibile punto di ricezione/distribuzione - [http://wiki.openmoko.org/wiki/Special:Emailuser/Alfa21 Contacts here]&lt;br /&gt;
*# Danilo Sia (Birdack) [http://wiki.openmoko.org/wiki/Special:Emailuser/Birdack Contacts here] (Milano città)&lt;br /&gt;
*# Federico Belvisi - [http://wiki.openmoko.org/wiki/Special:Emailuser/Armalite Contacts here] (Legnano, MI/Varese)&lt;br /&gt;
*# Francesco Leserri - [http://wiki.openmoko.org/wiki/Special:Emailuser/Francy Contacts here] (Vimercate, MI)&lt;br /&gt;
*# [[User:Cga|Callea Gaetano Andrea]] (Milano zona Forlanini) [http://wiki.openmoko.org/wiki/Special:Emailuser/Cga Contacts here]&lt;br /&gt;
*# [[User:Pietrao| Pietro Isotti]] - [mailto:isottipietro@gmail.com isottipietro@gmail.com]&lt;br /&gt;
*# Baz - [mailto:buzzi.paolo@gmail.com buzzi.paolo@gmail.com]&lt;br /&gt;
*# Mario Signorino ('''2 unità''') ([[User:Dodiesis|Dodiesis]])- [mailto:mario@sgrunt.net mario@sgrunt.net] (Milano - possibile punto di ricezione alternativo )&lt;br /&gt;
*# [[user:Stemby|Carlo Stemberger]] (Stemby) - '''carlo'''&amp;lt;small&amp;gt;dot&amp;lt;/small&amp;gt;'''stemberger'''&amp;lt;small&amp;gt;at&amp;lt;/small&amp;gt;'''gmail'''&amp;lt;small&amp;gt;dot&amp;lt;/small&amp;gt;'''com''' (Missaglia, LC)&lt;br /&gt;
&lt;br /&gt;
*Gruppo 3 - incompleto&lt;br /&gt;
*# Marco Crobu - [http://wiki.openmoko.org/wiki/Special:Emailuser/Tron.tron Contacts here] (Zogno, BG)&lt;br /&gt;
*# Maurizio [[User:Trizio!|&amp;quot;Trizio!&amp;quot;]] Ciceri (Novara)&lt;br /&gt;
*# Gianluca [mailto:cimi.luca@gmail.com Contacts here] (Lugano-CH)&lt;br /&gt;
*# Matteo Tarantino [mailto:matteo.tarantino@gmail.com Contacts here] (Milano città)&lt;br /&gt;
*# Jacopo [mailto:jacopo.anselmi@gmail.com] (Milano Citta')&lt;br /&gt;
&lt;br /&gt;
=== Piemonte ===&lt;br /&gt;
==== Torino (and province) ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
Per coordinamento [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''] (Torino)&lt;br /&gt;
&lt;br /&gt;
Precedenza è stabilita in base all'ordine di aggiunta nella lista inizale&amp;lt;br&amp;gt;&lt;br /&gt;
*'''Gruppo 1''' (prime persone a fare l'ordine):&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Claudio Carnino (jollyr0g3r AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Alessandro Degano (a.degano AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Enrico Pigozzi (videokill71 AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Max Ciavarella - [http://wiki.openmoko.org/wiki/Special:Emailuser/Cicchetebom Contacts here]&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Giuseppe Barbieri (elect86 at gmail dot com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Riccardo Issoglio (riccardo.issoglio AT polito DOT it)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Flavio Pastore [http://wiki.openmoko.org/wiki/Special:Emailuser/Iron_Bishop Contacts here]&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Michele Renda ( mic DOT renda AT email DOT it )&amp;lt;br&amp;gt;&lt;br /&gt;
2 x Katjia Mirri (gattoniglia AT gmail DOT com ) two items (ne voglio due)!!&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*'''Gruppo 2''' (coloro che non ci stanno nel primo gruppo o che vogliono aspettare che il primo gruppo abbia ricevuto il telefono):&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Giovanni Di Mingo ( pino_otto AT yahoo DOT com )&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Marco Forasacco (zer0fil3 AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Gabriele Martino (pierino DOT the DOT living DOT joke AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Massimo Valerio (my AT massimovalerio DOT it)&amp;lt;br&amp;gt;&lt;br /&gt;
...&amp;lt;br&amp;gt;&lt;br /&gt;
(aggiungersi chi è nuovo)&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-------------------------------------&lt;br /&gt;
LISTA ORIGINALE (24/05/08 14:48):&lt;br /&gt;
* Claudio Carnino &amp;lt;br/&amp;gt; (jollyr0g3r AT gmail DOT com)&lt;br /&gt;
* Alessandro Degano &amp;lt;br/&amp;gt; (a.degano AT gmail DOT com)&lt;br /&gt;
* Enrico Pigozzi &amp;lt;br/&amp;gt; (videokill71 AT gmail DOT com)&lt;br /&gt;
* Max Ciavarella - [http://wiki.openmoko.org/wiki/Special:Emailuser/Cicchetebom Contacts here]&lt;br /&gt;
* Giuseppe Barbieri (elect86 at gmail dot com)&lt;br /&gt;
* Riccardo Issoglio &amp;lt;br/&amp;gt; (riccardo.issoglio AT polito DOT it)&lt;br /&gt;
* Flavio Pastore [http://wiki.openmoko.org/wiki/Special:Emailuser/Iron_Bishop Contacts here]&lt;br /&gt;
* Michele Renda ( mic DOT renda AT email DOT it )&lt;br /&gt;
* Katjia Mirri (gattoniglia AT gmail DOT com ) two items (ne voglio due)!!&lt;br /&gt;
* Giovanni Di Mingo ( pino_otto AT yahoo DOT com )&lt;br /&gt;
* Marco Forasacco &amp;lt;br/&amp;gt; (zer0fil3 AT gmail DOT com)&lt;br /&gt;
* Gabriele Martino &amp;lt;br/&amp;gt; (pierino DOT the DOT living DOT joke AT gmail DOT com)&lt;br /&gt;
* Massimo Valerio &amp;lt;br/&amp;gt; (my AT massimovalerio DOT it)&lt;br /&gt;
--------------------------------------&lt;br /&gt;
&lt;br /&gt;
=== Trentino-Alto Adige ===&lt;br /&gt;
==== Trento ====&lt;br /&gt;
Status 4/10&lt;br /&gt;
&lt;br /&gt;
* Vincenzo D'Andrea (vincenzo.dandrea AT gmail DOT com) &amp;lt;br/&amp;gt; (also Verona is OK - and I can carry others' phone VR to TN or viceversa)&lt;br /&gt;
* 1x [[User:Tarch|Tarcisio Fedrizzi]] (tarcisio.fedrizzi AT gmail DOT com)&lt;br /&gt;
* Emanuele Olivetti (emanuele CHIOCCIOLA relativita PUNTO com)&lt;br /&gt;
* Marco Ciampa (ciampix (*) libero (*) it)&lt;br /&gt;
&lt;br /&gt;
=== Friuli Venezia Giulia ===&lt;br /&gt;
==== Trieste ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* dorje [mailto:dorje@libero.it dorje@libero.it] - [[User:dorje|dorje]]&lt;br /&gt;
&lt;br /&gt;
=== Veneto ===&lt;br /&gt;
Status: 14/20&lt;br /&gt;
&lt;br /&gt;
==== Verona ====&lt;br /&gt;
&lt;br /&gt;
* Persegat [mailto:persegat@alice.it persegat@alice.it] - [[User:Pecce|Pecce]]&lt;br /&gt;
* Sylar91 [mailto:sylar1991@gmail.com sylar1991@gmail.com] - [[User:Sylar91|Sylar91]]&lt;br /&gt;
* Marco Franceschetti - [http://wiki.openmoko.org/wiki/Special:Emailuser/vonfritz Contacts here]&lt;br /&gt;
* AleksFalcone [mailto:aleks.falcone@gmail.com aleks.falcone@gmail.com] - [[User:AleksFalcone|AleksFalcone]]&lt;br /&gt;
* Roberto Previdi [mailto:hariseldon78(AT)gmail.com hariseldon78(AT)gmail.com] - [[User:hariseldon78|hariseldon78]] (also Milano is ok)&lt;br /&gt;
&lt;br /&gt;
==== Vicenza ====&lt;br /&gt;
&lt;br /&gt;
* Michele [mailto:michele@cooperativabiosphaera.it michele(at)cooperativabiosphaera.it] - &amp;lt;br /&amp;gt;Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Paolo [mailto:paolo.sartore@gmail.com paolo.sartore(at)gmail.com]&amp;lt;br /&amp;gt; Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Renato [mailto:wasgiventofly@gmail.com wasgiventofly AT gmail DOT com]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Sandro [http://wiki.openmoko.org/wiki/Special:Emailuser/vigerty contact me here]&amp;lt;br /&amp;gt; Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Marco [mailto:marco.napetti@linux.it marco.napetti(at)linux.it]&amp;lt;br /&amp;gt; Also Padova and Verona are ok.&lt;br /&gt;
&lt;br /&gt;
==== Venezia ====&lt;br /&gt;
&lt;br /&gt;
* Tommaso [mailto:tommaso.gardumi@gmail.com tommaso.gardumi@gmail.com] - [[User:Tobarello|Tobarello]] &amp;lt;br /&amp;gt;Also Padova, Vicenza &amp;amp; Trento are ok.&lt;br /&gt;
&lt;br /&gt;
==== Treviso ====&lt;br /&gt;
&lt;br /&gt;
* Dario [mailto:aliasbrain@gmail.com aliasbrain(at)gmail.com] - [[User:Rastafan|Rastafan]] &amp;lt;br /&amp;gt;one, maybe two.&lt;br /&gt;
&lt;br /&gt;
* Pedro [mailto:paguilar@junkerhq.net paguilar(at)junkerhq.net] - [[User:Paguilar|Paguilar]] &amp;lt;br/&amp;gt;Also Padova and Vicenza are ok.&lt;br /&gt;
&lt;br /&gt;
* mr [mailto:maurizio.rottin@gmail.com maurizio.rottin a-t gmail d-o-t com] - [[User:Mr|Mr]] &amp;lt;br/&amp;gt;one for sure, maybe two&lt;br /&gt;
&lt;br /&gt;
=== Emilia Romagna ===&lt;br /&gt;
Status : 6/10&lt;br /&gt;
==== Parma ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Delian|Marco Albanese]] [mailto:delian2@gmail.com delian2@gmail.com] For Me, it's ok for the decentralized shipment ( Milano for example :) ).&lt;br /&gt;
&lt;br /&gt;
* [[User:Hachreak|Leonardo Rossi]] ssj3gokou AT libero Dot it Also for me it's ok the decentralized shipping.&lt;br /&gt;
&lt;br /&gt;
==== Ravenna ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fano|Stefano Ronconi]] fanharlok AT libero Dot it decentralized shipping is ok.&lt;br /&gt;
* vagamente AT gmail DOT com (even hub if it's necessary...). ( se ti vanno bene ambo le citta' basta dirlo tra parentesi. Cosi', si fa confusione :) )&lt;br /&gt;
&lt;br /&gt;
==== Bologna ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:nixy_999|Lorenzo]] nixy_999 AT yahoo Dot it Also for me it's ok the decentralized shipping.&lt;br /&gt;
* vagamente AT gmail DOT com (even hub if it's necessary...).&lt;br /&gt;
* [[User:lord.of.the.dimm|Mauro]] lord.of.the.dimm AT gmail DOT com decentralized shipping: OK.&lt;br /&gt;
&lt;br /&gt;
=== Puglia ===&lt;br /&gt;
==== Lecce ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Morpheus90|Morpheus90]] [mailto:ugopiemontese@rudiaelinux.com ugopiemontese@rudiaelinux.com]&lt;br /&gt;
* [[User:Italyanker|italyanker]] [mailto:italyanker@gmail.com italyanker@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==== Bari ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fradeve11|Fradeve11]] [mailto:fradeve@ubuntu-it.org fradeve@ubuntu-it.org]&lt;br /&gt;
&lt;br /&gt;
=== Abruzzo ===&lt;br /&gt;
==== Pescara ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* ZarZ [mailto:zarz25@gmail.com zarz25@gmail.com]&lt;br /&gt;
&lt;br /&gt;
=== Campania ===&lt;br /&gt;
==== Caserta (and province) ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* fenoxxx [mailto:fenoxxx@gmail.com] - Aversa&lt;br /&gt;
&lt;br /&gt;
=== Lazio ===&lt;br /&gt;
==== Roma ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
Per coordinamento [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''] (Roma)&lt;br /&gt;
&lt;br /&gt;
La precedenza è stabilita in base all'ordine di aggiunta nella lista inizale&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Gruppo 1 (completo):&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Hire X 2 [mailto:hiretto@gmail.com hiretto@gmail.com] (Roma)&lt;br /&gt;
* Darkbasic X 1 [mailto:darkbasic4(at)gmail darkbasic4(at)gmail] (Ancona)&lt;br /&gt;
* zione X 1 [mailto:alessio.filipponio@gmail.com alessio.filipponio@gmail.com](Roma)&lt;br /&gt;
* AntoMan X 1 [mailto:obe_65@yahoo.it AntoMan](Roma)&lt;br /&gt;
* Christian X 1(Gino46) [mailto:christian.marzola@alice.it] (ferrara) Qualcuno me lo dovrebbe spedire. || Ci pensa Hire a spedirli a chi non è di Roma, mettete semplicemente in conto 8/9 euro in più per la spedizione.&lt;br /&gt;
* Tempix X 1 [mailto:tempix11@gmail.com tempix11@gmail.com] (Ancona)&lt;br /&gt;
* 6xsempre X 1 [mailto:6xsempre@jumpy.it] (frosinone)&lt;br /&gt;
* lynx1673 X1 [mailto: acarfi at yahoo dot com] - lynx sei di Roma?&lt;br /&gt;
* PauLoX x 1 [mailto:paulox@paulox.net paulox@paulox.net] (Pescara) Lavoro a Roma durante la settimana&lt;br /&gt;
&lt;br /&gt;
=== Liguria ===&lt;br /&gt;
==== Genova ====&lt;br /&gt;
Status 5/10&lt;br /&gt;
&lt;br /&gt;
* Luca Maranzano X 1 (liuk AT linux DOT it) [[User:liuk|liuk]]&lt;br /&gt;
* Lorenzo Fornara X 1 (fw1987 AT hotmail DOT it)&lt;br /&gt;
* Stefano Cutelle' X 1 (staff@ascservices.it) [[User:ascservices|ascservices]]&lt;br /&gt;
* Andrea De Gaetano X 1 (dega1999 AT gmail DOT com) [[User:Dega1999|Dega1999]]&lt;br /&gt;
* Salvo Schiavone X 1 (salvoschiavone AT gmail DOT com [[User:Salvador|Salvador]]&lt;br /&gt;
&lt;br /&gt;
=== Sicilia ===&lt;br /&gt;
==== Palermo ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
* Giorgio Marciano' X 1 [mailto:giorgio.marciano@email.it giorgio]&lt;br /&gt;
* Michele Puccio X 1 [mailto:narkos@iol.it michele]&lt;br /&gt;
* Roberto Calandra X 1 [mailto:isokazi@yahoo.it roberto]&lt;br /&gt;
* Vincenzo Moreno Luna X 6 [mailto:ciop85plus@hotmail.com vincenzo]&lt;br /&gt;
* Daniele Lupo X 1 [mailto:danwolf80@libero.it daniele]&lt;br /&gt;
&lt;br /&gt;
==== Messina ====&lt;br /&gt;
Status 6/10&lt;br /&gt;
&lt;br /&gt;
* Melug X 6 [mailto:suuuper@messinalug.org MeLug]&lt;br /&gt;
&lt;br /&gt;
=== Calabria ===&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
==== Catanzaro ====&lt;br /&gt;
* Carlo Mangani X 1 [mailto:carlo.mangani@gmail.com carlo.mangani@gmail.com] - Lamezia Terme&lt;br /&gt;
&lt;br /&gt;
==== Cosenza ====&lt;br /&gt;
* Francesco Portus X 1 [mailto:portusgraphics@gmail.com portusgraphics@gmail.com] - Bisignano (Cosenza)&lt;br /&gt;
&lt;br /&gt;
=== Sardegna ===&lt;br /&gt;
==== Cagliari ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Panta x 1 [[User:Panta]]&lt;br /&gt;
Viaggio per tutta l'Isola, per cui, nel caso in cui arrivassimo a 10 utenti...&lt;br /&gt;
&lt;br /&gt;
== Macedonia ==&lt;br /&gt;
=== Skopje ===&lt;br /&gt;
Status 1/10&lt;br /&gt;
* Kristijan Krsteski 1/10 &amp;lt;br /&amp;gt; [[User:neutrino]] &amp;lt;br /&amp;gt; [mailto:kristijan.krsteski@gmail.com]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== México ==&lt;br /&gt;
=== Ciudad de México ===&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Kozapatista [[Special:Emailuser/User:kozapatista|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Ciudad Victoria ===&lt;br /&gt;
Status 3/10&lt;br /&gt;
&lt;br /&gt;
* 3x  Gregorio Toscano [mailto:gtoscano@cinvestav.mx email]&lt;br /&gt;
&lt;br /&gt;
== [http://wiki.openmoko.org/wiki/Talk:GroupSales#The_Netherlands The Netherlands] ==&lt;br /&gt;
(Discuss this group sale on the [http://wiki.openmoko.org/wiki/Talk:GroupSales#The_Netherlands talk page])&lt;br /&gt;
&lt;br /&gt;
* Marijn Kruisselbrink 1 [[Special:Emailuser/User:mkruisselbrink|Contact]]&lt;br /&gt;
* Andy Powell 1/10 [[Special:Emailuser/User:ScaredyCat|Contact]]&lt;br /&gt;
* Arjan Veenstra 1/10 [[User:AVee]] [[Special:Emailuser/User:AVee|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Gelderland ===&lt;br /&gt;
&lt;br /&gt;
==== Nijkerk ====&lt;br /&gt;
* [[User:Nicolas|Nico Veenkamp]] (Nijkerk 1x) [[Special:Emailuser/User:Nicolas|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Nijmegen ====&lt;br /&gt;
* [[User:A.dre|André Disselhorst]] (Nijmegen 1x) [[Special:Emailuser/User:A.dre|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Groningen ===&lt;br /&gt;
&lt;br /&gt;
==== Haren ====&lt;br /&gt;
* [[User:akrabbe|Albert Krabbe]] (Haren 1x) [[Special:Emailuser/User:akrabbe|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Limburg ===&lt;br /&gt;
&lt;br /&gt;
==== Griendtsveen ====&lt;br /&gt;
* [[User:KenSentMe|Jeroen van de Nieuwenhof]] (Griendtsveen 1x) [[Special:Emailuser/User:KenSentMe|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Noord-Brabant ===&lt;br /&gt;
&lt;br /&gt;
==== Bergen op Zoom ====&lt;br /&gt;
* [[User:Madjo|Marcel de Jong]] 1/10 [[Special:Emailuser/User:Madjo|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Eindhoven ====&lt;br /&gt;
* Christ van Willegen 1 [[User:ChristW]]&lt;br /&gt;
* Jan van Nijnatten 1 [[Special:Emailuser/User:Javany|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Noord Holland ===&lt;br /&gt;
&lt;br /&gt;
==== Amsterdam ====&lt;br /&gt;
* Michel van Horssen 1/10 [[Special:Emailuser/User:mivaho|Contact]]&lt;br /&gt;
* Frank Richter 1 [[Special:Emailuser/User:res|Contact]]&lt;br /&gt;
* Eric Smith 1/10 [[User:Eric Smith]]&lt;br /&gt;
* Buddy Baars 1 [[Special:Emailuser/User:Budster|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Beverwijk ====&lt;br /&gt;
* Theo Martens 1x [[Special:Emailuser/User:T_M|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Bussum ====&lt;br /&gt;
* Remco van Zuijlen 1x [[Special:Emailuser/User:Remco|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Overijssel ===&lt;br /&gt;
&lt;br /&gt;
==== Deventer ====&lt;br /&gt;
* Jan de Haan 1/10 [[User:Jan de Haan]] [[Special:Emailuser/User:Jan de Haan|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Enschede ====&lt;br /&gt;
* Peter Hageman 1x [[Special:Emailuser/User:PingPong|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Hengelo ====&lt;br /&gt;
* Sander Hoentjen 1/10 [[Special:Emailuser/User:Tjikkun|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Zwolle ====&lt;br /&gt;
* Boudewijn 1/10 [[User:Boudewijn|empty user page]] [[Special:Emailuser/User:Boudewijn|Contact]]; possibly got a second person interested&lt;br /&gt;
&lt;br /&gt;
=== Zuid-Holland ===&lt;br /&gt;
&lt;br /&gt;
==== Rijswijk ====&lt;br /&gt;
* Fernando Martins 1x [[User:fmartins]]  [[Special:Emailuser/User:fmartins|Contact]]&lt;br /&gt;
* Igor 1x [[User:igorn]] [[Special:Emailuser/User:igorn|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Zoetermeer ====&lt;br /&gt;
* S.Rademaker 1x [[User:S.rademaker]] [[Special:Emailuser/User:S.rademaker|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Utrecht ===&lt;br /&gt;
&lt;br /&gt;
==== Utrecht ====&lt;br /&gt;
* Eric Spierings 1/10 [[Special:Emailuser/User:ericsp|Contact]]&lt;br /&gt;
* Peter van de Werken 1/10 [[Special:Emailuser/User:PWerken|Contact]]&lt;br /&gt;
* Kenny van Wanrooij 1/10 [[Special:Emailuser/User:kenneth|Contact]]&lt;br /&gt;
* Eduard Goudakov 1/10 [[Special:Emailuser/User:VreVo|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
27/30&lt;br /&gt;
&lt;br /&gt;
== New Zealand ==&lt;br /&gt;
As Telecom are using the 850MHz network for their GSM network, and Vodafone/northelia (possibly aka orcon) are using 900/1800MHz, please state which version you want. This may need more research, I'm not 100%; see [http://www.gsmworld.com/roaming/gsminfo/cou_nz.shtml] for more info&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Based on info from steve (openmoko marketing) concerning weight and size, shipping via UPS will be about US$185 (NZ$23 each phone) to Auckland.&amp;lt;br&amp;gt;&lt;br /&gt;
UPS are far from the cheapest, but (again according to steve), OM have a contract with them, so this is what we are stuck with&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Someone on the community list suggested using [http://www.myus.com], a shipping company that will re-post items overseas at decent rates. They claim US$66 for a 3kg package, or NZ$8 per phone. Of course, the cost of shipping the phone from OM to the shipping company has to be added in as well.&lt;br /&gt;
&lt;br /&gt;
As of 2008-06-14, US$369 is worth NZ$492&lt;br /&gt;
&lt;br /&gt;
import duty on mobile phones is 0%[http://www.customs.govt.nz/importers/Private+Importers/Customs+Charges.htm], and GST is 12.5% so the GST added to each phone will be NZ$64; 12.5% * (477 + 23), cos we pay GST on postage too...&lt;br /&gt;
&lt;br /&gt;
So, the total cost of a Freerunner as part of a 10 pack, will be:&amp;lt;br&amp;gt;&lt;br /&gt;
492 + 23 + 64&amp;lt;br&amp;gt;&lt;br /&gt;
= '''NZ$579'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
+ any possible charges to get it posted elsewhere in New Zealand&lt;br /&gt;
&lt;br /&gt;
=== Auckland ===&lt;br /&gt;
==== [[Auckland group sales|Auckland]] ====&lt;br /&gt;
Status:10 phones requested, the required minimum (10 phones) is reached, but more buyers are still welcome to join.&lt;br /&gt;
*Rob Paulson [[User:Myfanwy]] [mailto:robin.paulson@gmail.com] 900MHz&lt;br /&gt;
**i'm quite happy to organise the purchase, if no-one has any objections. to ease any worries about me running off with the money, we could use an escrow service such as [http://safetrader.co.nz], or paypal. or does anyone have any other ideas?&lt;br /&gt;
*Simon Wells [[User:Swel024]] 900MHz&lt;br /&gt;
*Jeremy List [[User:Jeremy-list]] mailto:quick.dudley@gmail.com (Wellington, not Auckland, will pay for courier) 900MHz&lt;br /&gt;
*David Murrell [[User:Viddy]] - [mailto:dmurrell@waikato.ac.nz] I'm in Hamilton, either courier, or I'll drive up :) 900MHz&lt;br /&gt;
*Jeremy Gray [[User:Bogdan237]] [mailto:jgra163@ec.auckland.ac.nz] Auckland, 900MHz&lt;br /&gt;
*Xuân Baldauf [[User:xbaldauf]] [mailto:xuan--2008.05--GroupSales--wiki.openmoko.org@baldauf.org] Auckland CBD, 900MHz+1800MHz GSM with an [http://www.ak2.com.tw/pd_main.asp?sg_id=11 '''EU''' charger clip] instead of an Australian one (if this is in need to be selected). This is &amp;lt;u&amp;gt;conditional&amp;lt;/u&amp;gt;: the transaction must complete by 2008-06-30, else I cannot participate, because I'm leaving the country afterwards.&lt;br /&gt;
*Paul Roe [[User:Par08]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Par08 contact me here] Christchurch, 2 x 900MHz&lt;br /&gt;
*Dave Lane [[User:dangerpossum]] [http://wiki.openmoko.org/wiki/Special:Emailuser/dangerpossum contact] Christchurch, 1 x 900MHz + 1800MHz GSM&lt;br /&gt;
*Paul Hunkin [[User:paulhunkin]] [mailto:pwh4@cs.waikato.ac.nz Contact] Hamilton (I'll pay for a courier), 1 x 900MHz.&lt;br /&gt;
*Paul Sandkuijl [[User:Edictor]] [http://www.edictor.com/contact.php Contact me here] Napier (I'll pay for postage to Napier from Auckland) and I also suggest a PayPal/Safetrader similar service, 1 Vodafone compatible 900/1800MHz.&lt;br /&gt;
&lt;br /&gt;
=== Wellington ===&lt;br /&gt;
==== [[Wellington group sales|Wellington]] ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
*Andrew Stephen [[User:lizardb0y]] [http://wiki.openmoko.org/wiki/Special:Emailuser/lizardb0y email me] Wellington, 1 x 900/1800Mhz GSM Vodafone compatible.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
=== Nordland ===&lt;br /&gt;
==== Bodø ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:AlecTBM|Alexander Frøyseth]] [mailto:alexander.froyseth@gmail.com alexander.froyseth@gmail.com]&lt;br /&gt;
* Ole Marius&lt;br /&gt;
* Stian Vading&lt;br /&gt;
* [[User:Kolbjorn.Dahle|Kolbjorn Dahle]][mailto:kolbjorn@dahlenett.org]&lt;br /&gt;
&lt;br /&gt;
=== Sør-Trøndelag ===&lt;br /&gt;
==== Trondheim ====&lt;br /&gt;
Status 13/20&lt;br /&gt;
&lt;br /&gt;
*[[User:andy000|Andreas Kalvå]] [mailto:andy@samfundet.no andy@samfundet.no]&lt;br /&gt;
Send mail om du er interessert.&lt;br /&gt;
&lt;br /&gt;
=== Østlandet ===&lt;br /&gt;
==== Oslo, Akershus, Buskerud, Vestfold ====&lt;br /&gt;
Status 27/30 (+2?)&lt;br /&gt;
&lt;br /&gt;
* [[User:Ixian|Heikki Sørum]] [mailto:heikkis@matnat.uio.no] &amp;lt;br/&amp;gt; Interessert? mail meg.&lt;br /&gt;
* [[User:Bobkare|Knut Arne Bjørndal]] [mailto:bob@cakebox.net]&lt;br /&gt;
* [[User:StianEllingsen|Stian Ellingsen]]&lt;br /&gt;
&lt;br /&gt;
==== Østfold ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:MrBlonde|Petter Nygård]] [mailto:pettnyg@frisurf.no] &amp;lt;br /&amp;gt;Interessert? -&amp;gt; Mail meg....&lt;br /&gt;
* Eirik Lavik&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&lt;br /&gt;
* Special group buy site: https://www.kumulator.pl/show/group/35 (in edition moment: 24/30)&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
Portuguese who are associates of ANSOL, please consider joining [[TeamANSOL]] (currently 3/10 members).&lt;br /&gt;
&lt;br /&gt;
We also need to have a cost estimation for Portuguese customs (like the Australians did). 20% sales tax + customs tax is to be expected both for individual or bulk sales, because the price is quite high. But freedom is priceless :)&lt;br /&gt;
&lt;br /&gt;
=== Aveiro ===&lt;br /&gt;
==== Aveiro ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Ruben|Ruben Mendes]] ([[TeamANSOL]])&lt;br /&gt;
&lt;br /&gt;
=== Lisboa ===&lt;br /&gt;
==== Lisboa ====&lt;br /&gt;
Status : 6/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Danielblues Daniel Branco]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Knuckles Ivo Anjo]&lt;br /&gt;
* [[User:Pedrosilva|Pedro Silva]]&lt;br /&gt;
* Ricardo Sousa ([[TeamANSOL]])&lt;br /&gt;
* [[User:RuiSeabra|Rui Seabra]] ([[TeamANSOL]])&lt;br /&gt;
* [[User:Vasco|Vasco Névoa]]&lt;br /&gt;
&lt;br /&gt;
=== Porto ===&lt;br /&gt;
==== Porto ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:villate|Jaime Villate]] ([[TeamANSOL]])&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
If insufficient number of people, orders could be merged and remailed perhaps.&lt;br /&gt;
&lt;br /&gt;
Domestic remailing with Posten as A-class mail of a letter (criteria: length+width+height max 900 mm) weighing max 1 kg, without insurance should [http://www.posten.se/foretag/vara_tjanster/postageguide/postguideLetterDom.jspv cost 44 SEK]. 50 SEK more for insurance.&lt;br /&gt;
&lt;br /&gt;
If we end up with more than one 10-pack in Sweden, my guess is that it would probably pay to order everything in one shipment to one address in Sweden to save on the international shipping, and then remail domestically.&lt;br /&gt;
&lt;br /&gt;
=== Götaland ===&lt;br /&gt;
==== Göteborg ====&lt;br /&gt;
&lt;br /&gt;
* [[User:Fwendt|Fredrik Wendt]] [[Special:Emailuser/Fwendt|Contact]]/wendt.se&lt;br /&gt;
&lt;br /&gt;
==== Malmö ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Lars Jarlvik &amp;lt;br /&amp;gt; mailto:lars@larsfactory.se&lt;br /&gt;
&lt;br /&gt;
=== Svealand ===&lt;br /&gt;
==== Stockholm ====&lt;br /&gt;
Status : 9/10&lt;br /&gt;
&lt;br /&gt;
* Erland Lewin &amp;lt;br /&amp;gt; mailto:erland@lewin.nu&lt;br /&gt;
* Simon Kågström &amp;lt;br /&amp;gt; mailto:simon.kagstrom@gmail.com&lt;br /&gt;
* Ingvaldur Sigurjonsson &amp;lt;br /&amp;gt; mailto:ingi@ultimalabor.se&lt;br /&gt;
* Adam Johansson &amp;lt;br /&amp;gt; mailto:adam@sollentunaholm.se&lt;br /&gt;
* Lowe Schmidt &amp;lt;br /&amp;gt; mailto:lowe.schmidt@gmail.com&lt;br /&gt;
* [[User:Dex|Johan Eklundh]]&amp;lt;br/&amp;gt; Mail automated via contact page.&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/esbjorn Esbjörn Dominique]&lt;br /&gt;
* Elis Axelsson &amp;lt;br /&amp;gt; mailto:elis.axelsson@gmail.com&lt;br /&gt;
* Johan Erlands &amp;lt;br /&amp;gt; mailto:johan.erlands@gmail.com&lt;br /&gt;
&lt;br /&gt;
==== Örebro ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Anders Petersson &amp;lt;br /&amp;gt; [mailto:demitar@worldforge.org demitar@worldforge.org]&lt;br /&gt;
&lt;br /&gt;
==== Västerås ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
* Jörgen Lidholm, could join the Falun/Borlänge or Stockholm group &amp;lt;br /&amp;gt; [mailto:jorgen.lidholm@gmail.com]&lt;br /&gt;
* John Törnblom, can also join the Stockholm group &amp;lt;br /&amp;gt; [mailto:f04jto@student.lth.se]&lt;br /&gt;
&lt;br /&gt;
==== Falun &amp;amp; Borlänge ====&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openstreetmap.org/index.php/User:Jth Johan Thelmén], Åke Hoff &amp;amp; a demo/backup&lt;br /&gt;
* [http://wiki.openstreetmap.org/index.php/User:eagle87 Pär Eriksson], Borlänge&lt;br /&gt;
&lt;br /&gt;
=== Norrland ===&lt;br /&gt;
==== Umeå ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Zash|Zash]] [[Special:Emailuser/Zash|Contact]]&lt;br /&gt;
* [[User:Benjamin|Benjamin]] [[Special:Emailuser/Benjamin|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Luleå ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Mjukis|Mjukis]] [[Special:Emailuser/Mjukis|Contact]] - 2 Units. Can also join the Malmö group order.&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&lt;br /&gt;
François Bianco is trying to create a new group of 10 (will be mostly for French Switzerland). -&amp;gt; The group moved to the EPFL group, which will try to reach 20 persons. --[[User:Fbianco|Fbianco]] 11:42, 11 June 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gabriel Ambuehl would volunteer to order the initial 10pack. &amp;lt;- still accurate ? &amp;lt;br /&amp;gt;&lt;br /&gt;
-- Gabriel will not organize the 10packs for Zürich due to not being in Switzerland. We are in contact to find a solution so please wait until we know what to do. Order in Germany (each for himself or as a group, not clear yet) could be as cheap as a 10pack. We are in contact with pulster.de and will be contacted form pulster about the price. We will contact you guys in the Zürich list as soon as we know more --[[User:Tuxfux.ch|Tuxfux.ch]] 10:26, 6 June 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Alexandre Ghisoli '''will not''' organize the second 10pack, since the order moved in the Lucca's group.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Luca Capello could organize the third 10pack (mostly for French Switzerland). &amp;lt;br /&amp;gt;&lt;br /&gt;
Mathieu will probably organisze the 4th 10pack. (Lausanne) &amp;lt;br /&amp;gt;&lt;br /&gt;
All the 4 with payment in advance (a 10pack will cost approx 3'800 USD). &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Probably we will organize shipping, if we cannot all move to Zürich/Genève to get our Neo.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Customs and Postage ===&lt;br /&gt;
I called the [http://www.ezv.admin.ch/index.html?lang=en Swiss Federal Customs Administration] and it seems that we only need to pay VAT (7.6%) and the UPS taxes as well (since the parcel will be sent through UPS).  Thus I called [http://www.ups.com/content/ch/en/contact/ UPS] and it seems that UPS directly pays the VAT instead of the customer, then asking the customer for refund (plus a fixed tax of EUR13.00).  So I think the following per-phone cost for a Swiss bulk order should be a good estimate.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
 |'''Bulk Order'''&lt;br /&gt;
 |'''USD'''&lt;br /&gt;
 |'''CHF'''&lt;br /&gt;
 |-&lt;br /&gt;
 |Customs Value (Cval)&lt;br /&gt;
 |3690.00&lt;br /&gt;
 |3837.60&lt;br /&gt;
 |-&lt;br /&gt;
 |Postage&lt;br /&gt;
 |160.00&lt;br /&gt;
 |166.40&lt;br /&gt;
 |-&lt;br /&gt;
 |Value of Taxable Importation (VoTI) = Cval+Postage&lt;br /&gt;
 |3850.00&lt;br /&gt;
 |4004.00&lt;br /&gt;
 |-&lt;br /&gt;
 |VAT = 7.6% of VoTI&lt;br /&gt;
 |292.60&lt;br /&gt;
 |304.30&lt;br /&gt;
 |-&lt;br /&gt;
 |UPS fixed tax (EUR13.00)&lt;br /&gt;
 |20.00&lt;br /&gt;
 |20.80&lt;br /&gt;
 |-&lt;br /&gt;
 |Total Cost&lt;br /&gt;
 |4162.60&lt;br /&gt;
 |4329.10&lt;br /&gt;
 |-&lt;br /&gt;
 |'''Per Person'''&lt;br /&gt;
 |'''416.26'''&lt;br /&gt;
 |'''432.91'''&lt;br /&gt;
 |}&lt;br /&gt;
&lt;br /&gt;
Figures accurate as of 4th Jun 2008 from [http://www.ubs.com/1/e/index/bcqv/calculator.html UBS]: 1EUR = 1.54USD and 1USD = 1.04CHF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Shipping ====&lt;br /&gt;
If we would ship Neos, here is the Swiss PostPac prices :&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
! Description&lt;br /&gt;
! Size [cm]&lt;br /&gt;
! Price CHF TTC&lt;br /&gt;
|-&lt;br /&gt;
| Size 1&lt;br /&gt;
| 22.9 x 14.7 x 9.9&lt;br /&gt;
| 2.20&lt;br /&gt;
|-&lt;br /&gt;
| Size 2&lt;br /&gt;
| 31.5 x 22.5 x 12.5&lt;br /&gt;
| 2.40&lt;br /&gt;
|-&lt;br /&gt;
| Shipping Priority&lt;br /&gt;
| up to 2Kg&lt;br /&gt;
| 8.-&lt;br /&gt;
|-&lt;br /&gt;
| Shipping Economy&lt;br /&gt;
| up to 2Kg&lt;br /&gt;
| 6.-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Steve posted informations about boxes that will be out with Neo :&lt;br /&gt;
&lt;br /&gt;
* 10 pack : 435mm x 371mm x 119mm, approx 3kg, UPS will charge 160USD (need to be verified)&lt;br /&gt;
* Individual pack : 178mm  x 104mm x 84mm, 237 grams&lt;br /&gt;
&lt;br /&gt;
So size 1 will fit ! Local delivery in Switzerland will cost 8.20 for Economy or 10.20 Priority.&lt;br /&gt;
&lt;br /&gt;
==== Zurich ====&lt;br /&gt;
Status : 30/30 &amp;lt;br /&amp;gt;&lt;br /&gt;
'''Contact person who order the 10Pack : ??'''&lt;br /&gt;
&lt;br /&gt;
WARNING, this list already contains 20 people! -- LucaCapello &amp;lt;br /&amp;gt;&lt;br /&gt;
-- I changed from 20 -&amp;gt; 30 Devices in this order. --[[User:Tuxfux.ch|Tuxfux.ch]] 18:48, 3 June 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
* Simon Wenner &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Nowic Contact]&lt;br /&gt;
* Simon Schreiber &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Magbeat Contact]&lt;br /&gt;
* Markus Huggler (Winterthur)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Magbeat Contact]&lt;br /&gt;
* Andre Timmermann &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Raffael Schmid &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Pascal Weller &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Nick Zbinden (Luzern)&amp;lt;br /&amp;gt; [mailto:nickik@gmx.ch] oder [http://wiki.openmoko.org/wiki/Special:Emailuser/nickik Contact]&lt;br /&gt;
* Marcel Wirth &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Skarhand Contact]&lt;br /&gt;
* Marcel Lütolf (Luzern)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/NeRo Contact]&lt;br /&gt;
* Christian Corrodi &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Matto Contact]&lt;br /&gt;
* Mirko Klingauf &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/RealAtaman Contact]&lt;br /&gt;
* Marcel Jost (Bern, with debug board if possible) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Onsonic Contact]&lt;br /&gt;
* Marc Andre Tanner (Biel)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/mat Contact]&lt;br /&gt;
* Tobias Kündig (2 Geräte) (Luzern)&amp;lt;br /&amp;gt; [mailto:info@it-media.ch]&lt;br /&gt;
* Peter Salvisberg&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Psal Contact]&lt;br /&gt;
* Martin Kos &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/KoS Contact]&lt;br /&gt;
* Lorenz Schori (Bern) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Znerol Contact]&lt;br /&gt;
* Matthias Cramer (Zürich) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/cramer Contact]&lt;br /&gt;
* Pascal Mages (Bern/Zürich) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/FreeMind Contact]&lt;br /&gt;
* Esra Kummer (2 Geräte!) (Winterthur)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Tuxfux.ch Contact]&lt;br /&gt;
* Joerg Maeder (Opfikon) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/goergel Contact]&lt;br /&gt;
* Marc Bodmer (Solothurn) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/minxx Contact]&lt;br /&gt;
* Carlos Diener (Winterthur) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/Emonkey Contact]&lt;br /&gt;
* Philipp Meier (Zürich) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/PhilippMeier Contact]&lt;br /&gt;
* Adrian Rudin (Basel) &amp;lt;br /&amp;gt;  [mailto:adrian@mav.ch] or [http://wiki.openmoko.org/wiki/Special:Emailuser/blackmav Contact]&lt;br /&gt;
* Christof Pfister (Lyss) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/chpfister Contact]&lt;br /&gt;
* Walter Sutter (Winterthur) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/seraphim Contact]&lt;br /&gt;
* Philipp Hug (St. Gallen) &amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/Philipphug Contact]&lt;br /&gt;
&lt;br /&gt;
==== Geneve ====&lt;br /&gt;
Status : 10/10 &amp;lt;br /&amp;gt;&lt;br /&gt;
'''Contact person who order the 10Pack : Luca Capello &amp;lt;br /&amp;gt;'''&lt;br /&gt;
WARNING, this list already contains 10 people! -- LucaCapello&lt;br /&gt;
&lt;br /&gt;
* Diego Abelenda&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Aelia Contact]&lt;br /&gt;
* Luca Capello&amp;lt;br /&amp;gt; [mailto:luca@pca.it]&lt;br /&gt;
* Nicolas Produit&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Produit Contact]&lt;br /&gt;
* Sebastien Nanchen &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Sn Contact]&lt;br /&gt;
* Jonas Schwarz (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/jnsc Contact]&lt;br /&gt;
* Robin Farine (Auvernier)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/rfarine Contact]&lt;br /&gt;
* Alexandre Ghisoli (Yverdon)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Agh Contact]&lt;br /&gt;
* Raphael Studer (Thurgau) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Tschudder Contact]&lt;br /&gt;
* Christian Wäckerlin &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/boognu Contact]&lt;br /&gt;
* Michael Stähli (Lausanne EPFL) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/adler Contact]&lt;br /&gt;
&lt;br /&gt;
==== Suisse romande / Lausanne (EPFL) ====&lt;br /&gt;
Status : 17/20 &amp;lt;br /&amp;gt;&lt;br /&gt;
'''Contact person who order the 10Pack : Mathieu Habegger &amp;lt;br /&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
* Mathieu Habegger (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/Habi Contact]&lt;br /&gt;
* Matthias Brändli (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/hb9egm Contact]&lt;br /&gt;
* Yorick Brunet (EPFL) &amp;lt;br /&amp;gt;[mailto:yorick.brunet@epfl.ch Contact]&lt;br /&gt;
* Frédéric Fokan(Lausanne) &amp;lt;br /&amp;gt;[mailto:fredericfokan@gmail.com Contact]&lt;br /&gt;
* Gulu (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Gulu Contact]&lt;br /&gt;
* Edomaur (Lausanne, with Gulu) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Edomaur Contact]&lt;br /&gt;
* Layx (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Layx Contact]&lt;br /&gt;
* Mélanie Baumann (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/calis Contact]&lt;br /&gt;
* Laurent Fasnacht (EPFL) &amp;lt;br /&amp;gt;[http://gnugeneration.epfl.ch/users/fasnacht Contact]&lt;br /&gt;
* Urs Blaser (UNIL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/arctus Contact]&lt;br /&gt;
* David Lütolf (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/dlutolf Contact]&lt;br /&gt;
* François Bianco  &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/fbianco Contact]&lt;br /&gt;
* Samuel Dorsaz &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/akira Contact]&lt;br /&gt;
* Ludovic Fardel  &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/lfardel Contact]&lt;br /&gt;
* David Pelichet &amp;lt;br /&amp;gt;&lt;br /&gt;
* Vincent Hentsch &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/Vincos Contact]&lt;br /&gt;
* Carruzzo Gilles &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/Willows Contact]&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
=== Spain (Country Group Sale) ===&lt;br /&gt;
Status: 11/10&lt;br /&gt;
&lt;br /&gt;
=== Madrid ===&lt;br /&gt;
==== Madrid ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Rafael Campos [http://wiki.openmoko.org/wiki/Special:Emailuser/Methril Contact] &amp;lt;br /&amp;gt;1x ([[Image:MokoBox.jpg]] - advanced) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Pablo Ruiz Múzquiz [http://wiki.openmoko.org/wiki/User_talk:Pabloruiz contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Carlos Padilla Sorbas [http://wiki.openmoko.org/wiki/User_talk:cymonline contact me here]&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Troy|Alvaro Garcia Roy]] 1 phone&lt;br /&gt;
&lt;br /&gt;
* [[User:kresp0 | Santiago Crespo]] 1 phone&lt;br /&gt;
&lt;br /&gt;
=== Zaragoza ===&lt;br /&gt;
==== Zaragoza ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* Alejandro R. Mosteo &amp;lt;br /&amp;gt; alejandro AT mosteo · com&lt;br /&gt;
* Arturo Giner&amp;lt;br/&amp;gt;[[Special:Emailuser/artginer|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Barcelona ===&lt;br /&gt;
==== Barcelona ====&lt;br /&gt;
Status : 7/10&lt;br /&gt;
&lt;br /&gt;
* José Luis Pérez &amp;lt;br/&amp;gt;[[Special:Emailuser/jluis|Contact]]&lt;br /&gt;
* David Reyes Samblas Martinez&amp;lt;br/&amp;gt;[[Special:Emailuser/mutrox|Contact]]&lt;br /&gt;
* Sergio Arias &amp;lt;br/&amp;gt;[[Special:Emailuser/saerguio|Contact]]&lt;br /&gt;
* Alex Muntada &amp;lt;br/&amp;gt;[[Special:Emailuser/alexm|Contact]]&lt;br /&gt;
* Pascal co &amp;lt;br/&amp;gt;[[Special:Emailuser/pascalco|Contact]]&lt;br /&gt;
* Antonio Rodríguez ( x2 )&amp;lt;br/&amp;gt;[[Special:Emailuser/AntonioR|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Valencia ===&lt;br /&gt;
==== Valencia ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Pau Gaspar Díaz &amp;lt;br/&amp;gt;[[Special:Emailuser/pau|Contact]]&lt;br /&gt;
&lt;br /&gt;
== UAE ==&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Yaser Ammar &amp;lt;br /&amp;gt; [[Special:Emailuser/Waraqa|Contact]]&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
=== Arizona ===&lt;br /&gt;
==== Tucson ====&lt;br /&gt;
Willing to reship to nonlocal people within the US (cheaper if you're closer), or get absorbed into another group that's willing to reship.  In talks with Boulder (Colorado) group.&lt;br /&gt;
&lt;br /&gt;
Status: 3/10&lt;br /&gt;
* [mailto:wes.shull@gmail.com wesshull] Wes Shull - 1x GTA02 + 1x debug board&lt;br /&gt;
* Richard Reichenbacher - 2x GTA02&lt;br /&gt;
&lt;br /&gt;
=== Colorado ===&lt;br /&gt;
==== Boulder ====&lt;br /&gt;
Status: 8/10&lt;br /&gt;
* Vinc Duran x2 (I can purchase and distribute locally) &amp;lt;br /&amp;gt; [mailto:uberpfloyd@gmail.com?subject=Openmoko%20group%20sales Pfloyd]  [http://wiki.openmoko.org/wiki/Special:Emailuser/Pfloyd Contact]&lt;br /&gt;
* John Miller &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/jwm jwm]&lt;br /&gt;
* D Padilla &amp;lt;br /&amp;gt;&lt;br /&gt;
* Joey Stanford &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/k0fcc k0fcc]&lt;br /&gt;
* J Hinegardner &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/jjh jjh]&lt;br /&gt;
* S Derrick of New Mexico x2 &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Denver (Full) ====&lt;br /&gt;
Status: 10/10 (includes the gentleman from Utah)&lt;br /&gt;
* Shawn Sullivan &amp;lt;br /&amp;gt; [[mailto:shelbydz87@yahoo.com shelbydz87@yahoo.com]]&lt;br /&gt;
* Peter Abplanalp &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/alderion Contact]&lt;br /&gt;
* Ben Burdette &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Ansible Contact]&lt;br /&gt;
* Tom Russell &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/tazbert Contact]&lt;br /&gt;
* Trace &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/gnork Contact]&lt;br /&gt;
&lt;br /&gt;
==== Fort Collins ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Paul Hummer &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Rockstar Contact]&lt;br /&gt;
&lt;br /&gt;
=== California ===&lt;br /&gt;
==== Los Angeles ====&lt;br /&gt;
Status: 7/10&lt;br /&gt;
&lt;br /&gt;
* Ian Douglas, Santa Monica &amp;lt;br /&amp;gt; I'll help organize a group sale, meet &amp;amp; greet, but since I was selected to help test the Freerunner, I won't need to actually purchase one. [http://wiki.openmoko.org/wiki/Special:Emailuser/Iandouglas Contact me here]&lt;br /&gt;
* Matthew Wetmore, Westchester 90045 &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Wetmoko Contact]&lt;br /&gt;
* Daniel &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Beaker82 Contact]&lt;br /&gt;
* James Robertson, Irvine &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/JamesRobertson Contact]&lt;br /&gt;
* Bill Sun &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/DancingSun Contact]&lt;br /&gt;
* Michael, Santa Monica &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Bstudios Contact]&lt;br /&gt;
* Russel Dwiggins, Cerritos &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/undrwater Contact]&lt;br /&gt;
* Dima, Pasadena &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/dima Contact]&lt;br /&gt;
&lt;br /&gt;
==== San Diego ====&lt;br /&gt;
&lt;br /&gt;
Status: 7/10&lt;br /&gt;
&lt;br /&gt;
Includes North County, Riverside, Tijuana, etc.&lt;br /&gt;
&lt;br /&gt;
* Peter Naulls, Carlsbad (South)/Mira Mesa (near Qualcomm) - will coordinate.&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Pnaulls Contact]&lt;br /&gt;
* Tracy Reed &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/treed Contact]&lt;br /&gt;
* Adam Hughes &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/ajinxa Contact]&lt;br /&gt;
* Paul Breed &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/pbreed Contact]&lt;br /&gt;
* Greg Davidson &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/JGregD Contact]&lt;br /&gt;
* Larry Riedel &amp;lt;br /&amp;gt; [mailto:Larry@Riedel.org Contact]&lt;br /&gt;
* David Wilhelm &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/bluefir Contact]&lt;br /&gt;
&lt;br /&gt;
==== San Francisco Bay Area ====&lt;br /&gt;
Status: 10/10 Full&lt;br /&gt;
&lt;br /&gt;
We should take advantage of the pickup service in Fremont. See [http://lists.openmoko.org/pipermail/community/2008-June/018407.html Steve's email]&lt;br /&gt;
&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/wolfmanjm I] live pretty close to Fremont so can pick them up. &lt;br /&gt;
I have contacted Steve asking for the procedure for the Will Call. How does everyone want to pay for them?&lt;br /&gt;
I could accept Paypal if people want to go that way. I think for pickup they will want one payment rather than a bunch of checks :) Email me with ideas, unless someone else wants to take the lead. - Thanks&lt;br /&gt;
&lt;br /&gt;
* Ajit Natarajan - [http://wiki.openmoko.org/wiki/Special:Emailuser/ajitk Contact]&lt;br /&gt;
&lt;br /&gt;
* Dirk Bergstrom - [http://wiki.openmoko.org/wiki/Special:Emailuser/krid Contact]&lt;br /&gt;
&lt;br /&gt;
* Tupshin Harper - [http://wiki.openmoko.org/wiki/Special:Emailuser/tupshin Contact]&lt;br /&gt;
&lt;br /&gt;
* Lothar Werzinger (900MHz) - [http://wiki.openmoko.org/wiki/Special:Emailuser/Elektrolott Contact]&lt;br /&gt;
&lt;br /&gt;
* William Ray Yeager - [http://wiki.openmoko.org/wiki/Special:Emailuser/wyeager Contact]&lt;br /&gt;
&lt;br /&gt;
* Sebastian Coe - [http://wiki.openmoko.org/wiki/Special:Emailuser/savari Contact]&lt;br /&gt;
&lt;br /&gt;
* Jim Morris - (Agreed to organize purchase) [http://wiki.openmoko.org/wiki/Special:Emailuser/wolfmanjm Contact]&lt;br /&gt;
&lt;br /&gt;
* Brian Carver - (Emailed Jim - Agreed to use Paypal) [http://wiki.openmoko.org/wiki/Special:Emailuser/brianwc Contact]&lt;br /&gt;
&lt;br /&gt;
* Jim Lutz - [http://wiki.openmoko.org/wiki/Special:Emailuser/JLutz Contact]&lt;br /&gt;
&lt;br /&gt;
* Kelley Eitzen - [http://wiki.openmoko.org/wiki/Special:Emailuser/Xeromist Contact]&lt;br /&gt;
&lt;br /&gt;
Status 4/10&lt;br /&gt;
&lt;br /&gt;
* Cry Regarder (3 units from monterey) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Cry_Regarder Contact]&lt;br /&gt;
&lt;br /&gt;
* Paul Mahon - [http://wiki.openmoko.org/wiki/Special:Emailuser/dufflebunk Contact] (San Jose)&lt;br /&gt;
&lt;br /&gt;
==== Monterey ====&lt;br /&gt;
Status: 3/10&lt;br /&gt;
&lt;br /&gt;
* Cry Regarder &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Cry_Regarder Contact]&lt;br /&gt;
&lt;br /&gt;
=== Idaho ===&lt;br /&gt;
==== Southwestern Idaho ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
* 1 × Eugene Kravtsov [[Special:Emailuser/theUg|Contact]], Garden City (Boise).&lt;br /&gt;
* 1 × Christopher Blay [[Special:Emailuser/blayde|Contact]], Twin Falls.&lt;br /&gt;
&lt;br /&gt;
=== Midwest ===&lt;br /&gt;
'''(combine Illinois / Iowa / Tennesee / Texas / Wisconsin)'''&lt;br /&gt;
Status: 9/10&lt;br /&gt;
* Steven M  [[Special:Emailuser/Montgoss|Contact]] - Cedar Rapids, IA&lt;br /&gt;
* Joseph Booker [[Special:Emailuser/Sargas|Contact]] - Chicago, IL&lt;br /&gt;
* Matt McCormick [[Special:Emailuser/Thewtex|Contact]] - Madison, WI&lt;br /&gt;
* Charles Hill [mailto:charles.e.hill@gmail.com email] - Chicago, IL&lt;br /&gt;
* Greg Bonett [mailto:greg@bonett.org email] - Iowa City, IA&lt;br /&gt;
* Tushar Dayal [mailto:tdayal@gmail.com Contact] - Ames, IA&lt;br /&gt;
* solomon jacob herscovitch [[Special:Emailuser/SoloSalsa|Contact]] - Chicago, IL&lt;br /&gt;
* Eric Olson [mailto:ericools@gmail.com Contact] - Madison, WI&lt;br /&gt;
* Frederick Wells [mailto:pandabrand@gmail.com email] - Chicago, IL&lt;br /&gt;
&lt;br /&gt;
=== Indiana / Kentucky ===&lt;br /&gt;
Status: 7/10&lt;br /&gt;
* Dan Staley      [[Special:Emailuser/Pyrasi|Contact]] (Lexington, KY)&lt;br /&gt;
* Donnie Jones    [[Special:Emailuser/Donniejones18|Contact]] (Lexington, KY)&lt;br /&gt;
* John Sterling   [[Special:Emailuser/Sterling|Contact]] (Lexington, KY)&lt;br /&gt;
* James MacLachlan [[Special:Emailuser/Jmaclachlan|Contact]] (Louisville, KY)&lt;br /&gt;
* John Askew [[Special:Emailuser/Johnaskyou|Contact]] (Lexington, KY)&lt;br /&gt;
* Devin Cook [[Special:Emailuser/Dcook|Contact]] (Lexington, KY)&lt;br /&gt;
* Geoff Ruscoe    [[Special:Emailuser/Geocode|Contact]] - Louisville, KY&lt;br /&gt;
&lt;br /&gt;
=== Ohio / Michigan ===&lt;br /&gt;
Status: 10/10&lt;br /&gt;
* David Pais (Unknown City) [mailto:davioh2001@yahoo.com email]&lt;br /&gt;
* Dave Ludlow (Toledo) (I can purchase and distribute) [[Special:Emailuser/adsllc|Contact]]&lt;br /&gt;
* Adam Steele (Cincinnati) [mailto:adam@laurasteele.net Contact]&lt;br /&gt;
* Elliot Bailey (Canton) [mailto:elliot.bailey@yahoo.com Contact]&lt;br /&gt;
* Richard Rowell (Grand Rapids) [mailto:richard.rowell@gmail.com Contact]&lt;br /&gt;
* [mailto:sf_openmoko10pak@paulwehr.com Paul Wehr] Ann Arbor&lt;br /&gt;
* Micah Krafcik (Youngstown) [mailto:mjk20xx@yahoo.com Contact]&lt;br /&gt;
* Doug Wurtzbacher (Centerville) x2 [mailto:doug@medicineshoppekett.com Contact]&lt;br /&gt;
* Martin Dicks (Columbus) [[Special:Emailuser/mdicks|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Oregon ===&lt;br /&gt;
==== Eugene ====&lt;br /&gt;
* Quentin Hartman [[Special:Emailuser/qhartman|Contact]] Willing to organize the Oregon group buy and/or be absorbed into another Pacific NW group if too few locals sign up.&lt;br /&gt;
&lt;br /&gt;
=== Washington ===&lt;br /&gt;
==== Seattle ====&lt;br /&gt;
Status: 5/10&lt;br /&gt;
* Jon Pomeroy [[Special:Emailuser/Jepomeroy|Contact]]&lt;br /&gt;
* Andrew Hirata [[Special:Emailuser/tonkatsu182|Contact]] Note: I live in Bellevue&lt;br /&gt;
* Chris Baker [[Special:Emailuser/cwainb|Contact]]&lt;br /&gt;
* Mark Zimmerman [[Special:Emailuser/mawazi|Contact]]&lt;br /&gt;
* Wim Lewis [[Special:Emailuser/Wiml|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Tennessee ===&lt;br /&gt;
==== Memphis ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Peter O'Connor &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/poconnor Contact]&lt;br /&gt;
&lt;br /&gt;
=== Texas ===&lt;br /&gt;
==== Austin (15/10) ====&lt;br /&gt;
* Dale Schumacher [[Special:Emailuser/dalnefre|Contact]]&lt;br /&gt;
* Michael Cosby [[Special:Emailuser/mcosby|Contact]]&lt;br /&gt;
* Paul Jimenez [[Special:Emailuser/pj|Contact]]&lt;br /&gt;
* Charles [[Special:Emailuser/rbn|Contact]]&lt;br /&gt;
* Anthony Kitchin [[Special:Emailuser/akitchin|Contact]]&lt;br /&gt;
* Carl (x2) [[Special:Emailuser/texatopia|Contact]]&lt;br /&gt;
* Robert (+Debug Board) [[Special:Emailuser/SHaRK|Contact]] (Houston)&lt;br /&gt;
* Bryan DeLuca [[Special: Emailuser/Stupkid|Contact]] (Fort Worth)&lt;br /&gt;
* Dennis Parker [[Special: Emailuser/dparker|Contact]]&lt;br /&gt;
* Chip Rosenthal [[Special: Emailuser/chip|Contact]]&lt;br /&gt;
* Brad Mouring [[Special: Emailuser/Bmouring|Contact]] (Moving to Austin by mid-June, likely earlier)&lt;br /&gt;
* Joel Greenberg [[Special: Emailuser/joelg|Contact]]&lt;br /&gt;
* Hans Loeblich [[Special: Emailuser/Peepsalot|Contact]]&lt;br /&gt;
* Mark Rinaudo [[Special:Emailuser/Mrinaudo|Contact]]&lt;br /&gt;
* Scott Farrell [[Special:Emailuser/sfarrell|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Dallas (2/10) ====&lt;br /&gt;
* Philip White [[Special:Emailuser/pmw|Contact]]&lt;br /&gt;
* Stephen Shelton [[Special:Emailuser/stephenashelton|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Mid-Atlantic ===&lt;br /&gt;
==== District of Columbia (DC) Metro Area ====&lt;br /&gt;
* Brian DeRocher [[Special:Emailuser/brian_252|email]]&lt;br /&gt;
==== Virginia====&lt;br /&gt;
===== Virginia Tech (1/10) =====&lt;br /&gt;
* Lally Singh [[Special:Emailuser/lally|email]] -- yeah, if you're ordering anywhere in VA, lemme know.&amp;lt;br /&amp;gt;&lt;br /&gt;
===== Richmond (1/10)=====&lt;br /&gt;
*Steve Watson mailto:ssw0213@gmail.com&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== New York (11/20) ====&lt;br /&gt;
&lt;br /&gt;
* Bert Hartmann [http://wiki.openmoko.org/wiki/Special:Emailuser/BertHartm Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Michael Cole mailto:mjcole137@gmail.com &amp;lt;br /&amp;gt;&lt;br /&gt;
* Remy Frerebeau  [http://wiki.openmoko.org/wiki/Special:Emailuser/Rfrerebe Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Ulises E. Erickson  [http://wiki.openmoko.org/wiki/Special:Emailuser/Ulix Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Justin Daly [http://wiki.openmoko.org/wiki/Special:Emailuser/justo Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Philippe Gerard [[Special:Emailuser/feydreva|Contact]] I live in Richmond (VA) but we will never be 10 there&amp;lt;br/&amp;gt;&lt;br /&gt;
* Evan Charlton mailto:evancharlton+om@gmail.com &amp;lt;br /&amp;gt;&lt;br /&gt;
* Paul Buede mailto:paul@buede.com &amp;lt;br /&amp;gt;&lt;br /&gt;
* Baruch Even [[Special:Emailuser/poka|Contact me here]]&amp;lt;br/&amp;gt;&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced)Paul Hurlock [[Special:Emailuser/triclosan|Contact me here]] &amp;lt;br/&amp;gt;&lt;br /&gt;
* Ryan [[Special:Emailuser/ryan|Contact me here]] (Connecticut, actually, but close enough.) &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Maryland (2/10)====&lt;br /&gt;
* Paul Buede I switched to New York, cause we don't have enough. Look up ^ &amp;lt;br /&amp;gt;&lt;br /&gt;
* Charles Lohr&lt;br /&gt;
* Alex (DC/Rosslyn; not 100% sure that will be able to afford it) [[Special:Emailuser/rakukin|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== North Carolina (3/10)====&lt;br /&gt;
* Jason Sharpee [[Special:Emailuser/zonyl|Contact]] - Charlotte Metro area &amp;lt;br /&amp;gt;&lt;br /&gt;
* William Vidrine [[Special:Emailuser/Infoport|Contact]] - Greensboro/Triad area, will be part of an NC order; will drop out and order individually if 10/10 not reached. &amp;lt;br /&amp;gt;&lt;br /&gt;
* Joe White [[Special:Emailuser/Raygions|Contact]] - Winston-Salem/Triad area &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Massachusetts ===&lt;br /&gt;
Status: 10/10 (Full)&lt;br /&gt;
* Benjamin Moody [[Special:Emailuser/FloppusMaximus|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Ken Young, Cambridge (Note, if we're not up to 10/10 on the day the Freerunner is announced, I'm going to drop out and order individually).[[Special:Emailuser/Dolson|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Chris White (for 2) [[Special:Emailuser/Safire|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Nick Dube - Pembroke, NH (Will also drop out if we do not have 10 by Freerunner release.) [http://wiki.openmoko.org/wiki/Special:Emailuser/Doobe01 Contact]&lt;br /&gt;
&lt;br /&gt;
* Justin Brzozoski - Worcester, MA area [[Special:Emailuser/Jabski|Contact]]&lt;br /&gt;
&lt;br /&gt;
* John Nicholson - Amherst, MA (Will also drop out if we do not have 10 by Freerunner release.) [[Special:Emailuser/nicklogan|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Matthew Campbell - Worcester, MA [[Special:Emailuser/lifeisafractal|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Jeff Gold [[Special:Emailuser/jgold|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Craig Allen [[Special:Emailuser/knodalyte|Contact]]&lt;br /&gt;
&lt;br /&gt;
Status: 5/10&lt;br /&gt;
&lt;br /&gt;
* Bala Nair - Acton, MA [[Special:Emailuser/bnair|Contact]]&lt;br /&gt;
* Mike Doody - Groton, MA [[Special:Emailuser/dude|Contact]]&lt;br /&gt;
* 0x Nathan Perry - Derry, NH (cannot switch to GSM at this time)&lt;br /&gt;
* Kyle Harrington - Amherst, MA (Will drop out if we do not have 10 by Freerunner release.) [[Special:Emailuser/dancingcuziwanna|Contact]]&lt;br /&gt;
* Ryan Svoboda - Worcester, MA (Will buy one individually on release day if this group is incomplete) [[Special:Emailuser/ryansv|Contact]]&lt;br /&gt;
* Ryan Meador - Worcester, MA (Will drop out if we do not have 10 by Freerunner release.) [[Special:Emailuser/Yanroy|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Nevada ===&lt;br /&gt;
==== Reno/Sparks ====&lt;br /&gt;
Including Northwestern Nevada/ Northeastern California&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Tyrell Berry [[Special:Emailuser/Alawatsakima|Contact]]&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&lt;br /&gt;
* Stroller (Milton Keynes, can travel) &amp;lt;br /&amp;gt;mailto:stroller@stellar.eclipse.co.uk 01908 663 513. &amp;lt;br /&amp;gt;Thinks that breaking the UK up into regions - at least outside London - is silly. There are unlikely to be 10 people in $your_town who want a Freerunner, so some posting of Freerunners will surely be required; see [http://wiki.openmoko.org/wiki/Talk:GroupSales#Oxford the talk page]. This is the same cost anywhere in the UK.&lt;br /&gt;
&lt;br /&gt;
=== Scotland ===&lt;br /&gt;
==== Edinburgh ====&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* Joe Wells (Edinburgh) [http://wiki.openmoko.org/wiki/Special:Emailuser/jbw Contact] [http://www.macs.hw.ac.uk/~jbw/ Web] (I tried to contact Dave Ball and Stuart MacKinnon by the Wiki's e-mail feature, but I got no reply.  So I am worried the Wiki's e-mail feature may be broken.  So please contact me by going to my web page and using my e-mail address listed there.)&lt;br /&gt;
* Dave Ball (Edinburgh) [http://wiki.openmoko.org/wiki/Special:Emailuser/Daveb Contact]&lt;br /&gt;
* Stuart MacKinnon(Livingston) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/hoagster Contact]&lt;br /&gt;
* george Maistros (Edinburgh) [http://wiki.openmoko.org/wiki/Special:Emailuser/mordilo_k Contact]&lt;br /&gt;
&lt;br /&gt;
==== Glasgow ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Kyle Gordon [http://wiki.openmoko.org/wiki/Special:Emailuser/Kylegordon Contact]&lt;br /&gt;
* Sean Anderson [http://wiki.openmoko.org/wiki/Special:Emailuser/Moniker42 Contact]&lt;br /&gt;
* Kenny Duffus [http://wiki.openmoko.org/wiki/Special:Emailuser/Sealne Contact]&lt;br /&gt;
&lt;br /&gt;
=== England ===&lt;br /&gt;
&lt;br /&gt;
==== Hampshire ====&lt;br /&gt;
&lt;br /&gt;
Status: 16/20 at 2008-05-24&lt;br /&gt;
&lt;br /&gt;
http://www.hants.lug.org.uk/cgi-bin/wiki.pl?FreerunnerBulkBuy&lt;br /&gt;
&lt;br /&gt;
Willing to re-ship within the UK.&lt;br /&gt;
&lt;br /&gt;
(Sorry, we set up the page before we knew about this one)&lt;br /&gt;
&lt;br /&gt;
==== London ====&lt;br /&gt;
&lt;br /&gt;
Status : 16/10&lt;br /&gt;
&lt;br /&gt;
* Juergen Schinker &amp;lt;br /&amp;gt; mailto:ba1020@homie.homelinux.net&lt;br /&gt;
* aled &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/aled Contact]&lt;br /&gt;
* Robert Piasek (actually in Southampton)&amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/Queen6 Contact]&lt;br /&gt;
* Tom Scholl (Cambridge, travel to London now and then anyway so could pick up) &amp;lt;br /&amp;gt; [mailto:thomasscholl@gmail.com]&lt;br /&gt;
* Weiss (Cambridge, could collect from London) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Weiss Contact]&lt;br /&gt;
* Neil Bentley (in Wiltshire) [http://wiki.openmoko.org/wiki/Special:Emailuser/Ohnez Contact]&lt;br /&gt;
* rhn x 2 &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/rhn Contact]&lt;br /&gt;
* Tim Coggins&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/sonicated Contact]&lt;br /&gt;
* Michele Mattioni (I'm based in Cambridge too, but if Tom can go to London I can grab the phone in Cambridge) &amp;lt;br /&amp;gt;[mailto:mattions@gmail.com]&lt;br /&gt;
* Johan Badenhorst (London - Can't believe it's almost here!) &amp;lt;br /&amp;gt;[mailto:ezuall@gmail.com]&lt;br /&gt;
* '''Group Buyer''' Ben F-W (Fulham, London) [http://wiki.openmoko.org/wiki/Special:Emailuser/benfw Contact]&lt;br /&gt;
* T. Chan (Cambridge, vaguely knows Weiss) [http://wiki.openmoko.org/wiki/Special:Emailuser/TC Contact]&lt;br /&gt;
* Rob Paulson (Derby, but will be visiting London in July) [http://wiki.openmoko.org/wiki/Special:Emailuser/Myfanwy Contact]&lt;br /&gt;
* Mario &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Spirer Contact]&lt;br /&gt;
* David Pottage (actually in Reading)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/chrestomanci Contact]&lt;br /&gt;
&lt;br /&gt;
==== West Midlands ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* Mo Abrahams (Walsall) &amp;lt;br /&amp;gt; mailto:moabrahams@dashavoo.com&lt;br /&gt;
* Jonathan Spooner (Walsall)&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
=== Riga ===&lt;br /&gt;
==== Riga ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
* Ilya &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/VRGhost Contact]&lt;br /&gt;
* Deniss [http://wiki.openmoko.org/wiki/Special:Emailuser/Druidegrey Contact]&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
Status : 2/10&lt;br /&gt;
* Wee Kiam Peng [http://wiki.openmoko.org/wiki/Special:Emailuser/Jipi Contact]&lt;br /&gt;
* Chen Ruo Fei [http://wiki.openmoko.org/wiki/Special:Emailuser/Crf Contact]&lt;br /&gt;
&lt;br /&gt;
== Israel==&lt;br /&gt;
Status : 3/10&lt;br /&gt;
* Ofer Herman &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/oferhe Contact]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Talba Talba]&lt;br /&gt;
* Dan &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Da-x Contact]&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Brněnská větev:''' Koordinátorem objednávání je Martin Šenkeřík [[User:Ohin | Kontakty na mě]]&lt;br /&gt;
&lt;br /&gt;
'''Pražská větev:''' Koordinátorem objednávání je Jan Mareš [[User:iVir | Kontakty na mě]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Aktuálně ===&lt;br /&gt;
*16. 6. 2008 - '''Martin Šenkeřík vs. Pulster:'''&lt;br /&gt;
Tak jsem si vyměnil pár mailů s Chrisem Pulsterem (pulster.de), a nabízí nám cenu 299€ a zaslání zdarma. To znamená (a snad se nemýlím), že těch 299€ by byla koncová cena pro každého z nás, žádné poplatky kolem, jenom 299€. Debug board vyjde na 99€ = 2400Kč (zde se sice nabízí hrůzostrašné srovnání s 99$ = 1550Kč, ale je potřeba si uvědomit, že k 99$ se musí přičíst daň a clo a bůhví co ještě). Ano, asi vyjde ten debug board o něco dráž, proto jsem zájemcům o DB zaslal email, aby mi řekli svůj pohled na věc.&lt;br /&gt;
Pulster může nabídnout sluchátka zdarma ke každému telefonu, o tom obalu zatím neví.&lt;br /&gt;
&lt;br /&gt;
Teď otevírám na pár dnů diskusi o výběru dodavatele. ''Já jsem za Pulster, u kterého je zaručena cena a nebudu kolem toho mít žádné létání, zkrátka je to objednávka z EU.'' Pokud dojde k nějaké všeobecné shodě, ve čtvrtek zahájíme shromažďování peněz. I z toho důvodu, že někteří z vás odjíždí v přístích dnech pryč.&lt;br /&gt;
&lt;br /&gt;
*15. 6. 2008 - Steve:&lt;br /&gt;
 SMT is running. This means printed circuit boards are being produced daily.&lt;br /&gt;
 &lt;br /&gt;
 Then, the circuit boards are being assembled into phones. This means the plastic casing is being mounted&lt;br /&gt;
 As well as other bits and pieces.&lt;br /&gt;
 &lt;br /&gt;
 Then the phones are tested. Then they are packed and shipped.&lt;br /&gt;
 &lt;br /&gt;
 So figure, assembly is going to start in the week of june 16, pack and ship by june 23&lt;br /&gt;
 Arrive and clear customs by july 1.&lt;br /&gt;
 &lt;br /&gt;
 Hey 4th of july sale! Sorry american bias. But I'd figure early july.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*5.6. 2008 - Steve:&lt;br /&gt;
 The latest update I have from the factory indicates that mass Production (&lt;br /&gt;
 that means running the SMT line without stopping to check stuff every two&lt;br /&gt;
 seconds) has been CLEARED TO START.&lt;br /&gt;
&lt;br /&gt;
=== Základní informace ===&lt;br /&gt;
Jedná se o hromadnou objednávku [[Neo_FreeRunner|Neo FreeRunner]] ([[Neo_FreeRunner_GTA02_Hardware|hardware]] - GSM, GPS, WiFi, CPU 400MHz, ...; software - [http://people.openmoko.org/ninjutsu/freerunner1.4.swf náhled na připravovanou Qtopii]) do České republiky, vzhledem k tomu, že balení po 10kusech je za $369 USD oproti $399 USD za kus a navíc přijde každému obal a sluchátko a ušetří se za poštovné '''A TO SE VYPLATÍ'''.&lt;br /&gt;
&lt;br /&gt;
=== Postup registrace a objednání ===&lt;br /&gt;
&amp;lt;center&amp;gt;'''Platí pro obě větve!'''&amp;lt;/center&amp;gt;&lt;br /&gt;
Zatím se provádí jenom krok 1, v okamžiku kdy budou známy konkrétnější informace o termínu zahájení prodeje, přejde se na body 2 a 3.&lt;br /&gt;
# Registraci provedete zápisem svého jména a kontaktu do patřičné větve odpovídající místu vašeho osobního převzítí telefonu. Můžete nabídnout distribuci do míst, které ještě nikdo neposkytuje.&lt;br /&gt;
# stanoví se lehce nadhodnocená částka (zatím to vypadá na 7800Kč za telefon, s debug boardem na 9800Kč), na bezpečné pokrytí očekávaných i neočekávaných výdajů spojených s objednávkou&lt;br /&gt;
# každý zájemce odešle tuto sumu na účet svého koordinátora, identifikuje se svým jménem a příjmením&lt;br /&gt;
# jakmile budou peníze nashromážděny, provede koordinátor objednávku tolika telefonů, kolik zájemců mu zašle peníze&lt;br /&gt;
# po obdržení balíku s telefony se vypočte finální částka za telefon, a případný přeplatek bude vrácen každému osobně při převzetí telefonu (lokální distributoři samozřejmě obdrží patřičný počet telefonů a peněz, aby mohly být předány dále)&lt;br /&gt;
# všem se dítko šťastně dopraví do rukou&lt;br /&gt;
*Stále přetrvává otazník nad objednávkou množství nedělitelného desíti.&lt;br /&gt;
&lt;br /&gt;
*[[Talk:GroupSales#Diskuze | Diskuse]]&lt;br /&gt;
*[[Talk:GroupSales#Dopl.C5.88uj.C3.ADc.C3.AD_informace | Doplňující informace]]&lt;br /&gt;
&lt;br /&gt;
=== Brno ===&lt;br /&gt;
&lt;br /&gt;
==== Distribuční schéma ====&lt;br /&gt;
&lt;br /&gt;
 '''[n]'''  n je počet kusů, bez n 1 kus&lt;br /&gt;
 '''[nD]''' [[Neo1973_Debug_Board_v3|debug board]] $99 USD + DPH (n počet kusů, bez n 1 kus)&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Jednotlivé volby píšeme za jméno v [] a více voleb oddělujeme čárkou''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;'''&amp;lt;font size=&amp;quot;3&amp;quot; color=&amp;quot;green&amp;quot;&amp;gt;Status : 22&amp;lt;/font&amp;gt;'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''Martin Šenkeřík''' - [[User:Ohin | Kontakty na mě]]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Brno&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Radek Bartoň''' - [[Special:Emailuser/Blackhex|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Frýdek-Místek&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****-&lt;br /&gt;
***'''Radek Machulka''' - [[Special:Emailuser/Werty|Contact]]&lt;br /&gt;
***'''Aleš Dvořák''' - [[Special:Emailuser/Setr|Contact]]&lt;br /&gt;
***'''Jozef Mlich [2, 1D]''' - [[Special:Emailuser/joejoe|Contact]]&lt;br /&gt;
***'''Martin Faltičko''' - [[Special:Emailuser/MafRaf|Contact]]&lt;br /&gt;
***'''Karel Volný''' - [[Special:Emailuser/kavol|Contact]]&lt;br /&gt;
***'''Jan Brezina''' - [[Special:Emailuser/Fletcher|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Bratislava&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****'''František Horínek''' - [[Special:Emailuser/PipBoy2000|Contact]]&lt;br /&gt;
*****'''Martin Vyšný''' - [mailto:vysny@baka.sk Contact]&lt;br /&gt;
*****'''Tomáš Sirný''' - [[Special:Emailuser/Junckritter|Contact]]&lt;br /&gt;
*****'''Ján Janech''' - [[Special:Emailuser/Janik|Contact]]&lt;br /&gt;
*****'''Ivan Šeďo [1, 1D]''' - [[Special:Emailuser/ikoframe|Contact]]&lt;br /&gt;
******'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;SK/Žilina&amp;lt;/span&amp;gt;''':&lt;br /&gt;
******'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;SK/Piešťany&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Tom Varga''' - [[Special:Emailuser/Varg|Contact]]&lt;br /&gt;
***'''Petr Ondo [2]''' - [[Special:Emailuser/Votik|Contact]]&lt;br /&gt;
***'''Pavel Krátký''' - [[Special:Emailuser/MrBobby|Contact]]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Zlín&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Martin Holec''' - [[Special:Emailuser/Martix|Contact]]&lt;br /&gt;
***'''Pavel Kovář''' - [[Special:Emailuser/Fox|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Ostrava&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****'''Marian Krucina [D]''' - [[Special:Emailuser/oak|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Praha ===&lt;br /&gt;
&lt;br /&gt;
==== Distribuční schéma ====&lt;br /&gt;
'''Vzhledem ke jednodušší distribuci půjde balíček do Brna a odtud jej převeze Tomáš Varga.'''&lt;br /&gt;
&lt;br /&gt;
 '''[n]'''  n je počet kusů, bez n 1 kus&lt;br /&gt;
 '''[nD]''' [[Neo1973_Debug_Board_v3|debug board]] $99 USD + DPH (n počet kusů, bez n 1 kus)&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Jednotlivé volby píšeme za jméno v [] a více voleb oddělujeme čárkou''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;'''&amp;lt;font size=&amp;quot;3&amp;quot;&amp;gt;Status : 14&amp;lt;/font&amp;gt;'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''Jan Mareš [2]''' - [http://wiki.openmoko.org/wiki/User:iVir Contact]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Praha&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Martin Dvořák''' - [[Special:Emailuser/masca|Contact]]&lt;br /&gt;
***'''Roman Dergam [2]''' - [[Special:Emailuser/Dergam|Contact]](do poloviny června)&lt;br /&gt;
***'''Michal Pěnka''' - [http://michal.penka.name/kontakt Contact]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Kolín&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Dag Rauer''' - [[Special:Emailuser/drag|Contact]]&lt;br /&gt;
***'''Miloslav Machotka''' - [[Special:Emailuser/Machy|Contact]]&lt;br /&gt;
***'''David Kozub [D]''' - [[Special:Emailuser/Zub|Contact]] (Kdyby z Prahy seslo, volim Zlin jako fallback.)&lt;br /&gt;
***'''Milan Vontorčík''' - [[Special:Emailuser/Mvontorcik|Contact]]&lt;br /&gt;
***'''Vojtěch Vozáb''' - [mailto:vojtav@centrum.cz Contact]&lt;br /&gt;
***'''Zdeněk Trávníček [D]''' - [[User:V154c1|Contact]] (Klidne si zajedu i jinam po republice)&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Písek&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***''' Luboš Podrázský''' - [[Special:Emailuser/zsman|Contact]]&lt;br /&gt;
***''' Petr Marvan''' - [mailto:petr.marvan1@seznam.cz Contact]&lt;br /&gt;
&lt;br /&gt;
== Slovak Republic ==&lt;br /&gt;
[http://wiki.openmoko.org/wiki/GroupSales#Czech_Republic Spojeno s Czech Republic]&lt;br /&gt;
&lt;br /&gt;
== Croatia ==&lt;br /&gt;
Status : 12/10&lt;br /&gt;
* w00t - [[Special:Emailuser/W00t|Contact]]&lt;br /&gt;
* matija - [[Special:Emailuser/Matija.z|Contact]]&lt;br /&gt;
* valajbeg - [[Special:Emailuser/valajbeg|Contact]]&lt;br /&gt;
* kost - [[Special:Emailuser/kost|Contact]]&lt;br /&gt;
* mnalis - [[Special:Emailuser/mnalis|Contact]]&lt;br /&gt;
* tcavrag - [[Special:Emailuser/tcavrag|Contact]]&lt;br /&gt;
* slavus - [[Special:Emailuser/slavus|Contact]]&lt;br /&gt;
* bsevo - [[Special:Emailuser/bsevo|Contact]]&lt;br /&gt;
* amd64 - [[Special:Emailuser/SilverSpace|Contact]]&lt;br /&gt;
* v-v - [[Special:Emailuser/v-v|Contact]]&lt;br /&gt;
* Lovro - [[Special:Emailuser/Lovro|Contact]]&lt;br /&gt;
* Zlotvor - [[Special:Emailuser/zlotvor|Contact]]&lt;br /&gt;
(maybe we should make one group for bosnia, croatia &amp;amp; serbia together?) [http://wiki.openmoko.org/index.php/Talk:GroupSales#Croatia the talk page]&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
=== Moscow ===&lt;br /&gt;
Status : 10/20&lt;br /&gt;
* 1x sinister - [[Special:Emailuser/sinister|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) shallburn - [[Special:Emailuser/shallburn|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) vadson - [[Special:Emailuser/vadson|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Tallex - [[Special:Emailuser/Tallex|Contact]] &lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) mex3 - [[Special:Emailuser/mex3|Contact]]&lt;br /&gt;
* 1x Alexxy (with debug board if possible) - [[Special:Emailuser/Alexxy|Contact]] (Actual location - Saint-Petersburg)&lt;br /&gt;
* 1x pva (with debug board if possible) - [[Special:Emailuser/Pva|Contact]] (Moscow if matters)&lt;br /&gt;
* 2x (1x [[Image:MokoBox.jpg]] - advanced + 1x Base) cbou (Moscow) - [[Special:Emailuser/cbou|Contact]]&lt;br /&gt;
* 1x (Base) Buffet - [[Special:Emailuser/Buffet|Contact]]&lt;br /&gt;
* 1x homeboy - [[Special:Emailuser/homeboy|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Saint-Petersburg ===&lt;br /&gt;
Status : 7/10&lt;br /&gt;
* 2x [[User:Kainspb|Nikolay Kasatkin]]&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
* 1x (3x?) ([[Image:MokoBox.jpg]] - phone+board) cracatau - [[Special:Emailuser/cracatau|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - phone+board) alexei379 - [[Special:Emailuser/alexei379|Contact]]&lt;br /&gt;
* 3x krigstask - [[Special:Emailuser/krigstask|Contact]]&lt;br /&gt;
&lt;br /&gt;
== Belarus ==&lt;br /&gt;
=== Minsk ===&lt;br /&gt;
Status : 1/10&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Const - [[Special:Emailuser/Const|Contact]]&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
&lt;br /&gt;
== Taiwan ==&lt;br /&gt;
=== Taipei ===&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Cruz [http://wiki.openmoko.org/wiki/Special:Emailuser/cruz Contact]&lt;br /&gt;
* mkl23 @ShinChu [http://wiki.openmoko.org/wiki/Special:Emailuser/mkl23 Contact]&lt;br /&gt;
* htchien [http://wiki.openmoko.org/wiki/Special:Emailuser/htchien Contact]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Neo_FreeRunner_Hardware</id>
		<title>Neo FreeRunner Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Neo_FreeRunner_Hardware"/>
				<updated>2008-06-15T21:01:39Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Neo FreeRunner GTA02 Hardware}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
{{gta02menu}}&lt;br /&gt;
[[Openmoko]] is a software distribution stack that sits on top of a [[hardware]] platform.  The [[Neo FreeRunner]] phone is the second hardware platform to take advantage of Openmoko.  You can find specifications of the hardware by reviewing this introduction page and the pages in the category as shown at the bottom of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- {{note|This page is about hardware that is currently in '''design/prototype''' phase, changes are frequent}} --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Gta02a5 pcba cs.JPG|thumb|400px|display (top) side NOTE: GTA02 A5 PCBA Component Side photo]]&lt;br /&gt;
[[Image:Gta02a5 pcba ps.JPG|thumb|400px|component (back) side NOTE: GTA02 A5 PCBA Print Side photo]]&lt;br /&gt;
[[Image:GTA02 A5 PCB CS.jpg|thumb|400px|component (back) side NOTE: GTA02 A5 PCB Component Side photo]]&lt;br /&gt;
[[Image:GTA02 A5 PCB PS.jpg|thumb|400px|component (back) side NOTE: GTA02 A5 PCB Print Side photo]]&lt;br /&gt;
[[Image:SimpleComponentDiagram.jpg|thumb|400px|Simplified Hardware Component Diagram]]&lt;br /&gt;
&lt;br /&gt;
=Summary=&lt;br /&gt;
FIC is building a Linux based smart phone with full GPL compatible firmware source code for Openmoko, project code named GTA02 (Neo FreeRunner).&lt;br /&gt;
&lt;br /&gt;
Detail hardware component selection can be found below.&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
*Display-   Topply o2.8, 480 x 640 pixels, VGA, 200 NIT minimum, resistance type touch &lt;br /&gt;
&lt;br /&gt;
*User Interface Navigation- Touch screen on LCD, 2 control “buttons”, 1 Power button, 1 Aux for 911 emergency call  &lt;br /&gt;
&lt;br /&gt;
*Built-in 802.11b/g Radio (Atheros chipset AR6001 Flash version) &lt;br /&gt;
&lt;br /&gt;
*Built-in Bluetooth 2.0 + EDR (CSR and support PCM audio , BC4 frimware version) &lt;br /&gt;
&lt;br /&gt;
*Built-in 2D/3D graphics acceleration chip (S-Media 3362) &lt;br /&gt;
&lt;br /&gt;
*2 built-in Tri-Axis sensor (ST accelerometer LIS302DL) &lt;br /&gt;
&lt;br /&gt;
*Built in GPS Radio – -130 dBm with internal antenna, -157 dBm tracking on chipset specification, TTFF under 40 seconds with -130 dBm signal strength, and tracking (u-Blox) &lt;br /&gt;
&lt;br /&gt;
*Antenna – Specialized antenna for best in hand hold GPS, GPRS and Wi-Fi/Bluetooth performance are required, -105dBm on receiving, Tx 30dbm+2 on GSM &lt;br /&gt;
&lt;br /&gt;
*External Antennae –   MMCX GPS connector &lt;br /&gt;
&lt;br /&gt;
*GPRS Radio –GSM/GPRS radio.  A Pre-PTCRB certified module will be preferred &lt;br /&gt;
&lt;br /&gt;
*Linux – Linux kernel 2.6.24 or later OpenMoko kernel &lt;br /&gt;
&lt;br /&gt;
*USB -  Client and Host mode switch-able (to be used for software downloading), provide host 5v power &lt;br /&gt;
&lt;br /&gt;
*Power- Normal mode power will be via 1200 mAh battery with built-in coulomb counter, could charge via specialized charger.  Internal Lithium Ion or Lithium Polymer battery will keep device in standby mode. Battery life (Approximation/Ideal Target) Standby time 150-200 Hrs (GSM) Talk time (Backlight off) Up to 3-4 hrs(GSM) &lt;br /&gt;
&lt;br /&gt;
*LED- LED indicator under Aux/Power button key&lt;br /&gt;
&lt;br /&gt;
=Hardware Specification=&lt;br /&gt;
===Hardware Electrical=== &lt;br /&gt;
&lt;br /&gt;
*400/500 MHz Samsung 2442B Processor/SOC (400 minimum) &lt;br /&gt;
*Boot code in NAND FLASH or 2MB NOR FLASH (optional design)&lt;br /&gt;
*128 MB SDRAM total, 64 MB CPU internal, 64 MB external &lt;br /&gt;
*256MB NAND Flash MCP package. &lt;br /&gt;
&lt;br /&gt;
=== Display ===  &lt;br /&gt;
*Topploy VGA ; 2.8” diagonal, 480 x 640 pixels, 16 bit color depth&lt;br /&gt;
*Transmissive display: good readability in high ambient light is essential &lt;br /&gt;
*White LED backlight.  Required brightness is 200 NIT minimum. &lt;br /&gt;
*Resistance type touch panel.&lt;br /&gt;
&lt;br /&gt;
=== WiFi 802.11 b/g transceiver ===  &lt;br /&gt;
*Must have GPL support source or GPL compatible policy&lt;br /&gt;
*TX power at 11 Mbps: 13 dBm minimum  &lt;br /&gt;
*RX sensitivity at 11 Mbps: -89 dBm desired, -83 dBm minimum &lt;br /&gt;
*AP mode desirable, not required &lt;br /&gt;
*WEP and WPA supported &lt;br /&gt;
*Atheros preferred because it's GPL policy&lt;br /&gt;
&lt;br /&gt;
=== Serial interfaces (UART) ===&lt;br /&gt;
*Three serial interfaces are required   &lt;br /&gt;
*Console  &lt;br /&gt;
*A-GPS or GPS&lt;br /&gt;
*GSM/GPRS&lt;br /&gt;
&lt;br /&gt;
=== Accelerometer ===&lt;br /&gt;
* 2x accelerometer required&lt;br /&gt;
* Could support interrupt while suspend or power save mode&lt;br /&gt;
* 3 axis sensing&lt;br /&gt;
&lt;br /&gt;
=== A-GPS === &lt;br /&gt;
*GPS chipset receiver and antenna &lt;br /&gt;
*Sensitivity at Antenna port: -157 dBm tracking on chipset specification&lt;br /&gt;
*LNA and SAW filter for maximum interference protection&lt;br /&gt;
*Cold start time to first fix: 40 sec typical at -130 dBm, 60 sec max&lt;br /&gt;
*Must support GPL for Assist-GPS function with open API&lt;br /&gt;
*Industry quality GPS &lt;br /&gt;
*Could fit in GTA01 GPS area on the PCB&lt;br /&gt;
&lt;br /&gt;
=== GPS Antenna Performance === &lt;br /&gt;
*Antenna is passive and internal; 15 mm x 15 mm ceramic patch is nominal design &lt;br /&gt;
*Antenna LNA and SAW filter are required to meet GPS performance &lt;br /&gt;
*15 mm square ground plane (minimum 1 mm ground border around patch) (TBA) &lt;br /&gt;
*There will be one external GPS antenna connector (MMCX)&lt;br /&gt;
*C/N ratio should higher than 35 on production testing&lt;br /&gt;
&lt;br /&gt;
=== Buttons === &lt;br /&gt;
*Touch screen over LCD is primary data entry mechanism &lt;br /&gt;
*Two “hard” buttons: Power button (on side of Neo1973) is a mechanical switch actuated by a plastic pushbutton in a hole in the housing.  Aux (911) button on the top of the device, All two of these buttons, when pushed by the operator, are binary inputs (on/off or pressed/not pressed) to the software.  The effect of each button is determined by the application software in the device  &lt;br /&gt;
*Buttons may need to be backlit&lt;br /&gt;
*50000 cycles on hardware specification &lt;br /&gt;
&lt;br /&gt;
=== Sound outputs === &lt;br /&gt;
*Speaker in box (need good volume and acoustic behavior in noisy environments)&lt;br /&gt;
*Audio is monophonic*Max volume: 100 dB at 5 cm to assure good performance in environment.&lt;br /&gt;
*Support earphone with mic by jack&lt;br /&gt;
&lt;br /&gt;
=== Power Design Requirements===&lt;br /&gt;
*Software based power management unit preferred&lt;br /&gt;
*NXP PCF series preferred&lt;br /&gt;
*Need support charge from USB function&lt;br /&gt;
*Need support powered by USB function&lt;br /&gt;
*Power switch:  Neo1973 will have a power switch, for power on/off and suspend &lt;br /&gt;
* Power/Aux switch must be backlit &lt;br /&gt;
*Switch controls whether device is running or suspended by presses of the switch &lt;br /&gt;
*Switch does not shut off the power; it only suspends/resumes the device &lt;br /&gt;
*Internal Li-Ion or Li-Polymer battery is included.  This battery supplies standby power to the device eliminates the rebooting of the device when local power is again reapplied.  Battery is 1200 ma-hr. &lt;br /&gt;
*Battery life (Approximation) Ideal/Target Standby time 150-200 Hrs (GSM) Talk time (Backlight off) Up to 4 hrs(GSM) &lt;br /&gt;
*Estimated current draw for the entire device when in suspend mode (and ALL peripherals are turned off or set for deep sleep) is &amp;lt;5 mA at 3.6 volts (Li-Ion terminal voltage).&lt;br /&gt;
*GSM module deep sleep(alive and keep contact with base station) stage should take less than 8mA&lt;br /&gt;
*Battery will reach half capacity (~600 mAh) with 500 charge-discharge cycles.  This will occur in less than 2 years of daily service. &lt;br /&gt;
*When powered continuously, Neo1973 must suspend (to low power mode) based either on observed low battery voltage condition or a configurable time delay. &lt;br /&gt;
*Neo1973 must monitor battery status while suspended and resume automatically if the charger is inserted.   &lt;br /&gt;
*Primary power connection: 1200mAh battery &lt;br /&gt;
*USB charger have ID pin 47.5k pull down for Openmoko identification  &lt;br /&gt;
*Indicators: an LED indicator visible from the side of the unit will illuminate when charging or have missing incoming call&lt;br /&gt;
&lt;br /&gt;
=== GSM/GPRS ===&lt;br /&gt;
*850/1800/1900 and 900/1800/1900 MHz bands must be supported &lt;br /&gt;
*Design should allow for multi-band version (850/900 MHz) &lt;br /&gt;
*Module based GPRS transceiver could meeting PTCRB and appropriate FCC certifications.  It preferred that the module be pre-certified with PTCRB or OTA test &lt;br /&gt;
*FCC/CE certification required for GSM/GPRS part &lt;br /&gt;
&lt;br /&gt;
=== GSM-GPRS Antenna Performance === &lt;br /&gt;
*-105 dBm receiving on each channel (GSM/PCS) &lt;br /&gt;
*30+2 dBm transmission on GSM channel &lt;br /&gt;
&lt;br /&gt;
=== Wi-Fi Modules ===&lt;br /&gt;
*Must support GPL driver&lt;br /&gt;
*Atheros AR6k preferred&lt;br /&gt;
*Flash version required&lt;br /&gt;
&lt;br /&gt;
=== Wi-Fi Antenna Performance === &lt;br /&gt;
*The  Wi-Fi antenna with TX 13 to 15 dBm&lt;br /&gt;
*RX -89 to -83 dBm @802.11b 11Mbps or an equivalent performance antenna &lt;br /&gt;
&lt;br /&gt;
=== Bluetooth ===&lt;br /&gt;
*CSR BC4 or later solutions&lt;br /&gt;
&lt;br /&gt;
=== USB === &lt;br /&gt;
*Neo FreeRunner GTA02 will have USB, client/host.  Using USB 1.1    &lt;br /&gt;
*Provides USB host 5v power&lt;br /&gt;
*Could be powered by USB&lt;br /&gt;
&lt;br /&gt;
=== Microphone === &lt;br /&gt;
1 microphone is in the device &lt;br /&gt;
&lt;br /&gt;
=== Firmware Image ===&lt;br /&gt;
*Using Linux 2.6.24 or later&lt;br /&gt;
*Could support boot from NAND or Boot from NOR&lt;br /&gt;
*Shipping image should come with basic phone function&lt;br /&gt;
*Could do full firmware upgrade by USB cable&lt;br /&gt;
&lt;br /&gt;
=== PSN ===&lt;br /&gt;
*Device will have a PSN (product serial number) printed on the product label and machine readable in system NAND memory&lt;br /&gt;
&lt;br /&gt;
=== IMEI ===&lt;br /&gt;
*Production phase should have IMEI code written&lt;br /&gt;
&lt;br /&gt;
= Package Specification = &lt;br /&gt;
*Weight: ~150 grams with battery. &lt;br /&gt;
*4 in 1 laser pen passed RoHs and safty regulation for laser equipment safty&lt;br /&gt;
*1x 512MB microSD Card (SanDisk/Transcend)&lt;br /&gt;
*1x USB cable Standard A to mini-B connector&lt;br /&gt;
*1x 1200mAh smart/gauge battery&lt;br /&gt;
*Quick start guide &lt;br /&gt;
*5v USB power cord w/100-240 switchable power plug &lt;br /&gt;
*Safety card, warranty card&lt;br /&gt;
*Package could pass 1m to 1.5m drop test&lt;br /&gt;
*AC USB charger,100v-240v, Passed UL and all required safety regulation&lt;br /&gt;
*Must pass FCC/CE certification&lt;br /&gt;
*Must pass NCC certification for Taiwan import regulation&lt;br /&gt;
*RoHS Compatible&lt;br /&gt;
*WEEE Report required&lt;br /&gt;
&lt;br /&gt;
= Life Cycle Specification = &lt;br /&gt;
&lt;br /&gt;
=== Product Life === &lt;br /&gt;
The product is designed to last a minimum of 2 years. &lt;br /&gt;
&lt;br /&gt;
=== Operating Temperature === &lt;br /&gt;
*Target operating range is –10°C to +60°C &lt;br /&gt;
&lt;br /&gt;
=== Storage Temperature === &lt;br /&gt;
*-15 deg C to +70 deg C  &lt;br /&gt;
&lt;br /&gt;
=== ESD === &lt;br /&gt;
The device can withstand a 4.0kV contact discharge and  8.0kV air  &lt;br /&gt;
&lt;br /&gt;
=== Drop test ===&lt;br /&gt;
Should pass 1m direct drop to concrete ground or 1.5m on slide with carpet&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= GTA02 Hardware Component Selection =&lt;br /&gt;
&lt;br /&gt;
== Physical Dimensions ==&lt;br /&gt;
* 120.7 x 62 x 18.5 mm (4.75 x 2.44 x 0.728 inch)&lt;br /&gt;
* 110 +/- 5 g (4 ounces) without battery &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Main components ==&lt;br /&gt;
=== Processor ===&lt;br /&gt;
The main Processor (CPU) of the Neo1973 GTA02 is a [[Samsung S3C2442B B54]] (running at 400 MHz)&lt;br /&gt;
&lt;br /&gt;
* Product Homepage: [http://www.samsung.com/global/business/semiconductor/productInfo.do?fmly_id=229&amp;amp;partnum=SC32442 Samsung SC32442B]&lt;br /&gt;
* User Manual: [http://210.118.57.197/Products/Semiconductor/MobileSoC/ApplicationProcessor/ARM9Series/SC32442/um_s3c2442b_rev12.pdf Samsung SC32442B]&lt;br /&gt;
* Core: ARM920T&lt;br /&gt;
* Instruction Set: ARMv4 (Android ''currently'' requires ARMv5)&lt;br /&gt;
* Built-in 64MB SDRAM&lt;br /&gt;
* Built-in 256 MB NAND&lt;br /&gt;
* Could run at 500Mhz&lt;br /&gt;
* GPIO Assignments: https://svn.openmoko.org/trunk/doc/hardware/GTA02v4/gpio.txt&amp;lt;br&amp;gt;&lt;br /&gt;
* Evaluation board: [http://www.meritech.co.kr/products/product_view.php?num=52 S3C2442 EVB]&lt;br /&gt;
&lt;br /&gt;
=== Power Management ===&lt;br /&gt;
A NXP PCF50633 04 N3 is used for [[Neo1973_Power_Management|power management]].&lt;br /&gt;
&lt;br /&gt;
* NXP PMU index: [http://www.nxp.com/products/power_management/pmu/index.html NXP PMU index page]&amp;lt;br&amp;gt;&lt;br /&gt;
* Product Datasheet: [http://people.openmoko.org/tony_tu/GTA02/datasheet/PMU/PCF50633DS_02.pdf NXP PCF50633 Product Data Sheet]&amp;lt;br&amp;gt;&lt;br /&gt;
* Product User manual: [http://people.openmoko.org/tony_tu/GTA02/datasheet/PMU/PCF50633UM_6.pdf NXP PCF50633 User Manual]&amp;lt;br&amp;gt;&lt;br /&gt;
**Special thanks NXP provide full user manual and support openness for all developer&lt;br /&gt;
**Datasheet/User manual usage  [http://lists.openmoko.org/pipermail/community/2008-March/013898.html was legally authorized by NXP]&lt;br /&gt;
* Connected to: S3C2442 via I2C, client address is 0x08. &amp;lt;br&amp;gt;&lt;br /&gt;
* Driver Source: https://svn.openmoko.org/trunk/src/target/kernel/patches/pcf50633.patch&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Flash ===&lt;br /&gt;
==== NAND Flash ====&lt;br /&gt;
256MB integrated Samsung NAND flash inside the 2442 multi-chip package, attached to the S3C2442 NAND controller&lt;br /&gt;
&lt;br /&gt;
* Product Homepage: [http://www.samsung.com/global/business/semiconductor/productInfo.do?fmly_id=229&amp;amp;partnum=SC32442 S3C2442]&lt;br /&gt;
* Data Sheet: S3C2442 B54 comes with 256 MB NAND MCP package&lt;br /&gt;
* Connected to: S3C2442 NAND controller&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== NOR Flash ====&lt;br /&gt;
&lt;br /&gt;
16MBit ST M58WR016KB706E NOR flash for 'unbrickable emergency boot' feature.&lt;br /&gt;
&lt;br /&gt;
* Product Homepage: [http://www.st.com/stonline/products/families/memories/fl_nor_mob/index.htm ST Mobile Flash NOR/Mobile Terminal]&lt;br /&gt;
* Data Sheet: [http://www.st.com/stonline/products/literature/ds/13023/m58wr032qb.pdf M58WR016]&lt;br /&gt;
* Connected to: S3C2442 NAND controller&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== SDRAM ===&lt;br /&gt;
128MB SDRAM (64MB inside 2442 MCP, 1x Samsung K4M51323PC) attached to S3C2442 SDRAM controller&lt;br /&gt;
* Product Homepage: [http://www.samsung.com/global/business/semiconductor/productInfo.do?fmly_id=136&amp;amp;partnum=K4M51323PC Samsung K4M51323PC]&lt;br /&gt;
* Data Sheet: [http://www.samsung.com/global/system/business/semiconductor/product/2007/6/11/MobileSDRAM/MobileSDRSDRAM/512Mbit/K4M51323PC/ds_k4m51323pc.pdf Samsung K4M51323PC]&lt;br /&gt;
* Connected to: S3C2442 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== GSM/GPRS ==&lt;br /&gt;
The [[GSM]] (including GPRS) modem is Texas Instruments Calypso based.&lt;br /&gt;
&lt;br /&gt;
* Connected to: S3C2442 UART1 (full-uart, RxD, TxD, CTS, RTS), /dev/ttySAC0 in userspace&lt;br /&gt;
* PM Driver: https://svn.openmoko.org/trunk/src/target/kernel/patches/gta01-power_control.patch&lt;br /&gt;
* Accessible GSM/GPRS antenna jack (if battery cover is removed)&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== CALYPSO ASIC digital baseband ===&lt;br /&gt;
Unfortunately we cannot provide many details on the GSM chipset due to very tight [http://en.wikipedia.org/wiki/Non-disclosure_agreement NDA]s.  However, this is not neccessarily required, since it interfaces using a standard UART serial line with the S3C2442.  On that interface, [http://www.3gpp.org/ftp/Specs/archive/07_series/07.05/ GSM 07.05], [http://www.3gpp.org/ftp/Specs/archive/07_series/07.10/ GSM 07.10] and other standardized protocols are used.&lt;br /&gt;
&lt;br /&gt;
The NDAd documentation for the calypso, [http://cryptome.org/ti-calypso1.pdf register definition ] and [http://cryptome.org/ti-calypso2.pdf hardware definition ] was leaked onto a public forum on the 4th of March by persons or persons unknown.&lt;br /&gt;
The legality of reading these files may vary according to your local laws, as may generating code from them.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Calypso D751992AZHH&amp;lt;br&amp;gt;&lt;br /&gt;
*The firmware within GTA02 should be moko6 or later (internal code name)&lt;br /&gt;
&lt;br /&gt;
=== TI TWL3025BZGMR analog baseband ===&lt;br /&gt;
*Product Homepage: [http://focus.ti.com/general/docs/wtbu/wtbuproductcontent.tsp?templateId=6123&amp;amp;navigationId=12295&amp;amp;contentId=4703 TWL3014]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== TI TRF6151 (GSM/PCS) RF Transceiver ===&lt;br /&gt;
*Product Homepage: [http://focus.ti.com/general/docs/wtbu/wtbuproductcontent.tsp?templateId=6123&amp;amp;navigationId=12296&amp;amp;contentId=4701 TRF6151] &amp;lt;br&amp;gt;&lt;br /&gt;
GPRS Class12/CS4 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== AGPS ==&lt;br /&gt;
u-blox ANTARIS 4 chip&lt;br /&gt;
* Connected to: S3C2442 UART2, /dev/ttySAC1 in userspace&lt;br /&gt;
* Driver: none needed, talks standard NMEA&lt;br /&gt;
* u-blox Antaris 4 Protocol [http://www.u-blox.com/customersupport/antaris_doc.html Protocol download page]&lt;br /&gt;
* ATR0635 Datasheet: [http://www.u-blox.com/products/Data_Sheets/ATR0630_35_SglChip_Data_Sheet(GPS.G4-X-06009).pdf u-blox ATR0635]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Accelerometers ==&lt;br /&gt;
Two ST LIS302DL&lt;br /&gt;
* Homepage: http://www.st.com/stonline/products/literature/ds/12726/lis302dl.htm&lt;br /&gt;
* Datasheet: http://www.st.com/stonline/products/literature/ds/12726.pdf&lt;br /&gt;
* Connected to: S3C2442 via SPI interface&lt;br /&gt;
* S3C2442 SPI EINT interrupt inputs&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Graphics/3D Acceleration ==&lt;br /&gt;
&lt;br /&gt;
Smedia Glamo 3362.&lt;br /&gt;
* Homepage: http://www.smediatech.com/product3362.htm&lt;br /&gt;
* Driver: https://svn.openmoko.org/trunk/src/target/kernel/patches/smedia-glamo.patch&lt;br /&gt;
* Data sheet: This is not available, as it is under NDA. It will likely never be available. (Source: Raster - IRC). There is hope that the glamo chip features may be usable even without a NDA, see [http://unadventure.wordpress.com/2008/06/08/accelerating-in-my-pocket/ the hack here]&lt;br /&gt;
* Connected to: S3C2442 Address/Data bus &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== microSD ===&lt;br /&gt;
The GTA02 has one microSD aka Transflash slot. Using the Glamo 3362 MMC/SD controller&lt;br /&gt;
&lt;br /&gt;
*It should support SDHC, and 4GB card has been tested. Anyone with 8GB card? MicroSD slot is [[Disassembling_Neo1973#Opening_back_cover|under battery]].&lt;br /&gt;
* Connected to: Glamo 3362 MMC/SD controller&lt;br /&gt;
* Driver: Check svn for the SMedia driver with SD implementation&lt;br /&gt;
* [[Supported microSD cards]]&lt;br /&gt;
* Specifications: [http://www.sdcard.org/about/memory_card/pls/ SD Simplified Specification], [http://www.mmca.org/compliance/buy_spec/AN_MMCA050419.pdf MMC (partial)], [http://www.sandisk.com/Assets/File/OEM/Manuals/manual-rs-mmcv1.0.pdf MMC (product manual)]&lt;br /&gt;
* SANDISK 128 MB/512 MB and some 4G SDHC card been verified could work on GTA02&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== LCD Module (LCM) ==&lt;br /&gt;
Toppoly (tpo) 2.8&amp;quot; diagonal (1.7&amp;quot; x 2.27&amp;quot; - 43mm x 58mm) 480x640 TD028TTEC1 module, using a Toshiba JBT6K74 TFT &lt;br /&gt;
LCD Driver Chipset.&amp;lt;br&amp;gt;&lt;br /&gt;
* Homepage: [http://www.tpo.biz/ENG/business-eng/Activer-Matrix-VGA.htm Activer-Matrix-VGA.htm]&lt;br /&gt;
* Specification: FIXME&lt;br /&gt;
* Driver: https://svn.openmoko.org/trunk/src/target/kernel/patches/gta01-jbt6k74.patch&lt;br /&gt;
* Backlight Driver: https://svn.openmoko.org/trunk/src/target/kernel/patches/gta01-backlight.patch&lt;br /&gt;
* Connected to: Glamo3362 LCM interface and Glamo3362 SPI Interface&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Touch Screen ====&lt;br /&gt;
* Connected to: S3C2442 TS controller&lt;br /&gt;
* Driver: https://svn.openmoko.org/trunk/src/target/kernel/patches/s3c2410_touchscreen.patch&lt;br /&gt;
&lt;br /&gt;
== Bluetooth Module==&lt;br /&gt;
Delta DFBM-CS320 Class2 Module, using CSR BlueCore4&lt;br /&gt;
&lt;br /&gt;
* Data Sheet: [http://www.delta.com.tw/product/cp/vco/BT/download/pdf/CS/2.DFBM-CS320.pdf 2.DFBM-CS320.pdf]&lt;br /&gt;
* CSR Data Sheet: [http://www.csrsupport.com/download/2302/CS-101564-DSP10%20BlueCore4-ROM%20Product%20Data%20Sheet.pdf CS-101564-DSP10 BlueCore4-ROM Product Data Sheet.pdf]&lt;br /&gt;
* Driver: Stock Linux Kernel BlueZ&lt;br /&gt;
* Connected to: S3C2442 USB Host controller (OHCI)&lt;br /&gt;
* PM Driver: https://svn.openmoko.org/trunk/src/target/kernel/patches/gta01-power_control.patch&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Bluetooth Audio ===&lt;br /&gt;
This one is wired via PCM bus from the CSR Bluetooth chip to the Wolfson codec.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== WiFi Module==&lt;br /&gt;
&lt;br /&gt;
Accton (WLAN 802.11b/g SiP-M WM3236AQ(Flash Ver:2.0 Atheros AR6001GZ)&lt;br /&gt;
* Connected to: S3C2442 SDIO Host controller&amp;lt;br&amp;gt;&lt;br /&gt;
* Datasheet: [http://www.accton.com/products/Datasheet/WM3236A.AQ.pdf Accton 3236AQ datasheet]&amp;lt;br&amp;gt;&lt;br /&gt;
* Driver: http://svn.openmoko.org/developers/sameo/patches/&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Vibrator ==&lt;br /&gt;
* Driver: https://svn.openmoko.org/trunk/src/target/kernel/patches/gta01-vibrator.patch&lt;br /&gt;
* Connected to: S3C2442 GPIO&lt;br /&gt;
&lt;br /&gt;
== USB Host ==&lt;br /&gt;
The USB Host controller is inside the S3C2442&lt;br /&gt;
* Driver: Stock Linux kernel ohci_hcd&lt;br /&gt;
* USB version 1.1&lt;br /&gt;
* Supply USB 5v in Host mode using usb power switch AAT1275IRN-5.0-T1&lt;br /&gt;
** http://www.analogictech.com/products/digitalfiles/AAT1275.pdf&lt;br /&gt;
* A net EN_USBHOST is controlled by PMU GPIO &amp;quot;GPO&amp;quot;, this one signal when asserted (high)&lt;br /&gt;
** enables generation of 5V for external device using a charge pump&lt;br /&gt;
** enables connection of 15K pulldowns to D+ and D- to allow device insertion and removal detection for host mode&lt;br /&gt;
** DISABLES the path for USB power to charge the battery&lt;br /&gt;
&lt;br /&gt;
It should also be possible to use host mode with externally-provided power. This will allow the FreeRunner to be connected to a USB device and be powered and charging the battery if present at the same time.&lt;br /&gt;
&lt;br /&gt;
* Connect 0V, d+, d-, +5 to your USB device&lt;br /&gt;
* Connect a 15k ohm resistor between d+ and ground&lt;br /&gt;
* Connect a 15k ohm resistor between d- and ground&lt;br /&gt;
* Connect 0V, +5 to your &amp;gt;1A power source&lt;br /&gt;
** If your power source was not the OpenMoko 1A charger, additionally connect a 47K ohm 5% resistor between the ID pin and ground to pretend to be the 1A charger.&lt;br /&gt;
&lt;br /&gt;
In addition you need to make sure EN_USBHOST signal that enables the physical Host mode power generation and disables the USB -&amp;gt; PMU charging path is deasserted.  This may be taken care of automatically shortly by detection of the 48K resistor on a USB insertion leading to forcing EN_USBHOST deasserted.  The charge pump that generates the 5V in host mode doesn't seem to mind getting external 5V given to it, but the real issue is that the battery will not be charged at all if we leave EN_USBHOST asserted since one of its jobs is to stop that happening.&lt;br /&gt;
&lt;br /&gt;
== USB Device ==&lt;br /&gt;
The USB Device controller is inside the S3C2442 &lt;br /&gt;
* Driver: https://svn.openmoko.org/trunk/src/target/kernel/patches/s3c2410_udc.patch&lt;br /&gt;
* Please see [[USB Product IDs]] on information about which Vendor/Product IDs we use&lt;br /&gt;
* 1200mAh lithium battery charges when connected to powered host.&lt;br /&gt;
* Mini-AB connector similar to [http://www.cypressindustries.com/shoponline/proddetail.asp?prod=CCMUSBAB-32005-700&amp;amp;cat=34 this one].&lt;br /&gt;
&lt;br /&gt;
== I2C Devices ==&lt;br /&gt;
I2C is a simple communication standard intended to move small amounts of data a few inches between chips.&lt;br /&gt;
Please see [[I2C | Neo I2C Devices]] for more information &amp;amp; a list of devices &amp;amp; the addresses currently in use &amp;amp; documented for the Neo1973.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
See also: [[Neo1973 Audio Subsystem]]&lt;br /&gt;
&lt;br /&gt;
=== Wolfson Codec ===&lt;br /&gt;
There's a [[WM8753]] Wolfson Microelectronics CODEC (This is not a 'smart' codec that can interpret MP3/... it is a simple dumb 'sound card'.&lt;br /&gt;
* Product Homepage: http://www.wolfsonmicro.com/products/WM8753/&lt;br /&gt;
* Data Sheet: [http://www.wolfsonmicro.com/uploads/documents/en/WM8753.pdf WM8753.pdf]&lt;br /&gt;
* Connected to: S3C2442 IIS interface (PCM data), S3C2442 I2C (Control)&lt;br /&gt;
* Driver: https://svn.openmoko.org/trunk/src/target/kernel/patches/asoc.patch&lt;br /&gt;
&lt;br /&gt;
=== Mono Amplifier ===&lt;br /&gt;
There's a National Semiconductor [[LM4853]] Mono Amplifier at the analog audio output of the WM8753&lt;br /&gt;
&lt;br /&gt;
* Product Homepage: [http://www.national.com/pf/LM/LM4853.html LM4853.html]&lt;br /&gt;
* Data Sheet: [http://www.national.com/ds.cgi/LM/LM4853.pdf LM4853.pdf]&lt;br /&gt;
* Connects to (LM4853 pin): &lt;br /&gt;
** S3C2442 GPIO: HP_IN, AMP_SHUT (shutdown); &lt;br /&gt;
** Wolfson WM8753: LOUTL (LEFTIN), LOUTR (RIGHTIN); &lt;br /&gt;
** speaker4102: (LEFTOUT/BLTOUT-, BLTOUT+);&lt;br /&gt;
** headset-jack: ring 2 (RIGHTOUT), ring 3 (LEFTOUT/BLTOUT-) via 1uF-33R each&lt;br /&gt;
&lt;br /&gt;
=== Analog wired Headset ===&lt;br /&gt;
There's a four-ring 2.5mm stereo jack which provides connectivity to old-fashioned wired headsets.&lt;br /&gt;
&lt;br /&gt;
The headsets used by Motorola smartphones (A780,A1200, ...) and the V-360 have a compatible configuration.&lt;br /&gt;
&lt;br /&gt;
ring&amp;lt;br&amp;gt;&lt;br /&gt;
1(base): GND&amp;lt;br&amp;gt;&lt;br /&gt;
2: right out&amp;lt;br&amp;gt;&lt;br /&gt;
3: left out&amp;lt;br&amp;gt;&lt;br /&gt;
4(tip): mic + HOLD-button(press:short to GND)&lt;br /&gt;
&lt;br /&gt;
=== Buttons ===&lt;br /&gt;
The Neo1973 GTA02 features two buttons:&lt;br /&gt;
* [[Neo1973 Power Button|The Power Button]]&lt;br /&gt;
* [[Neo1973 AUX Button|The &amp;quot;Aux&amp;quot; button]]&lt;br /&gt;
&lt;br /&gt;
== Case ==&lt;br /&gt;
The case for the FreeRunner is all black, as seen on the front page of the wiki.&lt;br /&gt;
&lt;br /&gt;
Openmoko has released the CAD files for the case schematics for the OpenMoko [[Neo1973]] (GTA01) and Neo FreeRunner. These are available in the original Pro/E (.asm/.prt) format and alternative formats created from the originals.&lt;br /&gt;
&lt;br /&gt;
We welcome your assistance in providing other formats. If you are able to convert CAD files from Pro/E format to other formats, please contact [mailto:michael@openmoko.org]. We are especially interested in the DXF format and in images rendered from these files.&lt;br /&gt;
&lt;br /&gt;
* [http://downloads.openmoko.org/CAD/NeoFreerunner_ProE.zip The original Pro/E (.asm/.prt) format]&lt;br /&gt;
&lt;br /&gt;
[http://downloads.openmoko.org/CAD/ Browse CAD directory]&lt;br /&gt;
&lt;br /&gt;
=Accessory=&lt;br /&gt;
&lt;br /&gt;
== Stylus ==&lt;br /&gt;
&lt;br /&gt;
Using 4 in 1 laser pen&lt;br /&gt;
*Vendor: [http://www.quarton.com/laser_pen.html Quarton XPII]&lt;br /&gt;
*GTA02 standard setup comes with [http://www.quarton.com.tw/laser_pen_infiniter_xp_2.html QUARTON XPII 4 in 1 laser pen]&lt;br /&gt;
&lt;br /&gt;
== Battery ==&lt;br /&gt;
The [[Neo FreeRunner (GTA02) Battery]] is mechanically and electrically compatible with the [[Neo1973 GTA01 Battery]], as well as limited compatibility with a Nokia BL6C battery.&lt;br /&gt;
According to [http://lists.openmoko.org/pipermail/community/2007-February/003758.html this] post on the mailinglist.&lt;br /&gt;
[http://wiki.openmoko.org/index.php?title=Image:Neo1973-with-BL5C-battery.png Photo] of the battery inside the Neo1973.&lt;br /&gt;
&lt;br /&gt;
* GTA02 using the smart battery based on TI bq27000 chipset&lt;br /&gt;
* SANYO UF653450S 1200mAh cell.&amp;lt;br&amp;gt;&lt;br /&gt;
* Battery schematics: [http://people.openmoko.org/tony_tu/GTA02/hardware/GTA02/CT-GTA02.pdf GTA02 Smart Battery Schematics]&lt;br /&gt;
&lt;br /&gt;
== microSD Card ==&lt;br /&gt;
&lt;br /&gt;
GTA02 should come with one of following microSD card&lt;br /&gt;
&lt;br /&gt;
* [http://www.transcendusa.com/ Transcend] 512MB microSD card&lt;br /&gt;
* [http://www.sandisk.com/ SanDisk] 512MB microSD card&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Charger ==&lt;br /&gt;
&lt;br /&gt;
AKII Technology Charger&lt;br /&gt;
&lt;br /&gt;
*Model: [http://www.ak2.com.tw/pd_main.asp?sg_id=11 A10P1-05MP]&lt;br /&gt;
*Input: 100-240v~ /0.3A&lt;br /&gt;
*Output: +5v up to 2.0A&lt;br /&gt;
*Add 47.5k 1% resistor between ID pin and ground for openmoko charger identification&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= History =&lt;br /&gt;
&lt;br /&gt;
== GTA02v1 ==&lt;br /&gt;
First generation of prototypes that was given to internal OpenMoko software developers. Total 30 pcs fabricated.&lt;br /&gt;
&lt;br /&gt;
*It is working just fine, but still based on 2440, with external NAND/SDRAM and no NOR flash&lt;br /&gt;
*Using the PCF50633 05 N3 due to 04 N3 not available, re-work power for basic schematics verification&lt;br /&gt;
*Using GTA01 SIM socket&lt;br /&gt;
*Add external debug port&lt;br /&gt;
*Still using Global locate A-GPS&lt;br /&gt;
* ATAG_REVISION: 0310&lt;br /&gt;
&lt;br /&gt;
== GTA02v2 ==&lt;br /&gt;
Second generation of prototypes, Total 50 pcs run at Taipei SMT factory MOUNT&lt;br /&gt;
&lt;br /&gt;
*Ideal is have 256 MB NAND on Samsung package, Due to chip availability Start using S3C2442 B43&lt;br /&gt;
*Using correct PMU PCF50633 04 N3&lt;br /&gt;
*Change new SIM socket&lt;br /&gt;
*Change to u-blox A-GPS&lt;br /&gt;
*Change LCM power from 3.3v to 1.8v&lt;br /&gt;
*USB power switch layout/pin assignment mistake, could not verify USB host supply 5v function&lt;br /&gt;
*GPS function verified ok with good sensitivity&lt;br /&gt;
* ATAG_REVISION: 0320&lt;br /&gt;
&lt;br /&gt;
== GTA02v3 ==&lt;br /&gt;
Production verification version, 2007/10/11 28 pcs fabricate at FIC SuZhou&lt;br /&gt;
&lt;br /&gt;
*Still using S3C2442 B43 for hardware verification&lt;br /&gt;
*Using control pilot run to verify S3C2442 B54 chips&amp;lt;br&amp;gt;&lt;br /&gt;
* ATAG_REVISION: 0330&lt;br /&gt;
&lt;br /&gt;
== GTA02v4 ==&lt;br /&gt;
Mass production release candidate version 1&lt;br /&gt;
&lt;br /&gt;
2 weeks after v3 gerber out, release the v4 gerber, and 2007/10/20 20 pcs fabricate at FIC SuZhou &lt;br /&gt;
&lt;br /&gt;
*Change LCM power from 1.8v to 3.3v for display stability issue&lt;br /&gt;
*fabricate another 200 pcs for yield rate/production verification&lt;br /&gt;
*fabricate 50 pcs with S3C2442 B43 (128 MB NAND) for quality comparsion&lt;br /&gt;
*USB host power chip have some output voltage stability issues with Vb/Vcc comes from different power source, need layout change to fix the issue&lt;br /&gt;
*Battery Coulomb design not working on A4&lt;br /&gt;
* ATAG_REVISION: 0340&lt;br /&gt;
&lt;br /&gt;
== GTA02v5 ==&lt;br /&gt;
Mass production candidate version 2/Mass production version&lt;br /&gt;
&lt;br /&gt;
* First batch fabricate 2008/1/14 at FIC SuZhou&lt;br /&gt;
* Mass production A5 trial run start from 2008 March, including some resistor/capacitor change compare with inital 100 pcs prototypes A5, and prototypes for GTA02 developers was tracked in the [[Prototypes| Prototypes Page]]&lt;br /&gt;
* Coulomb counter issue fixed&lt;br /&gt;
* USB host power switch fixed&lt;br /&gt;
* Need add capacitor for PMU Vbat input for stability issue, this could be done by direct SMT or hand rework&lt;br /&gt;
* Need rework (still using SMT in production) add capacitor for PMU Vbat input for PMU stability issue.&lt;br /&gt;
* Need manual rework GSM IR UART path a 100k pull down for better GSM deep sleep&lt;br /&gt;
* ATAG_REVISION: 0350&lt;br /&gt;
&lt;br /&gt;
===GTA02 mass Production version change list===&lt;br /&gt;
*PMU's LED power error: PMU potential damage issue&lt;br /&gt;
*NOR FLASH enable WP: User can write data into NOR FLASH.&lt;br /&gt;
*CE CS/RS fine tune: Audio's background noise too high&lt;br /&gt;
*I2C pull high resistor: The resistor is too high and signal is distorted &lt;br /&gt;
*GSM leakage current: TX_MODEM has a pull high resistor on IO_3V3&lt;br /&gt;
*Power consumption: Disable keep active function&lt;br /&gt;
*SDIO clock and esd protect resistor&lt;br /&gt;
*Refer to Datasheet: R1526 to 33K&lt;br /&gt;
*GSM modem on pin: The R1018 is too small and has some leakage current&lt;br /&gt;
*LED driving transistor: When GPIO is on, the transistor will be draw more current on LED. This is component change fix, do not need change PCB or re-work.&lt;br /&gt;
&lt;br /&gt;
== GTA02v6 ==&lt;br /&gt;
Mass production candidate version 3/Mass production version&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A6 will be fine tune version of A5, only minor schematic change for better product quality and version control. Capacitor and resistor change A6 also on mass production A5&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*First 100 pcs start from 2008 mid April, and factory make component placement mistake on GSM, second 100 pcs PCB arrive time TBD. &lt;br /&gt;
*Add capacitor space for Vbat, reduce the SMT effort&lt;br /&gt;
*Add GSM IR resistor for better GSM deep sleep&lt;br /&gt;
*Reserve 3 GPIO for hardware version control&lt;br /&gt;
*Fixed LEDs power usage (from about 150mW of v5 to about 25mW)&lt;br /&gt;
* ATAG_REVISION: 0360&lt;br /&gt;
&lt;br /&gt;
=== GTA02 A5 to A6 changes ===&lt;br /&gt;
*Power Glitch on VB_SYS: Add capacitor on layout, Mass production A5 also apply this change.&lt;br /&gt;
*G-sensor separate these interrupt pins: At A5, each accelerometer INT1/INT2 connected to same line, at A6 only INT1 was connected.&lt;br /&gt;
*GSM_modem power source  Reduce power's ripple when the phone is talking&lt;br /&gt;
*Keep active 	Disable keep active function, just fine tune&lt;br /&gt;
*GPIO for version control	&lt;br /&gt;
*GSM RX_IR has some noise  Add resistor and reduce GSM RX_IR noise and gsm can't enter suspend mode easily, apply on mass production A5.&lt;br /&gt;
*LED driving transistor	apply on mass production A5.&lt;br /&gt;
*LCM's VDDIO	We can totally power off LCM's power, save about extra 1mA.&lt;br /&gt;
&lt;br /&gt;
= Debug Board =&lt;br /&gt;
&lt;br /&gt;
== Debug Board Connector definition ==&lt;br /&gt;
&lt;br /&gt;
This is the connector used to connect the [[Debug Board]] and possibly other hardware.&lt;br /&gt;
&lt;br /&gt;
Connections are:&lt;br /&gt;
* 39 - GND&lt;br /&gt;
* 38 - STDI&lt;br /&gt;
* 37 - _RESET&lt;br /&gt;
* 36 - STMS&lt;br /&gt;
* 35 - STCK&lt;br /&gt;
* 34 - STDO&lt;br /&gt;
* 33 - GSM_EN&lt;br /&gt;
* 29 - _STRST&lt;br /&gt;
* 19 - X_I2C_SCL (H-TP4703)&lt;br /&gt;
* 18 - X_I2C_SDA (H-TP4704)&lt;br /&gt;
* 17 - SPI_CLK0&lt;br /&gt;
* 16 - SPI_MOSI0&lt;br /&gt;
* 15 - SPI-MISO0 &lt;br /&gt;
* 14 - SS0&lt;br /&gt;
* 13 - EINT3 (H-TP4705)&lt;br /&gt;
* 3 - CONSOLE_TXD (H-TP4701)&lt;br /&gt;
* 2 - CONSOLE_RXD (H-TP4702)&lt;br /&gt;
&lt;br /&gt;
Information from [http://people.openmoko.org/roh/Debugport_GTA01bv4.png].&lt;br /&gt;
&lt;br /&gt;
= Distinguishing hardware revisions =&lt;br /&gt;
== Inside the [[Bootloader]] ==&lt;br /&gt;
Every hardware revision has its own u-boot image type.  Thus, the bootloader has the revision hard-coded.&lt;br /&gt;
The hardware revision is passed on to the kernel via the ATAG mechanism (ATAG_REVISION)&lt;br /&gt;
&lt;br /&gt;
== Inside the [[Kernel]] ==&lt;br /&gt;
The kernel receives the ATAG_REVISION during bootup, and saves its contents in the &amp;quot;system_rev&amp;quot; global variable.&lt;br /&gt;
&lt;br /&gt;
== From Userspace ==&lt;br /&gt;
The kernel exports the system_rev variable in /proc/cpuinfo as &amp;quot;Revision :&amp;quot; line.&lt;br /&gt;
&lt;br /&gt;
= Certification =&lt;br /&gt;
&lt;br /&gt;
== FCC ==&lt;br /&gt;
*For US Import&lt;br /&gt;
** 850/1800/1900 Band, FCC ID: EUNGTA02&lt;br /&gt;
** 900/1800/1900 Band, FCC ID: EUNGTA02E&lt;br /&gt;
** [http://people.openmoko.org/tony_tu/GTA02/certificate/EUNGTA02_850_1800_1900/ FCC test report(GTA02)]&lt;br /&gt;
** [http://people.openmoko.org/tony_tu/GTA02/certificate/EUNGTA02E_900_1800_1900/ FCC test report(GTA02E)]&lt;br /&gt;
&lt;br /&gt;
== CE ==&lt;br /&gt;
*For Europe&lt;br /&gt;
**Registration number: M528583V-EO&lt;br /&gt;
**[http://people.openmoko.org/tony_tu/GTA02/certificate/CE/ CE report and certificate]&lt;br /&gt;
&lt;br /&gt;
== NCC ==&lt;br /&gt;
*For Taiwan Import&lt;br /&gt;
**NCC certification number: CCAF08DG0080T0 &lt;br /&gt;
**[http://people.openmoko.org/tony_tu/GTA02/certificate/NCC NCC report and certificate]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware ]]&lt;br /&gt;
[[Category:GTA02 Hardware]]&lt;br /&gt;
[[Category:Hardware Support]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Phyce</id>
		<title>User:Phyce</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Phyce"/>
				<updated>2008-04-17T18:16:50Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Interest ==&lt;br /&gt;
&lt;br /&gt;
Having one ! Can't wait until I can hack with GTA02...&lt;br /&gt;
&lt;br /&gt;
== Location == &lt;br /&gt;
&lt;br /&gt;
Plaisir (Ile de France), France&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/Phyce Email]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Group_sales</id>
		<title>Group sales</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Group_sales"/>
				<updated>2008-04-12T09:58:00Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot; align=&amp;quot;left&amp;quot;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Country&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | region&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | city&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | group&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;3&amp;quot; | Sample country&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot;| sample region #1&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot;| sample city&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | sample buyer #1&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | sample buyer #2&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | sample region #2&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | sample city #2&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | sample buyer #3&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;4&amp;quot; | France&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot;| Bretagne&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot;| Brest&amp;lt;br/&amp;gt;Status : 1/10&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | StevenLeRoux (mailto:steven@pourri.fr xmpp:Steven@jabber.fr)&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | Acheteur potentiel #2&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot; | Ile de france&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot; | Paris&amp;lt;br/&amp;gt;Status : 2/10&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | StevenLeRoux&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | [[User:Phyce|Phyce]]&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot; | Norway&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot;| Nordland&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot;| Bodø&amp;lt;br&amp;gt;Status 2/10&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | Alexander Frøyseth mailto:alexander.froyseth@gmail.com&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | Ole Marius&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot; | Italy&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot;| Toscana&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot;| Firenze &amp;lt;br/&amp;gt; Status 1/10&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | Marco Trevisan &amp;lt;br/&amp;gt; [http://blog.3v1n0.net/contatti-trevino/ Contacts here]&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | Anyone else? ;)&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot; | Denmark&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot; | Jutland&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; rowspan=&amp;quot;2&amp;quot; | Aalborg&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | Dan Leinir Turthra Jensen &amp;lt;br /&amp;gt; mailto:admin@leinir.dk&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; | Anyone else? ;)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Community_Member_of_the_Week</id>
		<title>Community Member of the Week</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Community_Member_of_the_Week"/>
				<updated>2008-04-10T19:00:55Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Purpose=&lt;br /&gt;
&lt;br /&gt;
Michael Shiloh proposed in a [http://lists.openmoko.org/pipermail/community/2008-March/014580.html mail] to make a poll for the Openmoko &amp;quot;Community Member of the Week&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;The intent is clearly to identify and appreciate those of you who have &lt;br /&gt;
made and continue to make substantial contributions, and also to &lt;br /&gt;
encourage that extra bit of work required to turn a good application &lt;br /&gt;
into an excellent one, with a nicely polished GUI, a well written user &lt;br /&gt;
guide, etc.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=Nomination=&lt;br /&gt;
== Week 1: Monday, 31 March ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Nominee !! Reason !! Votes&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Kevin_Dean|Kevin]]&lt;br /&gt;
| Kevin writes the (almost) daily [[Snapshot_review|Snapshot review]] and reports on the progress and problems of the current software. Since I'm not an owner of a GTA01, I can't test the software by myself. Therefore any information about Openmoko makes the waiting for the Freerunner less bitter.  I'm reading the different mailing lists very carefully and come to know of solved bugs and new features. However, Kevin gives with his reviews an impression of the software from a users point of view. And when the Freerunner is released, I hope Kevin will continue with his reviews so I always know what snapshot is safe to use.&lt;br /&gt;
|[[USER:Avanc|Avanc]];&lt;br /&gt;
[[User:Treviño|Treviño]];&lt;br /&gt;
[[User:Iandouglas|Iandouglas]];&lt;br /&gt;
[[User:GaidinTS|GaidinTS]];&lt;br /&gt;
[[User:Tingo|Tingo]];&lt;br /&gt;
[[User:Wedge|Wedge]];&lt;br /&gt;
[[User:Dolson|Dolson]];&lt;br /&gt;
[[User:Wurp|Wurp]];&lt;br /&gt;
[[User:kresp0|kresp0]];&lt;br /&gt;
[[User:EsbenDamgaard|EsbenDamgaard]];&lt;br /&gt;
[[User:Phyce|Phyce]];&lt;br /&gt;
total 11 votes&lt;br /&gt;
|-&lt;br /&gt;
| [[User:JoSch|Josch]]&lt;br /&gt;
| Josch has done the really cool hack of getting a full [[debian]] installation, complete with XOrg and touch screen support, up and running on a Neo 1973. Also he is a very active member and site-admin at the [http://neo1973-germany.de/ #neo1973-germany] community.&lt;br /&gt;
|[[User:Cb22|Cb22]]; &lt;br /&gt;
[[User:Jluis|Jluis]]; &lt;br /&gt;
[[User:Marcel_Moczo|Marcel_Moczo]]; &lt;br /&gt;
[[User:Gau-net|fgau]]; &lt;br /&gt;
[[User:Buz|buz]]; &lt;br /&gt;
[[User:emdete|emdete]]; &lt;br /&gt;
Dunedan; &lt;br /&gt;
ctypp;&lt;br /&gt;
[[User:TRIsoft|TRIsoft]]; &lt;br /&gt;
[[User:Kriss|kriss]];&lt;br /&gt;
[[User:Edistar|edistar]]; &lt;br /&gt;
[[User:thomasg|thomasg]]; &lt;br /&gt;
[[User:HdR|HdR]]; &lt;br /&gt;
total = 13 votes&lt;br /&gt;
|-&lt;br /&gt;
| [[User:ScaredyCat|ScaredyCat]]&lt;br /&gt;
| ScaredyCat generates his own daily images and publishes them. In these images he &amp;quot;plays around&amp;quot; with alternatives such as the GTK theme. This provides some insight into technical alternatives that can improve Openmoko. He's also quite willing to check for the existance and repeatability of bugs and is constantly active on IRC.&lt;br /&gt;
|[[User:Kevin_Dean|Kevin Dean]]; [[User:Sargas|Sargas]]; [[User:Homyx|homyx]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[User:Andy|Andy Green]]&lt;br /&gt;
| Because he is always present in the ML, help a lot the person with ideas or critics :) He study how to solve problems with patch or workaroud. Other person I think can give more reasons!&lt;br /&gt;
| [[User:MicRenda|MicRenda]]&lt;br /&gt;
|-&lt;br /&gt;
| example nominee&lt;br /&gt;
| project description&lt;br /&gt;
| voter a; voter b; voter c&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Week 2: Monday, 7 April ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Nominee !! Reason !! Votes&lt;br /&gt;
|-&lt;br /&gt;
| emdete&lt;br /&gt;
| Nominated for his great research he does concerning gsm, gprs, gsm7.10 muxing, all the python daemons that allow stable usage of the neo through dbus and the whole zad project also known as openmoko underground.&lt;br /&gt;
| [[User:JoSch|josch]], [[User:Gau-net|fgau]], [[User:Buz|buz]], [[User:Marcel_Moczo|Marcel_M]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Kevin_Dean|Kevin]]&lt;br /&gt;
| Why wouldn't past nominees be valid candidates ? (see week 1) Keep up the good work Kevin :)&lt;br /&gt;
|[[User:Phyce|Phyce]];&lt;br /&gt;
|-&lt;br /&gt;
| example nominee&lt;br /&gt;
| project description&lt;br /&gt;
| voter a; voter b; voter c&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
If you run out of votes in any week, you could look at [[Community_nominees_for_GTA02_P0]] for ideas ...&lt;br /&gt;
&lt;br /&gt;
[[category:Community]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Who_is_Who</id>
		<title>Who is Who</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Who_is_Who"/>
				<updated>2008-04-10T18:54:01Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Future Owner */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Why this page ?==&lt;br /&gt;
&lt;br /&gt;
If you subscribe for a mailing list, you will see people speaking, answering some questions, but you may ask : Who is who ? Who can I trust when they say something ?&lt;br /&gt;
So I propose to fill this list to help people knowing each other&lt;br /&gt;
&lt;br /&gt;
==Officials members of the Openmoko Team==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
!     !! Username !! Real name !! Nationality !! Remarks&lt;br /&gt;
|-&lt;br /&gt;
|1.   ||[[User|User]] ||  || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==GTA01 Owners==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
!     !! Username !! Real name !! Nationality !! Remarks&lt;br /&gt;
|-&lt;br /&gt;
|1.   ||[[User:jluis|jluis]] || José Luis Perez Diez || Spanish ||Barcelona&lt;br /&gt;
|-&lt;br /&gt;
|2.   ||[[User:liuxf|liuxf]] || Xiangfu liu || Chinese || CHN-CUGSM&lt;br /&gt;
|-&lt;br /&gt;
|3.   ||[[User:Kevin_Dean|Kevin Dean]] || Kevin Dean || USA || Washinton DC Metro Area&lt;br /&gt;
|-&lt;br /&gt;
|4.   ||[[User:Quicksand|Quicksand]] || Clarke Wixon || USA || San Francisco Bay Area&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==GTA02 (Freerunner) Owners==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
!     !! Username !! Real name !! Nationality !! Remarks&lt;br /&gt;
|-&lt;br /&gt;
|1.   ||[[User|User]] ||  || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Future Owner==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
!     !! Username !! Real name !! Nationality !! Remarks&lt;br /&gt;
|-&lt;br /&gt;
|1.   ||[[Sleg|Sleg]] || Cédric D || French || Curious about this future device, will buy one ASAP&lt;br /&gt;
|-&lt;br /&gt;
|2.   ||[[User:Lux|Lux]] || Dirk Deimeke || German || Living in Switzerland, already ordered&lt;br /&gt;
|-&lt;br /&gt;
|3.   ||[[User:Zedd_D1abl0|Zedd_D1abl0]] || Jordan Keith || Australian || Living in Australia, waiting for consumer release&lt;br /&gt;
|-&lt;br /&gt;
|4.   ||[[User:quatrox|quatrox]] || Flemming Richter Mikkelsen || Norwegian || waiting for developer release&lt;br /&gt;
|-&lt;br /&gt;
|5.   ||[[User:Simarillion|Simarillion]] || Michael || German || already preordered&lt;br /&gt;
|-&lt;br /&gt;
|6.   ||[[User:Trevi%C3%B1o|Treviño]] || Marco Trevisan || Italian || Just waiting for a mobile hacking platform!&lt;br /&gt;
|-&lt;br /&gt;
|7.   ||[[User:CdnVapour150C|CdnVapour150C]] || Matt Crane || Canadian || Eagerly waiting GTA2 release&lt;br /&gt;
|-&lt;br /&gt;
|8.   ||[[User:Mmanjos|mmanjos]] || Matt Manjos || Canadian || Living in Ottawa, going to buy the GTA02&lt;br /&gt;
|-&lt;br /&gt;
|9.   ||[[User:bastian|bastian]] || Bastian Muck || German || Student (IT), waiting for shipment to buy one&lt;br /&gt;
|-&lt;br /&gt;
|10.   ||[[User:dalnefre|dalnefre]] || Dale Schumacher || American || Why would editing this page make you trust me?&lt;br /&gt;
|-&lt;br /&gt;
|11.   ||[[User:Phyce|Phyce]] || Philippe Guillebert || French || Eagerly waiting for GTA02 :)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Other (Specify)==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
!     !! Username !! Real name !! Nationality !! Remarks&lt;br /&gt;
|-&lt;br /&gt;
|1.   ||[[User|User]] ||  || ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Phyce</id>
		<title>User:Phyce</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Phyce"/>
				<updated>2008-04-10T18:53:56Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: /* Interest */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Interest ==&lt;br /&gt;
&lt;br /&gt;
Having one ! Can't wait until I can hack with GTA02...&lt;br /&gt;
&lt;br /&gt;
== Location == &lt;br /&gt;
&lt;br /&gt;
Plaisir (Ile de France), France&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Openmoko_Local_Groups:_Paris</id>
		<title>Openmoko Local Groups: Paris</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Openmoko_Local_Groups:_Paris"/>
				<updated>2008-04-06T11:28:09Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;IDF - Paris&lt;br /&gt;
&lt;br /&gt;
{|border=1&lt;br /&gt;
!Name&lt;br /&gt;
!Skills&lt;br /&gt;
!Interest&lt;br /&gt;
!Location&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Fthiery|Florent Thiery]]&lt;br /&gt;
|Software architecture,Bash,Python&lt;br /&gt;
|Application development&lt;br /&gt;
|Evry(91)&lt;br /&gt;
|-&lt;br /&gt;
|[[User:sunix|Sun Seng David TAN]]&lt;br /&gt;
|Software development, java, C++, C, GUI&lt;br /&gt;
|Application development&lt;br /&gt;
|Paris (75020)&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Zitune|Olivier ANDRE]]&lt;br /&gt;
|C++, C, python&lt;br /&gt;
|Application development&lt;br /&gt;
|Villejuif (94800)&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Phyce|Phyce]]&lt;br /&gt;
|Software&lt;br /&gt;
|Hacking the device&lt;br /&gt;
|Plaisir (78370)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
[[Category: OpenMoko Local Groups| ]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Phyce</id>
		<title>User:Phyce</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Phyce"/>
				<updated>2008-04-06T11:24:19Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Interest ==&lt;br /&gt;
&lt;br /&gt;
Having one ! Can't wait until I can hack around GTA02...&lt;br /&gt;
&lt;br /&gt;
== Location == &lt;br /&gt;
&lt;br /&gt;
Plaisir (Ile de France), France&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Community_Member_of_the_Week</id>
		<title>Community Member of the Week</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Community_Member_of_the_Week"/>
				<updated>2008-04-06T11:18:30Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Purpose=&lt;br /&gt;
&lt;br /&gt;
Michael Shiloh proposed in a [http://lists.openmoko.org/pipermail/community/2008-March/014580.html mail] to make a poll for the Openmoko &amp;quot;Community Member of the Week&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;The intent is clearly to identify and appreciate those of you who have &lt;br /&gt;
made and continue to make substantial contributions, and also to &lt;br /&gt;
encourage that extra bit of work required to turn a good application &lt;br /&gt;
into an excellent one, with a nicely polished GUI, a well written user &lt;br /&gt;
guide, etc.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I'm not sure, how the voting should be handled. However, I want to start with a nomination.&lt;br /&gt;
&lt;br /&gt;
=Nomination=&lt;br /&gt;
== Week 1: Monday, 31 March ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Nominee !! Reason !! Votes&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Kevin_Dean|Kevin]]&lt;br /&gt;
| Kevin writes the (almost) daily [[Snapshot_review|Snapshot review]] and reports on the progress and problems of the current software. Since I'm not an owner of a GTA01, I can't test the software by myself. Therefore any information about Openmoko makes the waiting for the Freerunner less bitter.  I'm reading the different mailing lists very carefully and come to know of solved bugs and new features. However, Kevin gives with his reviews an impression of the software from a users point of view. And when the Freerunner is released, I hope Kevin will continue with his reviews so I always know what snapshot is safe to use.&lt;br /&gt;
|[[USER:Avanc|Avanc]]; [[User:Treviño|Treviño]]; [[User:Iandouglas|Iandouglas]]; [[User:GaidinTS|GaidinTS]]; [[User:Tingo|Tingo]]; [[User:Wedge|Wedge]];[[User:Dolson|Dolson]]; [[User:Wurp|Wurp]]; [[User:kresp0|kresp0]]; [[User:EsbenDamgaard|EsbenDamgaard]] ; [[User:Phyce|Phyce]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:JoSch|Josch]]&lt;br /&gt;
| Josch has done the really cool hack of getting a full [[debian]] installation, complete with XOrg and touch screen support, up and running on a Neo 1973. Also he is a very active member and site-admin at the [http://neo1973-germany.de/ #neo1973-germany] community.&lt;br /&gt;
|[[User:Cb22|Cb22]]; [[User:Jluis|Jluis]]; [[User:Marcel_Moczo|Marcel_Moczo]]; [[User:Gau-net|fgau]]; [[User:Buz|buz]]; [[User:emdete|emdete]]; Dunedan; ctypp;[[User:TRIsoft|TRIsoft]]; [[User:Kriss|kriss]];[[User:Edistar|edistar]]; [[User:thomasg|thomasg]]; [[User:HdR|HdR]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:ScaredyCat|ScaredyCat]]&lt;br /&gt;
| ScaredyCat generates his own daily images and publishes them. In these images he &amp;quot;plays around&amp;quot; with alternatives such as the GTK theme. This provides some insight into technical alternatives that can improve Openmoko. He's also quite willing to check for the existance and repeatability of bugs and is constantly active on IRC.&lt;br /&gt;
|[[User:Kevin_Dean|Kevin Dean]]; [[User:Sargas|Sargas]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[User:Andy|Andy Green]]&lt;br /&gt;
| Because he is always present in the ML, help a lot the person with ideas or critics :) He study how to solve problems with patch or workaroud. Other person I think can give more reasons!&lt;br /&gt;
| [[User:MicRenda|MicRenda]]&lt;br /&gt;
|-&lt;br /&gt;
| example nominee&lt;br /&gt;
| project description&lt;br /&gt;
| voter a; voter b; voter c&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
If you run out of votes in any week, you could look at [[Community_nominees_for_GTA02_P0]] for ideas ...&lt;br /&gt;
&lt;br /&gt;
[[category:Community]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Community_Member_of_the_Week</id>
		<title>Community Member of the Week</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Community_Member_of_the_Week"/>
				<updated>2008-04-06T11:16:05Z</updated>
		
		<summary type="html">&lt;p&gt;Phyce: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Purpose=&lt;br /&gt;
&lt;br /&gt;
Michael Shiloh proposed in a [http://lists.openmoko.org/pipermail/community/2008-March/014580.html mail] to make a poll for the Openmoko &amp;quot;Community Member of the Week&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;The intent is clearly to identify and appreciate those of you who have &lt;br /&gt;
made and continue to make substantial contributions, and also to &lt;br /&gt;
encourage that extra bit of work required to turn a good application &lt;br /&gt;
into an excellent one, with a nicely polished GUI, a well written user &lt;br /&gt;
guide, etc.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I'm not sure, how the voting should be handled. However, I want to start with a nomination.&lt;br /&gt;
&lt;br /&gt;
=Nomination=&lt;br /&gt;
== Week 1: Monday, 31 March ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Nominee !! Reason !! Votes&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Kevin_Dean|Kevin]]&lt;br /&gt;
| Kevin writes the (almost) daily [[Snapshot_review|Snapshot review]] and reports on the progress and problems of the current software. Since I'm not an owner of a GTA01, I can't test the software by myself. Therefore any information about Openmoko makes the waiting for the Freerunner less bitter.  I'm reading the different mailing lists very carefully and come to know of solved bugs and new features. However, Kevin gives with his reviews an impression of the software from a users point of view. And when the Freerunner is released, I hope Kevin will continue with his reviews so I always know what snapshot is safe to use.&lt;br /&gt;
|[[USER:Avanc|Avanc]]; [[User:Treviño|Treviño]]; [[User:Iandouglas|Iandouglas]]; [[User:GaidinTS|GaidinTS]]; [[User:Tingo|Tingo]]; [[User:Wedge|Wedge]];[[User:Dolson|Dolson]]; [[User:Wurp|Wurp]]; [[User:kresp0|kresp0]]; [[User:EsbenDamgaard|EsbenDamgaard]] ; [[User:Phyce|Phyce]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:JoSch|Josch]]&lt;br /&gt;
| Josch has done the really cool hack of getting a full [[debian]] installation, complete with XOrg and touch screen support, up and running on a Neo 1973. Also he is a very active member and site-admin at the [http://neo1973-germany.de/ #neo1973-germany] community.&lt;br /&gt;
|[[User:Cb22|Cb22]]; [[User:Jluis|Jluis]]; [[User:Marcel_Moczo|Marcel_Moczo]]; [[User:Gau-net|fgau]]; [[User:Buz|buz]]; [[User:emdete|emdete]]; Dunedan; ctypp;[[User:TRIsoft|TRIsoft]]; [[User:Kriss|kriss]];[[User:Edistar|edistar]]; [[User:thomasg|thomasg]]; [[User:HdR|HdR]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:ScaredyCat|ScaredyCat]]&lt;br /&gt;
| ScaredyCat generates his own daily images and publishes them. In these images he &amp;quot;plays around&amp;quot; with alternatives such as the GTK theme. This provides some insight into technical alternatives that can improve Openmoko. He's also quite willing to check for the existance and repeatability of bugs and is constantly active on IRC.&lt;br /&gt;
|[[User:Kevin_Dean|Kevin Dean]]; [[User:Sargas|Sargas]]&lt;br /&gt;
|-&lt;br /&gt;
|  [[User:Andy|Andy Geen]]&lt;br /&gt;
| Because he is always present in the ML, help a lot the person with ideas or critics :) He study how to solve problems with patch or workaroud. Other person I think can give more reasons!&lt;br /&gt;
| [[User:MicRenda|MicRenda]]&lt;br /&gt;
|-&lt;br /&gt;
| example nominee&lt;br /&gt;
| project description&lt;br /&gt;
| voter a; voter b; voter c&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
If you run out of votes in any week, you could look at [[Community_nominees_for_GTA02_P0]] for ideas ...&lt;br /&gt;
&lt;br /&gt;
[[category:Community]]&lt;/div&gt;</summary>
		<author><name>Phyce</name></author>	</entry>

	</feed>