Hardware Reference
In-Depth Information
What you see are all the cross-development tools. You need to add this directory to the
$PATH the shell uses to find the commands it runs:
host$ pwd
/home/yoder/BeagleBoard/bb-kernel/dl/\
gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin
host$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:\
/usr/games:/usr/local/games
The first command displays the path to the directory where the cross-development tools
are located. The second shows which directories are searched to find commands to be run.
Currently, the cross-development tools are not in the $PATH . Let's add it:
host$ export PATH=`pwd`:$PATH
host$ echo $PATH
/home/yoder/BeagleBoard/bb-kernel/dl/\
gcc-linaro-arm-linux-gnueabihf-4.7-2013.04-20130415_linux/bin:\
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:\
/usr/games:/usr/local/games
NOTE
Those are backtick characters (left of the “1” key on your keyboard) around pwd .
The second line shows the $PATH now contains the directory with the cross-development
tools.
Search WWH ::




Custom Search