-
Notifications
You must be signed in to change notification settings - Fork 3
/
turris-build.conf.example
45 lines (39 loc) · 1.6 KB
/
turris-build.conf.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 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
SIGN_KEY="mime.key"
# Set target board. Allowed arguments are: turris1x, omnia and mox
set_target mox
# Force build (set to some number to try build multiple times)
#FORCE=1
# Path to git mirror directory.
#GIT_MIRROR=""
# 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.
#DL_MIRROR=""
# 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.
#CCACHE_HOST_DIR=""
# 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.
#CCACHE_TARGET_DIR=""
## 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)
#BUILD_ARGS=()
## Variables that you most probably want to let in default #######################
# Target publish branch
#PUBLISH_BRANCH="hbs"
# vim: ft=sh