2007-09-23 08:05:13 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 11:12:37 +00:00
|
|
|
## live-build(7) - System Build Scripts
|
2014-02-08 15:47:02 -01:00
|
|
|
## Copyright (C) 2006-2014 Daniel Baumann <mail@daniel-baumann.ch>
|
2010-09-02 11:12:37 +00:00
|
|
|
##
|
2012-07-29 23:59:00 +00:00
|
|
|
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
2010-09-02 11:12:37 +00:00
|
|
|
## This is free software, and you are welcome to redistribute it
|
|
|
|
## under certain conditions; see COPYING for details.
|
|
|
|
|
2007-09-23 08:05:13 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Including common functions
|
2012-08-27 13:52:29 +00:00
|
|
|
[ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
|
2007-09-23 08:05:13 +00:00
|
|
|
|
|
|
|
# Setting static variables
|
2009-01-15 01:37:42 -01:00
|
|
|
DESCRIPTION="$(Echo 'install disk information into binary')"
|
2007-09-23 08:05:13 +00:00
|
|
|
HELP=""
|
|
|
|
USAGE="${PROGRAM} [--force]"
|
|
|
|
|
|
|
|
Arguments "${@}"
|
|
|
|
|
|
|
|
# Reading configuration files
|
2008-10-28 14:26:17 -01:00
|
|
|
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
|
2007-09-23 08:05:13 +00:00
|
|
|
Set_defaults
|
|
|
|
|
2012-12-19 08:52:13 -01:00
|
|
|
case "${LIVE_IMAGE_TYPE}" in
|
2011-09-13 07:10:28 +00:00
|
|
|
iso*|hdd*)
|
2008-09-07 13:21:55 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
esac
|
2007-09-23 08:05:13 +00:00
|
|
|
|
|
|
|
Echo_message "Begin installing disk information..."
|
|
|
|
|
|
|
|
# Requiring stage file
|
2012-06-03 20:42:41 +00:00
|
|
|
Require_stagefile .build/config .build/bootstrap
|
2007-09-23 08:05:13 +00:00
|
|
|
|
|
|
|
# Checking stage file
|
2012-06-03 20:42:41 +00:00
|
|
|
Check_stagefile .build/binary_disk
|
2007-09-23 08:05:13 +00:00
|
|
|
|
|
|
|
# Checking lock file
|
|
|
|
Check_lockfile .lock
|
|
|
|
|
|
|
|
# Creating lock file
|
|
|
|
Create_lockfile .lock
|
|
|
|
|
|
|
|
mkdir -p binary/.disk
|
|
|
|
|
2012-12-19 09:16:57 -01:00
|
|
|
ARCHITECTURE="$(echo ${LIVE_IMAGE_ARCHITECTURE} | sed -e 's| |/|g')"
|
2010-09-07 13:11:20 +00:00
|
|
|
DISTRIBUTION="$(echo ${LB_DISTRIBUTION} | cut -b 1 | tr '[a-z]' '[A-Z]')"
|
|
|
|
DISTRIBUTION="${DISTRIBUTION}$(echo ${LB_DISTRIBUTION} | cut -b 2-)"
|
|
|
|
eval VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`"
|
2007-09-23 08:05:13 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_MODE}" in
|
2009-02-08 09:55:56 -01:00
|
|
|
debian)
|
2011-11-29 14:28:17 -01:00
|
|
|
TITLE="Debian GNU/Linux"
|
2009-02-08 09:55:56 -01:00
|
|
|
STRING="Official Snapshot ${ARCHITECTURE}"
|
2009-08-09 22:50:56 +00:00
|
|
|
TRACE="project/trace/ftp-master.debian.org"
|
2009-02-08 09:55:56 -01:00
|
|
|
;;
|
|
|
|
|
2009-04-15 20:07:26 +00:00
|
|
|
ubuntu)
|
2010-05-21 05:10:57 +00:00
|
|
|
TITLE="Ubuntu"
|
2009-04-15 20:07:26 +00:00
|
|
|
STRING="Build ${ARCHITECTURE}"
|
2009-08-09 22:50:56 +00:00
|
|
|
TRACE=""
|
2009-04-15 20:07:26 +00:00
|
|
|
;;
|
|
|
|
|
2012-10-25 11:36:12 +00:00
|
|
|
progress-linux)
|
2011-11-29 14:28:17 -01:00
|
|
|
TITLE="Progress Linux"
|
|
|
|
STRING="${VERSION} (${DISTRIBUTION}) - ${ARCHITECTURE}"
|
|
|
|
TRACE="project/trace/archive-master.progress-linux.org"
|
|
|
|
;;
|
|
|
|
|
2009-02-08 09:55:56 -01:00
|
|
|
*)
|
2011-11-29 14:28:17 -01:00
|
|
|
TITLE="Debian GNU/Linux"
|
2009-02-08 09:55:56 -01:00
|
|
|
STRING="Snapshot ${ARCHITECTURE}"
|
2009-08-09 22:50:56 +00:00
|
|
|
TRACE=""
|
2009-02-08 09:55:56 -01:00
|
|
|
;;
|
|
|
|
esac
|
2007-09-23 11:59:19 +00:00
|
|
|
|
2009-08-09 22:50:56 +00:00
|
|
|
if [ -n "${TRACE}" ]
|
|
|
|
then
|
2011-02-14 11:11:26 -01:00
|
|
|
echo "$(wget -q ${LB_PARENT_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
|
2009-08-09 22:50:56 +00:00
|
|
|
> binary/.disk/archive_trace
|
|
|
|
fi
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_INITRAMFS}" in
|
2010-08-14 09:48:30 +00:00
|
|
|
casper)
|
2012-01-12 09:57:45 -01:00
|
|
|
for INITRD in binary/casper/initrd.img*
|
2010-08-14 09:48:30 +00:00
|
|
|
do
|
2011-07-21 15:24:08 +00:00
|
|
|
mkdir -p binary/uuid
|
|
|
|
cd binary/uuid
|
2010-08-14 09:48:30 +00:00
|
|
|
|
2011-09-07 12:16:05 +00:00
|
|
|
case "${LB_INITRAMFS_COMPRESSION}" in
|
|
|
|
gzip)
|
|
|
|
zcat "../../${INITRD}" | cpio --quiet -id conf/uuid.conf
|
|
|
|
;;
|
|
|
|
|
|
|
|
bzip2)
|
|
|
|
bzcat "../../${INITRD}" | cpio --quiet -id conf/uuid.conf
|
|
|
|
;;
|
|
|
|
|
|
|
|
lzma)
|
2012-02-07 08:11:31 -01:00
|
|
|
lzcat -S "" "../../${INITRD}" | cpio --quiet -id conf/uuid.conf
|
2011-09-07 12:16:05 +00:00
|
|
|
;;
|
|
|
|
esac
|
2010-08-14 09:48:30 +00:00
|
|
|
|
|
|
|
if [ -e conf/uuid.conf ]
|
|
|
|
then
|
2012-02-07 08:12:52 -01:00
|
|
|
mv conf/uuid.conf "../.disk/casper-uuid${INITRD#binary/casper/initrd.img}"
|
2010-08-14 09:48:30 +00:00
|
|
|
else
|
|
|
|
Echo_warning "Failed to find casper uuid.conf in '${INITRD}'"
|
|
|
|
fi
|
|
|
|
|
2011-07-21 15:24:08 +00:00
|
|
|
cd ${OLDPWD}
|
|
|
|
rm -rf binary/uuid
|
2010-08-14 09:48:30 +00:00
|
|
|
done
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_DEBIAN_INSTALLER}" in
|
2007-10-19 10:45:57 +00:00
|
|
|
cdrom)
|
|
|
|
echo "main" > binary/.disk/base_components
|
2007-09-23 08:05:13 +00:00
|
|
|
|
2007-10-19 10:45:57 +00:00
|
|
|
touch binary/.disk/base_installable
|
2007-09-23 08:05:13 +00:00
|
|
|
|
2007-10-19 10:45:57 +00:00
|
|
|
echo "full_cd" > binary/.disk/cd_type
|
2007-09-23 08:05:21 +00:00
|
|
|
|
2009-04-15 20:07:26 +00:00
|
|
|
echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/CD Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
|
2007-09-23 08:05:21 +00:00
|
|
|
|
2012-07-19 17:37:26 +00:00
|
|
|
for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
|
|
|
|
do
|
|
|
|
if [ -e "${LOCATION}" ]
|
|
|
|
then
|
2012-12-19 09:16:57 -01:00
|
|
|
cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LIVE_IMAGE_ARCHITECTURE}_udeb_include" binary/.disk/udeb_include
|
2012-07-19 17:37:26 +00:00
|
|
|
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
done
|
2007-10-19 10:45:57 +00:00
|
|
|
;;
|
2007-09-23 08:05:21 +00:00
|
|
|
|
2009-12-13 19:17:45 -01:00
|
|
|
true|netinst|live)
|
2007-10-19 10:45:57 +00:00
|
|
|
echo "main" > binary/.disk/base_components
|
2007-09-23 08:05:21 +00:00
|
|
|
|
2007-10-19 10:45:57 +00:00
|
|
|
touch binary/.disk/base_installable
|
2007-09-23 08:05:13 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ "${LB_DEBIAN_INSTALLER}" = "live" ]
|
2009-02-08 09:55:56 -01:00
|
|
|
then
|
2011-07-25 15:15:17 +00:00
|
|
|
echo "live" > binary/.disk/cd_type
|
2009-04-15 20:07:26 +00:00
|
|
|
echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/INSTALL Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
|
2009-02-08 09:55:56 -01:00
|
|
|
else
|
2011-07-25 15:15:17 +00:00
|
|
|
echo "not_complete" > binary/.disk/cd_type
|
2009-04-15 20:07:26 +00:00
|
|
|
echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/NETINST Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
|
2009-02-08 09:55:56 -01:00
|
|
|
fi
|
2007-09-23 12:05:10 +00:00
|
|
|
|
2012-07-19 17:37:26 +00:00
|
|
|
for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
|
|
|
|
do
|
|
|
|
if [ -e "${LOCATION}" ]
|
|
|
|
then
|
2012-12-19 09:16:57 -01:00
|
|
|
cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LIVE_IMAGE_ARCHITECTURE}_netinst_udeb_include" binary/.disk/udeb_include
|
2012-07-19 17:37:26 +00:00
|
|
|
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
done
|
2007-09-23 08:05:21 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ "${LB_DEBIAN_INSTALLER}" = "live" ]
|
2007-10-19 10:45:57 +00:00
|
|
|
then
|
|
|
|
echo "live-installer" >> binary/.disk/udeb_include
|
|
|
|
fi
|
|
|
|
;;
|
2007-09-23 08:05:21 +00:00
|
|
|
|
2007-10-19 10:45:57 +00:00
|
|
|
businesscard)
|
|
|
|
echo "main" > binary/.disk/base_components
|
2007-09-23 08:05:13 +00:00
|
|
|
|
2007-10-19 10:45:57 +00:00
|
|
|
echo "not_complete" > binary/.disk/cd_type
|
2007-09-23 08:05:13 +00:00
|
|
|
|
2009-04-15 20:07:26 +00:00
|
|
|
echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/BC Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
|
2007-09-23 08:05:21 +00:00
|
|
|
|
2012-07-19 17:37:26 +00:00
|
|
|
for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
|
|
|
|
do
|
|
|
|
if [ -e "${LOCATION}" ]
|
|
|
|
then
|
2012-12-19 09:16:57 -01:00
|
|
|
cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LIVE_IMAGE_ARCHITECTURE}_businesscard_udeb_include" binary/.disk/udeb_include
|
2012-07-19 17:37:26 +00:00
|
|
|
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
done
|
2007-09-23 08:05:21 +00:00
|
|
|
;;
|
|
|
|
|
2009-12-13 19:17:45 -01:00
|
|
|
false)
|
2009-04-15 20:07:26 +00:00
|
|
|
echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
|
2007-09-23 08:05:21 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2007-09-23 08:05:13 +00:00
|
|
|
# Creating stage file
|
2012-06-03 20:42:41 +00:00
|
|
|
Create_stagefile .build/binary_disk
|