live-build/helpers/lh_build

38 lines
746 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
2008-03-06 14:43:00 -01:00
# Copyright (C) 2006-2008 Daniel Baumann <daniel@debian.org>
2007-09-23 08:04:48 +00:00
#
# 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:05:11 +00:00
# Including common functions
LH_BASE="${LH_BASE:-/usr/share/live-helper}"
for FUNCTION in "${LH_BASE}"/functions/*.sh
2007-09-23 08:04:48 +00:00
do
2007-09-23 08:05:11 +00:00
. "${FUNCTION}"
2007-09-23 08:04:48 +00:00
done
2007-09-23 08:05:11 +00:00
# Setting static variables
2007-09-23 08:04:48 +00:00
DESCRIPTION="build a Debian Live system"
HELP=""
USAGE="${PROGRAM} [--force]"
Arguments "${@}"
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
2007-09-23 08:05:11 +00:00
# Building binary images
2007-09-23 08:04:52 +00:00
lh_binary ${*}
2007-09-23 08:04:46 +00:00
2007-09-23 08:05:11 +00:00
# Building source images
2007-09-23 08:04:52 +00:00
lh_source ${*}