2007-09-23 08:04:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# lh_clean(1) - clean up system build directories
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Source common functions
|
|
|
|
for FUNCTION in /usr/share/live-helper/functions/*.sh
|
|
|
|
do
|
|
|
|
. ${FUNCTION}
|
|
|
|
done
|
|
|
|
|
|
|
|
# Ensure that a system is built as root
|
|
|
|
lh_testroot
|
|
|
|
|
|
|
|
# Reading configuration files
|
|
|
|
Read_conffile config/common
|
|
|
|
Set_defaults
|
|
|
|
|
|
|
|
case "${1}" in
|
|
|
|
all)
|
|
|
|
"${0}" chroot
|
|
|
|
"${0}" binary
|
|
|
|
"${0}" stage
|
|
|
|
"${0}" source
|
|
|
|
;;
|
|
|
|
|
|
|
|
cache)
|
2007-09-23 08:04:47 +00:00
|
|
|
rm -rf cache
|
2007-09-23 08:04:46 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
chroot)
|
2007-09-23 08:04:47 +00:00
|
|
|
umount -f chroot/sys > /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
|
|
|
|
|
|
|
|
rm -rf chroot
|
2007-09-23 08:04:46 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
binary)
|
2007-09-23 08:04:47 +00:00
|
|
|
rm -rf binary
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2007-09-23 08:04:47 +00:00
|
|
|
rm -f binary.iso
|
|
|
|
rm -f binary.img
|
|
|
|
rm -f binary*.tar.gz
|
|
|
|
rm -f packages.txt
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2007-09-23 08:04:47 +00:00
|
|
|
rm -f .stage/binary*
|
2007-09-23 08:04:46 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
stage)
|
2007-09-23 08:04:47 +00:00
|
|
|
rm -rf .stage
|
|
|
|
rm -f .lock
|
2007-09-23 08:04:46 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
source)
|
2007-09-23 08:04:47 +00:00
|
|
|
rm -rf source
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2007-09-23 08:04:47 +00:00
|
|
|
rm -f source.iso
|
|
|
|
rm -f source.img
|
|
|
|
rm -f source*.tar.gz
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2007-09-23 08:04:47 +00:00
|
|
|
rm -f .stage/source*
|
2007-09-23 08:04:46 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
"${0}" all
|
|
|
|
;;
|
|
|
|
esac
|