Send commitlog mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:

   1. r1937 -
      trunk/src/target/OM-2007/applications/openmoko-dialer/src
      ([EMAIL PROTECTED])
   2. r1938 - in trunk/src/target/OM-2007/openmoko-libs: .
      libmokoui ([EMAIL PROTECTED])
   3. r1939 - developers/werner/idiode ([EMAIL PROTECTED])
   4. r1940 - developers/werner/idiode ([EMAIL PROTECTED])
   5. r1941 - trunk/oe/packages/uboot ([EMAIL PROTECTED])
   6. r1942 - trunk/src/target/u-boot/patches
      ([EMAIL PROTECTED])
   7. r1943 - trunk/src/target/OM-2007/openmoko-libs/libmokoui
      ([EMAIL PROTECTED])
--- Begin Message ---
Author: thomas
Date: 2007-05-09 16:36:24 +0200 (Wed, 09 May 2007)
New Revision: 1937

Modified:
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-dialer.c
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.c
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.h
Log:
openmoko-dialer: clean up dialing method


Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-dialer.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-dialer.c
    2007-05-09 14:24:51 UTC (rev 1936)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-dialer.c
    2007-05-09 14:36:24 UTC (rev 1937)
@@ -96,70 +96,12 @@
 }
 
 static void
-window_dialer_dial_out (MokoDialerData * appdata)
-{
-  gchar *codesinput;
-  //get the input digits
-  codesinput =
-    g_strdup (moko_dialer_textview_get_input
-              (appdata->moko_dialer_text_view, FALSE));
-  DBG_TRACE ();
-  if ((!codesinput)
-      || ((codesinput != NULL) && g_utf8_strlen (codesinput, -1)) < 1)
-  {
-    //user didn't input anything, maybe it's a redial, so we just insert the 
last dialed number and return this time.
-    if (g_utf8_strlen (appdata->g_state.lastnumber, -1) > 0)
-    {
-      moko_dialer_textview_insert (appdata->moko_dialer_text_view,
-                                   appdata->g_state.lastnumber);
-      moko_dialer_autolist_refresh_by_string (appdata->
-                                              moko_dialer_autolist,
-                                              appdata->g_state.lastnumber,
-                                              TRUE);
-    }
-    return;
-  }
-//empty the textview
-  moko_dialer_textview_empty (appdata->moko_dialer_text_view);
-
-//and we set the selected autolist to be No
-  moko_dialer_autolist_set_select (appdata->moko_dialer_autolist, -1);
-  moko_dialer_autolist_hide_all_tips (appdata->moko_dialer_autolist);
-
-//got the number;//FIXME:which function should I use if not g_strdup. & strcpy.
-  //strcpy(appdata->g_peer_info.number, codesinput );
-  g_stpcpy (appdata->g_peer_info.number, codesinput);
-
-//retrieve the contact information if any.
-  contact_get_peer_info_from_number (appdata->g_contactlist.contacts,
-                                     &(appdata->g_peer_info));
-// contact_get_peer_info_from_number
-
-/*
-if(!appdata->window_outgoing)
-       window_incoming_init(appdata);
-
-//transfer the contact info
-window_incoming_prepare(appdata);
-
-//start dialling.
-gtk_widget_show(appdata->window_incoming);
-*/
-
-//transfer the contact info
-  window_outgoing_prepare (appdata);
-
-//start dialling.
-  gtk_widget_show_all (appdata->window_outgoing);
-
-  g_free (codesinput);
-
-}
-
-static void
 cb_dialer_button_clicked (GtkButton * button, MokoDialerData * appdata)
 {
-  window_dialer_dial_out (appdata);
+  gchar *number;
+  number = moko_dialer_textview_get_input (appdata->moko_dialer_text_view, 
TRUE);
+  g_debug ("Dialing: %s", number);
+  window_outgoing_dial (appdata, number);
 }
 
 
@@ -202,7 +144,7 @@
 on_dialer_autolist_user_confirmed (GtkWidget * widget, gpointer para_pointer,
                                    gpointer user_data)
 {
-
+#if 0
   MokoDialerData *appdata = (MokoDialerData *) user_data;
   MokoDialerTextview *moko_dialer_text_view = appdata->moko_dialer_text_view;
   DIALER_READY_CONTACT *ready_contact = (DIALER_READY_CONTACT *) para_pointer;
@@ -210,10 +152,8 @@
                ready_contact->p_entry->content);
   moko_dialer_textview_confirm_it (moko_dialer_text_view,
                                    ready_contact->p_entry->content);
