Added some much needed echo statements about the scripts progress.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37671 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matt Madia 2010-07-21 23:07:52 +00:00
parent eddec292d5
commit 0041b38214
1 changed files with 8 additions and 0 deletions

View File

@ -158,6 +158,7 @@ function CleanTemporaryFiles()
function PreFirmwareInstallation()
{
echo "Installing firmware for ${driver} ..."
mkdir -p "${firmwareDir}/${driver}"
UnlinkDriver
}
@ -168,6 +169,7 @@ function PostFirmwareInstallation()
SetFirmwarePermissions
SymlinkDriver
CleanTemporaryFiles
echo "... firmware for ${driver} has been installed."
}
@ -308,6 +310,12 @@ function BuildBroadcomFWCutter()
# Build b43-fwcutter.
echo "Compiling b43-fwcutter for installing Broadcom's firmware ..."
make PREFIX=/boot/common CFLAGS="-I. -Wall -D_BSD_SOURCE" > /dev/null 2>&1
result=$?
if [ $result -gt 0 ]; then
echo "... failed to compile b43-fwcutter."
else
echo "... successfully compiled b43-fwcutter."
fi
if [ ! -e b43-fwcutter ] ; then
return 1
fi