From 255cc9041b9956d18199ae22a7973e5a726ffe7f Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 12 Feb 2016 07:05:53 -0600 Subject: [PATCH] SAME70 Xplained: Add the path too the tools subdirectory to the setenv.sh script --- configs/same70-xplained/nsh/setenv.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/configs/same70-xplained/nsh/setenv.sh b/configs/same70-xplained/nsh/setenv.sh index 8fda2eca920..45dc13b84f1 100755 --- a/configs/same70-xplained/nsh/setenv.sh +++ b/configs/same70-xplained/nsh/setenv.sh @@ -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}"