-  DBG_MESSAGE ("And here we are supposed to call out directly");
-  window_dialer_dial_out (appdata);
 
-
+#endif
 }
 
 static void

Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.c
  2007-05-09 14:24:51 UTC (rev 1936)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.c
  2007-05-09 14:36:24 UTC (rev 1937)
@@ -49,12 +49,6 @@
 
   //start dialling.
 
-  DBG_TRACE ();
-//  gtk_widget_show_all (appdata->window_talking);
-  gtk_widget_show (appdata->window_talking);
-
-
-  DBG_LEAVE ();
 }
 
 static void
@@ -91,47 +85,6 @@
   DBG_LEAVE ();
 }
 
-void
-window_outgoing_prepare (MokoDialerData * appdata)
-{
-  DBG_ENTER ();
-  if (appdata->window_outgoing == 0)
-    window_outgoing_init (appdata);
-
-
-  moko_dialer_status_set_person_number (appdata->status_outgoing,
-                                        appdata->g_peer_info.number);
-  if (appdata->g_peer_info.hasname)
-  {
-    moko_dialer_status_set_person_image (appdata->status_outgoing,
-                                         appdata->g_peer_info.ID);
-    moko_dialer_status_set_person_name (appdata->status_outgoing,
-                                        appdata->g_peer_info.name);
-  }
-  else
-  {
-    moko_dialer_status_set_person_image (appdata->status_outgoing, "");
-    moko_dialer_status_set_person_name (appdata->status_outgoing, "");
-
-  }
-//  strcpy (appdata->g_state.lastnumber, appdata->g_peer_info.number);
-  g_stpcpy (appdata->g_state.lastnumber, appdata->g_peer_info.number);
-  DBG_LEAVE ();
-
-}
-
-void
-window_outgoing_fails (MokoDialerData * appdata)
-{
-  DBG_ENTER ();
-  moko_dialer_status_set_error (appdata->status_outgoing);
-  moko_dialer_status_set_title_label (appdata->status_outgoing,
-                                      "Call Failure");
-  gtk_widget_hide (appdata->buttonSpeaker);
-  gtk_widget_show (appdata->buttonRedial);
-  DBG_LEAVE ();
-}
-
 gint
 timer_outgoing_time_out (MokoDialerData * appdata)
 {
@@ -162,7 +115,7 @@
     g_source_remove (timer_data->ptimer);
     timer_data->ptimer = 0;
 //maybe it failes
-    window_outgoing_fails (appdata);
+//    window_outgoing_fails (appdata);
     return 0;                   //0 stops the timer.
   }
   else
@@ -311,7 +264,7 @@
 }
 
 void
-window_outgoing_run (MokoDialerData *appdata, gchar *number)
+window_outgoing_dial (MokoDialerData *appdata, gchar *number)
 {
   moko_gsmd_connection_voice_dial (appdata->connection, number);
   gtk_dialog_run (appdata->window_outgoing);

Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.h
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.h
  2007-05-09 14:24:51 UTC (rev 1936)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.h
  2007-05-09 14:36:24 UTC (rev 1937)
@@ -21,7 +21,6 @@
 #define _OPENMOKO_DIALER_WINDOW_OUTGOING_H
 
 gint window_outgoing_init (MokoDialerData * p_dialer_data);
-void window_outgoing_prepare (MokoDialerData * appdata);
-void window_outgoing_fails (MokoDialerData * appdata);
+void window_outgoing_dial (MokoDialerData *data, gchar *number);
 
 #endif




--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-05-09 17:30:54 +0200 (Wed, 09 May 2007)
New Revision: 1938

Modified:
   trunk/src/target/OM-2007/openmoko-libs/ChangeLog
   trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-message-dialog.c
   trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-message-dialog.h
Log:
2007-05-09  Thomas Wood  <[EMAIL PROTECTED]>

        * libmokoui/moko-message-dialog.c:
        (moko_message_dialog_set_message),
        (moko_message_dialog_set_image_from_stock):
        * libmokoui/moko-message-dialog.h:
        Add moko_message_dialog_set_image () and replace some deprecated 
functions


Modified: trunk/src/target/OM-2007/openmoko-libs/ChangeLog
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/ChangeLog    2007-05-09 14:36:24 UTC 
(rev 1937)
+++ trunk/src/target/OM-2007/openmoko-libs/ChangeLog    2007-05-09 15:30:54 UTC 
(rev 1938)
@@ -1,5 +1,13 @@
 2007-05-09  Thomas Wood  <[EMAIL PROTECTED]>
 
+       * libmokoui/moko-message-dialog.c:
+       (moko_message_dialog_set_message),
+       (moko_message_dialog_set_image_from_stock):
+       * libmokoui/moko-message-dialog.h:
+       Add moko_message_dialog_set_image () and replace some deprecated 
functions
+
+2007-05-09  Thomas Wood  <[EMAIL PROTECTED]>
+
        * libmokoui/moko-application.c: (moko_application_init):
        * libmokoui/moko-stock.c: (moko_stock_register):
        * libmokoui/moko-stock.h:

Modified: trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-message-dialog.c
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-message-dialog.c      
2007-05-09 14:36:24 UTC (rev 1937)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-message-dialog.c      
2007-05-09 15:30:54 UTC (rev 1938)
@@ -319,7 +319,7 @@
   priv->message = g_strdup_vprintf (message_format, args);
   va_end (args);
 
-  gtk_label_set (GTK_LABEL (priv->label), priv->message);
+  gtk_label_set_text (GTK_LABEL (priv->label), priv->message);
 }
 
 void
