2012-11-09 11:04:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2013-02-13 22:16:00 +00:00
|
|
|
# Configure grub. Note that the various conditionals here are to handle
|
|
|
|
# different distributions gracefully.
|
2012-11-09 11:04:13 +00:00
|
|
|
|
2014-04-03 02:24:15 +00:00
|
|
|
set -eux
|
|
|
|
set -o pipefail
|
2012-11-09 11:04:13 +00:00
|
|
|
|
2013-04-02 00:25:25 +00:00
|
|
|
# FIXME:
|
|
|
|
[ -n "$IMAGE_BLOCK_DEVICE" ]
|
|
|
|
PART_DEV=$IMAGE_BLOCK_DEVICE
|
2013-08-27 10:00:03 +00:00
|
|
|
BOOT_DEV=$(echo $IMAGE_BLOCK_DEVICE | sed -e 's#p1##' | sed -e 's#mapper/##')
|
|
|
|
|
|
|
|
function install_extlinux {
|
|
|
|
install-packages extlinux
|
|
|
|
|
|
|
|
echo "Installing Extlinux..."
|
|
|
|
|
2014-07-02 10:38:37 +00:00
|
|
|
# Find and install mbr.bin
|
|
|
|
for MBR in /usr/share/syslinux/mbr.bin /usr/lib/syslinux/mbr.bin \
|
|
|
|
/usr/lib/extlinux/mbr.bin /usr/lib/EXTLINUX/mbr.bin ; do
|
|
|
|
if [ -f $MBR ]; then
|
|
|
|
break
|
2013-08-27 10:00:03 +00:00
|
|
|
fi
|
2014-07-02 10:38:37 +00:00
|
|
|
done
|
|
|
|
if [ ! -f $MBR ]; then
|
|
|
|
echo "mbr.bin (from EXT/SYSLINUX) not found."
|
|
|
|
exit 1
|
2013-08-27 10:00:03 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
dd if=$MBR of=$BOOT_DEV
|
|
|
|
|
2014-07-02 10:38:37 +00:00
|
|
|
# Find any pre-created extlinux install directory
|
|
|
|
for EXTDIR in /boot/extlinux /boot/syslinux ; do
|
|
|
|
if [ -d $EXTDIR ] ; then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ ! -d $EXTDIR ] ; then
|
|
|
|
# No install directory found so default to /boot/syslinux
|
|
|
|
EXTDIR=/boot/syslinux
|
|
|
|
mkdir -p $EXTDIR
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Finally install extlinux
|
|
|
|
extlinux --install $EXTDIR
|
2013-08-27 10:00:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function install_grub2 {
|
|
|
|
|
2013-09-14 18:06:08 +00:00
|
|
|
# Check for offline installation of grub
|
|
|
|
if [ -f "/tmp/grub/install" ] ; then
|
|
|
|
source /tmp/grub/install
|
|
|
|
else
|
|
|
|
install-packages grub-pc
|
|
|
|
fi
|
2013-08-27 10:00:03 +00:00
|
|
|
|
|
|
|
# XXX: grub-probe on the nbd0/loop0 device returns nothing - workaround, manually
|
|
|
|
# specify modules. https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1073731
|
2014-07-15 00:41:35 +00:00
|
|
|
GRUBNAME=$(which grub-install) || echo "trying grub2-install"
|
2013-08-27 10:00:03 +00:00
|
|
|
if [ -z "$GRUBNAME" ]; then
|
2014-07-15 00:41:35 +00:00
|
|
|
GRUBNAME=$(which grub2-install)
|
2013-08-27 10:00:03 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If no GRUB2 is found, fallback to extlinux
|
|
|
|
if [ -z "$GRUBNAME" ] || [ $($GRUBNAME --version | grep "0.97" | wc -l) -ne 0 ]; then
|
|
|
|
echo "No GRUB2 found. Fallback to Extlinux..."
|
|
|
|
install_extlinux
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Installing GRUB2..."
|
|
|
|
|
2014-02-27 21:53:07 +00:00
|
|
|
GRUB_OPTS=${GRUB_OPTS:-""}
|
2013-08-27 10:00:03 +00:00
|
|
|
# XXX: This is buggy:
|
|
|
|
# - --target=i386-pc is invalid for non-i386/amd64 architectures
|
|
|
|
# - and for UEFI too.
|
|
|
|
# GRUB_OPTS="$GRUB_OPTS --target=i386-pc"
|
2014-03-27 16:57:18 +00:00
|
|
|
if [[ ! $GRUB_OPTS == *--target* ]] && [[ $($GRUBNAME --version) =~ ' 2.' ]]; then
|
2014-05-02 17:02:38 +00:00
|
|
|
# /sys/ comes from the host machine. If the host machine is using EFI
|
|
|
|
# but the image being built doesn't have EFI boot-images installed we
|
|
|
|
# should set the --target to use a BIOS-based boot-image.
|
|
|
|
#
|
|
|
|
# * --target tells grub what's the target platform
|
|
|
|
# * the boot images are placed in /usr/lib/grub/<cpu>-<platform>
|
|
|
|
# * i386-pc is used for BIOS-based machines
|
|
|
|
# http://www.gnu.org/software/grub/manual/grub.html#Installation
|
|
|
|
#
|
|
|
|
if [ -d /sys/firmware/efi ]; then
|
|
|
|
if [ ! -d /usr/lib/grub/*-efi ]; then
|
|
|
|
case $ARCH in
|
|
|
|
"x86_64"|"amd64")
|
|
|
|
GRUB_OPTS="$GRUB_OPTS --target=i386-pc"
|
|
|
|
;;
|
|
|
|
"i386")
|
|
|
|
target=i386-pc
|
|
|
|
if [ -e /proc/device-tree ]; then
|
|
|
|
for x in /proc/device-tree/*; do
|
|
|
|
if [ -e "$x" ]; then
|
|
|
|
target="i386-ieee1275"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
GRUB_OPTS="$GRUB_OPTS --target=$target"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2013-08-27 10:00:03 +00:00
|
|
|
fi
|
2013-07-12 16:50:39 +00:00
|
|
|
fi
|
|
|
|
|
2013-08-27 10:00:03 +00:00
|
|
|
$GRUBNAME --modules="biosdisk part_msdos" $GRUB_OPTS $BOOT_DEV
|
2013-07-12 16:50:39 +00:00
|
|
|
|
2013-08-27 10:00:03 +00:00
|
|
|
# This might be better factored out into a per-distro 'install-bootblock'
|
|
|
|
# helper.
|
2013-12-12 11:55:39 +00:00
|
|
|
if [ -d /boot/grub2 ]; then
|
2014-05-02 17:02:38 +00:00
|
|
|
GRUB_CFG=/boot/grub2/grub.cfg
|
2013-12-12 11:55:39 +00:00
|
|
|
elif [ -d /boot/grub ]; then
|
2014-05-02 17:02:38 +00:00
|
|
|
GRUB_CFG=/boot/grub/grub.cfg
|
2013-08-27 10:00:03 +00:00
|
|
|
fi
|
2013-07-12 16:15:08 +00:00
|
|
|
|
2013-08-27 10:00:03 +00:00
|
|
|
DIST=`lsb_release -is`
|
|
|
|
[ -n "$DIST" ]
|
2013-12-12 11:55:39 +00:00
|
|
|
echo 'GRUB_TERMINAL=console' >>/etc/default/grub
|
|
|
|
echo 'GRUB_GFXPAYLOAD_LINUX=text' >>/etc/default/grub
|
|
|
|
GRUB_MKCONFIG="grub2-mkconfig -o $GRUB_CFG"
|
|
|
|
case $DIST in
|
2014-05-02 17:02:38 +00:00
|
|
|
'Ubuntu'|'Debian')
|
|
|
|
sed -i -e 's/\(^GRUB_CMDLINE_LINUX.*\)"$/\1 nofb nomodeset vga=normal"/' /etc/default/grub
|
|
|
|
GRUB_MKCONFIG=update-grub
|
2013-12-12 11:55:39 +00:00
|
|
|
;;
|
2014-07-03 01:49:38 +00:00
|
|
|
'Fedora'|'CentOS')
|
2014-05-02 17:02:38 +00:00
|
|
|
echo 'GRUB_CMDLINE_LINUX="nofb nomodeset vga=normal"' >>/etc/default/grub
|
2013-12-12 11:55:39 +00:00
|
|
|
;;
|
2014-05-02 17:02:38 +00:00
|
|
|
'openSUSE project')
|
|
|
|
sed -i -e 's/\(^GRUB_CMDLINE_LINUX.*\)"$/\1 nofb nomodeset vga=normal"/' /etc/default/grub
|
2013-12-12 11:55:39 +00:00
|
|
|
;;
|
|
|
|
esac
|
2014-07-17 09:52:34 +00:00
|
|
|
|
|
|
|
# os-prober leaks /dev/sda into config file in dual-boot host
|
|
|
|
# Disable grub-os-prober to avoid the issue while running
|
|
|
|
# grub-mkconfig
|
|
|
|
# Setting a flag to track whether the entry is already there in grub config
|
|
|
|
PROBER_DISABLED=
|
|
|
|
if ! grep -qe "^\s*GRUB_DISABLE_OS_PROBER=true" /etc/default/grub; then
|
|
|
|
PROBER_DISABLED=true
|
|
|
|
echo 'GRUB_DISABLE_OS_PROBER=true' >> /etc/default/grub
|
|
|
|
fi
|
|
|
|
|
2013-12-12 11:55:39 +00:00
|
|
|
$GRUB_MKCONFIG
|
|
|
|
|
2014-07-17 09:52:34 +00:00
|
|
|
# Remove the fix to disable os_prober
|
|
|
|
if [ -n "$PROBER_DISABLED" ]; then
|
|
|
|
sed -i '$d' /etc/default/grub
|
|
|
|
fi
|
|
|
|
|
2013-08-27 10:00:03 +00:00
|
|
|
RELEASE=`lsb_release -cs`
|
|
|
|
[ -n "$RELEASE" ]
|
|
|
|
# grub-mkconfig generates a config with the device in it,
|
|
|
|
# This shouldn't be needed, but old code has bugs
|
2014-03-27 16:57:18 +00:00
|
|
|
if [ $RELEASE = 'precise' ] || [ $RELEASE = 'wheezy' ]; then
|
2014-05-02 17:02:38 +00:00
|
|
|
sed -i "s%search --no.*%%" $GRUB_CFG
|
|
|
|
sed -i "s%set root=.*%set root=(hd0,1)%" $GRUB_CFG
|
2013-08-27 10:00:03 +00:00
|
|
|
fi
|
|
|
|
# force use of a LABEL:
|
|
|
|
# NOTE: Updating the grub config by hand once deployed should work, its just
|
|
|
|
# prepping it in a different environment that needs fiddling.
|
|
|
|
sed -i "s%$PART_DEV%LABEL=cloudimg-rootfs%" $GRUB_CFG
|
|
|
|
sed -i "s%search --no-floppy --fs-uuid --set=root .*$%search --no-floppy --set=root --label cloudimg-rootfs%" $GRUB_CFG
|
|
|
|
sed -i "s%root=UUID=[A-Za-z0-9\-]*%root=LABEL=cloudimg-rootfs%" $GRUB_CFG
|
2014-05-28 14:38:36 +00:00
|
|
|
if [ "$DIST" = 'Debian' ] || [ "$DIST" = 'Fedora' ]; then
|
2014-05-02 17:02:38 +00:00
|
|
|
# enable serial console
|
|
|
|
sed -i "s%LABEL=cloudimg-rootfs%LABEL=cloudimg-rootfs console=tty0 console=ttyS0,115200%" $GRUB_CFG
|
2014-05-28 14:38:36 +00:00
|
|
|
fi
|
|
|
|
if [ "$DIST" = 'Fedora' ] ; then
|
2014-05-02 17:02:38 +00:00
|
|
|
if [ $(lsb_release -rs) = '19' ]; then
|
|
|
|
sed -i "s%UUID=[A-Za-z0-9\-]*%LABEL=cloudimg-rootfs%" /etc/fstab
|
|
|
|
fi
|
|
|
|
# Fix efi specific instructions in grub config file
|
|
|
|
if [ -d /sys/firmware/efi ]; then
|
|
|
|
sed -i 's%\(initrd\|linux\)efi /boot%\1 /boot%g' $GRUB_CFG
|
|
|
|
fi
|
2013-08-27 10:00:03 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
DIB_EXTLINUX=${DIB_EXTLINUX:-0}
|
|
|
|
if [ "$DIB_EXTLINUX" != "0" ]; then
|
|
|
|
install_extlinux
|
|
|
|
else
|
|
|
|
install_grub2
|
2013-05-10 02:59:35 +00:00
|
|
|
fi
|