SAME70 Xplained: Add the path too the tools subdirectory to the setenv.sh script

This commit is contained in:
Gregory Nutt
2016-02-12 07:05:53 -06:00
parent d974d34bd1
commit 255cc9041b
+5 -2
View File
@@ -71,7 +71,10 @@ export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/GNU Tools ARM Embedded/4.9
# toolchain.
# export TOOLCHAIN_BIN="${WD}/../buildroot/build_arm_nofpu/staging_dir/bin"
# Add the path to the toolchain to the PATH varialble
export PATH="${TOOLCHAIN_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
# The same70-xplained/tools directory
export TOOL_DIR="${WD}/configs/same70-xplained/tools"
# Add the path to the toolchain and tools directory to the PATH varialble
export PATH="${TOOLCHAIN_BIN}:${TOOL_DIR}:/sbin:/usr/sbin:${PATH_ORIG}"
echo "PATH : ${PATH}"