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. r1303 - trunk/src/target/u-boot/patches ([EMAIL PROTECTED])
   2. r1304 - trunk/src/target/u-boot/patches ([EMAIL PROTECTED])
   3. r1305 - trunk/src/target/u-boot/patches ([EMAIL PROTECTED])
   4. r1306 - trunk/src/target/u-boot/patches ([EMAIL PROTECTED])
   5. r1307 - trunk/src/target/gsm/src/gsmd ([EMAIL PROTECTED])
   6. r1308 -
      trunk/src/target/OM-2007/applications/openmoko-dialer/src
      ([EMAIL PROTECTED])
   7. r1309 - trunk/src/target/gsm/src/gsmd ([EMAIL PROTECTED])
   8. r1310 - trunk/oe/packages/tasks ([EMAIL PROTECTED])
   9. r1311 - trunk/oe/conf/distro/include ([EMAIL PROTECTED])
--- Begin Message ---
Author: werner
Date: 2007-03-09 15:00:58 +0100 (Fri, 09 Mar 2007)
New Revision: 1303

Added:
   trunk/src/target/u-boot/patches/dont-repeat.patch
Log:
common/main.c (main_loop): new flag CONFIG_DONT_REPEAT to suppress automatic
  repetition of previous command
include/configs/neo1973.h: added CONFIG_DONT_REPEAT



Added: trunk/src/target/u-boot/patches/dont-repeat.patch
===================================================================
--- trunk/src/target/u-boot/patches/dont-repeat.patch   2007-03-09 10:16:13 UTC 
(rev 1302)
+++ trunk/src/target/u-boot/patches/dont-repeat.patch   2007-03-09 14:00:58 UTC 
(rev 1303)
@@ -0,0 +1,33 @@
+common/main.c (main_loop): new flag CONFIG_DONT_REPEAT to suppress automatic
+  repetition of previous command
+include/configs/neo1973.h: added CONFIG_DONT_REPEAT
+
+Index: u-boot/common/main.c
+===================================================================
+--- u-boot.orig/common/main.c
++++ u-boot/common/main.c
+@@ -481,7 +481,12 @@ void main_loop (void)
+                       reset_cmd_timeout();
+               }
+ #endif
++#ifdef CONFIG_DONT_REPEAT
++              do len = readline (CFG_PROMPT);
++              while (!len);
++#else
+               len = readline (CFG_PROMPT);
++#endif /* !CONFIG_DONT_REPEAT */
+ 
+               flag = 0;       /* assume no special flags for now */
+               if (len > 0)
+Index: u-boot/include/configs/neo1973.h
+===================================================================
+--- u-boot.orig/include/configs/neo1973.h
++++ u-boot/include/configs/neo1973.h
+@@ -215,6 +215,7 @@
+ #define CFG_ENV_SIZE          0x4000          /* 16k Total Size of 
Environment Sector */
+ #define CFG_ENV_OFFSET_OOB    1               /* Location of ENV stored in 
block 0 OOB */
+ #define       CFG_PREBOOT_OVERRIDE    1       /* allow preboot from memory */
++#define CONFIG_DONT_REPEAT            /* don't repeat commands */
+ 
+ #define NAND_MAX_CHIPS                1
+ #define CFG_NAND_BASE         0x4e000000




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2007-03-09 15:27:22 +0100 (Fri, 09 Mar 2007)
New Revision: 1304

Removed:
   trunk/src/target/u-boot/patches/dont-repeat.patch
Log:
Rejected.



