Index: /developers/tick/Test_env_script_GTA02A5/setupenv
===================================================================
--- /developers/tick/Test_env_script_GTA02A5/setupenv	(revision 4217)
+++ /developers/tick/Test_env_script_GTA02A5/setupenv	(revision 4218)
@@ -4,4 +4,5 @@
 NEEDDOWNLOAD=1;
 ASSASSINTESTENV=1;
+DIVERSITYTESTENV=1;
 INTERNALFLAG=1
 
@@ -39,6 +40,8 @@
 	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
@@ -51,9 +54,15 @@
 		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
@@ -147,3 +156,12 @@
 	ssh root@192.168.0.202 "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 root@192.168.0.202:~/
+	ssh root@192.168.0.202 "chmod 755 ./setup_at_neo_diversity.script;./setup_at_neo_diversity.script"
+fi
 echo "Ok!! Now the Neo is all yours. Enjoy Hacking || Testing..."
Index: /developers/tick/Test_env_script_GTA02A5/setup_at_neo_diversity.script
===================================================================
--- /developers/tick/Test_env_script_GTA02A5/setup_at_neo_diversity.script	(revision 4218)
+++ /developers/tick/Test_env_script_GTA02A5/setup_at_neo_diversity.script	(revision 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
+
+
