BigW Consortium Gitlab

Commit 5acafb4d by David Frey

cypwifi: use findtoolchain relative to $LEGATO_ROOT

parent 0cc32e7f
...@@ -19,14 +19,16 @@ if [ -z "$2" ] ; then ...@@ -19,14 +19,16 @@ if [ -z "$2" ] ; then
exit 3 exit 3
fi fi
export PATH=`findtoolchain ${LEGATO_TARGET} dir`:$PATH FINDTOOLCHAIN=${LEGATO_ROOT}/bin/findtoolchain
export MY_KERNEL=`findtoolchain ${LEGATO_TARGET} kernelroot`
export PATH=`${FINDTOOLCHAIN} ${LEGATO_TARGET} dir`:$PATH
export MY_KERNEL=`${FINDTOOLCHAIN} ${LEGATO_TARGET} kernelroot`
export KLIB=$MY_KERNEL export KLIB=$MY_KERNEL
export KLIB_BUILD=$MY_KERNEL export KLIB_BUILD=$MY_KERNEL
# Need to change these if you want a different X-chain # Need to change these if you want a different X-chain
export ARCH=arm export ARCH=arm
export CROSS_COMPILE=`findtoolchain ${LEGATO_TARGET} prefix` export CROSS_COMPILE=`${FINDTOOLCHAIN} ${LEGATO_TARGET} prefix`
# Lets do it # Lets do it
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment