live-build/scripts/build/binary_linux-image

93 lines
1.8 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:46 +00:00
#!/bin/sh
## live-build(7) - System Build Scripts
## Copyright (C) 2006-2012 Daniel Baumann <daniel@debian.org>
##
## This program 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
[ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
2007-09-23 08:04:46 +00:00
2007-09-23 08:05:11 +00:00
# Setting static variables
DESCRIPTION="$(Echo 'install linux-image into binary')"
2007-09-23 08:04:48 +00:00
HELP=""
USAGE="${PROGRAM} [--force]"
Arguments "${@}"
2007-09-23 08:04:46 +00:00
# Reading configuration files
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
2007-09-23 08:04:46 +00:00
Set_defaults
if [ "${LB_LINUX_PACKAGES}" = "none" ]
then
exit 0
fi
2007-09-23 08:05:11 +00:00
Echo_message "Begin install linux-image..."
2007-09-23 08:04:49 +00:00
2007-09-23 08:04:46 +00:00
# Requiring stage file
Require_stagefile .build/config .build/bootstrap
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Checking stage file
Check_stagefile .build/binary_linux-image
2007-09-23 08:04:50 +00:00
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
case "${LB_INITRAMFS}" in
casper)
DESTDIR="binary/casper"
2007-09-23 08:04:46 +00:00
;;
live-boot)
2007-09-23 08:05:12 +00:00
DESTDIR="binary/live"
2007-09-23 08:04:46 +00:00
;;
*)
DESTDIR="binary/boot"
;;
2007-09-23 08:04:46 +00:00
esac
case "${LB_ARCHITECTURES}" in
2007-09-23 08:05:13 +00:00
powerpc)
LINUX="vmlinux"
;;
2009-04-17 08:23:38 +00:00
*)
LINUX="vmlinuz"
;;
2007-09-23 08:05:13 +00:00
esac
Check_multiarchitectures
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:46 +00:00
# Creating directory
2007-09-23 08:05:11 +00:00
mkdir -p "${DESTDIR}"
2007-09-23 08:04:46 +00:00
# Installing linux-image
if [ "${LB_LINUX_PACKAGES}" != "none" ]
then
cp chroot/boot/"${LINUX}"-* "${DESTDIR}"
cp chroot/boot/initrd.img-* "${DESTDIR}"
fi
2007-09-23 08:04:46 +00:00
case "${LB_INITRAMFS}" in
live-boot)
if [ -e chroot/usr/share/doc/live-boot/parameters.txt ]
then
cp chroot/usr/share/doc/live-boot/parameters.txt "${DESTDIR}"/parameters
fi
2007-09-23 08:05:15 +00:00
;;
esac
2007-09-23 08:04:46 +00:00
# Creating stage file
Create_stagefile .build/binary_linux-image