live-build/helpers/lh_binary_grub

340 lines
7.9 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:49 +00:00
#!/bin/sh
# lh_binary_grub(1) - installs grub into binary
# Copyright (C) 2006-2009 Daniel Baumann <daniel@debian.org>
2007-09-23 08:04:49 +00:00
#
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
# This is free software, and you are welcome to redistribute it
# under certain conditions; see COPYING for details.
set -e
2007-09-23 08:05:11 +00:00
# Including common functions
2009-11-22 12:40:20 -01:00
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:11 +00:00
# Setting static variables
DESCRIPTION="$(Echo 'installs grub into binary')"
2007-09-23 08:04:49 +00:00
HELP=""
USAGE="${PROGRAM} [--force]"
Arguments "${@}"
# Reading configuration files
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
2007-09-23 08:04:49 +00:00
Set_defaults
2007-09-23 08:05:17 +00:00
if [ "${LH_BOOTLOADER}" != "grub" ]
2007-09-23 08:04:49 +00:00
then
exit 0
fi
2007-09-23 08:05:11 +00:00
Echo_message "Begin installing grub..."
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
# Requiring stage file
Require_stagefile .stage/config .stage/bootstrap
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:50 +00:00
# Checking stage file
Check_stagefile .stage/binary_grub
2007-09-23 08:05:13 +00:00
# Checking grub templates
Check_templates grub
2007-09-23 08:04:49 +00:00
# Checking lock file
Check_lockfile .lock
# Creating lock file
Create_lockfile .lock
2007-09-23 08:05:13 +00:00
# Check architecture
2009-04-17 08:23:38 +00:00
Check_architecture amd64 i386 lpia
Check_crossarchitecture
2007-09-23 08:05:09 +00:00
2007-09-23 08:04:51 +00:00
# Checking depends
Check_package chroot/usr/sbin/grub grub
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:15 +00:00
# Restoring cache
Restore_cache cache/packages_binary
2007-09-23 08:04:51 +00:00
# Installing depends
Install_package
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:14 +00:00
# Local functions
Grub_live_entry ()
{
LABEL="${1}"
KERNEL="${2}"
INITRD="${3}"
APPEND="${4}"
LINUX_LIVE="${LINUX_LIVE}\ntitle\t\tDebian GNU/Linux - ${LABEL}"
LINUX_LIVE="${LINUX_LIVE}\nkernel\t\t/${KERNEL} boot=${INITFS} LH_BOOTAPPEND_LIVE ${APPEND}"
2007-09-23 08:05:14 +00:00
LINUX_LIVE="${LINUX_LIVE}\ninitrd\t\t/${INITRD}"
}
Grub_install_entry ()
{
LABEL="${1}"
KERNEL="${2}"
INITRD="${3}"
APPEND="${4}"
2009-11-16 10:40:43 -01:00
QAPPEND="quiet"
2007-09-23 08:05:14 +00:00
2009-09-11 07:44:40 +00:00
for TYPE in Install Expert Rescue Auto
do
case "${TYPE}" in
Install)
TAPPEND="${APPEND} ${QAPPEND}"
;;
Expert)
TAPPEND="priority=low ${APPEND}"
;;
Rescue)
TAPPEND="rescue/enable=true ${APPEND} ${QAPPEND}"
;;
Auto)
TAPPEND="auto=true priority=critical ${APPEND} ${QAPPEND}"
;;
esac
case "${LABEL}" in
Text)
TYPE_SUFFIX=""
;;
GUI)
TYPE_SUFFIX="gui"
;;
esac
LINUX_INSTALL="${LINUX_INSTALL}\ntitle\t\t${LABEL} ${TYPE}"
LINUX_INSTALL="${LINUX_INSTALL}\nkernel\t\t/${KERNEL} ${TAPPEND} ${LH_BOOTAPPEND_INSTALL}"
LINUX_INSTALL="${LINUX_INSTALL}\ninitrd\t\t/${INITRD}"
done
2007-09-23 08:05:14 +00:00
}
2007-09-23 08:04:52 +00:00
case "${LH_INITRAMFS}" in
casper)
INITFS="casper"
;;
live-initramfs)
INITFS="live"
;;
esac
2007-09-23 08:04:49 +00:00
# Setting destination directory
2007-09-23 08:05:17 +00:00
case "${LH_BINARY_IMAGES}" in
2007-09-23 08:05:13 +00:00
iso|tar)
case "${LH_INITRAMFS}" in
casper)
DESTDIR_LIVE="binary/casper"
;;
live-initramfs)
DESTDIR_LIVE="binary/live"
;;
esac
2007-09-23 08:04:52 +00:00
DESTDIR_INSTALL="binary/install"
2007-09-23 08:04:49 +00:00
;;
2007-09-23 08:05:13 +00:00
usb-hdd|net)
Echo_warning "Bootloader in this image type not yet supported by live-helper."
Echo_warning "This would produce a not bootable image, aborting (FIXME)."
2007-09-23 08:04:50 +00:00
exit 1
2007-09-23 08:04:49 +00:00
;;
esac
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:14 +00:00
Check_multiarchitecture
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
# Creating directory
2007-09-23 08:05:11 +00:00
mkdir -p "${DESTDIR_LIVE}"
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
# Setting boot parameters
case "${LH_ENCRYPTION}" in
""|disabled)
;;
*)
LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} encryption=${LH_ENCRYPTION}"
esac
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:17 +00:00
if [ -n "${LH_USERNAME}" ]
2007-09-23 08:04:49 +00:00
then
2007-09-23 08:05:09 +00:00
case "${LH_INITRAMFS}" in
casper)
LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} username=${LH_USERNAME}"
2007-09-23 08:05:09 +00:00
;;
live-initramfs)
2007-09-23 08:05:17 +00:00
if [ "${LH_USERNAME}" != "user" ]
2007-09-23 08:05:09 +00:00
then
LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} username=${LH_USERNAME}"
2007-09-23 08:05:09 +00:00
fi
;;
esac
2007-09-23 08:04:49 +00:00
fi
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:17 +00:00
if [ -n "${LH_HOSTNAME}" ]
2007-09-23 08:04:49 +00:00
then
2007-09-23 08:05:11 +00:00
case "${LH_INITRAMFS}" in
2007-09-23 08:05:09 +00:00
casper)
LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} hostname=${LH_HOSTNAME}"
2007-09-23 08:05:09 +00:00
;;
live-initramfs)
2007-09-23 08:05:17 +00:00
if [ "${LH_HOSTNAME}" != "debian" ]
2007-09-23 08:05:09 +00:00
then
LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} hostname=${LH_HOSTNAME}"
2007-09-23 08:05:09 +00:00
fi
;;
esac
2007-09-23 08:04:49 +00:00
fi
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:17 +00:00
if [ "${LH_UNION_FILESYSTEM}" != "unionfs" ]
2007-09-23 08:05:13 +00:00
then
LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} union=${LH_UNION_FILESYSTEM}"
2007-09-23 08:05:13 +00:00
fi
if [ -n "${LH_NET_COW_PATH}" ]
then
Echo_error "Net cow not yet supported on grub"
2007-10-31 09:10:05 -01:00
exit 1
fi
if [ "${LH_EXPOSED_ROOT}" != "disabled" ]
then
LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} exposedroot"
fi
LH_BOOTAPPEND_LIVE="$(echo ${LH_BOOTAPPEND_LIVE} | sed -e 's| ||')"
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:50 +00:00
# Parameters are listed at: linux/Documentation/kernel-parameters.txt
FAILSAFE="noapic noapm nodma nomce nolapic nosmp vga=normal"
2007-09-23 08:04:49 +00:00
# Assembling kernel configuration
2007-09-23 08:05:14 +00:00
# Default entries
DEFAULT_FLAVOUR="$(echo ${LH_LINUX_FLAVOURS} | awk '{ print $1 }')"
DEFAULT_KERNEL="$(basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR})"
DEFAULT_INITRD="initrd.img-$(echo ${DEFAULT_KERNEL} | sed -e 's|vmlinuz-||')"
2007-09-23 08:04:52 +00:00
Grub_live_entry "live" "$(basename ${DESTDIR_LIVE})/${DEFAULT_KERNEL}" "$(basename ${DESTDIR_LIVE})/${DEFAULT_INITRD}"
Grub_live_entry "live (fail-safe mode)" "$(basename ${DESTDIR_LIVE})/${DEFAULT_KERNEL}" "$(basename ${DESTDIR_LIVE})/${DEFAULT_INITRD}" "${FAILSAFE}"
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:14 +00:00
for KERNEL in chroot/boot/vmlinuz-*
do
VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')"
2007-09-23 08:04:49 +00:00
Grub_live_entry "live, kernel ${VERSION}" "$(basename ${DESTDIR_LIVE})/$(basename ${KERNEL})" "$(basename ${DESTDIR_LIVE})/initrd.img-${VERSION}"
Grub_live_entry "live, kernel ${VERSION} (fail-safe mode)" "$(basename ${DESTDIR_LIVE})/$(basename ${KERNEL})" "$(basename ${DESTDIR_LIVE})/initrd.img-${VERSION}" "${FAILSAFE}"
2007-09-23 08:05:14 +00:00
done
LINUX_LIVE="$(/bin/echo ${LINUX_LIVE} | sed -e 's|binary||g' -e 's|//|/|g')"
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:52 +00:00
# Assembling debian-installer configuration
2007-09-23 08:05:17 +00:00
if [ "${LH_DEBIAN_INSTALLER}" != "disabled" ]
2007-09-23 08:04:52 +00:00
then
2007-09-23 08:05:14 +00:00
LINUX_LIVE="title\t\tLive:\nroot\n\n${LINUX_LIVE}"
LINUX_INSTALL="title\t\tInstaller:\nroot"
VMLINUZ_DI="install/vmlinuz"
INITRD_DI="install/initrd.gz"
2007-09-23 08:05:14 +00:00
APPEND_DI="vga=normal"
VMLINUZ_GI="install/gtk/vmlinuz"
INITRD_GI="install/gtk/initrd.gz"
2007-09-23 08:05:14 +00:00
APPEND_GI="video=vesa:ywrap,mtrr vga=788"
if [ -f "binary/boot/${VMLINUZ_DI}" ] && [ -f "binary/boot/${INITRD_DI}" ]
then
Grub_install_entry "Text" "${VMLINUZ_DI}" "${INITRD_DI}" "${APPEND_DI}"
fi
if [ -f "binary/boot/${VMLINUZ_GI}" ] && [ -f "binary/boot/${INITRD_GI}" ]
then
Grub_install_entry "GUI" "${VMLINUZ_GI}" "${INITRD_GI}" "${APPEND_GI}"
fi
2007-09-23 08:04:52 +00:00
fi
LINUX_INSTALL="$(/bin/echo ${LINUX_INSTALL} | sed -e 's|binary||g' -e 's|//|/|g')"
2007-09-23 08:05:14 +00:00
2007-09-23 08:04:49 +00:00
# Assembling memtest configuration
2007-09-23 08:04:52 +00:00
if [ -f "${DESTDIR_LIVE}"/memtest ]
2007-09-23 08:04:49 +00:00
then
2007-09-23 08:05:14 +00:00
MEMTEST="title\t\tOther:\nroot"
MEMTEST="${MEMTEST}\n\ntitle\t\t${LH_MEMTEST}\nkernel\t\t/$(basename ${DESTDIR_LIVE})/memtest"
MEMTEST="$(/bin/echo ${MEMTEST} | sed -e 's|//|/|g')"
2007-09-23 08:04:49 +00:00
fi
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:50 +00:00
# Copying templates
2007-09-23 08:04:49 +00:00
mkdir -p binary/boot/grub
2007-09-23 08:05:15 +00:00
cp -r "${TEMPLATES}"/* binary/boot/grub
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:17 +00:00
case ${LH_BINARY_IMAGES} in
2007-09-23 08:04:49 +00:00
iso)
2007-09-23 08:05:15 +00:00
FILES="chroot/usr/lib/grub/*/stage2_eltorito"
2007-09-23 08:04:49 +00:00
;;
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:11 +00:00
tar|usb-hdd)
2007-09-23 08:05:15 +00:00
FILES="chroot/usr/lib/grub/*/stage1 chroot/usr/lib/grub/*/e2fs_stage1_5 chroot/usr/lib/grub/*/stage2"
2007-09-23 08:04:49 +00:00
;;
esac
2007-09-23 08:04:49 +00:00
2007-09-23 08:05:17 +00:00
if [ "${LH_CHROOT_BUILD}" = "disabled" ]
2007-09-23 08:05:15 +00:00
then
FILES="$(echo ${FILES} | sed -e 's|chroot||g')"
2007-09-23 08:05:15 +00:00
fi
# Copying grub
cp ${FILES} binary/boot/grub
2007-09-23 08:05:14 +00:00
# Copying local configuration file
if [ -f config/binary_grub/menu.lst ]
then
cp config/binary_grub/menu.lst binary/boot/grub/menu.lst
fi
2007-09-23 08:04:49 +00:00
# Copying splash screen
2007-09-23 08:04:51 +00:00
if [ -f config/binary_grub/splash.xpm.gz ]
then
2007-09-23 08:05:17 +00:00
LH_GRUB_SPLASH="config/binary_grub/splash.xpm.gz"
2007-09-23 08:05:14 +00:00
elif [ -f config/binary_grub/splash.xpm ]
then
2007-09-23 08:05:17 +00:00
LH_GRUB_SPLASH="config/binary_grub/splash.xpm"
2007-09-23 08:04:51 +00:00
fi
2007-09-23 08:05:17 +00:00
if [ -n "${LH_GRUB_SPLASH}" ]
2007-09-23 08:04:49 +00:00
then
2007-09-23 08:05:17 +00:00
if [ "${LH_GRUB_SPLASH}" = "none" ]
2007-09-23 08:04:50 +00:00
then
# Removing splash file
rm -f binary/boot/grub/splash.xpm.gz
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:50 +00:00
# Removing splash entry
sed -i -e "s|splashimage.*||" binary/boot/grub/menu.lst
2007-09-23 08:04:50 +00:00
else
# Overwriting splash file
2007-09-23 08:05:17 +00:00
cp -f "${LH_GRUB_SPLASH}" binary/boot/grub
sed -i -e "s|splashimage.*|splashimage /boot/grub/$(basename ${LH_GRUB_SPLASH})|" binary/boot/grub/menu.lst
2007-09-23 08:04:50 +00:00
fi
2007-09-23 08:04:49 +00:00
fi
sed -i -e "s|LINUX_LIVE|${LINUX_LIVE}|" -e "s|LINUX_INSTALL|${LINUX_INSTALL}|" -e "s|MEMTEST|${MEMTEST}|" binary/boot/grub/menu.lst
sed -i -e "s|LH_BOOTAPPEND_INSTALL|${LH_BOOTAPPEND_INSTALL}|" -e "s|LH_BOOTAPPEND_LIVE|${LH_BOOTAPPEND_LIVE}|" binary/boot/grub/menu.lst
2007-09-23 08:04:49 +00:00
sed -i -e 's|\ $||g' binary/boot/grub/menu.lst
2007-09-23 08:05:14 +00:00
2007-09-23 08:05:15 +00:00
# Saving cache
Save_cache cache/packages_binary
2007-09-23 08:04:51 +00:00
# Removing depends
Remove_package
2007-09-23 08:04:49 +00:00
# Creating stage file
Create_stagefile .stage/binary_grub