#!/bin/bash
#
# arm/build
# Check package dependencies, set metadata and launch
# package build script.
# by Stuart Winter <mozes@slackware.com>
#
source /usr/share/slackdev/buildkit.sh

echo "*********************************************************"
echo "*** DID YOU WIPE THE OLD KERNELS from slackware/a ??? ***"
echo "*********************************************************"
sleep 30

# If it's an -rc release, remove the hyphen and rename
# the source archive.  It makes packaging and scripting all play happily.
#export VERSION=${VERSION:-2.6.34rc7}
export VERSION=${VERSION:-2.6.33.5}
export BUILD=${BUILD:-1}
export PKGSERIES=${PKGSERIES:-a}
export PKGARCH=${PKGARCH:-arm}

## ******************************************************************* ##
# For test packages - best to store in another location rather than
# overwriting the working copy in the main tree:
# export PKGSTORE=/tmp/
# mkdir -vpm755 $PKGSTORE/$PKGSERIES
## ******************************************************************* ##

# Assume we want to build a Versatile Kernel if we did not
# specify any particular arch type:
if [ -z "$1" ]; then
   # For this package only, we use branded hardware names as the $ARCH: riscpc, iyonix, cats, netwinder, riscstation
   # export SLKARCH=riscpc
   export SLKARCH=versatile
 else
   export SLKARCH=$1
fi

# Ensure build dependencies are met:
# We require Das U-Boot 'mkimage' tool to build the 'uImage' Kernels
# for the ARM Kirkwood and other platforms using the U-Boot Linux loader.
{ slackcheckpkgdeps u-boot-tools || installpkg $PKGSTORE/a/u-boot-tools-[0-9]*.tgz || exit 99 ; }
# udev, mdadm & lvm2 are included in the initrd so we need the minstalled
# on the system (the mkinitrd script takes the versions from the running system)
{ slackcheckpkgdeps udev || installpkg $PKGSTORE/a/udev-[0-9]*.tgz || exit 99 ; }
{ slackcheckpkgdeps mdadm || installpkg $PKGSTORE/a/mdadm-[0-9]*.tgz || exit 99 ; }
{ slackcheckpkgdeps lvm2 || installpkg $PKGSTORE/a/lvm2-[0-9]*.tgz || exit 99 ; }

export PKGNAM=kernel_$SLKARCH
export SLACKPACKAGE=$PKGNAM-$VERSION-$PKGARCH-$BUILD.tgz

# Launch the package build script:
BUILDLOG=$( basename $SLACKPACKAGE .tgz ).build.log
( ./kernel.SlackBuild ) >& /dev/stdout | tee $BUILDLOG

# Compress the build log:
bzip2 -9f $BUILDLOG