@@ -340,6 +340,27 @@
     g_object_unref (old_image);
 }
 
+
+void
+moko_message_dialog_set_image (MokoMessageDialog *dialog, GtkWidget *image)
+{
+  MokoMessageDialogPrivate* priv = MESSAGE_DIALOG_PRIVATE(dialog);
+  GtkWidget *old_image = priv->image;
+
+  priv->image = image;
+
+  if (old_image != NULL)
+    gtk_container_remove (GTK_CONTAINER (priv->image_alignment), old_image);
+
+  gtk_container_add (GTK_CONTAINER (priv->image_alignment), priv->image);
+  gtk_widget_show_all (GTK_WIDGET (priv->image_alignment));
+
+  if (old_image !=NULL)
+    g_object_unref (old_image);
+}
+
+
+
 GtkWidget*
 moko_message_dialog_new (void)
 {

Modified: trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-message-dialog.h
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-message-dialog.h      
2007-05-09 14:36:24 UTC (rev 1937)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-message-dialog.h      
2007-05-09 15:30:54 UTC (rev 1938)
@@ -63,6 +63,7 @@
     ...)G_GNUC_PRINTF (2, 3);
 void moko_message_dialog_set_image_from_stock (MokoMessageDialog *dialog,
     const gchar *stock_id);
+void moko_message_dialog_set_image (MokoMessageDialog *dialog, GtkWidget 
*image);
 
 G_END_DECLS
 




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2007-05-09 21:05:32 +0200 (Wed, 09 May 2007)
New Revision: 1939

Added:
   developers/werner/idiode/core-side.fig
   developers/werner/idiode/core-side.pdf
Log:
Added 4th alternative, using a FSA5157 switch.



