ec818dbbc3
commit includes the default configuration files, which don't work with Debian "etch".
54 lines
1.5 KiB
Text
54 lines
1.5 KiB
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
|
|
|
|
|
|
####################### validation ########################
|
|
|
|
# language of validation (select web interface language)
|
|
VALIDATE_LANGUAGE=en
|
|
|
|
# directory of the test-cases
|
|
VALIDATE_TEST_CASES_DIR=$ROOT_DIR/validation/test-cases
|
|
|
|
# override these settings if the CryptoBox uses a non-default IP
|
|
VALIDATE_HOST_IP_DEFAULT=192.168.0.23
|
|
VALIDATE_HOST_IP_CHANGED=192.168.0.24
|
|
|
|
# destination directories for the results
|
|
VALIDATE_REPORT_DIR=/tmp/cryptobox-validation-$$
|
|
VALIDATE_REPORT_DIR=$ROOT_DIR/validation/report
|
|
VALIDATE_SUMMARY_TEMPLATE_DIR=$ROOT_DIR/validation/templates
|
|
|
|
|