Cleaning up usb helpers for a future usb-zip addition.

This commit is contained in:
Daniel Baumann 2010-02-18 17:12:59 +01:00
parent 2dc16bc40d
commit 9d6a4dedc2
23 changed files with 77 additions and 68 deletions

View File

@ -757,7 +757,7 @@ Set_defaults ()
_LH_BOOTAPPEND_PRESEED="file=/cdrom/install/${LH_DEBIAN_INSTALLER_PRESEEDFILE}"
;;
usb-hdd)
usb*)
if [ "${LH_MODE}" = "ubuntu" ] || [ "${LH_DEBIAN_INSTALLER}" = "live" ]
then
_LH_BOOTAPPEND_PRESEED="file=/cdrom/install/${LH_DEBIAN_INSTALLER_PRESEEDFILE}"
@ -780,14 +780,15 @@ Set_defaults ()
esac
fi
if [ "${LH_BINARY_IMAGES}" = "usb-hdd" ]
then
# Try USB block devices for install media
if ! echo "${LH_BOOTAPPEND_INSTALL}" | grep -q try-usb
then
LH_BOOTAPPEND_INSTALL="cdrom-detect/try-usb=true ${LH_BOOTAPPEND_INSTALL}"
fi
fi
case "${LH_BINARY_IMAGES}" in
usb*)
# Try USB block devices for install media
if ! echo "${LH_BOOTAPPEND_INSTALL}" | grep -q try-usb
then
LH_BOOTAPPEND_INSTALL="cdrom-detect/try-usb=true ${LH_BOOTAPPEND_INSTALL}"
fi
;;
esac
if [ -n ${_LH_BOOTAPPEND_PRESEED} ]
then
@ -1028,16 +1029,17 @@ Check_defaults ()
esac
fi
if [ "${LH_BINARY_IMAGES}" = "usb-hdd" ]
then
# grub or yaboot + usb-hdd
case "${LH_BOOTLOADER}" in
grub|yaboot)
Echo_error "You have selected a combination of bootloader and image type that is currently not supported by live-helper. Please use either another bootloader or a different image type."
exit 1
;;
esac
fi
case "${LH_BINARY_IMAGES}" in
usb*)
# grub or yaboot + usb
case "${LH_BOOTLOADER}" in
grub|yaboot)
Echo_error "You have selected a combination of bootloader and image type that is currently not supported by live-helper. Please use either another bootloader or a different image type."
exit 1
;;
esac
;;
esac
if [ "$(echo ${LH_ISO_APPLICATION} | wc -c)" -gt 128 ]
then

View File

@ -78,7 +78,7 @@ fi
lh binary_iso ${*}
lh binary_net ${*}
lh binary_tar ${*}
lh binary_usb-hdd ${*}
lh binary_usb ${*}
lh binary_virtual-hdd ${*}
if [ "${LH_CHROOT_BUILD}" = "true" ]

View File

@ -83,7 +83,7 @@ case "${LH_BINARY_IMAGES}" in
DESTDIR="tftpboot/debian-install/${LH_ARCHITECTURE}"
;;
tar|usb-hdd)
usb*|tar)
DESTDIR="binary/install"
;;
@ -601,10 +601,14 @@ EOF
ln -s ${LH_DEBIAN_INSTALLER_DISTRIBUTION} binary/dists/${DISTRIBUTION}
done
if [ "${LH_BINARY_IMAGES}" != "usb-hdd" ]
then
ln -s . binary/debian
fi
case "${LH_BINARY_IMAGES}" in
usb*)
;;
*)
ln -s . binary/debian
;;
esac
# Including preseeding files
if Find_files config/binary_debian-installer/*.cfg

View File

@ -24,7 +24,7 @@ Read_conffiles config/all config/common config/bootstrap config/chroot config/bi
Set_defaults
case "${LH_BINARY_IMAGES}" in
iso|usb-hdd)
iso|usb*)
;;
*)
exit 0

View File

@ -142,7 +142,7 @@ case "${LH_BINARY_IMAGES}" in
DESTDIR_INSTALL="binary/install"
;;
usb-hdd|net)
usb*|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)."
exit 1
@ -280,7 +280,7 @@ case ${LH_BINARY_IMAGES} in
FILES="chroot/usr/lib/grub/*/stage2_eltorito"
;;
tar|usb-hdd)
usb*|tar)
FILES="chroot/usr/lib/grub/*/stage1 chroot/usr/lib/grub/*/e2fs_stage1_5 chroot/usr/lib/grub/*/stage2"
;;
esac

