2007-09-23 08:04:46 +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:04:46 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2010-04-18 12:43:23 +00:00
|
|
|
# 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
|
2010-04-18 12:43:23 +00:00
|
|
|
|
2009-01-30 19:17:00 -01:00
|
|
|
# Read meta config
|
2010-04-18 12:38:14 +00:00
|
|
|
if [ "${1}" != "noauto" ] && [ -x auto/clean ]
|
2009-01-30 19:17:00 -01:00
|
|
|
then
|
2010-04-18 12:40:09 +00:00
|
|
|
Echo_message "Executing auto/clean script."
|
2010-11-22 18:30:09 -01:00
|
|
|
./auto/clean "${@}"
|
2010-09-13 19:20:54 +00:00
|
|
|
exit ${?}
|
2009-01-31 14:33:56 -01:00
|
|
|
fi
|
|
|
|
|
2010-04-18 12:38:14 +00:00
|
|
|
if [ "${1}" = "noauto" ]
|
2009-01-31 14:33:56 -01:00
|
|
|
then
|
2009-01-30 19:17:00 -01:00
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Setting static variables
|
2009-01-15 01:37:42 -01:00
|
|
|
DESCRIPTION="$(Echo 'clean up system build directories')"
|
2007-09-23 08:04:48 +00:00
|
|
|
HELP=""
|
2007-11-18 14:14:50 -01:00
|
|
|
USAGE="${PROGRAM} [--all] [--cache] [--chroot] [--binary] [--purge] [--remove] [--stage] [--source]"
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2007-11-19 15:55:28 -01:00
|
|
|
#Arguments "${@}"
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# 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:04:46 +00:00
|
|
|
Set_defaults
|
|
|
|
|
2007-11-18 14:15:43 -01:00
|
|
|
# Avoid cases were users accidentally nuke their config/binary
|
2008-09-11 06:44:15 +00:00
|
|
|
if [ ! -d config ] && [ "$(basename ${PWD})" = "config" ]
|
2007-11-18 14:15:43 -01:00
|
|
|
then
|
2013-03-11 04:35:40 -01:00
|
|
|
Echo_error "%s is not a good live-build working directory to clean." "${PWD}"
|
2007-11-18 14:15:43 -01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:12 +00:00
|
|
|
rm -f .lock
|
|
|
|
|
2012-09-30 18:29:55 +00:00
|
|
|
if [ -z "${1}" ]
|
2007-09-23 11:59:18 +00:00
|
|
|
then
|
2007-11-18 14:14:50 -01:00
|
|
|
ARGUMENTS="--all"
|
2007-09-23 11:59:18 +00:00
|
|
|
else
|
|
|
|
ARGUMENTS="${@}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
for ARGUMENT in ${ARGUMENTS}
|
2007-09-23 08:05:18 +00:00
|
|
|
do
|
|
|
|
case "${ARGUMENT}" in
|
2007-11-18 14:14:50 -01:00
|
|
|
--all)
|
2012-08-27 13:16:09 +00:00
|
|
|
"${0}" noauto --chroot
|
|
|
|
"${0}" noauto --binary
|
|
|
|
"${0}" noauto --stage
|
|
|
|
"${0}" noauto --source
|
2008-11-27 16:31:05 -01:00
|
|
|
|
2010-09-16 22:47:25 +00:00
|
|
|
rmdir --ignore-fail-on-non-empty auto > /dev/null 2>&1 || true
|
2012-12-10 18:35:50 -01:00
|
|
|
rmdir --ignore-fail-on-non-empty local/bin > /dev/null 2>&1 || true
|
|
|
|
rmdir --ignore-fail-on-non-empty local > /dev/null 2>&1 || true
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--cache)
|
2013-02-18 09:29:04 -01:00
|
|
|
rm -rf cache
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--chroot)
|
2007-09-23 08:05:18 +00:00
|
|
|
Echo_message "Cleaning chroot"
|
2013-02-18 09:29:04 -01:00
|
|
|
umount -f chroot/run > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/sys > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/proc/sys/fs/binfmt_misc > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/proc > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/lib/init/rw > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/dev/shm > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/dev/pts > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/dev > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/var/lib/dpkg > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/root/config > /dev/null 2>&1 || true
|
|
|
|
|
|
|
|
umount -f chroot/binary.tmp > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/dev.tmp/pts > /dev/null 2>&1 || true
|
|
|
|
|
|
|
|
rm -rf chroot chroot.tmp
|
2007-09-23 08:05:18 +00:00
|
|
|
|
2011-09-07 13:08:14 +00:00
|
|
|
rm -f chroot.packages.live chroot.packages.install
|
2013-05-06 10:33:07 +00:00
|
|
|
rm -f chroot.files
|
2011-09-07 13:08:14 +00:00
|
|
|
|
2012-06-03 20:42:41 +00:00
|
|
|
rm -f .build/chroot*
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--binary)
|
2013-02-18 09:29:04 -01:00
|
|
|
umount -f binary.tmp > /dev/null 2>&1 || true
|
2007-09-23 08:05:18 +00:00
|
|
|
rm -rf binary.tmp binary.deb binary.udeb
|
2012-12-19 10:21:09 -01:00
|
|
|
rm -f ${LIVE_IMAGE_NAME}*.iso
|
|
|
|
rm -f ${LIVE_IMAGE_NAME}*.img
|
|
|
|
rm -f ${LIVE_IMAGE_NAME}*.tar.gz
|
|
|
|
rm -f ${LIVE_IMAGE_NAME}*.zsync*
|
|
|
|
rm -f ${LIVE_IMAGE_NAME}.sh
|
2013-05-06 10:33:07 +00:00
|
|
|
rm -f ${LIVE_IMAGE_NAME}*.contents ${LIVE_IMAGE_NAME}*.packages ${LIVE_IMAGE_NAME}*.files
|
2013-01-02 09:27:05 -01:00
|
|
|
rm -f MD5SUMS SHA1SUMS SHA256SUMS SHA512SUMS
|
|
|
|
rm -f md5sum.txt sha1sum.txt sha256sum.txt sha512sum.txt
|
2007-09-23 08:05:18 +00:00
|
|
|
|
|
|
|
rm -rf binary
|
|
|
|
rm -rf tftpboot
|
|
|
|
|
2012-06-03 20:42:41 +00:00
|
|
|
rm -f .build/binary*
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--remove)
|
2012-08-27 13:16:09 +00:00
|
|
|
"${0}" --all
|
2012-06-04 08:52:28 +00:00
|
|
|
rm -rf cache/packages.*
|
2007-11-13 11:08:51 -01:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--purge)
|
2012-08-27 13:16:09 +00:00
|
|
|
"${0}" --all
|
|
|
|
"${0}" --cache
|
2009-07-31 20:01:27 +00:00
|
|
|
|
2010-01-11 21:58:54 -01:00
|
|
|
if [ -e auto/config ]
|
2009-07-31 20:01:27 +00:00
|
|
|
then
|
2012-06-03 20:42:41 +00:00
|
|
|
rm -f .build/config
|
2009-07-31 20:01:27 +00:00
|
|
|
fi
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--stage)
|
2014-05-07 02:59:43 +00:00
|
|
|
rm -rf .build/*
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--source)
|
2012-12-19 10:41:02 -01:00
|
|
|
rm -f ${LIVE_IMAGE_NAME}-source*.iso
|
|
|
|
rm -f ${LIVE_IMAGE_NAME}-source*.img
|
|
|
|
rm -f ${LIVE_IMAGE_NAME}-source*.tar
|
|
|
|
rm -f ${LIVE_IMAGE_NAME}-source*.tar.gz
|
|
|
|
rm -f ${LIVE_IMAGE_NAME}-source*.list
|
|
|
|
rm -f ${LIVE_IMAGE_NAME}-source-selection.txt
|
2007-09-23 08:05:18 +00:00
|
|
|
|
|
|
|
rm -rf source
|
|
|
|
|
2012-06-03 20:42:41 +00:00
|
|
|
rm -f .build/source*
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2008-01-14 23:05:51 -01:00
|
|
|
-h|--help)
|
|
|
|
Help
|
|
|
|
;;
|
|
|
|
|
2008-01-14 22:43:51 -01:00
|
|
|
-u|--usage)
|
|
|
|
Usage
|
|
|
|
;;
|
|
|
|
|
2008-01-14 23:05:51 -01:00
|
|
|
-v|--version)
|
2012-07-18 19:38:58 +00:00
|
|
|
echo "${VERSION}"
|
|
|
|
exit 0
|
2008-01-14 23:05:51 -01:00
|
|
|
;;
|
|
|
|
|
2007-09-23 08:05:18 +00:00
|
|
|
*)
|
2008-01-14 22:43:51 -01:00
|
|
|
Usage
|
|
|
|
exit 1
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|