36 lines
932 B
Text
36 lines
932 B
Text
# some local settings for cbox-build.sh and validate.sh
|
|
#
|
|
# previously defined settings:
|
|
# - ROOT_DIR
|
|
#
|
|
|
|
|
|
####################### cbox-build ########################
|
|
|
|
# the build directory (will be ERASED without warning)
|
|
BUILD_DIR="$ROOT_DIR/_builddir"
|
|
|
|
# the cryptobox development files
|
|
CBOX_DEVEL_DIR=$ROOT_DIR/cbox-tree.d
|
|
|
|
# template for live-cd
|
|
TEMPLATE_DIR=$ROOT_DIR/live-cd-tree.d
|
|
|
|
# the iso image
|
|
IMAGE_FILE=$BUILD_DIR/cryptobox.iso
|
|
|
|
# temporary directory
|
|
TMP_DIR=/tmp/$(basename $0)-$$
|
|
|
|
# the virtual harddisk image used for qemu
|
|
HD_IMAGE=/tmp/$(basename $0)-testplatte.img
|
|
|
|
# mkisofs options (the option "-U" is not clean, but it prevents long
|
|
# filenames from getting mapped)
|
|
# TODO: this may prevent windows user from reading the documentation
|
|
MKISOFS_OPTIONS="-allow-multidot -U -D -iso-level 3 -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 1 -boot-info-table -pad -R"
|
|
|
|
# for burning a CD
|
|
CDWRITER=0,0,0
|
|
|
|
|