View File

@ -116,7 +116,7 @@ case "${LH_BINARY_IMAGES}" in
DESTDIR_INSTALL="binary/install"
;;
usb-hdd|net)
usb*|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)."
exit 1
@ -253,7 +253,7 @@ case ${LH_BINARY_IMAGES} in
FILES="chroot/usr/lib/grub/i386-pc/*.mod chroot/usr/lib/grub/i386-pc/*.lst chroot/usr/lib/grub/i386-pc/efiemu??.o chroot/usr/share/grub/*.pf2"
;;
tar|usb-hdd)
usb*|tar)
FILES="chroot/usr/lib/grub/i386-pc/*"
;;
esac

View File

@ -80,14 +80,15 @@ case "${LH_ARCHITECTURE}" in
esac
# Working arround vfat limitations
if [ "${LH_BINARY_IMAGE}" = "usb-hdd" ]
then
case "${LH_BINARY_FILESYSTEM}" in
fat*)
CP_OPTIONS="-L"
;;
esac
fi
case "${LH_BINARY_IMAGES}" in
usb*)
case "${LH_BINARY_FILESYSTEM}" in
fat*)
CP_OPTIONS="-L"
;;
esac
;;
esac
# Copying common templates
if [ -d "${LH_INCLUDES}"/"${LH_DISTRIBUTION}"/common ] && \

View File

@ -45,10 +45,11 @@ then
cd "${OLDPWD}"
# Removing symlinks
if [ "${LH_BINARY_IMAGES}" = "usb-hdd" ]
then
find binary -type l | xargs rm -f
fi
case "${LH_BINARY_IMAGES}" in
usb*)
find binary -type l | xargs rm -f
;;
esac
# Creating stage file
Create_stagefile .stage/binary_local-includes

View File

@ -30,7 +30,7 @@ fi
# Check image type
case "${LH_BINARY_IMAGES}" in
iso|usb-hdd|tar)
iso|usb*|tar)
;;
net)
@ -225,7 +225,7 @@ fi
LINUX_INSTALL="$(/bin/echo ${LINUX_INSTALL} | sed -e 's|binary||g' -e 's|//|/|g')"
case "${LH_BINARY_IMAGES}" in
iso|usb-hdd)
iso|usb*)
# Copying silo
mkdir -p binary/boot

View File

@ -90,7 +90,7 @@ Syslinux_live_entry ()
APPEND="${5}"
case "${LH_BINARY_IMAGES}" in
iso|usb-hdd)
iso|usb*)
NUMBER="$(ls -1 ${KERNEL_PATH} | grep 'vmlinuz[0-9]\+$' | wc -l)"
NUMBER="$((${NUMBER} +1))"
@ -334,7 +334,7 @@ Configure_syslinux_templates ()
done
case "${LH_BINARY_IMAGES}" in
usb-hdd)
usb*)
if [ -f "${SYSLINUX_PATH}/exithelp.cfg" ]
then
sed -i -e "s|config isolinux.cfg|config syslinux.cfg|" "${SYSLINUX_PATH}"/exithelp.cfg
@ -387,7 +387,7 @@ case "${LH_BINARY_IMAGES}" in
MEDIA="netboot"
;;
tar|usb-hdd)
usb*|tar)
SYSLINUX_PATH="binary/syslinux"
KERNEL_PATH="binary/${INITFS}"
SCREEN_PATH="${SYSLINUX_PATH}"
@ -631,7 +631,7 @@ case "${LH_BINARY_IMAGES}" in
fi
;;
tar|usb-hdd)
usb*|tar)
case "${LH_CHROOT_BUILD}" in
true)
cp chroot/usr/lib/syslinux/isolinux.bin ${SCREEN_PATH}/syslinux.bin

View File

