Add new boards to list_6, check for locked devices

New devices have been installed in the lab, adding them so they are run
during the test qualification.  In addition if a device is locked do not
run tests on it.

TEST=Manual
BUG=chromium:356494

Change-Id: I8916ce45ee94d880ca6c7657bc28ef8bcca83e13
Reviewed-on: https://chromium-review.googlesource.com/191684
Tested-by: Kris Rambish <krisr@chromium.org>
Reviewed-by: Bindu Mahadev <bmahadev@chromium.org>
diff --git a/provingground/run_wifi_release_suite.sh b/provingground/run_wifi_release_suite.sh
index cc6211d..69b17f4 100755
--- a/provingground/run_wifi_release_suite.sh
+++ b/provingground/run_wifi_release_suite.sh
@@ -35,8 +35,7 @@
 list_5=(peach_pi peach_pit)
 
 # intel wilkins peak 2 on kernel 3.10
-# TODO (krisr) add rambi when installed
-list_6=(squawks)
+list_6=(squawks rambi falco_li)
 
 DESIRED_BOARDS=(list_1 list_2 list_3 list_4 list_5 list_6)
 
@@ -52,7 +51,8 @@
     local host_info=($host)
     for board in ${boards[@]}; do
       if [[ $board == ${host_info[3]} && (${host_info[1]} != 'Repairing' &&
-          ${host_info[1]} != 'Repair Failed') ]] ; then
+        ${host_info[1]} != 'Repair Failed') &&
+        ${host_info[2]} == 'False' ]] ; then
         boards_to_run+=($board)
       fi
     done;