Send commitlog mailing list submissions to
        commitlog@lists.openmoko.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [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. r3979 - trunk/src/target/u-boot/scripts ([EMAIL PROTECTED])
   2. r3980 - trunk/src/target/u-boot/patches ([EMAIL PROTECTED])
   3. r3981 - in
      trunk/src/target/OM-2007.2/applications/openmoko-dialer2: .
      src/phone-kit ([EMAIL PROTECTED])
   4. r3982 - trunk/src/target/u-boot/patches ([EMAIL PROTECTED])
   5. r3983 - developers/werner ([EMAIL PROTECTED])
--- Begin Message ---
Author: werner
Date: 2008-01-29 17:01:06 +0100 (Tue, 29 Jan 2008)
New Revision: 3979

Modified:
   trunk/src/target/u-boot/scripts/build
Log:
build: upgraded to SVN_REV 3978



Modified: trunk/src/target/u-boot/scripts/build
===================================================================
--- trunk/src/target/u-boot/scripts/build       2008-01-29 15:52:54 UTC (rev 
3978)
+++ trunk/src/target/u-boot/scripts/build       2008-01-29 16:01:06 UTC (rev 
3979)
@@ -23,7 +23,7 @@
 # GIT_HEAD=98b742489c09780be6a832eeaa4e5eff824792bb
 #
 # SVN_REV, if defined, specifies which SVN revision we use, e.g.,
-# SVN_REV=3967
+# SVN_REV=3978
 #
 
 git clone git://www.denx.de/git/u-boot.git




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-01-29 17:15:55 +0100 (Tue, 29 Jan 2008)
New Revision: 3980

Modified:
   trunk/src/target/u-boot/patches/gta02-splash.patch
Log:
Reference to CONFIG_GTA01_REVISION broke GTA01 builds of u-boot.

gta02-splash.patch:
- board/neo1973/common/jbt6k74.c (top-level, jbt6k74_init): unfortunately,
  there is no CONFIG_GTA01_REVISION. Use CONFIG_GTA02_REVISION instead.



Modified: trunk/src/target/u-boot/patches/gta02-splash.patch
===================================================================
--- trunk/src/target/u-boot/patches/gta02-splash.patch  2008-01-29 16:01:06 UTC 
(rev 3979)
+++ trunk/src/target/u-boot/patches/gta02-splash.patch  2008-01-29 16:15:55 UTC 
(rev 3980)
@@ -47,7 +47,7 @@
        [JBT_STATE_NORMAL]              = "normal",
  };
  
-+#ifdef CONFIG_GTA01_REVISION
++#ifndef CONFIG_GTA02_REVISION
 +
  #define GTA01_SCLK    (1 << 7)        /* GPG7 */
  #define GTA01_MOSI    (1 << 6)        /* GPG6 */
@@ -86,7 +86,7 @@
  {
        S3C24X0_GPIO * const gpio = S3C24X0_GetBase_GPIO();
  
-+#ifdef CONFIG_GTA01_REVISION
++#ifndef CONFIG_GTA02_REVISION
        /* initialize SPI for GPIO bitbang */
        gpio->GPGCON &= 0xffff033f;
        gpio->GPGCON |= 0x00005440;




--- End Message ---
--- Begin Message ---
Author: chris
Date: 2008-01-30 09:45:48 +0100 (Wed, 30 Jan 2008)
New Revision: 3981

Modified:
   trunk/src/target/OM-2007.2/applications/openmoko-dialer2/ChangeLog
   
trunk/src/target/OM-2007.2/applications/openmoko-dialer2/src/phone-kit/moko-network.c
Log:
        * src/phone-kit/moko-network.c: (on_network_registered):
        Unset operator name when unregistered from network


Modified: trunk/src/target/OM-2007.2/applications/openmoko-dialer2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/applications/openmoko-dialer2/ChangeLog  
2008-01-29 16:15:55 UTC (rev 3980)
+++ trunk/src/target/OM-2007.2/applications/openmoko-dialer2/ChangeLog  
2008-01-30 08:45:48 UTC (rev 3981)
@@ -1,3 +1,8 @@
+2008-01-30  Chris Lord  <[EMAIL PROTECTED]>
+
+       * src/phone-kit/moko-network.c: (on_network_registered):
+       Unset operator name when unregistered from network
+
 2008-01-21  Chris Lord  <[EMAIL PROTECTED]>
 
        * src/phone-kit/moko-sms-dbus.xml:

Modified: 
trunk/src/target/OM-2007.2/applications/openmoko-dialer2/src/phone-kit/moko-network.c
===================================================================
--- 
trunk/src/target/OM-2007.2/applications/openmoko-dialer2/src/phone-kit/moko-network.c
       2008-01-29 16:15:55 UTC (rev 3980)
+++ 
trunk/src/target/OM-2007.2/applications/openmoko-dialer2/src/phone-kit/moko-network.c
       2008-01-30 08:45:48 UTC (rev 3981)
@@ -229,6 +229,12 @@
     priv->registered = type;
     g_signal_emit (listener, signals[STATUS_CHANGED], 0,
                    moko_network_get_status (MOKO_NETWORK (listener)));
+    
+    if ((priv->registered != GSMD_NETREG_REG_HOME) &&
+        (priv->registered != GSMD_NETREG_REG_ROAMING)) {
+      /* Unset operator name on disconnect */
+      moko_listener_on_network_name (listener, handle, NULL);
+    }
   }
 }
 




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-01-30 11:27:49 +0100 (Wed, 30 Jan 2008)
New Revision: 3982

