Newer
Older
#!/bin/bash -e
unset KERNEL_REL
unset STABLE_PATCH
unset RC_PATCH
unset PRE_RC
unset BUILD
unset CC
unset LINUX_GIT
unset BISECT
unset NO_DEVTMPS
Robert Nelson
committed
unset LATEST_GIT
unset LOCAL_PATCH_DIR
ARCH=$(uname -m)
CCACHE=ccache
DIR=$PWD
CORES=1
if test "-$ARCH-" = "-x86_64-" || test "-$ARCH-" = "-i686-"
then
CORES=$(cat /proc/cpuinfo | grep processor | wc -l)
let CORES=$CORES+1
fi
mkdir -p ${DIR}/deploy/
function git_mirror {
#Encase linux-2.6-stable or linus tree's are behind on kernel.org
echo "Pulling from github.com mirror of linux.git tree"
git pull git://github.com/torvalds/linux.git master --tags || true
echo "Pulling from kernel.org linux.git tree"
git pull git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master --tags || true
Robert Nelson
committed
cd ${LINUX_GIT}/
git fetch
cd -
if [[ ! -a ${DIR}/KERNEL ]]; then
git clone --shared ${LINUX_GIT} ${DIR}/KERNEL
fi
cd ${DIR}/KERNEL
git reset --hard
Robert Nelson
committed
git pull
if [ "${PRE_RC}" ]; then
git branch -D v${PRE_RC}-${BUILD} || true
if [ ! "${LATEST_GIT}" ] ; then
wget -c --directory-prefix=${DIR}/patches/ http://www.kernel.org/pub/linux/kernel/${PRE_SNAP}/snapshots/patch-${PRE_RC}.bz2
Robert Nelson
committed
git checkout v${KERNEL_REL} -b v${PRE_RC}-${BUILD}
else
git checkout origin/master -b v${PRE_RC}-${BUILD}
fi
elif [ "${RC_PATCH}" ]; then
git tag | grep v${RC_KERNEL}${RC_PATCH} || git_mirror
Robert Nelson
committed
git branch -D v${RC_KERNEL}${RC_PATCH}-${BUILD} || true
if [ ! "${LATEST_GIT}" ] ; then
git checkout v${RC_KERNEL}${RC_PATCH} -b v${RC_KERNEL}${RC_PATCH}-${BUILD}
else
git checkout origin/master -b v${RC_KERNEL}${RC_PATCH}-${BUILD}
fi
elif [ "${STABLE_PATCH}" ] ; then
git tag | grep v${KERNEL_REL}.${STABLE_PATCH} || git_mirror
Robert Nelson
committed
git branch -D v${KERNEL_REL}.${STABLE_PATCH}-${BUILD} || true
Robert Nelson
committed
git checkout v${KERNEL_REL}.${STABLE_PATCH} -b v${KERNEL_REL}.${STABLE_PATCH}-${BUILD}
else
git checkout origin/master -b v${KERNEL_REL}.${STABLE_PATCH}-${BUILD}
fi
else
git tag | grep v${KERNEL_REL} || git_mirror
Robert Nelson
committed
git branch -D v${KERNEL_REL}-${BUILD} || true
Robert Nelson
committed
git checkout v${KERNEL_REL} -b v${KERNEL_REL}-${BUILD}
else
git checkout origin/master -b v${KERNEL_REL}-${BUILD}
fi
fi
git describe
cd ${DIR}/
}
function git_bisect {
cd ${DIR}/KERNEL
git bisect start
git bisect bad v2.6.35-rc2
git bisect good v2.6.35-rc1
# git bisect good <>
read -p "bisect look good... (y/n)? "
[ "$REPLY" == "y" ] || exit
cd ${DIR}/
}
function patch_kernel {
cd ${DIR}/KERNEL
if [ "${PRE_RC}" ]; then
bzip2 -dc ${DIR}/patches/patch-${PRE_RC}.bz2 | patch -p1 -s
git add .
git commit -a -m ''$PRE_RC' patchset'
fi
export DIR BISECT
/bin/bash -e ${DIR}/patch.sh || { git add . ; exit 1 ; }
git add .
if [ "${PRE_RC}" ]; then
git commit -a -m ''$PRE_RC'-'$BUILD' patchset'
else if [ "${RC_PATCH}" ]; then
git commit -a -m ''$RC_KERNEL''$RC_PATCH'-'$BUILD' patchset'
else if [ "${STABLE_PATCH}" ] ; then
git commit -a -m ''$KERNEL_REL'.'$STABLE_PATCH'-'$BUILD' patchset'
else
git commit -a -m ''$KERNEL_REL'-'$BUILD' patchset'
fi
fi
fi
#exit
if [ "${LOCAL_PATCH_DIR}" ]; then
for i in ${LOCAL_PATCH_DIR}/*.patch ; do patch -s -p1 < $i ; done
BUILD+='+'
fi
#exit
cd ${DIR}/
}
function copy_defconfig {
cd ${DIR}/KERNEL/
make ARCH=arm CROSS_COMPILE=${CC} distclean
make ARCH=arm CROSS_COMPILE=${CC} omap2plus_defconfig
cp .config ${DIR}/patches/ref_omap2plus_defconfig
if [ "${NO_DEVTMPS}" ] ; then
cp ${DIR}/patches/no_devtmps-defconfig .config
else
cp ${DIR}/patches/defconfig .config
fi
cd ${DIR}/
}
function make_menuconfig {
cd ${DIR}/KERNEL/
make ARCH=arm CROSS_COMPILE=${CC} menuconfig
if [ "${NO_DEVTMPS}" ] ; then
cp .config ${DIR}/patches/no_devtmps-defconfig
else
cp .config ${DIR}/patches/defconfig
fi
cd ${DIR}/
}
Robert Nelson
committed
function make_zImage {
cd ${DIR}/KERNEL/
echo "make -j${CORES} ARCH=arm LOCALVERSION=-${BUILD} CROSS_COMPILE=\"${CCACHE} ${CC}\" CONFIG_DEBUG_SECTION_MISMATCH=y zImage"
time make -j${CORES} ARCH=arm LOCALVERSION=-${BUILD} CROSS_COMPILE="${CCACHE} ${CC}" CONFIG_DEBUG_SECTION_MISMATCH=y zImage
KERNEL_UTS=$(cat ${DIR}/KERNEL/include/generated/utsrelease.h | awk '{print $3}' | sed 's/\"//g' )
cp arch/arm/boot/zImage ${DIR}/deploy/${KERNEL_UTS}.zImage
cd ${DIR}
}
function make_modules {
cd ${DIR}/KERNEL/
time make -j${CORES} ARCH=arm LOCALVERSION=-${BUILD} CROSS_COMPILE="${CCACHE} ${CC}" CONFIG_DEBUG_SECTION_MISMATCH=y modules
echo ""
echo "Building Module Archive"
echo ""
rm -rf ${DIR}/deploy/mod &> /dev/null || true
mkdir -p ${DIR}/deploy/mod
make ARCH=arm CROSS_COMPILE=${CC} modules_install INSTALL_MOD_PATH=${DIR}/deploy/mod
echo "Building ${KERNEL_UTS}-modules.tar.gz"
cd ${DIR}/deploy/mod
tar czf ../${KERNEL_UTS}-modules.tar.gz *
cd ${DIR}
}
function make_headers {
cd ${DIR}/KERNEL/
echo ""
echo "Building Header Archive"
echo ""
rm -rf ${DIR}/deploy/headers &> /dev/null || true
mkdir -p ${DIR}/deploy/headers/usr
make ARCH=arm CROSS_COMPILE=${CC} headers_install INSTALL_HDR_PATH=${DIR}/deploy/headers/usr
cd ${DIR}/deploy/headers
echo "Building ${KERNEL_UTS}-headers.tar.gz"
tar czf ../${KERNEL_UTS}-headers.tar.gz *
cd ${DIR}
}
/bin/bash -e ${DIR}/tools/host_det.sh || { exit 1 ; }
if [ -e ${DIR}/system.sh ]; then
. system.sh
. version.sh
if [ "${IS_LUCID}" ] ; then
echo ""
echo "IS_LUCID setting in system.sh is Depreciated"
echo ""
fi
Robert Nelson
committed
if [ "${LATEST_GIT}" ] ; then
echo ""
echo "Warning LATEST_GIT is enabled from system.sh i hope you know what your doing.."
echo ""
fi
if [ "${NO_DEVTMPS}" ] ; then
echo ""
echo "Building for Debian Lenny & Ubuntu 9.04/9.10"
echo ""
else
echo ""
echo "Building for Debian Squeeze/Wheezy/Sid & Ubuntu 10.04/10.10/11.04/11.10"
echo ""
fi
git_kernel
#git_bisect
patch_kernel
copy_defconfig
make_menuconfig
Robert Nelson
committed
make_zImage
make_modules
make_headers
else
echo "The LINUX_GIT variable is not definted in system.sh"
echo "Follow the git clone directions in system.sh.sample"
echo "and make sure to remove the comment # from LINUX_GIT"
echo "gedit system.sh"
fi
else
echo "Missing system.sh, please copy system.sh.sample to system.sh and edit as needed"
echo "cp system.sh.sample system.sh"
echo "gedit system.sh"
fi