live-build/scripts/build/lb_source

67 lines
1.4 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-2012 Daniel Baumann <daniel@debian.org>
##
## live-build 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
. "${LB_BASE:-/usr/share/live/build}"/scripts/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
lb source_debian-live ${*}
lb source_debian ${*}
lb source_disk ${*}
lb source_checksums ${*}
2007-09-23 08:04:46 +00:00
# Building images
lb source_iso ${*}
lb source_tar ${*}
lb source_hdd ${*}
lb source_virtual-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 ${*}