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. r4217 - trunk/src/target/audio/fic-gta02
      ([EMAIL PROTECTED])
   2. r4218 - developers/tick/Test_env_script_GTA02A5
      ([EMAIL PROTECTED])
   3. r4219 - trunk/src/target/OM-2007.2/daemons/neod/src
      ([EMAIL PROTECTED])
   4. r4220 - developers/tick/Test_env_script_GTA02A5
      ([EMAIL PROTECTED])
   5. r4221 - developers/tick/Test_env_script_GTA02A5
      ([EMAIL PROTECTED])
   6. r4222 - developers/tick/Test_env_script_GTA02A5
      ([EMAIL PROTECTED])
--- Begin Message ---
Author: sean_chiang
Date: 2008-03-18 18:18:36 +0100 (Tue, 18 Mar 2008)
New Revision: 4217

Modified:
   trunk/src/target/audio/fic-gta02/gsmhandset.state
Log:
loud the volume of receiver

Modified: trunk/src/target/audio/fic-gta02/gsmhandset.state
===================================================================
--- trunk/src/target/audio/fic-gta02/gsmhandset.state   2008-03-18 05:43:01 UTC 
(rev 4216)
+++ trunk/src/target/audio/fic-gta02/gsmhandset.state   2008-03-18 17:18:36 UTC 
(rev 4217)
@@ -36,8 +36,8 @@
                comment.range '0 - 127'
                iface MIXER
                name 'Speaker Playback Volume'
-               value.0 97
-               value.1 97
+               value.0 118
+               value.1 118
        }
        control.5 {
                comment.access 'read write'
@@ -112,7 +112,7 @@
                comment.range '0 - 7'
                iface MIXER
                name 'Mono Sidetone Playback Volume'
-               value 5
+               value 6
        }
        control.13 {
                comment.access 'read write'




--- End Message ---
--- Begin Message ---
Author: jeremy
Date: 2008-03-19 04:09:06 +0100 (Wed, 19 Mar 2008)
New Revision: 4218

Added:
   developers/tick/Test_env_script_GTA02A5/setup_at_neo_diversity.script
Modified:
   developers/tick/Test_env_script_GTA02A5/setupenv
Log:
2008-03-19  Jeremy Chang  <[EMAIL PROTECTED]>

        For adding diversity testing support. 



Added: developers/tick/Test_env_script_GTA02A5/setup_at_neo_diversity.script
===================================================================
--- developers/tick/Test_env_script_GTA02A5/setup_at_neo_diversity.script       
2008-03-18 17:18:36 UTC (rev 4217)
+++ developers/tick/Test_env_script_GTA02A5/setup_at_neo_diversity.script       
2008-03-19 03:09:06 UTC (rev 4218)
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# name server stuff
+cp resolv.conf /etc/
+
+cd /etc/ipkg
+rm -rf *
+cd ~
+cp gta02.conf /etc/ipkg
+cd /var/lib/ipkg
+rm -rf 
+cd ~/
+ipkg update
+sleep 5
+ipkg install diversity-daemon 
+sleep 5
+ipkg install diversity-nav
+
+

Modified: developers/tick/Test_env_script_GTA02A5/setupenv
===================================================================
--- developers/tick/Test_env_script_GTA02A5/setupenv    2008-03-18 17:18:36 UTC 
(rev 4217)
+++ developers/tick/Test_env_script_GTA02A5/setupenv    2008-03-19 03:09:06 UTC 
(rev 4218)
@@ -3,6 +3,7 @@
 IMAGE_DIR="images.storage"
 NEEDDOWNLOAD=1;
 ASSASSINTESTENV=1;
+DIVERSITYTESTENV=1;
 INTERNALFLAG=1
 
 if ( ping -c 2 barbie.tw.openmoko.com  2>&1 > /dev/null ) && (( 
${INTERNALFLAG}==1 ));then
@@ -38,8 +39,10 @@
        echo "Want do you want to do?"
        echo "  1. Reflash images cached only."
        echo "  2. Reflash images cached and setup Assassin Testing 
enviornment."
-       echo "  3. Download Images from buildhost, and reflashing them only."
-       echo "  4. Download Images from buildhostm and setup Assassin Testing 
environment."
+       echo "  3. Reflash images cached and setup Diversity Testing 
enviornment."
+       echo "  4. Download Images from buildhost, and reflashing them only."
+       echo "  5. Download Images from buildhostm and setup Assassin Testing 
environment."
+       echo "  6. Download Images from buildhostm and setup Diversity Testing 
environment."
        echo -n "choice >"
        read ANS
        echo ""
@@ -50,11 +53,17 @@
                NEEDDOWNLOAD=0;
                ASSASSINTESTENV=1;
        elif ((  ${ANS} == 3 ));then
+               NEEDDOWNLOAD=0;
+               DIVERSITYTESTENV=1;
+       elif ((  ${ANS} == 4 ));then
                NEEDDOWNLOAD=1;
                ASSASSINTESTENV=0;
-       elif ((  ${ANS} == 4 ));then
+       elif ((  ${ANS} == 5 ));then
                NEEDDOWNLOAD=1;
                ASSASSINTESTENV=1;
+       elif ((  ${ANS} == 6 ));then
+               NEEDDOWNLOAD=1;
+               DIVERSITYTESTENV=1;
        else 
                setup_env
        fi
@@ -146,4 +155,13 @@
        scp gta02.conf  resolv.conf setup_at_neo_assassin.script [EMAIL 
PROTECTED]:~/
        ssh [EMAIL PROTECTED] "chmod 755 
./setup_at_neo_assassin.script;./setup_at_neo_assassin.script"
 fi
+if (( ${DIVERSITYTESTENV}== 1));then
+       if ! [ -e ~/.ssh/config ]; then
+               config_ssh
+       elif (( `cat ~/.ssh/config | grep "neo" | wc -l`== 0 ));then
+               config_ssh
+       fi
+       scp gta02.conf  resolv.conf setup_at_neo_diversity.script [EMAIL 
PROTECTED]:~/
+       ssh [EMAIL PROTECTED] "chmod 755 
./setup_at_neo_diversity.script;./setup_at_neo_diversity.script"
+fi
 echo "Ok!! Now the Neo is all yours. Enjoy Hacking || Testing..."




--- End Message ---
--- Begin Message ---
Author: erin_yueh
Date: 2008-03-19 07:10:59 +0100 (Wed, 19 Mar 2008)
New Revision: 4219

Modified:
   trunk/src/target/OM-2007.2/daemons/neod/src/buttonactions.c
Log:
neod: remove AUX button key event (bug#1282)


Modified: trunk/src/target/OM-2007.2/daemons/neod/src/buttonactions.c
===================================================================
--- trunk/src/target/OM-2007.2/daemons/neod/src/buttonactions.c 2008-03-19 
03:09:06 UTC (rev 4218)
+++ trunk/src/target/OM-2007.2/daemons/neod/src/buttonactions.c 2008-03-19 
06:10:59 UTC (rev 4219)
@@ -323,6 +323,7 @@
                 g_debug( "read %d bytes from fd %d", size, input_fd[i].fd );
                 g_debug( "input event = ( %0x, %0x, %0x )", event.type, 
event.code, event.value );
             }
+#if 0
             if ( event.type == 1 && event.code == AUX_BUTTON_KEYCODE )
             {
                 if ( event.value == 1 ) /* pressed */
@@ -342,6 +343,7 @@
                 }
             }
             else
