2007-09-23 08:04:50 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# lh_binary_yaboot(1) - installs yaboot 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
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Including common functions
|
|
|
|
LH_BASE="${LH_BASE:-/usr/share/live-helper}"
|
|
|
|
|
|
|
|
for FUNCTION in "${LH_BASE}"/functions/*.sh
|
2007-09-23 08:04:50 +00:00
|
|
|
do
|
2007-09-23 08:05:11 +00:00
|
|
|
. "${FUNCTION}"
|
2007-09-23 08:04:50 +00:00
|
|
|
done
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Setting static variables
|
2007-09-23 08:04:50 +00:00
|
|
|
DESCRIPTION="installs yaboot into binary"
|
|
|
|
HELP=""
|
|
|
|
USAGE="${PROGRAM} [--force]"
|
|
|
|
|
|
|
|
Arguments "${@}"
|
|
|
|
|
|
|
|
# Reading configuration files
|
2007-09-23 08:04:52 +00:00
|
|
|
Read_conffile config/common
|
2007-09-23 08:04:50 +00:00
|
|
|
Read_conffile config/bootstrap
|
|
|
|
Read_conffile config/chroot
|
2007-09-23 08:04:52 +00:00
|
|
|
Read_conffile config/binary
|
|
|
|
Read_conffile config/source
|
2007-09-23 08:04:50 +00:00
|
|
|
Set_defaults
|
|
|
|
|
|
|
|
if [ "${LIVE_BOOTLOADER}" != "yaboot" ]
|
|
|
|
then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
Echo_message "Begin installing yaboot..."
|
2007-09-23 08:04:50 +00:00
|
|
|
|
|
|
|
# Requiring stage file
|
|
|
|
Require_stagefile .stage/bootstrap
|
|
|
|
|
|
|
|
# Checking stage file
|
|
|
|
Check_stagefile .stage/binary_yaboot
|
|
|
|
|
|
|
|
# Checking lock file
|
|
|
|
Check_lockfile .lock
|
|
|
|
|
|
|
|
# Creating lock file
|
|
|
|
Create_lockfile .lock
|
|
|
|
|
|
|
|
if [ "${LIVE_ARCHITECTURE}" != "powerpc" ] && [ "${LIVE_ARCHITECTURE}" != "ppc64" ]
|
|
|
|
then
|
|
|
|
Echo_warning "skipping binary_yaboot, foreign architecture."
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:09 +00:00
|
|
|
# Check user templates
|
2007-09-23 08:04:50 +00:00
|
|
|
if [ ! -d "${LIVE_TEMPLATES}" ]
|
|
|
|
then
|
|
|
|
if [ -d ../"${LIVE_TEMPLATES}" ]
|
|
|
|
then
|
|
|
|
LIVE_TEMPLATES="../${LIVE_TEMPLATES}"
|
|
|
|
else
|
|
|
|
Echo_error "user specified templates not accessible in ${LIVE_TEMPLATES}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:09 +00:00
|
|
|
# Checking local templates
|
|
|
|
if [ -d config/templates/yaboot ]
|
|
|
|
then
|
|
|
|
LIVE_TEMPLATES="config/templates"
|
|
|
|
fi
|
|
|
|
|
2007-09-23 08:04:51 +00:00
|
|
|
# Checking depends
|
|
|
|
Check_package chroot/usr/lib/yaboot/yaboot yaboot
|
2007-09-23 08:04:50 +00:00
|
|
|
|
2007-09-23 08:04:51 +00:00
|
|
|
# Installing depends
|
|
|
|
Install_package
|
2007-09-23 08:04:50 +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:50 +00:00
|
|
|
# Setting destination directory
|
2007-09-23 08:05:09 +00:00
|
|
|
case "${LIVE_BINARY_IMAGES}" in
|
2007-09-23 08:04:50 +00:00
|
|
|
iso)
|
|
|
|
DESTDIR="binary/live"
|
|
|
|
;;
|
|
|
|
|
2007-09-23 08:04:52 +00:00
|
|
|
net|usb-hdd|hdd)
|
2007-09-23 08:04:50 +00:00
|
|
|
Echo_error "not supported, FIXME"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Temporary check for broken yaboot
|
2007-09-23 08:05:09 +00:00
|
|
|
if [ "${LIVE_BINARY_IMAGES}" = "iso" ]
|
2007-09-23 08:04:50 +00:00
|
|
|
then
|
|
|
|
case "${LIVE_ARCHITECTURE}" in
|
|
|
|
powerpc)
|
|
|
|
DESTDIR="${DESTDIR}.ppc"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Creating directory
|
2007-09-23 08:05:11 +00:00
|
|
|
mkdir -p "${DESTDIR}"
|
2007-09-23 08:04:50 +00:00
|
|
|
|
|
|
|
# Setting boot parameters
|
|
|
|
if [ -n "${LIVE_ENCRYPTION}" ]
|
|
|
|
then
|
|
|
|
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} encryption=${LIVE_ENCRYPTION}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "${LIVE_USERNAME}" ]
|
|
|
|
then
|
2007-09-23 08:05:09 +00:00
|
|
|
case "${LH_INITRAMFS}" in
|
|
|
|
casper)
|
|
|
|
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} username=${LIVE_USERNAME}"
|
|
|
|
;;
|
|
|
|
|
|
|
|
live-initramfs)
|
|
|
|
if [ "${LIVE_USERNAME}" != "user" ]
|
|
|
|
then
|
|
|
|
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} username=${LIVE_USERNAME}"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2007-09-23 08:04:50 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "${LIVE_HOSTNAME}" ]
|
|
|
|
then
|
2007-09-23 08:05:09 +00:00
|
|
|
case "${LIVE_INITRAMFS}" in
|
|
|
|
casper)
|
|
|
|
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} hostname=${LIVE_HOSTNAME}"
|
|
|
|
;;
|
|
|
|
|
|
|
|
live-initramfs)
|
|
|
|
if [ "${LIVE_HOSTNAME}" != "debian" ]
|
|
|
|
then
|
|
|
|
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} username=${LIVE_HOSTNAME}"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2007-09-23 08:04:50 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
LIVE_BOOTAPPEND="`echo ${LIVE_BOOTAPPEND} | sed -e 's/ //'`"
|
|
|
|
|
|
|
|
# Assembling kernel configuration
|
2007-09-23 08:05:09 +00:00
|
|
|
if [ "${LIVE_BINARY_IMAGES}" = "iso" ]
|
2007-09-23 08:04:50 +00:00
|
|
|
then
|
2007-09-23 08:05:09 +00:00
|
|
|
DEFAULT_FLAVOUR="`echo ${LIVE_LINUX_FLAVOURS} | awk '{ print $1 }'`"
|
2007-09-23 08:04:52 +00:00
|
|
|
LINUX="image=/`basename ${DESTDIR}`/`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR}`\n\tinitrd=/`basename ${DESTDIR}`/initrd.img-`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR} | sed -e 's/vmlinuz-//'`\n\tlabel=LIVE\n\tappend=\"boot=${INITFS} LIVE_BOOTAPPEND\"\n\tinitrd-size=1048576\n\tread-only"
|
2007-09-23 08:04:50 +00:00
|
|
|
else
|
2007-09-23 08:05:09 +00:00
|
|
|
DEFAULT_FLAVOUR="`echo ${LIVE_LINUX_FLAVOURS} | awk '{ print $1 }'`"
|
2007-09-23 08:04:52 +00:00
|
|
|
LINUX="image=`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR}`\n\tinitrd=initrd.img-`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR} | sed -e 's/vmlinuz-//'`\n\tlabel=LIVE\n\tappend=\"boot=${INITFS} LIVE_BOOTAPPEND\"\n\tinitrd-size=1048576\n\tread-only"
|
2007-09-23 08:04:50 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# FIXME
|
2007-09-23 08:05:09 +00:00
|
|
|
if [ "`echo ${LIVE_LINUX_FLAVOURS} | wc -w`" -gt "1" ]
|
2007-09-23 08:04:50 +00:00
|
|
|
then
|
|
|
|
for KERNEL in chroot/boot/vmlinuz*
|
|
|
|
do
|
|
|
|
if [ -z "${LINUX}" ]
|
|
|
|
then
|
2007-09-23 08:05:09 +00:00
|
|
|
if [ "${LIVE_BINARY_IMAGES}" = "iso" ]
|
2007-09-23 08:04:50 +00:00
|
|
|
then
|
2007-09-23 08:04:52 +00:00
|
|
|
LINUX="label LIVE-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\n kernel /`basename ${DESTDIR}`/`basename ${KERNEL}`\n append initrd=/`basename ${DESTDIR}`/initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND"
|
2007-09-23 08:04:50 +00:00
|
|
|
else
|
2007-09-23 08:04:52 +00:00
|
|
|
LINUX="label LIVE-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\n kernel `basename ${KERNEL}`\n append initrd=initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND"
|
2007-09-23 08:04:50 +00:00
|
|
|
fi
|
|
|
|
else
|
2007-09-23 08:05:09 +00:00
|
|
|
if [ "${LIVE_BINARY_IMAGES}" = "iso" ]
|
2007-09-23 08:04:50 +00:00
|
|
|
then
|
2007-09-23 08:04:52 +00:00
|
|
|
LINUX="${LINUX}\nlabel LIVE-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\n kernel /`basename ${DESTDIR}`/`basename ${KERNEL}`\n append initrd=/`basename ${DESTDIR}`/initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND"
|
2007-09-23 08:04:50 +00:00
|
|
|
else
|
2007-09-23 08:04:52 +00:00
|
|
|
LINUX="${LINUX}\nlabel LIVE-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\n kernel `basename ${KERNEL}`\n append initrd=initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND"
|
2007-09-23 08:04:50 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
LINUX="`echo ${LINUX} | sed -e 's#//#/#g'`"
|
|
|
|
|
2007-09-23 08:05:09 +00:00
|
|
|
case "${LIVE_BINARY_IMAGES}" in
|
2007-09-23 08:04:50 +00:00
|
|
|
iso)
|
|
|
|
# Copying yaboot
|
|
|
|
mkdir -p binary/install
|
|
|
|
cp chroot/usr/lib/yaboot/yaboot binary/install
|
|
|
|
cp -r "${LIVE_TEMPLATES}"/yaboot/* binary/yaboot
|
|
|
|
|
|
|
|
# Configure yaboot templates
|
2007-09-23 08:05:09 +00:00
|
|
|
sed -i -e "s#LIVE_LINUX_LIVE#${LINUX}#" -e "s#LIVE_LINUX_INSTALL#${LIVE_LINUX_INSTALL}#" -e "s#LIVE_MEMTEST#${MEMTEST}#" binary/install/yaboot.conf
|
2007-09-23 08:04:50 +00:00
|
|
|
sed -i -e "s#LIVE_BOOTAPPEND#${LIVE_BOOTAPPEND}#" binary/yaboot/yaboot.conf
|
|
|
|
sed -i -e "s/LIVE_DATE/`date +%Y%m%d`/" -e "s/LIVE_VERSION/${VERSION}/" binary/yaboot/boot.msg
|
|
|
|
|
|
|
|
# Working arround yaboot 8.3 limitation
|
2007-09-23 08:05:09 +00:00
|
|
|
if [ "`echo ${LIVE_LINUX_FLAVOURS} | wc -w`" -gt "1" ]
|
2007-09-23 08:04:50 +00:00
|
|
|
then
|
2007-09-23 08:05:09 +00:00
|
|
|
for FLAVOUR in ${LIVE_LINUX_FLAVOURS}
|
2007-09-23 08:04:50 +00:00
|
|
|
do
|
|
|
|
NUMBER=$(($NUMBER + 1))
|
|
|
|
|
|
|
|
mv "${DESTDIR}"/vmlinuz-*-${FLAVOUR} "${DESTDIR}"/vmlinuz${NUMBER}
|
|
|
|
mv "${DESTDIR}"/initrd.img-*-${FLAVOUR} "${DESTDIR}"/initrd${NUMBER}.img
|
|
|
|
sed -i -e "s/LIVE.*-${FLAVOUR}/live${NUMBER}/g" -e "s/vmlinuz-.*-${FLAVOUR}/vmlinuz${NUMBER}/g" -e "s/initrd.img-.*-${FLAVOUR}/initrd${NUMBER}.img/g" -e "s/LIVE/live/" binary/install/yaboot.conf
|
|
|
|
done
|
|
|
|
else
|
2007-09-23 08:05:09 +00:00
|
|
|
mv "${DESTDIR}"/vmlinuz-*-${LIVE_LINUX_FLAVOURS} "${DESTDIR}"/vmlinuz
|
|
|
|
mv "${DESTDIR}"/initrd.img-*-${LIVE_LINUX_FLAVOURS} "${DESTDIR}"/initrd.img
|
|
|
|
sed -i -e "s/LIVE.*-${LIVE_LINUX_FLAVOURS}/live/g" -e "s/vmlinuz-.*-${LIVE_LINUX_FLAVOURS}/vmlinuz/g" -e "s/initrd.img-.*-${LIVE_LINUX_FLAVOURS}/initrd.img/g" -e "s/LIVE/live/" binary/install/yaboot.conf
|
2007-09-23 08:04:50 +00:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2007-09-23 08:04:51 +00:00
|
|
|
# Removing depends
|
|
|
|
Remove_package
|
2007-09-23 08:04:50 +00:00
|
|
|
|
|
|
|
# Creating stage file
|
|
|
|
Create_stagefile .stage/binary_yaboot
|