changeset 907:890aa372ee30

Remove old USE_COLOR code, superceded by set_titlebar.
author Rob Landley <rob@landley.net>
date Sat, 28 Nov 2009 23:39:36 -0600
parents 5e0cbc73da55
children 2af4fe56095b
files config cross-compiler.sh download.sh host-tools.sh root-filesystem.sh system-image.sh
diffstat 6 files changed, 6 insertions(+), 27 deletions(-) [+]
line wrap: on
line diff
--- a/config	Sat Nov 28 23:23:24 2009 -0600
+++ b/config	Sat Nov 28 23:39:36 2009 -0600
@@ -80,29 +80,13 @@
 # export USE_UNSTABLE=uClibc,busybox,toybox,linux,binutils,make,gcc-core,gcc-g++
 
 # Debugging option to leave source in build/temp-$ARCH after build.
+
 # export NO_CLEANUP=1
 
 # Don't create tarballs at the end of each stage.
+
 # export SKIP_STAGE_TARBALLS=1
 
-# If this is set, the output of the various stages will be color coded.
-# export USE_COLOR=1
-
-if [ ! -z "$USE_COLOR" ]
-then
-
-  # If you'd like to change colors, do so here.
-
-  # 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"
-fi
-
 # Tell the linux kernel, uClibc, and busybox to show the actual build commands
 # instead of pretty-print output.
 
--- a/cross-compiler.sh	Sat Nov 28 23:23:24 2009 -0600
+++ b/cross-compiler.sh	Sat Nov 28 23:39:36 2009 -0600
@@ -16,7 +16,6 @@
 
 # Ok, we have work to do.  Announce start of stage.
 
-echo -e "$CROSS_COLOR"
 echo "=== Building $STAGE_NAME"
 
 # Build binutils, gcc, and ccwrap
--- a/download.sh	Sat Nov 28 23:23:24 2009 -0600
+++ b/download.sh	Sat Nov 28 23:39:36 2009 -0600
@@ -14,7 +14,6 @@
 
 mkdir -p "$SRCDIR" || dienow
 
-echo -e "$DOWNLOAD_COLOR"
 echo "=== Download source code."
 
 # List of fallback mirrors for these files
--- a/host-tools.sh	Sat Nov 28 23:23:24 2009 -0600
+++ b/host-tools.sh	Sat Nov 28 23:39:36 2009 -0600
@@ -26,7 +26,6 @@
 
 source sources/include.sh || exit 1
 
-echo -e "$HOST_COLOR"
 echo "=== Building $STAGE_NAME"
 
 STAGE_DIR="${HOSTTOOLS}"
--- a/root-filesystem.sh	Sat Nov 28 23:23:24 2009 -0600
+++ b/root-filesystem.sh	Sat Nov 28 23:39:36 2009 -0600
@@ -14,6 +14,10 @@
 
 check_for_base_arch || exit 0
 
+# Announce start of stage.
+
+echo "=== Building $STAGE_NAME"
+
 # Die if our prerequisite isn't there.
 
 for i in "$ARCH" "$FROM_ARCH"
@@ -25,11 +29,6 @@
   fi
 done
 
-# Announce start of stage.
-
-echo -e "$NATIVE_COLOR"
-echo "=== Building $STAGE_NAME"
-
 # Determine which directory layout we're using
 
 if [ -z "$ROOT_NODIRS" ]
--- a/system-image.sh	Sat Nov 28 23:23:24 2009 -0600
+++ b/system-image.sh	Sat Nov 28 23:39:36 2009 -0600
@@ -38,7 +38,6 @@
 # Announce start of stage.  (Down here after the recursive call above so
 # it doesn't get announced twice.)
 
-echo -e "$PACKAGE_COLOR"
 echo "=== Packaging system image from root-filesystem"
 
 blank_tempdir "$STAGE_DIR"