2015-05-11 00:16:10 +08:00
|
|
|
|
2015-06-06 10:42:27 +08:00
|
|
|
if [ "X$(basename -- "$0")" == "Xzephyr-env.bash" ]; then
|
2015-06-05 22:48:10 +08:00
|
|
|
echo "Source this file (do NOT execute it!) to set the Zephyr OS environment."
|
2015-05-11 00:16:10 +08:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# You can further customize your environment by creating a bash script called
|
2015-06-06 10:42:27 +08:00
|
|
|
# zephyr-env_install.bash in your home directory. It will be automatically
|
2015-05-11 00:16:10 +08:00
|
|
|
# run (if it exists) by this script.
|
|
|
|
|
|
|
|
# identify OS source tree root directory
|
|
|
|
export TIMO_BASE=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
|
|
|
|
scripts_path=${TIMO_BASE}/scripts
|
|
|
|
echo "${PATH}" | grep -q "${scripts_path}"
|
|
|
|
[ $? != 0 ] && export PATH=${scripts_path}:${PATH}
|
|
|
|
unset scripts_path
|
|
|
|
|
|
|
|
# enable custom environment settings
|
2015-06-06 10:42:27 +08:00
|
|
|
zephyr_answer_file=~/zephyr-env_install.bash
|
|
|
|
[ -f ${zephyr_answer_file} ] && . ${zephyr_answer_file}
|
|
|
|
unset zephyr_answer_file
|