commit 4e25a0e140bd153d163952fa8ffb5363f6659356 Author: Ben Greear Date: Mon Apr 20 05:35:45 2020 -0700 Add initial notes and readme, script to copy wlan-lanforge-scripts diff --git a/NOTES.txt b/NOTES.txt new file mode 100644 index 000000000..dcf314c75 --- /dev/null +++ b/NOTES.txt @@ -0,0 +1,9 @@ +Notes for TIP WiFi testing related topics. + + +# To pull the latest upstream lanforge-scripts repo into the wlan-lanforge-scripts +# repository, use this or similar command. + +git pull git@github.com:greearb/lanforge-scripts.git + + diff --git a/README.md b/README.md new file mode 100644 index 000000000..3cc972042 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +This repository will hold TIP WiFi specific scripts and glue +logic. It will utilize the scripts in wlan-lanforge-scripts and possibly +other Cloud-SDK libraries in the future. + + diff --git a/lanforge/TIP_README.txt b/lanforge/TIP_README.txt new file mode 100644 index 000000000..4743a0849 --- /dev/null +++ b/lanforge/TIP_README.txt @@ -0,0 +1,3 @@ +The wlan-lanforge-scripts directory will be coppied to this location. +Do not add any additional files to this directory without good reason. + diff --git a/sync_repos.bash b/sync_repos.bash new file mode 100755 index 000000000..36100e448 --- /dev/null +++ b/sync_repos.bash @@ -0,0 +1,12 @@ +#!/bin/bash + +# Copy wlan-lanforge-scripts into place +# Assumes wlan-lanforge-scripts is already up to date. +# Other setup may be added here as well. + +if [ -d ../wlan-lanforge-scripts ] +then + rm -fr lanforge/lanforge-scripts + + cp -ar ../wlan-lanforge-scripts lanforge/lanforge-scripts +fi