#!/bin/sh
#
#  This script sets up the ParaVM to use pygrub
#

prefix=$1

#
#  Source our common functions
#
if [ -e /usr/lib/xen-tools/common.sh ]; then
    . /usr/lib/xen-tools/common.sh
else
    . ./hooks/common.sh
fi

echo SCRIPT = $0
dir=`dirname "$0"`


logMessage Script $0 starting

#
# Install the xen kernel.  linux-image-xen is in ubuntu,
# linux-image-xen-{amd64,686} in debian.
#

installDebianPackage ${prefix} lsb-release

if [ "$(chroot ${prefix} lsb_release -is)" = "Ubuntu" ]; then
    if dpkg --compare-versions "$(chroot ${prefix} lsb_release -rs)" ge 8.10; then
        installDebianPackage ${prefix} linux-image-virtual
    else
        installDebianPackage ${prefix} linux-image-xen
    fi
else
    installDebianPackage ${prefix} linux-image-xen-amd64
    installDebianPackage ${prefix} linux-image-xen-686
fi

installDebianPackage ${prefix} grub

#
# Make the /boot/grub directory
#
mkdir -p ${prefix}/boot/grub

#
# Create stock menu.lst
#
chroot ${prefix} /usr/sbin/update-grub -y

#
# Patches to add xen kernels, use serial console, etc.
#
for patch in $dir/patches/*; do
    patch -l -d ${prefix} -p1 < $patch
done

#
# If this is a pv_ops kernel, then we need to make some more changes
# to make the console work right
#
if [ "$(chroot ${prefix} lsb_release -is)" = "Ubuntu" ] && \
    dpkg --compare-versions "$(chroot ${prefix} lsb_release -rs)" ge 8.10; then
    sed -i -e 's/xvc0/hvc0/' /etc/event.d/tty1
    sed -i -e 's/console=ttyS0[^ ]*/console=hvc0/' /boot/grub/menu.lst
fi

#
# Regenerate automagic kernels list
#
chroot ${prefix} /usr/sbin/update-grub -y

#
# Log our finish
#
logMessage Script $0 finished