Added: developers/werner/idiode/core-side.fig
===================================================================
--- developers/werner/idiode/core-side.fig      2007-05-09 15:30:54 UTC (rev 
1938)
+++ developers/werner/idiode/core-side.fig      2007-05-09 19:05:32 UTC (rev 
1939)
@@ -0,0 +1,56 @@
+#FIG 3.2
+Landscape
+Center
+Inches
+Letter  
+100.00
+Single
+-2
+1200 2
+1 3 0 0 0 0 50 -1 20 0.000 1 0.0000 3600 4500 75 75 3600 4500 3675 4500
+1 4 0 2 0 0 50 -1 0 0.000 1 0.0000 5437 4800 38 38 5400 4800 5475 4800
+1 4 0 2 0 0 50 -1 0 0.000 1 0.0000 5437 4200 38 38 5400 4200 5475 4200
+1 3 0 0 0 0 50 -1 20 0.000 1 0.0000 3600 6300 75 75 3600 6300 3675 6300
+1 3 0 0 0 0 50 -1 20 0.000 1 0.0000 6900 4800 75 75 6900 4800 6975 4800
+2 2 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        4500 3900 6000 3900 6000 5100 4500 5100 4500 3900
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 3
+        2100 4500 4950 4500 5400 4200
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+        5475 4800 8400 4800
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+        5700 3900 5700 3000
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+        5700 5100 5700 7500
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+        5625 2850 5775 2850
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+        5700 2925 5700 2775
+2 1 0 2 0 0 50 -1 0 0.000 0 0 -1 0 0 2
+        5475 4200 6000 4200
+2 1 1 2 0 0 50 -1 0 6.000 0 0 -1 0 0 2
+        4950 4575 4950 5100
+2 2 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        3450 5100 3750 5100 3750 5700 3450 5700 3450 5100
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+        3600 4500 3600 5100
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 3
+        4950 5100 4950 6300 2100 6300
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+        3600 5700 3600 6300
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+        5550 7500 5850 7500
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 3
+        2100 6900 6900 6900 6900 4800
+4 0 0 50 -1 0 12 0.0000 4 135 405 5775 5325 GND\001
+4 0 0 50 -1 0 12 0.0000 4 135 375 5775 3825 VCC\001
+4 0 0 50 -1 0 12 0.0000 4 135 105 5025 5325 S\001
+4 0 0 50 -1 0 12 0.0000 4 135 210 6075 4125 B0\001
+4 0 0 50 -1 0 12 0.0000 4 135 210 6075 4725 B1\001
+4 0 0 50 -1 0 12 0.0000 4 135 135 4275 4425 A\001
+4 0 0 50 -1 0 12 0.0000 4 180 900 2100 4425 CORE_1V3\001
+4 0 0 50 -1 0 12 0.0000 4 135 705 4500 3825 FSA5157\001
+4 0 0 50 -1 0 12 0.0000 4 135 525 2100 6225 GPIO1\001
+4 0 0 50 -1 0 12 0.0000 4 135 360 3825 5475 560k\001
+4 0 0 50 -1 0 12 0.0000 4 180 870 7500 4725 STBY_1V3\001
+4 0 0 50 -1 0 12 0.0000 4 135 840 2100 6825 LDO1OUT\001

Added: developers/werner/idiode/core-side.pdf
===================================================================
--- developers/werner/idiode/core-side.pdf      2007-05-09 15:30:54 UTC (rev 
1938)
+++ developers/werner/idiode/core-side.pdf      2007-05-09 19:05:32 UTC (rev 
1939)
@@ -0,0 +1,74 @@
+%PDF-1.3
+%�쏢
+5 0 obj
+<</Length 6 0 R/Filter /FlateDecode>>
+stream
+x��U�n1}�W�-R�/��c���"�]*!�xHi�tZ�}f�c��PEJ�v����l�`����ټ�����po~�!A�C�s3���Rl��C�Ŝ:��`�L)uH�
+J}��
 
���Z�;\��kN�^��!+�s�����K��O,���\\t�v�rC7����9^���u=B�b�mu��`ni�4Z�F�~]��UW,{��������eo��
]p՟�"?eKСq,����W�L��O�H~
+�A}Ӱͯ�-���eM�\�K����#�ЭǙn�h�ˈGFO�:�T�U8�qvh���ٴ²��b����8�,�,͔���qё6����IYދb�
��BR��ɖ4��\�V��.��"
+ɭ�sm�>Q(D�������t��:Ѯg�����ͳ9>�n������DPS����o����b9L���Dy����b��l�ȹg=�$����6��C�D�/|�'���U#iG}o���26�m��'T�bk��Wli"��➫��z̈́��#�����G�;(��ӽy$qb��a����4������J6�w�1t�����9ٽ�8�~n�n���v��&[EMAIL
 PROTECTED](������xN`�H
