summaryrefslogtreecommitdiffstats
path: root/bin/env.setup-kernel.sh
diff options
context:
space:
mode:
authorSebastian2011-04-26 19:38:11 +0200
committerSebastian2011-04-26 19:38:11 +0200
commite8f2057c4ba4e366f132e2a8780324232c725fd3 (patch)
tree9b411c31c01a20e397b633ae672b27a24858f998 /bin/env.setup-kernel.sh
parentupdate fbgui... (diff)
downloadusb-boot-stick-e8f2057c4ba4e366f132e2a8780324232c725fd3.tar.gz
usb-boot-stick-e8f2057c4ba4e366f132e2a8780324232c725fd3.tar.xz
usb-boot-stick-e8f2057c4ba4e366f132e2a8780324232c725fd3.zip
create installer working ..
Diffstat (limited to 'bin/env.setup-kernel.sh')
-rwxr-xr-xbin/env.setup-kernel.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/env.setup-kernel.sh b/bin/env.setup-kernel.sh
index 82a8c4a..a16804e 100755
--- a/bin/env.setup-kernel.sh
+++ b/bin/env.setup-kernel.sh
@@ -6,27 +6,27 @@ ROOT_DIR=$(readlink -f $(dirname $(readlink -f $0))/..)
cd $ROOT_DIR/build
if [ ! -f linux-${kernel_version}.tar.bz2 ]; then
- echo "[setup-kernel]\t\t Download Kernel ($kernel_version)."
+ echo -e "[setup-kernel]\t\t Download Kernel ($kernel_version)."
wget -q -c "$kernel_url"
else
- echo "[setup-kernel]\t\t Found Kernel package - skip download."
+ echo -e "[setup-kernel]\t\t Found Kernel package - skip download."
fi
if [ ! -d linux-${kernel_version} ]; then
- echo "[setup-kernel]\t\t Unpack Kernel."
+ echo -e "[setup-kernel]\t\t Unpack Kernel."
tar xjf linux-${kernel_version}.tar.bz2
else
- echo "[setup-kernel]\t\t Found unpacked kernel - continue."
+ echo -e "[setup-kernel]\t\t Found unpacked kernel - continue."
fi
-echo "[setup-kernel]\t\t Update Kernel config."
+echo -e "[setup-kernel]\t\t Update Kernel config."
cd linux-${kernel_version}
cp ${ROOT_DIR}/config/kernel.config ./.config
mkdir -p $ROOT_DIR/build/log
yes "" | linux32 make oldconfig > $ROOT_DIR/build/log/kernel-oldconfig.log 2>&1
-echo "[setup-kernel]\t\t Details can be found in the log file: $ROOT_DIR/build/log/kernel-oldconfig.log"
+echo -e "[setup-kernel]\t\t Details can be found in the log file: $ROOT_DIR/build/log/kernel-oldconfig.log"
cd - >/dev/null 2>&1