Rename timo-env.sh and timo-env_install.bash

These files now use the zephyr- prefix.

Change-Id: Iab24bc1fc15e7b7e40922996ba338763638644bf
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2015-06-05 22:42:27 -04:00
parent 54ac4484d7
commit 8accfcfb2c
2 changed files with 7 additions and 7 deletions

View file

@ -140,7 +140,7 @@ but can be summarized with the following steps:
.. code-block:: bash .. code-block:: bash
$ source timo-env.bash $ source zephyr-env.bash
Building a Tiny Mountain Example Building a Tiny Mountain Example
================================ ================================
@ -154,7 +154,7 @@ To build a Tiny Mountain example follow these steps:
.. code-block:: bash .. code-block:: bash
$ source timo-env.bash $ source zephyr-env.bash
#. Build Tiny Mountain with the example project, type: #. Build Tiny Mountain with the example project, type:

View file

@ -1,11 +1,11 @@
if [ "X$(basename -- "$0")" == "Xtimo-env.bash" ]; then if [ "X$(basename -- "$0")" == "Xzephyr-env.bash" ]; then
echo "Source this file (do NOT execute it!) to set the Zephyr OS environment." echo "Source this file (do NOT execute it!) to set the Zephyr OS environment."
exit exit
fi fi
# You can further customize your environment by creating a bash script called # You can further customize your environment by creating a bash script called
# timo-env_install.bash in your home directory. It will be automatically # zephyr-env_install.bash in your home directory. It will be automatically
# run (if it exists) by this script. # run (if it exists) by this script.
# identify OS source tree root directory # identify OS source tree root directory
@ -17,6 +17,6 @@ echo "${PATH}" | grep -q "${scripts_path}"
unset scripts_path unset scripts_path
# enable custom environment settings # enable custom environment settings
timo_answer_file=~/timo-env_install.bash zephyr_answer_file=~/zephyr-env_install.bash
[ -f ${timo_answer_file} ] && . ${timo_answer_file} [ -f ${zephyr_answer_file} ] && . ${zephyr_answer_file}
unset timo_answer_file unset zephyr_answer_file