live-build/scripts/build/binary_checksums

88 lines
2.0 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-2013 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
2010-05-01 05:39:49 +00:00
DESCRIPTION="$(Echo 'create binary checksums')"
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_CHECKSUMS}" = "none" ]
then
exit 0
fi
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_checksums
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
for CHECKSUM in ${LB_CHECKSUMS}
do
CHECKSUMS="$(echo ${CHECKSUM} | tr [a-z] [A-Z])SUMS"
Echo_message "Begin creating binary ${CHECKSUMS}..."
# Remove old checksums
if [ -f binary/${CHECKSUMS} ]
then
rm -f binary/${CHECKSUMS}
fi
# Calculating checksums
cd binary
find . -type f \
\! -path './isolinux/isolinux.bin' \
\! -path './boot/boot.bin' \
\! -path './boot/grub/stage2_eltorito' \
\! -path './*SUMS' \
-print0 | sort -z | xargs -0 ${CHECKSUM}sum > ../${CHECKSUMS}
cat > ${CHECKSUMS} << EOF
## This file contains the list of ${CHECKSUM} checksums of all fileson this
## medium.
##
## You can verify them automatically with the 'verify-checksums' boot parameter,
## or, manually with: '${CHECKSUM}sum -c ${CHECKSUMS}'.
##
##
2007-09-23 08:05:13 +00:00
EOF
cat ../${CHECKSUMS} >> ${CHECKSUMS}
rm -f ../${CHECKSUMS}
cd "${OLDPWD}"
done
2007-09-23 08:05:09 +00:00
# File list
cd binary
find . | sed -e 's|^.||g' | grep "^/" | sort > ../${LIVE_IMAGE_NAME}-${LIVE_IMAGE_ARCHITECTURE}.contents
2007-09-23 08:04:46 +00:00
cd "${OLDPWD}"
# Creating stage file
Create_stagefile .build/binary_checksums