Added:
   trunk/src/target/u-boot/patches/gta02-bootmenu.patch
Modified:
   trunk/src/target/u-boot/patches/console-ansi.patch
Log:
Bring the boot menu also to GTA02. Since the Glamo is slower than a dumb frame
buffer, we also need to accelerate the clearing of the screen.

console-ansi.patch:
- drivers/video/cfb_console.c (process_sequence): to clear the screen just 
  clear the screen, instead of slowly scrolling away its content 

gta02-bootmenu.patch:
- board/neo1973/gta02/gta02.c (board_late_init): enabled boot menu invocation
  logic
- board/neo1973/gta02/gta02.c (board_late_init): call "neo1973_bootmenu", not
  the platform-independent "bootmenu"
- board/neo1973/gta02/gta02.c (neo1973_aux_key_pressed): AUX polarity is
  reversed in GTA02



Modified: trunk/src/target/u-boot/patches/console-ansi.patch
===================================================================
--- trunk/src/target/u-boot/patches/console-ansi.patch  2008-01-30 08:45:48 UTC 
(rev 3981)
+++ trunk/src/target/u-boot/patches/console-ansi.patch  2008-01-30 10:27:49 UTC 
(rev 3982)
@@ -43,13 +43,13 @@
 +static void process_sequence(char c)
 +{
 +      static int inverted = 0;
-+      int i, inv;
++      int inv;
 +
 +      switch (c) {
 +              case 'J':
 +                      /* assume num1 == 2 */
-+                      for (i = 0; i != CONSOLE_ROWS; i++)
-+                              console_scrollup();
++                      memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE,
++                          CONSOLE_BG_COL);
 +                      break;
 +              case 'H':
 +                      if (num1 > CONSOLE_ROWS || num2 > CONSOLE_COLS)

Added: trunk/src/target/u-boot/patches/gta02-bootmenu.patch
===================================================================
--- trunk/src/target/u-boot/patches/gta02-bootmenu.patch        2008-01-30 
08:45:48 UTC (rev 3981)
+++ trunk/src/target/u-boot/patches/gta02-bootmenu.patch        2008-01-30 
10:27:49 UTC (rev 3982)
@@ -0,0 +1,63 @@
+Index: u-boot/board/neo1973/gta02/gta02.c
+===================================================================
+--- u-boot.orig/board/neo1973/gta02/gta02.c
++++ u-boot/board/neo1973/gta02/gta02.c
+@@ -241,10 +241,10 @@
+       gpio->GPJDAT |= 0x000000001;    /* GTA02v1_GPIO_3D_RESET */
+ #endif
+ 
+-#if 0
+       /* if there's no other reason, must be regular reset */
+       neo1973_wakeup_cause = NEO1973_WAKEUP_RESET;
+ 
++#if 0
+       if (!booted_from_nand)
+               goto woken_by_reset;
+ 
+@@ -274,6 +274,7 @@
+       }
+ 
+ woken_by_reset:
++#endif
+ 
+       while (neo1973_wakeup_cause == NEO1973_WAKEUP_RESET ||
+           neo1973_on_key_pressed()) {
+@@ -294,7 +295,6 @@
+       jbt6k74_init();
+       jbt6k74_enter_state(JBT_STATE_NORMAL);
+       jbt6k74_display_onoff(1);
+-#endif
+ 
+ #if 0
+       {
+@@ -303,12 +303,12 @@
+               if (!(gpio->GPFDAT & (1 << 5)))
+                       gpio->GPBDAT &= ~(1 << 2);
+       }
++#endif
+ 
+       if (menu_vote > 0) {
+-              bootmenu();
++              neo1973_bootmenu();
+               nobootdelay = 1;
+       }
+-#endif
+ 
+       return 0;
+ }
+@@ -403,13 +403,11 @@
+                                               & PCF50633_OOCSTAT_ONKEY);
+ }
+ 
+-/* FIXME: shared */
+ int neo1973_aux_key_pressed(void)
+ {
+       S3C24X0_GPIO * const gpio = S3C24X0_GetBase_GPIO();
+-      if (gpio->GPFDAT & (1 << 6))
+-              return 0;
+-      return 1;
++
++      return !!(gpio->GPFDAT & (1 << 6));
+ }
+ 
+ /* The sum of all part_size[]s must equal to the NAND size, i.e., 0x8000000. 
*/




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-01-30 11:34:43 +0100 (Wed, 30 Jan 2008)
New Revision: 3983

Added:
   developers/werner/uboot-glamo-accel-broken.patch
Log:
Failed attempt to add Glamo hardware acceleration to u-boot.
Note that everybody else (Kdrive, etc.) uses command queues, not
MMIO. So it may well be that this hardware interface just doesn't
work.



Added: developers/werner/uboot-glamo-accel-broken.patch
===================================================================
--- developers/werner/uboot-glamo-accel-broken.patch    2008-01-30 10:27:49 UTC 
(rev 3982)
+++ developers/werner/uboot-glamo-accel-broken.patch    2008-01-30 10:34:43 UTC 
(rev 3983)
@@ -0,0 +1 @@
+Index: u-boot/drivers/video/smedia3362.h




--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to