diff options
Diffstat (limited to 'package/environment-setup/environment-setup')
-rw-r--r-- | package/environment-setup/environment-setup | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/environment-setup/environment-setup b/package/environment-setup/environment-setup new file mode 100644 index 0000000000..e9bc36fdd0 --- /dev/null +++ b/package/environment-setup/environment-setup @@ -0,0 +1,19 @@ +cat <<'EOF' + _ _ _ _ _ +| |__ _ _(_) | __| |_ __ ___ ___ | |_ +| '_ \| | | | | |/ _` | '__/ _ \ / _ \| __| +| |_) | |_| | | | (_| | | | (_) | (_) | |_ +|_.__/ \__,_|_|_|\__,_|_| \___/ \___/ \__| + + Making embedded Linux easy! + +Some tips: +* PATH now contains the SDK utilities +* Standard autotools variables (CC, LD, CFLAGS) are exported +* Kernel compilation variables (ARCH, CROSS_COMPILE, KERNELDIR) are exported +* To configure do "./configure $CONFIGURE_FLAGS" or use + the "configure" alias +* To build CMake-based projects, use the "cmake" alias + +EOF +SDK_PATH=$(dirname $(realpath "${BASH_SOURCE[0]}")) |