2020-10-27 15:01:40 +01:00
|
|
|
cat <<'EOF'
|
|
|
|
_ _ _ _ _
|
|
|
|
| |__ _ _(_) | __| |_ __ ___ ___ | |_
|
|
|
|
| '_ \| | | | | |/ _` | '__/ _ \ / _ \| __|
|
|
|
|
| |_) | |_| | | | (_| | | | (_) | (_) | |_
|
|
|
|
|_.__/ \__,_|_|_|\__,_|_| \___/ \___/ \__|
|
|
|
|
|
|
|
|
Making embedded Linux easy!
|
|
|
|
|
|
|
|
Some tips:
|
|
|
|
* PATH now contains the SDK utilities
|
|
|
|
* Standard autotools variables (CC, LD, CFLAGS) are exported
|
2020-11-09 17:58:03 +01:00
|
|
|
* Kernel compilation variables (ARCH, CROSS_COMPILE, KERNELDIR) are exported
|
2020-04-28 16:45:59 +02:00
|
|
|
* To configure do "./configure $CONFIGURE_FLAGS" or use
|
|
|
|
the "configure" alias
|
2020-04-28 16:46:00 +02:00
|
|
|
* To build CMake-based projects, use the "cmake" alias
|
2020-10-27 15:01:40 +01:00
|
|
|
|
|
|
|
EOF
|
2021-09-02 13:28:50 +02:00
|
|
|
if [ x"$BASH_VERSION" != x"" ] ; then
|
|
|
|
SDK_PATH=$(dirname $(realpath "${BASH_SOURCE[0]}"))
|
|
|
|
elif [ x"$ZSH_VERSION" != x"" ] ; then
|
|
|
|
SDK_PATH=$(dirname $(realpath $0))
|
|
|
|
else
|
|
|
|
echo "unsupported shell"
|
|
|
|
fi
|