live-build/helpers/lh_binary_grub

213 lines
5.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-2007 Daniel Baumann <daniel@debian.org>
#
# 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
# Source common functions
for FUNCTION in /usr/share/live-helper/functions/*.sh
do
. ${FUNCTION}
done
# Set static variables
DESCRIPTION="installs grub into binary"
HELP=""
USAGE="${PROGRAM} [--force]"
Arguments "${@}"
2007-09-23 08:04:49 +00:00
Echo_debug "Init ${PROGRAM}"
2007-09-23 08:04:49 +00:00
# Reading configuration files
Read_conffile config/bootstrap
Read_conffile config/chroot
2007-09-23 08:04:49 +00:00
Read_conffile config/common
2007-09-23 08:04:49 +00:00
Read_conffile config/image
Set_defaults
2007-09-23 08:04:49 +00:00
if [ "${LIVE_BOOTLOADER}" != "grub" ]
then
exit 0
fi
Breakpoint "binary_grub: Init"
2007-09-23 08:04:49 +00:00
# Requiring stage file
Require_stagefile .stage/bootstrap
2007-09-23 08:04:50 +00:00
# Checking stage file
Check_stagefile .stage/binary_grub
2007-09-23 08:04:49 +00:00
# Checking lock file
Check_lockfile .lock
# Creating lock file
Create_lockfile .lock
if [ "${LIVE_ARCHITECTURE}" != "amd64" ] && [ "${LIVE_ARCHITECTURE}" != "i386" ]
then
2007-09-23 08:04:49 +00:00
Echo_warning "skipping binary_grub, foreign architecture."
2007-09-23 08:04:49 +00:00
exit 0
fi
2007-09-23 08:04:49 +00:00
# Check templates
if [ ! -d "${LIVE_TEMPLATES}" ]
2007-09-23 08:04:49 +00:00
then
2007-09-23 08:04:49 +00:00
if [ -d ../"${LIVE_TEMPLATES}" ]
2007-09-23 08:04:49 +00:00
then
2007-09-23 08:04:49 +00:00
LIVE_TEMPLATES="../${LIVE_TEMPLATES}"
else
Echo_error "user specified templates not accessible in ${LIVE_TEMPLATES}"
exit 1
2007-09-23 08:04:49 +00:00
fi
2007-09-23 08:04:49 +00:00
fi
2007-09-23 08:04:49 +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:04:51 +00:00
# Installing depends
Install_package
2007-09-23 08:04:49 +00:00
# Setting destination directory
case "${LIVE_BINARY_IMAGE}" in
iso|usb|hdd)
DESTDIR="binary/live"
;;
net)
2007-09-23 08:04:50 +00:00
Echo_error "not supported, aborting (FIXME)."
exit 1
2007-09-23 08:04:49 +00:00
;;
esac
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
# Temporary check for broken syslinux
if [ "${LIVE_BINARY_IMAGE}" = "iso" ]
then
2007-09-23 08:04:50 +00:00
# Assemble multi-arch
if [ -n "${MULTIARCH}" ]
then
case "${LIVE_ARCHITECTURE}" in
i386)
DESTDIR="${DESTDIR}.386"
;;
esac
fi
2007-09-23 08:04:49 +00:00
fi
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
# Creating directory
if [ ! -d "${DESTDIR}" ]
then
mkdir -p "${DESTDIR}"
fi
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
# Setting boot parameters
if [ -n "${LIVE_ENCRYPTION}" ]
then
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} encryption=${LIVE_ENCRYPTION}"
fi
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
if [ -n "${LIVE_USERNAME}" ]
then
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} username=${LIVE_USERNAME}"
fi
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
if [ -n "${LIVE_HOSTNAME}" ]
then
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} hostname=${LIVE_HOSTNAME}"
fi
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
LIVE_BOOTAPPEND="`echo ${LIVE_BOOTAPPEND} | 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:04:50 +00:00
DEFAULT_FLAVOUR="`echo ${LIVE_KERNEL_FLAVOUR} | awk '{ print $1 }'`"
LINUX="title\t\tDebian GNU/Linux - Live\nkernel\t\t/`basename ${DESTDIR}`/`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR}` boot=casper LIVE_BOOTAPPEND\ninitrd\t\t/`basename ${DESTDIR}`/initrd.img-`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR} | sed -e 's/vmlinuz-//'`"
LINUX="${LINUX}\n\ntitle\t\tDebian GNU/Linux - Live (failsafe mode)\nkernel\t\t/`basename ${DESTDIR}`/`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR}` boot=casper LIVE_BOOTAPPEND ${FAILSAFE}\ninitrd\t\t/`basename ${DESTDIR}`/initrd.img-`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR} | sed -e 's/vmlinuz-//'`"
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
if [ "`echo ${LIVE_KERNEL_FLAVOUR} | wc -w`" -gt "1" ]
then
for KERNEL in chroot/boot/vmlinuz*
do
if [ -z "${LINUX}" ]
then
2007-09-23 08:04:50 +00:00
LINUX="title\t\tDebian GNU/Linux - Live, kernel `basename ${KERNEL} | sed -e 's/vmlinuz-//'`\nkernel\t\t/`basename ${DESTDIR}`/`basename ${KERNEL}` boot=casper LIVE_BOOTAPPEND\ninitrd\t\t/`basename ${DESTDIR}`/initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`"
LINUX="${LINUX}\n\ntitle\t\tDebian GNU/Linux - Live, kernel `basename ${KERNEL} | sed -e 's/vmlinuz-//'` (failsafe mode)\nkernel\t\t/`basename ${DESTDIR}`/`basename ${KERNEL}` boot=casper LIVE_BOOTAPPEND ${FAILSAFE}\ninitrd\t\t/`basename ${DESTDIR}`/initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`"
2007-09-23 08:04:49 +00:00
else
2007-09-23 08:04:50 +00:00
LINUX="${LINUX}\n\ntitle\t\tDebian GNU/Linux - Live, kernel `basename ${KERNEL} | sed -e 's/vmlinuz-//'`\nkernel /`basename ${DESTDIR}`/`basename ${KERNEL}` boot=casper LIVE_BOOTAPPEND\ninitrd\t\t/`basename ${DESTDIR}`/initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`"
LINUX="${LINUX}\n\ntitle\t\tDebian GNU/Linux - Live, kernel `basename ${KERNEL} | sed -e 's/vmlinuz-//'` (failsafe mode)\nkernel /`basename ${DESTDIR}`/`basename ${KERNEL}` boot=casper LIVE_BOOTAPPEND ${FAILSAFE}\ninitrd\t\t/`basename ${DESTDIR}`/initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`"
fi
2007-09-23 08:04:49 +00:00
done
fi
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
LINUX="`echo ${LINUX} | sed -e 's#//#/#g'`"
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
# Assembling memtest configuration
if [ -f "${DESTDIR}"/memtest ]
then
2007-09-23 08:04:50 +00:00
MEMTEST="title\t\t${LIVE_MEMTEST}\nkernel\t\t/`basename ${DESTDIR}`/memtest"
MEMTEST="`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
cp -r "${LIVE_TEMPLATES}"/grub/* binary/boot/grub
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:50 +00:00
# Copyring grub
2007-09-23 08:04:49 +00:00
case ${LIVE_BINARY_IMAGE} in
iso)
2007-09-23 08:04:51 +00:00
cp chroot/usr/lib/grub/*/stage2_eltorito binary/boot/grub
2007-09-23 08:04:49 +00:00
;;
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:49 +00:00
usb|hdd)
2007-09-23 08:04:51 +00:00
cp chroot/usr/lib/grub/*/stage1 chroot/usr/lib/grub/*/stage2 binary/boot/grub
2007-09-23 08:04:49 +00:00
;;
esac
2007-09-23 08:04:49 +00:00
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
LIVE_GRUB_SPLASH="config/binary_grub/splash.xpm.gz"
fi
2007-09-23 08:04:49 +00:00
if [ -n "${LIVE_GRUB_SPLASH}" ]
then
2007-09-23 08:04:50 +00:00
if [ "${LIVE_GRUB_SPLASH}" = "none" ]
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 -e "s/splashimage.*//" binary/boot/grub/menu.lst
else
# Overwriting splash file
cp -f "${LIVE_GRUB_SPLASH}" binary/boot/grub/splash.xpm.gz
fi
2007-09-23 08:04:49 +00:00
fi
# Configure grub templates
2007-09-23 08:04:49 +00:00
cat >> binary/boot/grub/menu.lst << EOF
# This is a divider, added to separate the menu items below from the Debian
# ones.
title Other:
root
LIVE_MEMTEST
EOF
2007-09-23 08:04:50 +00:00
sed -i -e "s#LIVE_KERNEL_LIVE#${LINUX}#" -e "s#LIVE_KERNEL_INSTALL#${LIVE_KERNEL_INSTALL}#" -e "s#LIVE_MEMTEST#${MEMTEST}#" binary/boot/grub/menu.lst
2007-09-23 08:04:49 +00:00
sed -i -e "s#LIVE_BOOTAPPEND#${LIVE_BOOTAPPEND}#" binary/boot/grub/menu.lst
2007-09-23 08:04:49 +00:00
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