summaryrefslogtreecommitdiff
path: root/nuttx/configs/lm3s6965-ek
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-07 15:28:42 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-07 15:28:42 -0600
commit7189eaadba527f750a3f620b1d736dd4487ae891 (patch)
tree4fe47b16c6b69669d25298d5e045f6b008b76342 /nuttx/configs/lm3s6965-ek
parenta9202744ff86f89a2ed0b6cea07de5c0fff402a1 (diff)
downloadnuttx-7189eaadba527f750a3f620b1d736dd4487ae891.tar.gz
nuttx-7189eaadba527f750a3f620b1d736dd4487ae891.tar.bz2
nuttx-7189eaadba527f750a3f620b1d736dd4487ae891.zip
lm3s6965: Add path to the CodeSourcery toolchain
Diffstat (limited to 'nuttx/configs/lm3s6965-ek')
-rw-r--r--nuttx/configs/lm3s6965-ek/discover/setenv.sh13
-rwxr-xr-xnuttx/configs/lm3s6965-ek/nsh/setenv.sh13
-rwxr-xr-xnuttx/configs/lm3s6965-ek/nx/setenv.sh13
-rw-r--r--nuttx/configs/lm3s6965-ek/tcpecho/setenv.sh13
4 files changed, 40 insertions, 12 deletions
diff --git a/nuttx/configs/lm3s6965-ek/discover/setenv.sh b/nuttx/configs/lm3s6965-ek/discover/setenv.sh
index 6ff84d0c0..479dc95e4 100644
--- a/nuttx/configs/lm3s6965-ek/discover/setenv.sh
+++ b/nuttx/configs/lm3s6965-ek/discover/setenv.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# configs/lm3s6965-ek/discover/setenv.sh
#
-# Copyright (C) 2013 Gregory Nutt. All rights reserved.
+# Copyright (C) 2013, 2014 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -47,10 +47,17 @@ if [ -z "${PATH_ORIG}" ]; then
export PATH_ORIG="${PATH}"
fi
+# This is the Cygwin path to the location where I installed the CodeSourcery
+# toolchain under windows. You will also have to edit this if you install
+# the CodeSourcery toolchain in any other location
+
+#export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery G++ Lite/bin"
+#export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin"
+
# This is the Cygwin path to the location where I build the buildroot
# toolchain.
-export BUILDROOT_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin"
+export TOOLCHAIN_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin"
# This is the path to the LM3S6995-EK tools directory
@@ -58,7 +65,7 @@ export TOOL_BIN="${WD}/configs/lm3s6965-ek/tools"
# Update the PATH variable
-export PATH="${BUILDROOT_BIN}:${TOOL_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
+export PATH="${TOOLCHAIN_BIN}:${TOOL_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
echo "PATH : ${PATH}"
diff --git a/nuttx/configs/lm3s6965-ek/nsh/setenv.sh b/nuttx/configs/lm3s6965-ek/nsh/setenv.sh
index 98ea7e573..3ab421512 100755
--- a/nuttx/configs/lm3s6965-ek/nsh/setenv.sh
+++ b/nuttx/configs/lm3s6965-ek/nsh/setenv.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# configs/lm3s6965-ek/nsh/setenv.sh
#
-# Copyright (C) 2010 Gregory Nutt. All rights reserved.
+# Copyright (C) 2010, 2014 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -47,10 +47,17 @@ if [ -z "${PATH_ORIG}" ]; then
export PATH_ORIG="${PATH}"
fi
+# This is the Cygwin path to the location where I installed the CodeSourcery
+# toolchain under windows. You will also have to edit this if you install
+# the CodeSourcery toolchain in any other location
+
+#export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery G++ Lite/bin"
+#export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin"
+
# This is the Cygwin path to the location where I build the buildroot
# toolchain.
-export BUILDROOT_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin"
+export TOOLCHAIN_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin"
# This is the path to the LM3S6995-EK tools directory
@@ -58,6 +65,6 @@ export TOOL_BIN="${WD}/configs/lm3s6965-ek/tools"
# Update the PATH variable
-export PATH="${BUILDROOT_BIN}:${TOOL_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
+export PATH="${TOOLCHAIN_BIN}:${TOOL_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
echo "PATH : ${PATH}"
diff --git a/nuttx/configs/lm3s6965-ek/nx/setenv.sh b/nuttx/configs/lm3s6965-ek/nx/setenv.sh
index 43bbeada9..f92abb9f5 100755
--- a/nuttx/configs/lm3s6965-ek/nx/setenv.sh
+++ b/nuttx/configs/lm3s6965-ek/nx/setenv.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# configs/lm3s6965-ek/nx/setenv.sh
#
-# Copyright (C) 2010 Gregory Nutt. All rights reserved.
+# Copyright (C) 2010, 2014 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -47,10 +47,17 @@ if [ -z "${PATH_ORIG}" ]; then
export PATH_ORIG="${PATH}"
fi
+# This is the Cygwin path to the location where I installed the CodeSourcery
+# toolchain under windows. You will also have to edit this if you install
+# the CodeSourcery toolchain in any other location
+
+#export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery G++ Lite/bin"
+#export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin"
+
# This is the Cygwin path to the location where I build the buildroot
# toolchain.
-export BUILDROOT_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin"
+export TOOLCHAIN_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin"
# This is the path to the LM3S6995-EK tools directory
@@ -58,6 +65,6 @@ export TOOL_BIN="${WD}/configs/lm3s6965-ek/tools"
# Update the PATH variable
-export PATH="${BUILDROOT_BIN}:${TOOL_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
+export PATH="${TOOLCHAIN_BIN}:${TOOL_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
echo "PATH : ${PATH}"
diff --git a/nuttx/configs/lm3s6965-ek/tcpecho/setenv.sh b/nuttx/configs/lm3s6965-ek/tcpecho/setenv.sh
index 7e09dde62..3c2017241 100644
--- a/nuttx/configs/lm3s6965-ek/tcpecho/setenv.sh
+++ b/nuttx/configs/lm3s6965-ek/tcpecho/setenv.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# configs/lm3s6965-ek/tcpecho/setenv.sh
#
-# Copyright (C) 2013 Gregory Nutt. All rights reserved.
+# Copyright (C) 2013-2014 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -47,10 +47,17 @@ if [ -z "${PATH_ORIG}" ]; then
export PATH_ORIG="${PATH}"
fi
+# This is the Cygwin path to the location where I installed the CodeSourcery
+# toolchain under windows. You will also have to edit this if you install
+# the CodeSourcery toolchain in any other location
+
+#export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery G++ Lite/bin"
+#export TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin"
+
# This is the Cygwin path to the location where I build the buildroot
# toolchain.
-export BUILDROOT_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin"
+export TOOLCHAIN_BIN="${WD}/../misc/buildroot/build_arm_nofpu/staging_dir/bin"
# This is the path to the LM3S6995-EK tools directory
@@ -58,6 +65,6 @@ export TOOL_BIN="${WD}/configs/lm3s6965-ek/tools"
# Update the PATH variable
-export PATH="${BUILDROOT_BIN}:${TOOL_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
+export PATH="${TOOLCHAIN_BIN}:${TOOL_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
echo "PATH : ${PATH}"