+��"ơ�SX�8���n�RL
��p4��7��Kp��?W��wL�
+�����&N\N�#}��s��endstream
+endobj
+6 0 obj
+691
+endobj
+4 0 obj
+<</Type/Page/MediaBox [0 0 287 381]
+/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/ExtGState 9 0 R
+/Font 10 0 R
+>>
+/Contents 5 0 R
+>>
+endobj
+3 0 obj
+<< /Type /Pages /Kids [
+4 0 R
+] /Count 1
+>>
+endobj
+1 0 obj
+<</Type /Catalog /Pages 3 0 R
+>>
+endobj
+7 0 obj
+<</Type/ExtGState
+/OPM 1>>endobj
+9 0 obj
+<</R7
+7 0 R>>
+endobj
+10 0 obj
+<</R8
+8 0 R>>
+endobj
+8 0 obj
+<</BaseFont/Times-Roman/Type/Font
+/Subtype/Type1>>
+endobj
+2 0 obj
+<</Producer(ESP Ghostscript 815.03)
+/CreationDate(D:20070509154225)
+/ModDate(D:20070509154225)>>endobj
+xref
+0 11
+0000000000 65535 f 
+0000001004 00000 n 
+0000001218 00000 n 
+0000000945 00000 n 
+0000000795 00000 n 
+0000000015 00000 n 
+0000000776 00000 n 
+0000001052 00000 n 
+0000001152 00000 n 
+0000001093 00000 n 
+0000001122 00000 n 
+trailer
+<< /Size 11 /Root 1 0 R /Info 2 0 R
+/ID [(|�TESP��2l�?�y)(|�TESP��2l�?�y)]
+>>
+startxref
+1329
+%%EOF




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2007-05-09 23:48:37 +0200 (Wed, 09 May 2007)
New Revision: 1940

Modified:
   developers/werner/idiode/core-side.fig
   developers/werner/idiode/core-side.pdf
Log:
- made it clear that VCC comes from IO_3V3
- pull-up connects to IO_3V3, not CORE_1V3
- corrected pull-up value for 3.3V



Modified: developers/werner/idiode/core-side.fig
===================================================================
--- developers/werner/idiode/core-side.fig      2007-05-09 19:05:32 UTC (rev 
1939)
+++ developers/werner/idiode/core-side.fig      2007-05-09 21:48:37 UTC (rev 
1940)
@@ -7,11 +7,17 @@
 Single
 -2
 1200 2
-1 3 0 0 0 0 50 -1 20 0.000 1 0.0000 3600 4500 75 75 3600 4500 3675 4500
+6 5550 2100 5850 2400
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+        5625 2250 5775 2250
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+        5700 2325 5700 2175
+-6
 1 4 0 2 0 0 50 -1 0 0.000 1 0.0000 5437 4800 38 38 5400 4800 5475 4800
 1 4 0 2 0 0 50 -1 0 0.000 1 0.0000 5437 4200 38 38 5400 4200 5475 4200
 1 3 0 0 0 0 50 -1 20 0.000 1 0.0000 3600 6300 75 75 3600 6300 3675 6300
 1 3 0 0 0 0 50 -1 20 0.000 1 0.0000 6900 4800 75 75 6900 4800 6975 4800
+1 3 0 0 0 0 50 -1 20 0.000 1 0.0000 5700 3000 75 75 5700 3000 5775 3000
 2 2 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
         4500 3900 6000 3900 6000 5100 4500 5100 4500 3900
 2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 3
@@ -19,21 +25,15 @@
 2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
         5475 4800 8400 4800
 2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-        5700 3900 5700 3000
+        5700 3900 5700 2400
 2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
         5700 5100 5700 7500
-2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-        5625 2850 5775 2850
-2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-        5700 2925 5700 2775
 2 1 0 2 0 0 50 -1 0 0.000 0 0 -1 0 0 2
         5475 4200 6000 4200
 2 1 1 2 0 0 50 -1 0 6.000 0 0 -1 0 0 2
         4950 4575 4950 5100
 2 2 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
         3450 5100 3750 5100 3750 5700 3450 5700 3450 5100
-2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-        3600 4500 3600 5100
 2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 3
         4950 5100 4950 6300 2100 6300
 2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
@@ -42,6 +42,8 @@
         5550 7500 5850 7500
 2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 3
         2100 6900 6900 6900 6900 4800
+2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 3
+        3600 5100 3600 3000 5700 3000
 4 0 0 50 -1 0 12 0.0000 4 135 405 5775 5325 GND\001
 4 0 0 50 -1 0 12 0.0000 4 135 375 5775 3825 VCC\001
 4 0 0 50 -1 0 12 0.0000 4 135 105 5025 5325 S\001
@@ -51,6 +53,7 @@
 4 0 0 50 -1 0 12 0.0000 4 180 900 2100 4425 CORE_1V3\001
 4 0 0 50 -1 0 12 0.0000 4 135 705 4500 3825 FSA5157\001
 4 0 0 50 -1 0 12 0.0000 4 135 525 2100 6225 GPIO1\001