@ -1,6 +1,6 @@
#!/bin/sh
# lh_binary_usb-hdd(1) - build binary usb-hdd image
# lh_binary_usb(1) - build binary usb image
# Copyright (C) 2006-2009 Daniel Baumann <daniel@debian.org>
#
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
@ -28,13 +28,13 @@ then
exit 0
fi
Echo_message "Begin building binary usb-hdd image..."
Echo_message "Begin building binary usb image..."
# Requiring stage file
Require_stagefile .stage/config .stage/bootstrap .stage/chroot_proc
# Checking stage file
Check_stagefile .stage/binary_usb-hdd
Check_stagefile .stage/binary_usb
# Checking lock file
Check_lockfile .lock
@ -277,4 +277,4 @@ Save_cache cache/packages_binary
Remove_package
# Creating stage file
Create_stagefile .stage/binary_usb-hdd
Create_stagefile .stage/binary_usb

View File

@ -149,7 +149,7 @@ case "${LH_BINARY_IMAGES}" in
DESTDIR_INSTALL="binary/install"
;;
net|tar|usb-hdd)
usb*|net|tar)
Echo_error "not yet supported, aborting (FIXME)."
exit 1
;;
@ -272,7 +272,7 @@ fi
LINUX_INSTALL="$(/bin/echo ${LINUX_INSTALL} | sed -e 's|binary||g' -e 's|//|/|g')"
case "${LH_BINARY_IMAGES}" in
iso|usb-hdd)
iso|usb*)
# Copying yaboot
mkdir -p binary/yaboot
@ -288,13 +288,14 @@ case "${LH_BINARY_IMAGES}" in
cp -r "${TEMPLATES}"/* binary/yaboot
if [ "${LH_BINARY_IMAGES}" = "usb-hdd" ]
then
mv binary/yaboot/yaboot.conf binary/yaboot/yaboot.conf.tmp
echo "root=/dev/ram" > binary/yaboot/yaboot.conf
cat binary/yaboot/yaboot.conf.tmp >> binary/yaboot/yaboot.conf
rm -f binary/yaboot/yaboot.conf.tmp
fi
case "${LH_BINARY_IMAGES}" in
usb*)
mv binary/yaboot/yaboot.conf binary/yaboot/yaboot.conf.tmp
echo "root=/dev/ram" > binary/yaboot/yaboot.conf
cat binary/yaboot/yaboot.conf.tmp >> binary/yaboot/yaboot.conf
rm -f binary/yaboot/yaboot.conf.tmp
;;
esac
# Configure yaboot templates
sed -i -e "s|LINUX_LIVE|${LINUX_LIVE}|" -e "s|LINUX_INSTALL|${LINUX_INSTALL}|" binary/yaboot/yaboot.conf

View File

@ -44,7 +44,7 @@ lh source_md5sum ${*}
lh source_iso ${*}
lh source_net ${*}
lh source_tar ${*}
lh source_usb-hdd ${*}
lh source_usb ${*}
lh source_virtual-hdd ${*}
# Deconfiguring chroot

View File

@ -1,6 +1,6 @@
#!/bin/sh
# lh_source_usb-hdd(1) - build source usb-hdd image
# lh_source_usb(1) - build source usb image
# Copyright (C) 2006-2009 Daniel Baumann <daniel@debian.org>
#
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
@ -33,13 +33,13 @@ then
exit 0
fi
Echo_message "Begin building source usb-hdd image..."
Echo_message "Begin building source usb image..."
# Requiring stage file
Require_stagefile .stage/config .stage/source_debian
# Checking stage file
Check_stagefile .stage/source_usb-hdd
Check_stagefile .stage/source_usb
# Checking lock file
Check_lockfile .lock
@ -136,4 +136,4 @@ fi
Remove_package
# Creating stage file
Create_stagefile .stage/source_usb-hdd
Create_stagefile .stage/source_usb

View File

@ -189,7 +189,7 @@ installs silo into binary
installs syslinux into binary
.IP "\fBlh_binary_tar\fR(1)" 4
build harddisk binary image
.IP "\fBlh_binary_usb-hdd\fR(1)" 4
.IP "\fBlh_binary_usb\fR(1)" 4
build binary usb-hdd image
.IP "\fBlh_binary_virtual-hdd\fR(1)" 4
build binary virtual-hdd image
@ -212,7 +212,7 @@ create source md5sum
build source net image
.IP "\fBlh_source_tar\fR(1)" 4
build source tarball
.IP "\fBlh_source_usb-hdd\fR(1)" 4
.IP "\fBlh_source_usb\fR(1)" 4
build source usb-hdd image
.IP "\fBlh_source_virtual-hdd\fR(1)" 4
build source virtual-hdd image