live-build/scripts/build/source

68 lines
1.5 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:46 +00:00
#!/bin/sh
## live-build(7) - System Build Scripts
2014-02-08 15:47:02 -01:00
## Copyright (C) 2006-2014 Daniel Baumann <mail@daniel-baumann.ch>
##
## 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:48 +00:00
set -e
2007-09-23 08:04:46 +00:00
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
# Automatically populating config tree
if [ -x auto/config ] && [ ! -e .build/config ]
then
Echo_message "Automatically populating config tree."
lb config
fi
2007-09-23 08:05:11 +00:00
# Setting static variables
DESCRIPTION="$(Echo 'build source images')"
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_SOURCE}" != "true" ]
then
exit 0
fi
#Require_stagefile
# Setup cleanup function
Setup_cleanup
2007-09-23 08:04:46 +00:00
# Enabling network in chroot
lb chroot_hosts install ${@}
lb chroot_resolv install ${@}
lb chroot_hostname install ${@}
lb chroot_archives source install ${@}
2007-09-23 08:04:46 +00:00
# Preparing images
2013-07-01 14:50:08 +00:00
lb source_live ${@}
lb source_debian ${@}
lb source_disk ${@}
2013-11-04 16:46:56 -01:00
lb source-includes ${@}
lb source-hooks ${@}
lb source_checksums ${@}
2007-09-23 08:04:46 +00:00
# Building images
lb source_iso ${@}
lb source_tar ${@}
lb source_hdd ${@}
2007-09-23 08:04:46 +00:00
# Deconfiguring chroot
lb chroot_archives chroot remove ${@}
lb chroot_hostname remove ${@}
lb chroot_resolv remove ${@}
lb chroot_hosts remove ${@}