Deleted: trunk/src/target/u-boot/patches/dont-repeat.patch
===================================================================
--- trunk/src/target/u-boot/patches/dont-repeat.patch   2007-03-09 14:00:58 UTC 
(rev 1303)
+++ trunk/src/target/u-boot/patches/dont-repeat.patch   2007-03-09 14:27:22 UTC 
(rev 1304)
@@ -1,33 +0,0 @@
-common/main.c (main_loop): new flag CONFIG_DONT_REPEAT to suppress automatic
-  repetition of previous command
-include/configs/neo1973.h: added CONFIG_DONT_REPEAT
-
-Index: u-boot/common/main.c
-===================================================================
---- u-boot.orig/common/main.c
-+++ u-boot/common/main.c
-@@ -481,7 +481,12 @@ void main_loop (void)
-                       reset_cmd_timeout();
-               }
- #endif
-+#ifdef CONFIG_DONT_REPEAT
-+              do len = readline (CFG_PROMPT);
-+              while (!len);
-+#else
-               len = readline (CFG_PROMPT);
-+#endif /* !CONFIG_DONT_REPEAT */
- 
-               flag = 0;       /* assume no special flags for now */
-               if (len > 0)
-Index: u-boot/include/configs/neo1973.h
-===================================================================
---- u-boot.orig/include/configs/neo1973.h
-+++ u-boot/include/configs/neo1973.h
-@@ -215,6 +215,7 @@
- #define CFG_ENV_SIZE          0x4000          /* 16k Total Size of 
Environment Sector */
- #define CFG_ENV_OFFSET_OOB    1               /* Location of ENV stored in 
block 0 OOB */
- #define       CFG_PREBOOT_OVERRIDE    1       /* allow preboot from memory */
-+#define CONFIG_DONT_REPEAT            /* don't repeat commands */
- 
- #define NAND_MAX_CHIPS                1
- #define CFG_NAND_BASE         0x4e000000




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2007-03-09 16:40:30 +0100 (Fri, 09 Mar 2007)
New Revision: 1305

Modified:
   trunk/src/target/u-boot/patches/cmd-unzip.patch
Log:
common/cmd_mem.c: changed maximum argc of "unzip" from CFG_MAXARGS to 4



Modified: trunk/src/target/u-boot/patches/cmd-unzip.patch
===================================================================
--- trunk/src/target/u-boot/patches/cmd-unzip.patch     2007-03-09 14:27:22 UTC 
(rev 1304)
+++ trunk/src/target/u-boot/patches/cmd-unzip.patch     2007-03-09 15:40:30 UTC 
(rev 1305)
@@ -7,7 +7,7 @@
 ===================================================================
 --- u-boot.orig/common/cmd_mem.c
 +++ u-boot/common/cmd_mem.c
