#! /bin/sh
-# Copyright (C) 2008 Alexandre Oliva <lxoliva@fsfla.org>
+# Copyright (C) 2008, 2009 Alexandre Oliva <lxoliva@fsfla.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
exit 1
fi
+if test -f linux-$kver-$libre.log; then
+ echo linux-$kver-$libre.log already exists >&2
+ exit 1
+fi
+
if test -f linux-$kver-$libre.xdelta; then
echo linux-$kver-$libre.xdelta already exists >&2
exit 1
cp linux-$kver.tar linux-$kver-$libre.tar
cp -lR linux-$kver/. linux-$kver-$libre
-echo Deblobbing within linux-$kver-$libre
-if (cd linux-$kver-$libre && /bin/sh ../$deblob $force); then
+echo Deblobbing within linux-$kver-$libre, saving output to linux-$kver-$libre.log
+if (cd linux-$kver-$libre && /bin/sh ../$deblob $force) 2>&1 | tee -a linux-$kver-$libre.log; then
:
else
echo $deblob failed, aborting >&2