view config @ 496:3cebbc0b0723

Rename (invert) NATIVE_NOTOOLCHAIN and NATIVE_NOTOOLSDIR, and tweak colors again.
author Rob Landley <rob@landley.net>
date Mon, 24 Nov 2008 09:09:16 -0600
parents b0438691e9e1
children e4f6da942dbf
line wrap: on
line source

# Setup

# If this is set, mini-native won't include development tools, just uClibc
# and busybox.  (Set it to "headers" to include kernel headers if you'd like
# to add your own toolchain, such as tinycc.)

[ -z "$NATIVE_TOOLCHAIN" ] && export NATIVE_TOOLCHAIN=1
# export NATIVE_TOOLCHAIN=headers

# If this is set, mini-native will built a Linux From Scratch style /tools
# directory instead of a more conventional filesystem layout in /usr.

# export NATIVE_TOOLSDIR=1

# If this is set, the build records the command lines run by each build into
# log files in the build directory, ala "build/cmdlines.$PACKAGENAME"

# export RECORD_COMMANDS=1

# If this is set, the cross-compiler stage is compiled with --static.

# export BUILD_STATIC=1

# If this is set, try downloading packages from this location first.

# export PREFERRED_MIRROR=http://landley.net/code/firmware/mirror

# If this is set, the toybox utilities will take precedence over busybox ones.

# export USE_TOYBOX=1

# Try development versions of these packages

# export USE_UNSTABLE=uClibc,busybox,toybox

# If you'd like to change colors, do so here.  If you want to eliminate colors,
# comment these out.

# Black background 
export BACKGROUND_COLOR="\e[40m"

export DOWNLOAD_COLOR="$BACKGROUND_COLOR\e[34m"
export HOST_COLOR="$BACKGROUND_COLOR\e[37m"
export CROSS_COLOR="$BACKGROUND_COLOR\e[33m"
export NATIVE_COLOR="$BACKGROUND_COLOR\e[35m"
export PACKAGE_COLOR="$BACKGROUND_COLOR\e[36m"