#!/bin/bash # # arm/build # Check package dependencies, set metadata and launch # package build script. # by Stuart Winter # 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. # Also make sure you comment out the $VERSION vs Makefile version # check in kernel.SlackBuild #export VERSION=${VERSION:-3.2.0rc7} # A stable release: # With Linux 3.x, it always has a 3 digit number - e.g. 3.2.0 rather than just 3.2: # You also need to change the version in kernel-source.SlackBuild export VERSION=${VERSION:-3.4.11} 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 || exit 1 # Compress the build log: bzip2 -9fvz $BUILDLOG