summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/build.initramfs.sh10
-rwxr-xr-xbin/build.kernel.sh12
-rwxr-xr-xbin/env.setup-kernel.sh12
-rwxr-xr-xbin/env.setup-syslinux.sh6
4 files changed, 20 insertions, 20 deletions
diff --git a/bin/build.initramfs.sh b/bin/build.initramfs.sh
index 36ee4eb..692c5e8 100755
--- a/bin/build.initramfs.sh
+++ b/bin/build.initramfs.sh
@@ -3,8 +3,8 @@
ROOT_DIR=$(readlink -f $(dirname $(readlink -f $0))/..)
cd ${ROOT_DIR}/build/rootfs
-echo "[build-initramfs] \t Create initramfs."
-find . | cpio -H newc -o > ../initramfs-default.cpio
+echo -e "[build-initramfs] \t Create initramfs."
+find . | cpio --quiet -H newc -o > ../initramfs-default.cpio
cd ..
gzip initramfs-default.cpio
@@ -13,6 +13,6 @@ INITRAMFS_SIZE=$(stat -c %s ${ROOT_DIR}/build/initramfs-default)
cd - > /dev/null 2>&1
-echo "[build-initramfs] \t New initramfs created."
-echo "\t\t\t Location: ${ROOT_DIR}/build/initramfs-default."
-echo "\t\t\t Size: ${INITRAMFS_SIZE} bytes."
+echo -e "[build-initramfs] \t New initramfs created."
+echo -e "\t\t\t Location: ${ROOT_DIR}/build/initramfs-default."
+echo -e "\t\t\t Size: ${INITRAMFS_SIZE} bytes."
diff --git a/bin/build.kernel.sh b/bin/build.kernel.sh
index 309e24a..937ebe3 100755
--- a/bin/build.kernel.sh
+++ b/bin/build.kernel.sh
@@ -7,11 +7,11 @@ ROOT_DIR=$(readlink -f $(dirname $(readlink -f $0))/..)
cd $ROOT_DIR/build
if [ ! -d linux-${kernel_version} ]; then
- echo "[build-kernel] \t\t Can't find kernel-sources. Re-run kernel env setup."
+ echo -e "[build-kernel] \t\t Can't find kernel-sources. Re-run kernel env setup."
$ROOT_DIR/bin/env.setup-kernel.sh
fi
-echo "[build-kernel]\t\t Update Kernel config."
+echo -e "[build-kernel]\t\t Update Kernel config."
cd linux-${kernel_version}
cp ${ROOT_DIR}/config/kernel.config ./.config
@@ -19,15 +19,15 @@ mkdir -p $ROOT_DIR/build/log
yes "" | linux32 make oldconfig > $ROOT_DIR/build/log/kernel-oldconfig.log 2>&1
-echo "[build-kernel]\t\t Build Kernel (Could take some time)."
+echo -e "[build-kernel]\t\t Build Kernel (Could take some time)."
linux32 make -j $make_num_jobs > $ROOT_DIR/build/log/kernel-compile.log 2>&1
cp arch/x86/boot/bzImage ../kernel-preboot-latest
KERNEL_SIZE=$(stat -c %s ${ROOT_DIR}/build/kernel-preboot-latest)
-echo "[build-kernel] \t\t New Kernel build successfully."
-echo "\t\t\t Location: ${ROOT_DIR}/build/kernel-preboot-latest ."
-echo "\t\t\t Size: ${KERNEL_SIZE} bytes."
+echo -e "[build-kernel] \t\t New Kernel build successfully."
+echo -e "\t\t\t Location: ${ROOT_DIR}/build/kernel-preboot-latest ."
+echo -e "\t\t\t Size: ${KERNEL_SIZE} bytes."
cd - >/dev/null 2>&1
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
diff --git a/bin/env.setup-syslinux.sh b/bin/env.setup-syslinux.sh
index 065b4e9..0c89950 100755
--- a/bin/env.setup-syslinux.sh
+++ b/bin/env.setup-syslinux.sh
@@ -29,13 +29,13 @@ cd $ROOT_DIR/contrib/syslinux
if [ "x$(readlink -e latest)" != "x" ]; then
if [ "$(basename $(readlink -e latest))" = "$SYSLINUX_VERSION" ]; then
- echo "[setup-syslinux] \t Found up-to-date syslinux ($SYSLINUX_VERSION)"
+ echo -e "[setup-syslinux] \t Found up-to-date syslinux ($SYSLINUX_VERSION)"
else
- echo "[setup-syslinux] \t Found different syslinux version ($(basename $(readlink -e latest))). Switch to $SYSLINUX_VERSION."
+ echo -e "[setup-syslinux] \t Found different syslinux version ($(basename $(readlink -e latest))). Switch to $SYSLINUX_VERSION."
get_syslinux
fi
else
- echo "[setup-syslinux] \t Install $SYSLINUX_VERSION."
+ echo -e "[setup-syslinux] \t Install $SYSLINUX_VERSION."
get_syslinux
fi