live-build/helpers/lh_binary_includes

71 lines
1.4 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:46 +00:00
#!/bin/sh
# lh_binary_includes(1) - copy files into binary
2007-09-23 08:04:48 +00:00
# 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
# Source common functions
for FUNCTION in /usr/share/live-helper/functions/*.sh
do
. ${FUNCTION}
done
2007-09-23 08:04:48 +00:00
# Set static variables
DESCRIPTION="copy files into binary"
HELP=""
USAGE="${PROGRAM} [--force]"
Arguments "${@}"
2007-09-23 08:04:46 +00:00
# Reading configuration files
Read_conffile config/common
Read_conffile config/chroot
Read_conffile config/image
Set_defaults
# Requiring stage file
2007-09-23 08:04:47 +00:00
Require_stagefile .stage/bootstrap
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
# Checking stage file
2007-09-23 08:04:47 +00:00
Check_stagefile .stage/binary_includes
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:49 +00:00
# Check includes
if [ ! -d "${LIVE_INCLUDES}" ]
then
if [ -d ../"${LIVE_INCLUDES}" ]
then
LIVE_INCLUDES="../${LIVE_INCLUDES}"
else
Echo_error "user specified includes not accessible in ${LIVE_INCLUDES}"
exit 1
fi
fi
2007-09-23 08:04:48 +00:00
if ls "${LIVE_INCLUDES}"/common/* &> /dev/null
2007-09-23 08:04:46 +00:00
then
2007-09-23 08:04:48 +00:00
cd "${LIVE_INCLUDES}"/common
find . | cpio -dmpu "${OLDPWD}"/binary
cd "${OLDPWD}"
2007-09-23 08:04:46 +00:00
fi
2007-09-23 08:04:48 +00:00
if ls "${LIVE_INCLUDES}"/"${LIVE_BINARY_IMAGE}"/* &> /dev/null
2007-09-23 08:04:46 +00:00
then
2007-09-23 08:04:48 +00:00
cd "${LIVE_INCLUDES}"/"${LIVE_BINARY_IMAGE}"
find . | cpio -dmpu "${OLDPWD}"/binary
cd "${OLDPWD}"
2007-09-23 08:04:46 +00:00
fi
# Creating stage file
2007-09-23 08:04:47 +00:00
Create_stagefile .stage/binary_includes