-@@ -1185,6 +1185,34 @@ int do_mem_crc (cmd_tbl_t *cmdtp, int fl
+@@ -1148,6 +1148,34 @@ int do_mem_crc (cmd_tbl_t *cmdtp, int fl
  }
  #endif        /* CONFIG_CRC32_VERIFY */
  
@@ -42,13 +42,13 @@
  /**************************************************/
  #if (CONFIG_COMMANDS & CFG_CMD_MEMORY)
  U_BOOT_CMD(
-@@ -1288,5 +1316,13 @@ U_BOOT_CMD(
+@@ -1251,5 +1279,13 @@ U_BOOT_CMD(
  );
  #endif /* CONFIG_MX_CYCLIC */
  
 +#ifdef CONFIG_UNZIP
 +U_BOOT_CMD(
-+      unzip,  CFG_MAXARGS,    1,      do_unzip,
++      unzip,  4,      1,      do_unzip,
 +      "unzip - unzip a memory region\n",
 +      "srcaddr dstaddr [dstsize]\n"
 +);




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2007-03-09 16:45:53 +0100 (Fri, 09 Mar 2007)
New Revision: 1306

Modified:
   trunk/src/target/u-boot/patches/uboot-dfu.patch
Log:
drivers/usbdfu.c (handle_dnload): free stale dynamically allocated buffer 
  before starting new download (plugs memory leak after failed downloads)
drivers/usbdfu.c (dfu_init_strings): corrected partition name creation logic



Modified: trunk/src/target/u-boot/patches/uboot-dfu.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-dfu.patch     2007-03-09 15:40:30 UTC 
(rev 1305)
+++ trunk/src/target/u-boot/patches/uboot-dfu.patch     2007-03-09 15:45:53 UTC 
(rev 1306)
@@ -99,7 +99,7 @@
 ===================================================================
 --- /dev/null
 +++ u-boot/drivers/usbdfu.c
-@@ -0,0 +1,1007 @@
+@@ -0,0 +1,1014 @@
 +/*
 + * (C) 2007 by OpenMoko, Inc.
 + * Author: Harald Welte <[EMAIL PROTECTED]>
@@ -415,6 +415,11 @@
 +              return RET_STALL;
 +      }
 +
++      if (first && ds->buf && ds->buf != ds->_buf && ds->buf != LOAD_ADDR) {
++              free(ds->buf);
++              ds->buf = ds->_buf;
++      }
++
 +      switch (dev->alternate) {
 +      case 0:
 +              if (first) {
@@ -1009,13 +1014,15 @@
 +                      strdesc = create_usbstring(CONFIG_DFU_ALT0_STR);
 +              } else {
 +                      struct part_info *part = get_partition_nand(i-1);
-+                      if (!part) {
-+                              part = create_usbstring("undefined partition");
-+                              if (!part)
-+                                      continue;
-+                      }
-+                      strdesc = create_usbstring(part->name);
++
++                      if (part)
++                              strdesc = create_usbstring(part->name);
++                      else
++                              strdesc =
++                                  create_usbstring("undefined partition");
 +              }
++              if (!strdesc)
++                      continue;
 +              usb_strings[STR_COUNT+i+1] = strdesc;
 +      }
 +}




--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-03-09 17:39:05 +0100 (Fri, 09 Mar 2007)
New Revision: 1307

Modified:
   trunk/src/target/gsm/src/gsmd/gsmd.c
   trunk/src/target/gsm/src/gsmd/vendor_ti.c
Log:
move CTZR into vendor_ti.c, since not all GSM Modems support it (Philipp Zabel)


Modified: trunk/src/target/gsm/src/gsmd/gsmd.c
===================================================================
--- trunk/src/target/gsm/src/gsmd/gsmd.c        2007-03-09 15:45:53 UTC (rev 
1306)
+++ trunk/src/target/gsm/src/gsmd/gsmd.c        2007-03-09 16:39:05 UTC (rev 
1307)
@@ -76,8 +76,6 @@
        rc |= gsmd_simplecmd(gsmd, "AT+CLIP=1");
        /* use +COLP: to indicate COLP */
        rc |= gsmd_simplecmd(gsmd, "AT+COLP=1");
-       /* use +CTZR: to report time zone changes */
-       rc |= gsmd_simplecmd(gsmd, "AT+CTZR=1");
        /* power on the phone */
        rc |= gsmd_simplecmd(gsmd, "AT+CFUN=1");
 

Modified: trunk/src/target/gsm/src/gsmd/vendor_ti.c
===================================================================
--- trunk/src/target/gsm/src/gsmd/vendor_ti.c   2007-03-09 15:45:53 UTC (rev 
1306)
+++ trunk/src/target/gsm/src/gsmd/vendor_ti.c   2007-03-09 16:39:05 UTC (rev 
1307)
@@ -244,6 +244,8 @@
 static int ticalypso_initsettings(struct gsmd *g)
 {
        int rc;
+       /* use +CTZR: to report time zone changes */
+       rc |= gsmd_simplecmd(gsmd, "AT+CTZR=1");
        /* enable %CPI: call progress indication */
        rc = gsmd_simplecmd(g, "AT\%CPI=3");
        /* enable %CPRI: ciphering indications */




--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-03-09 19:27:21 +0100 (Fri, 09 Mar 2007)
New Revision: 1308

Modified:
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-main.c
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-dialer.c
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-history.c
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-incoming.c
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-outgoing.c
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-pin.c
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-talking.c
Log:
* Add a command line option to to the dialer to show the gui on first run
* Make sure no windows are shown and then hidden in openmoko-dialer


Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-main.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-main.c
    2007-03-09 16:39:05 UTC (rev 1307)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-main.c
    2007-03-09 18:27:21 UTC (rev 1308)
@@ -248,6 +248,15 @@
     }
 }
 
+static gboolean show_gui;
+
+static GOptionEntry entries[] = 
+{
+  { "show-gui", 's', 0, G_OPTION_ARG_NONE, &show_gui, "Show the GUI at startup 
(default off)", "N" },
+  { NULL }
+};
+
+
 int main( int argc, char** argv )
 {
   pid_t           lockapp;
@@ -258,6 +267,14 @@
 if (argc != 1)
     {
       /* Add init code. */
+      GError *error = NULL;
+      GOptionContext *context = g_option_context_new ("");
+
+      g_option_context_add_main_entries (context, entries, NULL);
+      g_option_context_add_group (context, gtk_get_option_group (TRUE));
+      g_option_context_parse (context, &argc, &argv, &error);
+
+      g_option_context_free (context);
     }
   lockapp = testlock ("/tmp/dialer.lock");
   if (lockapp > 0)
@@ -297,8 +314,11 @@
   window_history_init(p_dialer_data); 
   DBG_MSG ("\nusage: \"openmoko-dialer\" will not show any GUI initialy until 
you reactivate the app using another \"openmoko-dialer\" command");
 
+if (show_gui)
+{
+  handle_sigusr1 (SIGUSR1);
+}
 
-
 //from now on we will not use multithreads.
   gsm_lgsm_start(mainloop);
 

Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-dialer.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-dialer.c
   2007-03-09 16:39:05 UTC (rev 1307)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-dialer.c
   2007-03-09 18:27:21 UTC (rev 1308)
@@ -90,7 +90,7 @@
     window_history_init (appdata);
 
 //start dialling.
-  gtk_widget_show (appdata->window_history);
+  gtk_widget_show_all (appdata->window_history);
 
 }
 
@@ -147,7 +147,7 @@
   window_outgoing_prepare (appdata);
 
 //start dialling.
-  gtk_widget_show (appdata->window_outgoing);
+  gtk_widget_show_all (appdata->window_outgoing);
 
   g_free (codesinput);
 

Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-history.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-history.c
  2007-03-09 16:39:05 UTC (rev 1307)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-history.c
  2007-03-09 18:27:21 UTC (rev 1308)
@@ -362,7 +362,7 @@
                       G_CALLBACK (on_window_history_hide), p_dialer_data);
 
    //FIXME: without gtk_widget_show_all first and then hide, the history view 
will not show properly. -tony
-   gtk_widget_show_all(GTK_WIDGET(window));
+   //gtk_widget_show_all(GTK_WIDGET(window));
 
     //now the wheel and tool box, why should the wheel and toolbox created 
after the gtk_widget_show_all???
     // This causes a segfault for me... maybe a problem in libmokoui? - thomas
@@ -378,7 +378,7 @@
                       p_dialer_data);
 
     g_signal_connect (G_OBJECT (moko_finger_window_get_wheel (window)),
-                      "press_bottom",
+                      "prehttp://planet.gnome.org/ss_bottom";,
                       G_CALLBACK (cb_tool_button_history_back_clicked),
                       p_dialer_data);
 
@@ -386,8 +386,7 @@
     tools = moko_finger_window_get_toolbox (window);
 
     /* TODO: remove the GTK_WIDGET() casts when libmokoui is fixed */
-    button =
-      GTK_WIDGET (moko_finger_tool_box_add_button_without_label (tools));
+    button = moko_finger_tool_box_add_button_without_label (tools);
     image = file_new_image_from_relative_path ("phone.png");
     moko_pixmap_button_set_finger_toolbox_btn_center_image (MOKO_PIXMAP_BUTTON
                                                             (button), image);
@@ -413,8 +412,6 @@
     g_signal_connect (G_OBJECT (button), "clicked",
                       G_CALLBACK (cb_tool_button_history_delete_clicked),
                       p_dialer_data);
-    //gtk_widget_show (GTK_WIDGET (tools));
-
     button =
       GTK_WIDGET (moko_finger_tool_box_add_button_without_label (tools));
     image = file_new_image_from_relative_path ("tony.png");
@@ -424,11 +421,8 @@
                       G_CALLBACK (cb_tool_button_history_back_clicked),
                       p_dialer_data);
 
