live-build/helpers/lh_binary_syslinux

478 lines
19 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:46 +00:00
#!/bin/sh
2007-09-23 08:04:48 +00:00
# lh_binary_syslinux(1) - installs syslinux 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.
2007-09-23 08:04:46 +00:00
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:46 +00:00
do
2007-09-23 08:05:11 +00:00
. "${FUNCTION}"
2007-09-23 08:04:46 +00:00
done
2007-09-23 08:05:11 +00:00
# Setting static variables
2007-09-23 08:04:48 +00:00
DESCRIPTION="installs syslinux into binary"
HELP=""
USAGE="${PROGRAM} [--force]"
Arguments "${@}"
2007-09-23 08:04:46 +00:00
# Reading configuration files
2007-09-23 08:04:52 +00:00
Read_conffile config/common
2007-09-23 08:04:46 +00:00
Read_conffile config/bootstrap
2007-09-23 08:04:48 +00:00
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:46 +00:00
Set_defaults
2007-09-23 08:04:50 +00:00
if [ "${LIVE_BOOTLOADER}" != "syslinux" ]
then
exit 0
fi
2007-09-23 08:05:11 +00:00
Echo_message "Begin installing syslinux..."
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:46 +00:00
# Requiring stage file
2007-09-23 08:04:47 +00:00
Require_stagefile .stage/bootstrap
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Checking stage file
Check_stagefile .stage/binary_syslinux
2007-09-23 08:04:46 +00:00
# Checking lock file
2007-09-23 08:04:47 +00:00
Check_lockfile .lock
2007-09-23 08:04:46 +00:00
# Creating lock file
2007-09-23 08:04:47 +00:00
Create_lockfile .lock
2007-09-23 08:04:46 +00:00
if [ "${LIVE_ARCHITECTURE}" != "amd64" ] && [ "${LIVE_ARCHITECTURE}" != "i386" ]
then
2007-09-23 08:04:50 +00:00
Echo_warning "skipping binary_syslinux, foreign architecture."
2007-09-23 08:04:46 +00:00
exit 0
fi
2007-09-23 08:05:09 +00:00
# Checking user templates
2007-09-23 08:04:50 +00:00
if [ ! -d "${LIVE_TEMPLATES}" ]
2007-09-23 08:04:46 +00:00
then
2007-09-23 08:04:50 +00:00
if [ -d ../"${LIVE_TEMPLATES}" ]
2007-09-23 08:04:49 +00:00
then
2007-09-23 08:04:50 +00:00
LIVE_TEMPLATES="../${LIVE_TEMPLATES}"
else
Echo_error "user specified templates not accessible in ${LIVE_TEMPLATES}"
exit 1
2007-09-23 08:04:46 +00:00
fi
2007-09-23 08:04:50 +00:00
fi
2007-09-23 08:04:46 +00:00
2007-09-23 08:05:09 +00:00
# Check local templates
if [ -d config/templates/syslinux ]
then
LIVE_TEMPLATES="config/templates"
fi
2007-09-23 08:04:51 +00:00
# Checking depends
Check_package chroot/usr/bin/syslinux syslinux
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:51 +00:00
# Installing depends
Install_package
2007-09-23 08:04:48 +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)
2007-09-23 08:04:52 +00:00
DESTDIR_LIVE="binary/live"
DESTDIR_INSTALL="binary/install"
2007-09-23 08:04:50 +00:00
;;
net)
2007-09-23 08:04:52 +00:00
DESTDIR_LIVE="tftpboot"
DESTDIR_INSTALL="tftpboot"
2007-09-23 08:04:50 +00:00
;;
2007-09-23 08:05:11 +00:00
tar|usb-hdd)
2007-09-23 08:05:12 +00:00
DESTDIR_LIVE="binary/live"
DESTDIR_INSTALL="binary/install"
2007-09-23 08:05:09 +00:00
# Workaround for syslinux (<< 3.36) which doesn't support long file/path names
2007-09-23 08:05:12 +00:00
if [ "${LIVE_DISTRIBUTION}" = "etch" ]
2007-09-23 08:05:09 +00:00
then
DESTDIR_LIVE="binary"
DESTDIR_INSTALL="binary"
fi
2007-09-23 08:04:50 +00:00
;;
esac
# Temporary check for broken syslinux
2007-09-23 08:05:09 +00:00
if [ "${LIVE_BINARY_IMAGES}" = "iso" ]
2007-09-23 08:04:50 +00:00
then
# Assembling multi-arch
if [ -n "${MULTIARCH}" ]
2007-09-23 08:04:48 +00:00
then
case "${LIVE_ARCHITECTURE}" in
2007-09-23 08:04:52 +00:00
amd64)
DESTDIR_LIVE="${DESTDIR_LIVE}.amd"
DESTDIR_INSTALL="${DESTDIR_INSTALL}.amd"
;;
2007-09-23 08:04:48 +00:00
i386)
2007-09-23 08:04:52 +00:00
DESTDIR_LIVE="${DESTDIR_LIVE}.386"
DESTDIR_INSTALL="${DESTDIR_INSTALL}.386"
2007-09-23 08:04:48 +00:00
;;
esac
fi
2007-09-23 08:04:50 +00:00
fi
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:50 +00:00
# Creating directory
2007-09-23 08:05:11 +00:00
mkdir -p "${DESTDIR_LIVE}"
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:50 +00:00
# Setting boot parameters
if [ -n "${LIVE_ENCRYPTION}" ]
then
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} encryption=${LIVE_ENCRYPTION}"
fi
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
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
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:50 +00:00
if [ -n "${LIVE_HOSTNAME}" ]
then
2007-09-23 08:05:11 +00:00
case "${LH_INITRAMFS}" in
2007-09-23 08:05:09 +00:00
casper)
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} hostname=${LIVE_HOSTNAME}"
;;
live-initramfs)
if [ "${LIVE_HOSTNAME}" != "debian" ]
then
2007-09-23 08:05:11 +00:00
LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND} hostname=${LIVE_HOSTNAME}"
2007-09-23 08:05:09 +00:00
fi
;;
esac
2007-09-23 08:04:50 +00:00
fi
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:50 +00:00
LIVE_BOOTAPPEND="`echo ${LIVE_BOOTAPPEND} | sed -e 's/ //'`"
2007-09-23 08:04:48 +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:48 +00:00
2007-09-23 08:04:50 +00:00
# Assembling kernel configuration
2007-09-23 08:05:09 +00:00
if [ "${LIVE_BINARY_IMAGES}" != "net" ]
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:05:09 +00:00
# Workaround for syslinux (<< 3.36) which doesn't support long file/path names
if [ "`basename ${DESTDIR_LIVE}`" = "binary" ]
then
2007-09-23 08:05:12 +00:00
LINUX="# Debian GNU/Linux - live\nLABEL live\n\tkernel `basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR}`\n\tappend initrd=initrd.img-`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND"
LINUX="${LINUX}\n\n# Debian GNU/Linux - live-failsafe\nLABEL live-failsafe\n\tkernel `basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR}`\n\tappend initrd=initrd.img-`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND ${FAILSAFE}"
2007-09-23 08:05:09 +00:00
else
2007-09-23 08:05:12 +00:00
LINUX="# Debian GNU/Linux - live\nLABEL live\n\tkernel /`basename ${DESTDIR_LIVE}`/`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR}`\n\tappend initrd=/`basename ${DESTDIR_LIVE}`/initrd.img-`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND"
LINUX="${LINUX}\n\n# Debian GNU/Linux - live-failsafe\nLABEL live-failsafe\n\tkernel /`basename ${DESTDIR_LIVE}`/`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR}`\n\tappend initrd=/`basename ${DESTDIR_LIVE}`/initrd.img-`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND ${FAILSAFE}"
2007-09-23 08:05:09 +00:00
fi
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:05:12 +00:00
LINUX="# Debian GNU/Linux - live\nLABEL live\n\tkernel `basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR}`\n\tappend initrd=initrd.img-`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND"
LINUX="${LINUX}\n\n# Debian GNU/Linux - live-failsafe\nLABEL live-failsafe\n\tkernel `basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR}`\n\tappend initrd=initrd.img-`basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND ${FAILSAFE}"
2007-09-23 08:04:50 +00:00
fi
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:05:12 +00:00
LINUX="# Debian GNU/Linux - live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\nLABEL live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\n\tkernel /`basename ${DESTDIR_LIVE}`/`basename ${KERNEL}`\n\tappend initrd=/`basename ${DESTDIR_LIVE}`/initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND"
LINUX="${LINUX}\n\n# Debian GNU/Linux - live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`-failsafe\nLABEL live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`-failsafe\n\tkernel /`basename ${DESTDIR_LIVE}`/`basename ${KERNEL}`\n\tappend initrd=/`basename ${DESTDIR_LIVE}`/initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND ${FAILSAFE}"
2007-09-23 08:04:51 +00:00
else
2007-09-23 08:05:12 +00:00
LINUX="# Debian GNU/Linux - live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\nLABEL live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\n\tkernel `basename ${KERNEL}`\n\tappend initrd=initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} live_BOOTAPPEND"
LINUX="${LINUX}\n\n# Debian GNU/Linux - live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\nLABEL live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\n\tkernel `basename ${KERNEL}`\n\tappend initrd=initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND ${FAILSAFE}"
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:48 +00:00
then
2007-09-23 08:05:12 +00:00
LINUX="${LINUX}\n\n# Debian GNU/Linux - live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\nLABEL live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\n\tkernel /`basename ${DESTDIR_LIVE}`/`basename ${KERNEL}`\n\tappend initrd=/`basename ${DESTDIR_LIVE}`/initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND"
LINUX="${LINUX}\n\n# Debian GNU/Linux - live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`-failsafe\nLABEL live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`-failsafe\n\tkernel /`basename ${DESTDIR_LIVE}`/`basename ${KERNEL}`\n\tappend initrd=/`basename ${DESTDIR_LIVE}`/initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND ${FAILSAFE}"
2007-09-23 08:04:48 +00:00
else
2007-09-23 08:05:12 +00:00
LINUX="${LINUX}\n\n# Debian GNU/Linux - live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\nLABEL live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\n\tkernel `basename ${KERNEL}`\n\tappend initrd=initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND"
LINUX="${LINUX}\n\n# Debian GNU/Linux - live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\nLABEL live-`basename ${KERNEL} | sed -e 's/vmlinuz-//'`\n\tkernel `basename ${KERNEL}`\n\tappend initrd=initrd.img-`basename ${KERNEL} | sed -e 's/vmlinuz-//'` boot=${INITFS} LIVE_BOOTAPPEND ${FAILSAFE}"
2007-09-23 08:04:48 +00:00
fi
2007-09-23 08:04:50 +00:00
fi
done
fi
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:51 +00:00
# Removing '//'
2007-09-23 08:04:50 +00:00
LINUX="`echo ${LINUX} | sed -e 's#//#/#g'`"
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:52 +00:00
# Assembling debian-installer configuration
2007-09-23 08:05:12 +00:00
if [ "${LIVE_DEBIAN_INSTALLER}" = "enabled" ]
2007-09-23 08:04:52 +00:00
then
2007-09-23 08:05:12 +00:00
VMLINUZ_DI="vmlinuz"
INITRD_DI="initrd.gz"
VMLINUZ_GI="gtk/vmlinuz"
INITRD_GI="gtk/initrd.gz"
2007-09-23 08:05:09 +00:00
# Workaround for syslinux (<< 3.36) which doesn't support long file/path names
2007-09-23 08:05:12 +00:00
if [ "${LIVE_DISTRIBUTION}" = "etch" ]
2007-09-23 08:05:09 +00:00
then
2007-09-23 08:05:11 +00:00
if [ "${LIVE_BINARY_IMAGES}" = "tar" ] || [ "${LIVE_BINARY_IMAGES}" = "usb-hdd" ]
2007-09-23 08:05:09 +00:00
then
VMLINUZ_DI="vmlinuz.di"
INITRD_DI="initrddi.gz"
VMLINUZ_GI="vmlinuz.gi"
INITRD_GI="initrdgi.gz"
fi
fi
# Workaround for syslinux (<< 3.36) which doesn't support long file/path names
if [ "`basename ${DESTDIR_LIVE}`" = "binary" ]
then
LIVE_LINUX_INSTALL="LABEL install\n\tkernel ${VMLINUZ_DI}\n\tappend vga=normal initrd=${INITRD_DI} -- "
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL linux\n\tkernel ${VMLINUZ_DI}\n\tappend vga=normal initrd=${INITRD_DI} -- "
2007-09-23 08:05:12 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL installgui\n\tkernel ${VMLINUZ_GI}\n\tappend video=vesa:ywrap,mtrr vga=788 initrd=${INITRD_GI} -- "
2007-09-23 08:05:09 +00:00
LIVE_KENREL_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL expert\n\tkernel ${VMLINUZ_DI}\n\tappend priority=low vga=normal initrd=${INITRD_DI} -- "
2007-09-23 08:05:12 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL expertgui\n\tkernel ${VMLINUZ_GI}\n\tappend priority=low video=vesa:ywrap,mtrr vga=788 initrd=${INITRD_GI} -- "
2007-09-23 08:05:09 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL rescue\n\tkernel ${VMLINUZ_DI}\n\tappend vga=normal initrd=${INITRD_DI} rescue/enable=true -- "
2007-09-23 08:05:12 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL rescuegui\n\tkernel ${VMLINUZ_GI}\n\tappend video=vesa:ywrap,mtrr vga=788 initrd=${INITRD_GI} rescue/enable=true -- "
2007-09-23 08:05:09 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL auto\n\tkernel ${VMLINUZ_DI}\n\tappend auto=true priority=critical vga=normal initrd=${INITRD_DI} -- "
2007-09-23 08:05:12 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL autogui\n\tkernel ${VMLINUZ_GI}\n\tappend auto=true priority=critical video=vesa:ywrap,mtrr vga=788 initrd=${INITRD_GI} -- "
2007-09-23 08:05:09 +00:00
else
LIVE_LINUX_INSTALL="LABEL install\n\tkernel /`basename ${DESTDIR_INSTALL}`/${VMLINUZ_DI}\n\tappend vga=normal initrd=/`basename ${DESTDIR_INSTALL}`/${INITRD_DI} -- "
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL linux\n\tkernel /`basename ${DESTDIR_INSTALL}`/${VMLINUZ_DI}\n\tappend vga=normal initrd=/`basename ${DESTDIR_INSTALL}`/${INITRD_DI} -- "
2007-09-23 08:05:12 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL installgui\n\tkernel /`basename ${DESTDIR_INSTALL}`/${VMLINUZ_GI}\n\tappend video=vesa:ywrap,mtrr vga=788 initrd=/`basename ${DESTDIR_INSTALL}`/${INITRD_GI} -- "
2007-09-23 08:05:09 +00:00
LIVE_KENREL_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL expert\n\tkernel /`basename ${DESTDIR_INSTALL}`/${VMLINUZ_DI}\n\tappend priority=low vga=normal initrd=/`basename ${DESTDIR_INSTALL}`/${INITRD_DI} -- "
2007-09-23 08:05:12 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL expertgui\n\tkernel /`basename ${DESTDIR_INSTALL}`/${VMLINUZ_GI}\n\tappend priority=low video=vesa:ywrap,mtrr vga=788 initrd=/`basename ${DESTDIR_INSTALL}`/${INITRD_GI} -- "
2007-09-23 08:05:09 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL rescue\n\tkernel /`basename ${DESTDIR_INSTALL}`/${VMLINUZ_DI}\n\tappend vga=normal initrd=/`basename ${DESTDIR_INSTALL}`/${INITRD_DI} rescue/enable=true -- "
2007-09-23 08:05:12 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL rescuegui\n\tkernel /`basename ${DESTDIR_INSTALL}`/${VMLINUZ_GI}\n\tappend video=vesa:ywrap,mtrr vga=788 initrd=/`basename ${DESTDIR_INSTALL}`/${INITRD_GI} rescue/enable=true -- "
2007-09-23 08:05:09 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL auto\n\tkernel /`basename ${DESTDIR_INSTALL}`/${VMLINUZ_DI}\n\tappend auto=true priority=critical vga=normal initrd=/`basename ${DESTDIR_INSTALL}`/${INITRD_DI} -- "
2007-09-23 08:05:12 +00:00
LIVE_LINUX_INSTALL="${LIVE_LINUX_INSTALL}\n\nLABEL autogui\n\tkernel /`basename ${DESTDIR_INSTALL}`/${VMLINUZ_GI}\n\tappend auto=true priority=critical video=vesa:ywrap,mtrr vga=788 initrd=/`basename ${DESTDIR_INSTALL}`/${INITRD_GI} -- "
2007-09-23 08:05:09 +00:00
fi
2007-09-23 08:04:52 +00:00
fi
2007-09-23 08:05:09 +00:00
LIVE_LINUX_INSTALL="`echo ${LIVE_LINUX_INSTALL} | sed -e 's/binary//g' -e 's#//#/#g'`"
2007-09-23 08:04:50 +00:00
# Assembling memtest configuration
2007-09-23 08:04:52 +00:00
if [ -f "${DESTDIR_LIVE}"/memtest ]
2007-09-23 08:04:50 +00:00
then
2007-09-23 08:05:09 +00:00
if [ "${LIVE_BINARY_IMAGES}" != "net" ]
2007-09-23 08:04:48 +00:00
then
2007-09-23 08:05:09 +00:00
# Workaround for syslinux (<< 3.36) which doesn't support long file/path names
if [ "`basename ${DESTDIR_LIVE}`" = "binary" ]
then
MEMTEST="LABEL memtest\n\tkernel memtest"
else
MEMTEST="LABEL memtest\n\tkernel /`basename ${DESTDIR_LIVE}`/memtest"
fi
2007-09-23 08:04:50 +00:00
else
2007-09-23 08:04:52 +00:00
MEMTEST="LABEL memtest\n\tkernel memtest"
2007-09-23 08:04:48 +00:00
fi
2007-09-23 08:05:09 +00:00
MEMTEST="`echo ${MEMTEST} | sed -e 's#//#/#g'`"
2007-09-23 08:04:50 +00:00
fi
2007-09-23 08:04:48 +00:00
2007-09-23 08:05:09 +00:00
case "${LIVE_BINARY_IMAGES}" in
2007-09-23 08:04:50 +00:00
iso)
# Copying syslinux
mkdir -p binary/isolinux
cp chroot/usr/lib/syslinux/isolinux.bin binary/isolinux
cp -r "${LIVE_TEMPLATES}"/syslinux/* binary/isolinux
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Copying splash screen
2007-09-23 08:04:51 +00:00
if [ -f config/binary_syslinux/splash.rle ]
then
LIVE_SYSLINUX_SPLASH="config/binary_syslinux/splash.rle"
fi
2007-09-23 08:04:50 +00:00
if [ -n "${LIVE_SYSLINUX_SPLASH}" ]
then
if [ "${LIVE_SYSLINUX_SPLASH}" = "none" ]
2007-09-23 08:04:46 +00:00
then
2007-09-23 08:04:50 +00:00
rm -f binary/isolinux/splash.rle
2007-09-23 08:04:52 +00:00
sed -e "s/.*splash.*//" binary/isolinux/boot.txt
2007-09-23 08:04:50 +00:00
else
cp -f "${LIVE_SYSLINUX_SPLASH}" binary/isolinux/splash.rle
2007-09-23 08:04:46 +00:00
fi
2007-09-23 08:04:50 +00:00
fi
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Configure syslinux templates
2007-09-23 08:05:12 +00:00
sed -i -e "s@LIVE_LINUX_LIVE@${LINUX}@" -e "s@LIVE_LINUX_INSTALL@${LIVE_LINUX_INSTALL}@" -e "s@LIVE_MEMTEST@${MEMTEST}@" binary/isolinux/isolinux.cfg
2007-09-23 08:04:50 +00:00
sed -i -e "s#LIVE_BOOTAPPEND#${LIVE_BOOTAPPEND}#" binary/isolinux/isolinux.cfg
sed -i -e "s/LIVE_DATE/`date +%Y%m%d`/" binary/isolinux/f1.txt
sed -i -e "s/LIVE_VERSION/${VERSION}/" binary/isolinux/f10.txt
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Remove unused files
rm -f binary/isolinux/pxelinux.cfg
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:50 +00:00
# Working arround syslinux 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))
2007-09-23 08:04:52 +00:00
mv "${DESTDIR_LIVE}"/vmlinuz-*-${FLAVOUR} "${DESTDIR_LIVE}"/vmlinuz${NUMBER}
mv "${DESTDIR_LIVE}"/initrd.img-*-${FLAVOUR} "${DESTDIR_LIVE}"/initrd${NUMBER}.img
2007-09-23 08:04:51 +00:00
sed -i -e "s/vmlinuz-.*-${FLAVOUR}/vmlinuz${NUMBER}/g" -e "s/initrd.img-.*-${FLAVOUR}/initrd${NUMBER}.img/g" binary/isolinux/isolinux.cfg
2007-09-23 08:04:50 +00:00
done
else
2007-09-23 08:05:09 +00:00
mv "${DESTDIR_LIVE}"/vmlinuz-*-${LIVE_LINUX_FLAVOURS} "${DESTDIR_LIVE}"/vmlinuz
mv "${DESTDIR_LIVE}"/initrd.img-*-${LIVE_LINUX_FLAVOURS} "${DESTDIR_LIVE}"/initrd.img
sed -i -e "s/vmlinuz-.*-${LIVE_LINUX_FLAVOURS}/vmlinuz/g" -e "s/initrd.img-.*-${LIVE_LINUX_FLAVOURS}/initrd.img/g" binary/isolinux/isolinux.cfg
2007-09-23 08:04:50 +00:00
fi
;;
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
net)
# Copying syslinux
cp chroot/usr/lib/syslinux/pxelinux.0 tftpboot
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Install syslinux templates
mkdir -p tftpboot/pxelinux.cfg
cp -r "${LIVE_TEMPLATES}"/syslinux/* tftpboot/pxelinux.cfg
mv tftpboot/pxelinux.cfg/pxelinux.cfg tftpboot/pxelinux.cfg/default
2007-09-23 08:04:52 +00:00
sed -i -e 's#splash.rle#pxelinux.cfg/splash.rle#' tftpboot/pxelinux.cfg/boot.txt
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Copying splash screen
2007-09-23 08:04:51 +00:00
if [ -f config/binary_syslinux/splash.rle ]
then
LIVE_SYSLINUX_SPLASH="config/binary_syslinux/splash.rle"
fi
2007-09-23 08:04:50 +00:00
if [ -n "${LIVE_SYSLINUX_SPLASH}" ]
then
if [ "${LIVE_SYSLINUX_SPLASH}" = "none" ]
2007-09-23 08:04:46 +00:00
then
2007-09-23 08:04:50 +00:00
rm -f tftpboot/pxelinux.cfg/splash.rle
2007-09-23 08:04:52 +00:00
sed -e "s/.*splash.*//" tftpboot/pxelinux.cfg/boot.txt
2007-09-23 08:04:50 +00:00
else
cp -f "${LIVE_SYSLINUX_SPLASH}" tftpboot/pxelinux.cfg/splash.rle
2007-09-23 08:04:46 +00:00
fi
2007-09-23 08:04:50 +00:00
fi
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Configure syslinux templates
2007-09-23 08:05:12 +00:00
sed -i -e "s@LIVE_LINUX_LIVE@${LINUX}@" -e "s@LIVE_LINUX_INSTALL@${LIVE_LINUX_INSTALL}@" -e "s@LIVE_MEMTEST@${MEMTEST}@" tftpboot/pxelinux.cfg/default
2007-09-23 08:05:09 +00:00
sed -i -e "s/LIVE_NET_SERVER/${LIVE_NET_SERVER}/" -e "s#LIVE_NET_PATH#${LIVE_NET_PATH}#" -e "s#LIVE_BOOTAPPEND#${LIVE_BOOTAPPEND}#" tftpboot/pxelinux.cfg/default
2007-09-23 08:04:50 +00:00
sed -i -e "s/LIVE_DATE/`date +%Y%m%d`/" tftpboot/pxelinux.cfg/f1.txt
sed -i -e "s/LIVE_VERSION/${VERSION}/" tftpboot/pxelinux.cfg/f10.txt
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Remove unused files
rm -f tftpboot/pxelinux.cfg/isolinux.cfg
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:50 +00:00
# Working arround syslinux 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))
2007-09-23 08:04:52 +00:00
mv "${DESTDIR_LIVE}"/vmlinuz-*-${FLAVOUR} "${DESTDIR_LIVE}"/vmlinuz${NUMBER}
mv "${DESTDIR_LIVE}"/initrd.img-*-${FLAVOUR} "${DESTDIR_LIVE}"/initrd${NUMBER}.img
2007-09-23 08:04:51 +00:00
sed -i -e "s/vmlinuz-.*-${FLAVOUR}/vmlinuz${NUMBER}/g" -e "s/initrd.img-.*-${FLAVOUR}/initrd${NUMBER}.img/g" binary/isolinux/isolinux.cfg
2007-09-23 08:04:50 +00:00
done
else
2007-09-23 08:05:09 +00:00
mv "${DESTDIR_LIVE}"/vmlinuz-*-${LIVE_LINUX_FLAVOURS} "${DESTDIR_LIVE}"/vmlinuz
mv "${DESTDIR_LIVE}"/initrd.img-*-${LIVE_LINUX_FLAVOURS} "${DESTDIR_LIVE}"/initrd.img
sed -i -e "s/vmlinuz-.*-${LIVE_LINUX_FLAVOURS}/vmlinuz/g" -e "s/initrd.img-.*-${LIVE_LINUX_FLAVOURS}/initrd.img/g" binary/isolinux/isolinux.cfg
2007-09-23 08:04:50 +00:00
fi
;;
2007-09-23 08:05:11 +00:00
tar|usb-hdd)
2007-09-23 08:05:09 +00:00
# Workaround for syslinux (<< 3.36) which doesn't support dedicated directory
2007-09-23 08:05:12 +00:00
if [ "${LIVE_DISTRIBUTION}" = "etch" ]
2007-09-23 08:05:09 +00:00
then
DESTDIR="binary"
else
DESTDIR="binary/syslinux"
fi
2007-09-23 08:04:50 +00:00
# Copying syslinux
2007-09-23 08:05:09 +00:00
mkdir -p "${DESTDIR}"
cp chroot/usr/lib/syslinux/isolinux.bin "${DESTDIR}"/syslinux.bin
cp -r "${LIVE_TEMPLATES}"/syslinux/* "${DESTDIR}"
2007-09-23 08:05:12 +00:00
mv "${DESTDIR}"/isolinux.cfg "${DESTDIR}"/syslinux.cfg
2007-09-23 08:04:50 +00:00
# Copying splash screen
2007-09-23 08:04:51 +00:00
if [ -f config/binary_syslinux/splash.rle ]
then
LIVE_SYSLINUX_SPLASH="config/binary_syslinux/splash.rle"
fi
2007-09-23 08:04:50 +00:00
if [ -n "${LIVE_SYSLINUX_SPLASH}" ]
then
if [ "${LIVE_SYSLINUX_SPLASH}" = "none" ]
2007-09-23 08:04:48 +00:00
then
2007-09-23 08:05:09 +00:00
rm -f "${DESTDIR}"/splash.rle
sed -e "s/.*splash.*//" "${DESTDIR}"/boot.txt
2007-09-23 08:04:48 +00:00
else
2007-09-23 08:05:09 +00:00
cp -f "${LIVE_SYSLINUX_SPLASH}" "${DESTDIR}"/splash.rle
2007-09-23 08:04:48 +00:00
fi
2007-09-23 08:04:50 +00:00
fi
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Configure syslinux templates
2007-09-23 08:05:12 +00:00
sed -i -e "s@LIVE_LINUX_LIVE@${LINUX}@" -e "s@LIVE_LINUX_INSTALL@${LIVE_LINUX_INSTALL}@" -e "s@LIVE_MEMTEST@${MEMTEST}@" "${DESTDIR}"/syslinux.cfg
2007-09-23 08:05:09 +00:00
sed -i -e "s#LIVE_BOOTAPPEND#${LIVE_BOOTAPPEND}#" "${DESTDIR}"/syslinux.cfg
sed -i -e "s/LIVE_DATE/`date +%Y%m%d`/" "${DESTDIR}"/f1.txt
sed -i -e "s/LIVE_VERSION/${VERSION}/" "${DESTDIR}"/f10.txt
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Remove unused files
2007-09-23 08:05:09 +00:00
rm -f "${DESTDIR}"/pxelinux.cfg
2007-09-23 08:04:46 +00:00
2007-09-23 08:05:09 +00:00
# Workaround for syslinux (<< 3.36) which doesn't support long file/path names
2007-09-23 08:05:12 +00:00
if [ "${LIVE_DISTRIBUTION}" = "etch" ] && [ "`echo ${LIVE_LINUX_FLAVOURS} | wc -w`" -gt "1" ]
2007-09-23 08:04:50 +00:00
then
2007-09-23 08:05:12 +00:00
for FLAVOUR in ${LIVE_LINUX_FLAVOURS}
do
NUMBER=$(($NUMBER + 1))
mv "${DESTDIR_LIVE}"/vmlinuz-*-${FLAVOUR} "${DESTDIR_LIVE}"/vmlinuz${NUMBER}
mv "${DESTDIR_LIVE}"/initrd.img-*-${FLAVOUR} "${DESTDIR_LIVE}"/initrd${NUMBER}.img
sed -i -e "s/vmlinuz-.*-${FLAVOUR}/vmlinuz${NUMBER}/g" -e "s/initrd.img-.*-${FLAVOUR}/initrd${NUMBER}.img/g" "${DESTDIR}"/syslinux.cfg
done
else
mv "${DESTDIR_LIVE}"/vmlinuz-*-${LIVE_LINUX_FLAVOURS} "${DESTDIR_LIVE}"/vmlinuz
mv "${DESTDIR_LIVE}"/initrd.img-*-${LIVE_LINUX_FLAVOURS} "${DESTDIR_LIVE}"/initrd.img
sed -i -e "s/vmlinuz-.*-${LIVE_LINUX_FLAVOURS}/vmlinuz/g" -e "s/initrd.img-.*-${LIVE_LINUX_FLAVOURS}/initrd.img/g" "${DESTDIR}"/syslinux.cfg
2007-09-23 08:04:50 +00:00
fi
;;
esac
2007-09-23 08:04:48 +00:00
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_syslinux