+#endif
             if ( event.type == 1 && event.code == POWER_BUTTON_KEYCODE )
             {
                 if ( event.value == 1 ) /* pressed */




--- End Message ---
--- Begin Message ---
Author: tick
Date: 2008-03-19 07:56:18 +0100 (Wed, 19 Mar 2008)
New Revision: 4220

Modified:
   developers/tick/Test_env_script_GTA02A5/setupenv
Log:
adding some information


Modified: developers/tick/Test_env_script_GTA02A5/setupenv
===================================================================
--- developers/tick/Test_env_script_GTA02A5/setupenv    2008-03-19 06:10:59 UTC 
(rev 4219)
+++ developers/tick/Test_env_script_GTA02A5/setupenv    2008-03-19 06:56:18 UTC 
(rev 4220)
@@ -108,6 +108,7 @@
        let LALA=$LALA+1
        if (( $LALA == 5 ));then
                echo Please restart Neo with USB cable NOW...
+               echo "If you kept failed on this step, please set your 
bootdelay >= 3 sec in uboot"
        fi
        if (( $LALA > 10 ));then
                echo I am waiting for you... Come on~~




--- End Message ---
--- Begin Message ---
Author: tick
Date: 2008-03-19 09:44:29 +0100 (Wed, 19 Mar 2008)
New Revision: 4221

Modified:
   developers/tick/Test_env_script_GTA02A5/setup_at_neo_assassin.script
   developers/tick/Test_env_script_GTA02A5/setupenv
Log:
fixed some tiny bug in setupenv 
and update the current status of assassin stuff


Modified: developers/tick/Test_env_script_GTA02A5/setup_at_neo_assassin.script
===================================================================
--- developers/tick/Test_env_script_GTA02A5/setup_at_neo_assassin.script        
2008-03-19 06:56:18 UTC (rev 4220)
+++ developers/tick/Test_env_script_GTA02A5/setup_at_neo_assassin.script        
2008-03-19 08:44:29 UTC (rev 4221)
@@ -13,15 +13,6 @@
 rm -rf 
 cd ~/
 ipkg update
-sleep 5
-ipkg -force-overwrite install opkg
-sleep 5
+opkg-cl update
 ipkg install assassin
-sleep 5
-ipkg install e-wm
-sleep 5
-cd /usr/bin/
-ln -sf opkg-cl opkg
-opkg update
 
-

Modified: developers/tick/Test_env_script_GTA02A5/setupenv
===================================================================
--- developers/tick/Test_env_script_GTA02A5/setupenv    2008-03-19 06:56:18 UTC 
(rev 4220)
+++ developers/tick/Test_env_script_GTA02A5/setupenv    2008-03-19 08:44:29 UTC 
(rev 4221)
@@ -4,7 +4,7 @@
 NEEDDOWNLOAD=1;
 ASSASSINTESTENV=1;
 DIVERSITYTESTENV=1;
-INTERNALFLAG=1
+INTERNALFLAG=0
 
 if ( ping -c 2 barbie.tw.openmoko.com  2>&1 > /dev/null ) && (( 
${INTERNALFLAG}==1 ));then
   echo "Get Images from Barbie..."
@@ -15,7 +15,7 @@
   echo "Get Images from Buildhost...."
   
UBOOT=http://buildhost.openmoko.org/daily/neo1973/deploy/glibc/images/neo1973/uboot-gta02v5-latest.bin
   
KERNEL=http://buildhost.openmoko.org/daily/neo1973/deploy/glibc/images/neo1973/uImage-neo1973-latest.bin
-  
ROOTFS=http://buildhost.openmoko.org/daily/neo1973/deploy/glibc/images/neo1973/openmoko-devel-image-fic-gta01.jffs2
+  
ROOTFS=http://buildhost.openmoko.org/daily/neo1973/deploy/glibc/images/neo1973/openmoko-devel-image-fic-gta02.jffs2
 fi
 
 config_ssh() 
@@ -49,20 +49,26 @@
        if (( ${ANS} == 1 )) ;then 
                NEEDDOWNLOAD=0;
                ASSASSINTESTENV=0;
+               DIVERSITYTESTENV=0;
        elif ((  ${ANS} == 2 ));then
                NEEDDOWNLOAD=0;
                ASSASSINTESTENV=1;
+               DIVERSITYTESTENV=0;
        elif ((  ${ANS} == 3 ));then
                NEEDDOWNLOAD=0;
+               ASSASSINTESTENV=0;
                DIVERSITYTESTENV=1;
        elif ((  ${ANS} == 4 ));then
                NEEDDOWNLOAD=1;
                ASSASSINTESTENV=0;
+               DIVERSITYTESTENV=0;
        elif ((  ${ANS} == 5 ));then
                NEEDDOWNLOAD=1;
                ASSASSINTESTENV=1;
+               DIVERSITYTESTENV=0;
        elif ((  ${ANS} == 6 ));then
                NEEDDOWNLOAD=1;
+               ASSASSINTESTENV=0;
                DIVERSITYTESTENV=1;
        else 
                setup_env




--- End Message ---
--- Begin Message ---
Author: tick
Date: 2008-03-19 09:52:52 +0100 (Wed, 19 Mar 2008)
New Revision: 4222

Modified:
   developers/tick/Test_env_script_GTA02A5/setup_at_neo_assassin.script
Log:
fix a tiny bug


Modified: developers/tick/Test_env_script_GTA02A5/setup_at_neo_assassin.script
===================================================================
--- developers/tick/Test_env_script_GTA02A5/setup_at_neo_assassin.script        
2008-03-19 08:44:29 UTC (rev 4221)
+++ developers/tick/Test_env_script_GTA02A5/setup_at_neo_assassin.script        
2008-03-19 08:52:52 UTC (rev 4222)
@@ -8,6 +8,7 @@
 cd ~
 cp gta02.conf /etc/ipkg
 cd /etc
+rm -rf opkg
 ln -sf ipkg opkg
 cd /var/lib/ipkg
 rm -rf 




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

Reply via email to