Unify naming of buildbot commands

Rename buildbot scripts so they all begin with the prefix "buildbot-"
as this lets autocomplete make life easy for you when working with
device tests from the command line.

Temporarily add symlinks for keep other infra working until that is
updated too.

Test: manual
Change-Id: I5c14448ca4ce36eff7fa3ee149cee7f822e0ca86
diff --git a/test/README.chroot.md b/test/README.chroot.md
index 438a9ad..7c3fa8f 100644
--- a/test/README.chroot.md
+++ b/test/README.chroot.md
@@ -70,11 +70,11 @@
     ```
 4. Clean up the device:
     ```bash
-    art/tools/cleanup-buildbot-device.sh
+    art/tools/buildbot-cleanup-device.sh
     ```
 5. Setup the device (including setting up mount points and files in the chroot directory):
     ```bash
-    art/tools/setup-buildbot-device.sh
+    art/tools/buildbot-setup-device.sh
     ```
 6. Populate the chroot tree on the device (including "activating" APEX packages
    in the chroot environment):
@@ -122,9 +122,9 @@
         ```
 11. Tear down device setup:
     ```bash
-    art/tools/teardown-buildbot-device.sh
+    art/tools/buildbot-teardown-device.sh
     ```
 12. Clean up the device:
     ```bash
-    art/tools/cleanup-buildbot-device.sh
+    art/tools/buildbot-cleanup-device.sh
     ```
diff --git a/tools/cleanup-buildbot-device.sh b/tools/buildbot-cleanup-device.sh
similarity index 100%
rename from tools/cleanup-buildbot-device.sh
rename to tools/buildbot-cleanup-device.sh
diff --git a/tools/setup-buildbot-device.sh b/tools/buildbot-setup-device.sh
similarity index 98%
rename from tools/setup-buildbot-device.sh
rename to tools/buildbot-setup-device.sh
index 46969c8..f2bf329 100755
--- a/tools/setup-buildbot-device.sh
+++ b/tools/buildbot-setup-device.sh
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# The work does by this script is (mostly) undone by tools/teardown-buildbot-device.sh.
+# The work does by this script is (mostly) undone by tools/buildbot-teardown-device.sh.
 # Make sure to keep these files in sync.
 
 if [ -t 1 ]; then
diff --git a/tools/symbolize-buildbot-crashes.sh b/tools/buildbot-symbolize-crashes.sh
similarity index 100%
rename from tools/symbolize-buildbot-crashes.sh
rename to tools/buildbot-symbolize-crashes.sh
diff --git a/tools/teardown-buildbot-device.sh b/tools/buildbot-teardown-device.sh
similarity index 98%
rename from tools/teardown-buildbot-device.sh
rename to tools/buildbot-teardown-device.sh
index 1ea4cf0..e067a70 100755
--- a/tools/teardown-buildbot-device.sh
+++ b/tools/buildbot-teardown-device.sh
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# This script undoes (most of) the work done by tools/setup-buildbot-device.sh.
+# This script undoes (most of) the work done by tools/buildbot-setup-device.sh.
 # Make sure to keep these files in sync.
 
 if [ -t 1 ]; then
diff --git a/tools/cleanup-buildbot-device.sh b/tools/cleanup-buildbot-device.sh
new file mode 120000
index 0000000..8389975
--- /dev/null
+++ b/tools/cleanup-buildbot-device.sh
@@ -0,0 +1 @@
+buildbot-cleanup-device.sh
\ No newline at end of file
diff --git a/tools/setup-buildbot-device.sh b/tools/setup-buildbot-device.sh
new file mode 120000
index 0000000..6cdd17e
--- /dev/null
+++ b/tools/setup-buildbot-device.sh
@@ -0,0 +1 @@
+buildbot-setup-device.sh
\ No newline at end of file
diff --git a/tools/symbolize-buildbot-crashes.sh b/tools/symbolize-buildbot-crashes.sh
new file mode 120000
index 0000000..ed04b65
--- /dev/null
+++ b/tools/symbolize-buildbot-crashes.sh
@@ -0,0 +1 @@
+buildbot-symbolize-crashes.sh
\ No newline at end of file
diff --git a/tools/teardown-buildbot-device.sh b/tools/teardown-buildbot-device.sh
new file mode 120000
index 0000000..0112bca
--- /dev/null
+++ b/tools/teardown-buildbot-device.sh
@@ -0,0 +1 @@
+buildbot-teardown-device.sh
\ No newline at end of file