-4 0 0 50 -1 0 12 0.0000 4 135 360 3825 5475 560k\001
+4 0 0 50 -1 0 12 0.0000 4 135 360 3825 5475 330k\001
 4 0 0 50 -1 0 12 0.0000 4 180 870 7500 4725 STBY_1V3\001
 4 0 0 50 -1 0 12 0.0000 4 135 840 2100 6825 LDO1OUT\001
+4 0 0 50 -1 0 12 0.0000 4 180 600 5850 2325 IO_3V3\001

Modified: developers/werner/idiode/core-side.pdf
===================================================================
--- developers/werner/idiode/core-side.pdf      2007-05-09 19:05:32 UTC (rev 
1939)
+++ developers/werner/idiode/core-side.pdf      2007-05-09 21:48:37 UTC (rev 
1940)
@@ -3,18 +3,14 @@
 5 0 obj
 <</Length 6 0 R/Filter /FlateDecode>>
 stream
-x��U�n1}�W�-R�/��c���"�]*!�xHi�tZ�}f�c��PEJ�v����l�`����ټ�����po~�!A�C�s3���Rl��C�Ŝ:��`�L)uH�
-J}��
 
���Z�;\��kN�^��!+�s�����K��O,���\\t�v�rC7����9^���u=B�b�mu��`ni�4Z�F�~]��UW,{��������eo��
]p՟�"?eKСq,����W�L��O�H~
-�A}Ӱͯ�-���eM�\�K����#�ЭǙn�h�ˈGFO�:�T�U8�qvh���ٴ²��b����8�,�,͔���qё6����IYދb�
��BR��ɖ4��\�V��.��"
-ɭ�sm�>Q(D�������t��:Ѯg�����ͳ9>�n������DPS����o����b9L���Dy����b��l�ȹg=�$����6��C�D�/|�'���U#iG}o���26�m��'T�bk��Wli"��➫��z̈́��#�����G�;(��ӽy$qb��a����4������J6�w�1t�����9ٽ�8�~n�n���v��&[EMAIL
 PROTECTED](������xN`�H
-��"ơ�SX�8���n�RL
��p4��7��Kp��?W��wL�
-�����&N\N�#}��s��endstream
+x��U�n1}�W��i�8�I��U���ݡB�[Z.݇�~۱3� 
>�Zi���9c'N�ɺ��������&ۇ_����w�Q��4c�|�{�<�h�\Aw���m
���.F��T�Ҁ���!�⟷;ӱ��V�P�"b�U�٩8v�pv(��
+U\��[ح�^��ܿ~���M�an��E>4�PߡXJj��d
[EMAIL PROTECTED]>|�<��=>av
��  ��R�;R��\���s#�����h���R/dY�b�����!����y(5���݄;[EMAIL 
PROTECTED]&�:���B�1k�s���-�K8��;[EMAIL PROTECTED]&/�"��M�~�������$�-�
��Ptz 
�5�)`�'[R��[�����Q%���œ�(�Y�b��*�XM�%k_����ζ����t��'v�����1슾�PɃ�O��9�|w~<�0��v�3G7gg�W1ٕ���i>�:�a��58~eV���y��
      �!�!�F?[o.n�&Pb��D���I�oHKG7?(p��j
���`!�
��$'�rݹ�N?��*x�M��|
��Sc�qͭ���mh�����?���endstream
 endobj
 6 0 obj
-691
+701
 endobj
 4 0 obj
-<</Type/Page/MediaBox [0 0 287 381]
+<</Type/Page/MediaBox [0 0 323 381]
 /Parent 3 0 R
 /Resources<</ProcSet[/PDF /Text]
 /ExtGState 9 0 R
@@ -50,25 +46,25 @@
 endobj
 2 0 obj
 <</Producer(ESP Ghostscript 815.03)
-/CreationDate(D:20070509154225)
-/ModDate(D:20070509154225)>>endobj
+/CreationDate(D:20070509184034)
+/ModDate(D:20070509184034)>>endobj
 xref
 0 11
 0000000000 65535 f 
-0000001004 00000 n 
-0000001218 00000 n 
-0000000945 00000 n 
-0000000795 00000 n 
+0000001014 00000 n 
+0000001228 00000 n 
+0000000955 00000 n 
+0000000805 00000 n 
 0000000015 00000 n 