-    //gtk_widget_show (GTK_WIDGET (tools));
-
     p_dialer_data->wheel_history = GTK_WIDGET (moko_finger_window_get_wheel 
(window));
     p_dialer_data->toolbox_history = GTK_WIDGET (tools);
-    gtk_widget_hide(GTK_WIDGET(window));
     DBG_LEAVE ();
   }
   else

Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-incoming.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-incoming.c
 2007-03-09 16:39:05 UTC (rev 1307)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-incoming.c
 2007-03-09 18:27:21 UTC (rev 1308)
@@ -291,12 +291,6 @@
     moko_finger_window_set_contents (window, GTK_WIDGET (vbox));
 
 
-    gtk_widget_show_all (GTK_WIDGET (window));
-
-
-    gtk_widget_hide (GTK_WIDGET (window));
-
-
     moko_dialer_status_set_title_label (MOKO_DIALER_STATUS (status), "Incoming 
call");
     moko_dialer_status_set_status_label (MOKO_DIALER_STATUS (status), "");
 

Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-outgoing.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-outgoing.c
 2007-03-09 16:39:05 UTC (rev 1307)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-outgoing.c
 2007-03-09 18:27:21 UTC (rev 1308)
@@ -53,13 +53,13 @@
   gtk_widget_hide (appdata->window_outgoing);
 
 
-//transfer the contact info
+  //transfer the contact info
   window_talking_prepare (appdata);
 
-//start dialling.
+  //start dialling.
 
   DBG_TRACE ();
-  gtk_widget_show (appdata->window_talking);
+  gtk_widget_show_all (appdata->window_talking);
 
 
   DBG_LEAVE ();
@@ -281,9 +281,8 @@
     p_dialer_data->buttonRedial = button;
     g_signal_connect (G_OBJECT (button), "clicked",
                       G_CALLBACK (cb_redial_button_clicked), p_dialer_data);
-//gtk_widget_set_size_request(button,100,32);
     gtk_box_pack_start (GTK_BOX (hbox2), GTK_WIDGET (button), TRUE, TRUE, 40);
-//gtk_widget_set_size_request(button,60,24);
+    g_object_set (G_OBJECT (button), "no-show-all", TRUE, NULL);
 
 
     button = gtk_button_new_with_label ("Cancel");
@@ -294,9 +293,6 @@
 //gtk_widget_set_size_request(button,100,32);
     gtk_box_pack_start (GTK_BOX (hbox2), GTK_WIDGET (button), TRUE, TRUE, 40);
 
-
-
-
     gtk_box_pack_start (GTK_BOX (vbox), hbox2, FALSE, FALSE, 50);
 
 
@@ -308,15 +304,6 @@
     gtk_window_set_decorated(GTK_WINDOW(window ),FALSE); //FIXME: this line 
seems only necessary on my PC. tony
     moko_finger_window_set_contents (window, GTK_WIDGET (vbox));
 
-
-    gtk_widget_show_all (GTK_WIDGET (window));
-
-    gtk_widget_hide (p_dialer_data->buttonRedial);
-
-
-    gtk_widget_hide (GTK_WIDGET (window));
-
-
     moko_dialer_status_set_title_label (MOKO_DIALER_STATUS (status), "Outgoing 
call");
     moko_dialer_status_set_status_label (MOKO_DIALER_STATUS (status), "Calling 
... (00:00:00)");
 

Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-pin.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-pin.c
      2007-03-09 16:39:05 UTC (rev 1307)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-pin.c
      2007-03-09 18:27:21 UTC (rev 1308)
@@ -217,10 +217,6 @@
 
     p_dialer_data->window_pin = window;
 
-    gtk_widget_show_all (GTK_WIDGET (window));
-    gtk_widget_hide (GTK_WIDGET (window));
-
-
   }
 
   return 1;

Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-talking.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-talking.c
  2007-03-09 16:39:05 UTC (rev 1307)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/openmoko-dialer-window-talking.c
  2007-03-09 18:27:21 UTC (rev 1308)
@@ -349,9 +349,10 @@
 
     gtk_box_pack_start (GTK_BOX (vbox), content_dtmf, FALSE, FALSE, 0);
     p_dialer_data->content_dtmf = content_dtmf;
+    g_object_set (G_OBJECT (content_dtmf), "no-show-all", TRUE);
 
 
-//now the container--window
+    //now the container--window
     window = MOKO_FINGER_WINDOW (moko_finger_window_new ());
     gtk_window_set_decorated(GTK_WINDOW(window ),FALSE);
     p_dialer_data->window_talking = GTK_WIDGET (window);
@@ -362,17 +363,7 @@
                       G_CALLBACK (on_window_talking_hide), p_dialer_data);
 
 
-
-
-    gtk_widget_show_all (GTK_WIDGET (window));
-
-//the gtk_widget_show_all is really bad, cause i have to call it and then hide 
some widgets.
-
-    gtk_widget_hide (content_dtmf);
-
-
     //now the wheel and tool box, why should the wheel and toolbox created 
after the gtk_widget_show_all???
-//   gtk_widget_show(GTK_WIDGET(moko_finger_window_get_wheel(window)));
     wheel=moko_finger_window_get_wheel (window);
     g_signal_connect (G_OBJECT (wheel),
                       "press_left_up",
@@ -418,9 +409,6 @@
     p_dialer_data->wheel_talking = GTK_WIDGET (wheel);
     p_dialer_data->toolbox_talking = GTK_WIDGET (tools);
 
-    //gtk_widget_hide(window);
-
-
     DBG_LEAVE ();
   }
 




--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-03-09 20:32:06 +0100 (Fri, 09 Mar 2007)
New Revision: 1309

Modified:
   trunk/src/target/gsm/src/gsmd/vendor_ti.c
Log:
fix typo in last commit


Modified: trunk/src/target/gsm/src/gsmd/vendor_ti.c
===================================================================
--- trunk/src/target/gsm/src/gsmd/vendor_ti.c   2007-03-09 18:27:21 UTC (rev 
1308)
+++ trunk/src/target/gsm/src/gsmd/vendor_ti.c   2007-03-09 19:32:06 UTC (rev 
1309)
@@ -245,7 +245,7 @@
 {
        int rc;
        /* use +CTZR: to report time zone changes */
-       rc |= gsmd_simplecmd(gsmd, "AT+CTZR=1");
+       rc |= gsmd_simplecmd(g, "AT+CTZR=1");
        /* enable %CPI: call progress indication */
        rc = gsmd_simplecmd(g, "AT\%CPI=3");
        /* enable %CPRI: ciphering indications */




--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-03-09 21:14:22 +0100 (Fri, 09 Mar 2007)
New Revision: 1310

Modified:
   trunk/oe/packages/tasks/task-openmoko.bb
Log:
remove mplayer from rootfs to save space


Modified: trunk/oe/packages/tasks/task-openmoko.bb
===================================================================
--- trunk/oe/packages/tasks/task-openmoko.bb    2007-03-09 19:32:06 UTC (rev 
1309)
+++ trunk/oe/packages/tasks/task-openmoko.bb    2007-03-09 20:14:22 UTC (rev 
1310)
@@ -166,7 +166,6 @@
   web \
   rxvt-unicode \
   mtpaint \
-  mplayer \
 "
 
 #




--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-03-09 21:21:08 +0100 (Fri, 09 Mar 2007)
New Revision: 1311

Modified:
   trunk/oe/conf/distro/include/openmoko.inc
Log:
increase ext2.gz size to 128M


Modified: trunk/oe/conf/distro/include/openmoko.inc
===================================================================
--- trunk/oe/conf/distro/include/openmoko.inc   2007-03-09 20:14:22 UTC (rev 
1310)
+++ trunk/oe/conf/distro/include/openmoko.inc   2007-03-09 20:21:08 UTC (rev 
1311)
@@ -16,6 +16,7 @@
 IMAGE_FSTYPES = "tar.gz ext2.gz jffs2"
 IMAGE_FSTYPES_x86 = "tar.gz"
 IMAGE_ROOTFS_SIZE_ext2 = "131072"
+IMAGE_ROOTFS_SIZE_ext2.gz = "131072"
 
 #
 # Binutils & Compiler




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

Reply via email to