Remove a bunch of references to "@org_frc971"

Downstream users use this as @aos. Use a combination of the clean_dep macro
and repo mappings to make it so that we will no longer have to maintain
diffs across the repositories.

The remaining differences are largely in some random rust files.

Change-Id: Ie10c88c299bc1ee9a0309a6a5536c49638519557
Signed-off-by: James Kuszmaul <james.kuszmaul@bluerivertech.com>
diff --git a/aos/flatbuffers/generate.sh b/aos/flatbuffers/generate.sh
index 09bb4dc..f3ba9f1 100755
--- a/aos/flatbuffers/generate.sh
+++ b/aos/flatbuffers/generate.sh
@@ -22,9 +22,9 @@
 LEN=${#INPUTS[@]}
 
 for ((i = 0; i < $LEN; i++)); do
-  $(rlocation org_frc971/aos/flatbuffers/generate) \
+  $(rlocation ${AOS_REPO_NAME}/aos/flatbuffers/generate) \
     --reflection_bfbs "${INPUTS[i]}" \
     --output_file "${OUTPUTS[i]}" \
     --base_file_name "$(basename ${SCHEMA_FILES[i]})"
-  $(rlocation llvm_k8/bin/clang-format) --style=file:"$(rlocation org_frc971/.clang-format)" -i "${OUTPUTS[i]}"
+  $(rlocation llvm_k8/bin/clang-format) --style=file:"$(rlocation ${AOS_REPO_NAME}/.clang-format)" -i "${OUTPUTS[i]}"
 done