-0000000776 00000 n 
-0000001052 00000 n 
-0000001152 00000 n 
-0000001093 00000 n 
-0000001122 00000 n 
+0000000786 00000 n 
+0000001062 00000 n 
+0000001162 00000 n 
+0000001103 00000 n 
+0000001132 00000 n 
 trailer
 << /Size 11 /Root 1 0 R /Info 2 0 R
-/ID [(|�TESP��2l�?�y)(|�TESP��2l�?�y)]
+/ID [( |�������%����)( |�������%����)]
 >>
 startxref
-1329
+1339
 %%EOF




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2007-05-10 00:09:01 +0200 (Thu, 10 May 2007)
New Revision: 1941

Modified:
   trunk/oe/packages/uboot/uboot-gta01_svn.bb
Log:
Applied patch by Marcin Juszkiewicz for bug
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=549



Modified: trunk/oe/packages/uboot/uboot-gta01_svn.bb
===================================================================
--- trunk/oe/packages/uboot/uboot-gta01_svn.bb  2007-05-09 21:48:37 UTC (rev 
1940)
+++ trunk/oe/packages/uboot/uboot-gta01_svn.bb  2007-05-09 22:09:01 UTC (rev 
1941)
@@ -1,10 +1,10 @@
 DESCRIPTION = "U-boot bootloader w/ Neo1973 (GTA01) support"
-AUTHOR = "Harald Welte <[EMAIL PROTECTED]>
+AUTHOR = "Harald Welte <[EMAIL PROTECTED]>"
 LICENSE = "GPL"
 SECTION = "bootloader"
 PRIORITY = "optional"
 PV = "1.2.0+svn${SRCDATE}"
-PR = "r5"
+PR = "r6"
 
 PROVIDES = "virtual/bootloader"
 S = "${WORKDIR}/git"
@@ -37,7 +37,7 @@
 }
 
 do_compile () {
-       chmod +x board/neo1973/split_by_variant.sh
+       chmod +x board/neo1973/gta*/split_by_variant.sh
        for mach in ${UBOOT_MACHINES}
        do
                oe_runmake ${mach}_config




--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-05-10 05:18:39 +0200 (Thu, 10 May 2007)
New Revision: 1942

Modified:
   trunk/src/target/u-boot/patches/uboot-dfu.patch
Log:
* increase static buffer size for nand writing to 128kByte (from 16kByte) to be 
as large as the erasesize of 2k flash


Modified: trunk/src/target/u-boot/patches/uboot-dfu.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-dfu.patch     2007-05-09 22:09:01 UTC 
(rev 1941)
+++ trunk/src/target/u-boot/patches/uboot-dfu.patch     2007-05-10 03:18:39 UTC 
(rev 1942)
@@ -188,7 +188,7 @@
 +       * This saves us from having to clean up dynamic allications in the
 +       * various error paths of the code.  Also, it will always work, no
 +       * matter what the memory situation is. */
-+      unsigned char _buf[0x4000];
++      unsigned char _buf[0x20000];    /* FIXME: depends flash page size */
 +};
 +
 +static struct dnload_state _dnstate;




--- End Message ---
--- Begin Message ---
Author: mickey
Date: 2007-05-10 09:05:29 +0200 (Thu, 10 May 2007)
New Revision: 1943

Modified:
   trunk/src/target/OM-2007/openmoko-libs/libmokoui/libmokoui.pro
Log:
openmoko-libs/libmokoui.pro: catch up with recent file additions


Modified: trunk/src/target/OM-2007/openmoko-libs/libmokoui/libmokoui.pro
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokoui/libmokoui.pro      
2007-05-10 03:18:39 UTC (rev 1942)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokoui/libmokoui.pro      
2007-05-10 07:05:29 UTC (rev 1943)
@@ -1,5 +1,5 @@
 TEMPLATE = lib
-VERSION = 0.0.2
+VERSION = 0.0.3
 TARGET = mokoui
 
 HEADERS = \
@@ -19,8 +19,10 @@
     moko-pixmap-button.h \
     moko-paned-window.h \
     moko-scrolled-pane.h \
+    moko-stock.h \
     moko-tree-view.h \
     moko-tool-box.h \
+    moko-ui.h \
     moko-window.h
 
 SOURCES = \
@@ -40,6 +42,7 @@
     moko-pixmap-button.c \
     moko-paned-window.c \
     moko-scrolled-pane.c \
+    moko-stock.c \
     moko-tree-view.c \
     moko-tool-box.c \
     moko-window.c




--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to