In case you are not aware of it, I used this patch a long time ago (when I first install CodeSourcery for a different ARM device):
Quote:
https://www.ridgerun.com/developer/w...ain_2009q1-203
Using bash instead of dash
By default on Ubuntu systems, /bin/sh is linked to /bin/dash and that causes problems with certain versions of the toolchain and some SDK build scripts. Run the following commands to switch to using bash:
sudo rm /bin/sh
sudo ln -s /bin/bash /bin/sh
|
This may prevent possible build problems on Ubuntu-based systems such as Linux Mint.