live-build/helpers/lh_build

39 lines
754 B
Plaintext
Raw Normal View History

2007-09-23 08:04:46 +00:00
#!/bin/sh
2007-09-23 08:04:48 +00:00
# lh_build(1) - build a Debian Live system
# Copyright (C) 2006-2007 Daniel Baumann <daniel@debian.org>
#
# live-helper 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:46 +00:00
set -e
2007-09-23 08:04:48 +00:00
# Source common functions
for FUNCTION in /usr/share/live-helper/functions/*.sh
do
. ${FUNCTION}
done
# Set static variables
DESCRIPTION="build a Debian Live system"
HELP=""
USAGE="${PROGRAM} [--force]"
Arguments "${@}"
2007-09-23 08:04:49 +00:00
Echo_debug "Init ${PROGRAM}"
Breakpoint "build: Init"
2007-09-23 08:04:46 +00:00
# Bootstrapping system
2007-09-23 08:04:52 +00:00
lh_bootstrap ${*}
2007-09-23 08:04:46 +00:00
# Customizing chroot
2007-09-23 08:04:52 +00:00
lh_chroot ${*}
2007-09-23 08:04:46 +00:00
# Building binary image
2007-09-23 08:04:52 +00:00
lh_binary ${*}
2007-09-23 08:04:46 +00:00
# Building source image
2007-09-23 08:04:52 +00:00
lh_source ${*}