[SM-Commit] GIT changes to devel-andrew cauldron by Justin Boffemmyer (6e66717fa7465c5d12c63887143765bff6d4b6cf)
Justin Boffemmyer
scm at sourcemage.org
Sun Jan 11 09:02:05 EST 2009
GIT changes to devel-andrew cauldron by Justin Boffemmyer <flux at sourcemage.org>:
scripts/twelve-step-program.sh | 4 +++-
1 files changed, 3 insertions(+), 1 deletion(-)
New commits:
commit 6e66717fa7465c5d12c63887143765bff6d4b6cf
Author: Justin Boffemmyer <flux at sourcemage.org>
Commit: Justin Boffemmyer <flux at sourcemage.org>
scripts/twelve-step-program.sh: quiet kern build
Silence the kernel build output to make reading the output from the
script for error messages more sane.
diff --git a/scripts/twelve-step-program.sh b/scripts/twelve-step-program.sh
index 995da40..c9e3e8f 100755
--- a/scripts/twelve-step-program.sh
+++ b/scripts/twelve-step-program.sh
@@ -38,7 +38,9 @@ KERNEL_VERSION=2.6.27.10
cp "$CAULDRON_SRC"/data/config-2.6 /usr/src/linux/.config &&
pushd linux &&
yes ""|make oldconfig; make -j 4 &&
- make -j 4 && make modules -j 4 && make modules_install &&
+ make -j 4 &> /dev/null &&
+ make modules -j 4 &> /dev/null &&
+ make modules_install &> /dev/null &&
popd &&
ls /lib/modules &&
cp -fav /lib/modules/$KERNEL_VERSION-SMGL-iso "$ROOTBUILD"/lib/modules &&
More information about the SM-Commit
mailing list