Newer
Older
# compile_pkgs configuration example
# Place this file to one of following paths:
# * ${src_dir}/turris-build.conf
# * ~/.turris-build
# * ./turris-build
# Where latter paths overrides configuration from previous ones.
# Note that some of these configuration can be overriden by script arguments.
# This file is sourced to bash script (compile_pkgs) so you can use any bash
# compatible syntax here.
# Number of jobs to be passed to make calls
BUILD_JOBS="$(nproc)"
# Path to private signing key
# Set target board. Allowed arguments are: turris, omnia and mox
set_target mox
# Target publish branch
#PUBLISH_BRANCH="hbs"
# Force build (set to some number to try build multiple times)
#FORCE=1
# Path to git mirror directory.
# Once set, you can init it with: `compile_fw mirror_feeds`
# Path to downloads mirror directory.
# Useful when multiple builds are being run on same machine or if you don't want t
# odelete downlaoded sources every time you do dirclean.
# Path to persistent compilation cache directory for host compilations
# This is useful if you are doing multiple builds or if you repeat same build
# multiple times.
# Path to persistent compilation cache directory for target compilations
# This is same as CCACHE_HOST_DIR with exception that it is used for target
# compilation.
## Variables you most probably don't want to change ##############################
# Additional arguments passed to OpenWRT make call (note that this is for all make
# calls in OpenWRT)
## Variables that you most probably want to let in default #######################
# Set this variable to clone OpenWRT tree in full depth not just latest commit