-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.conf
32 lines (25 loc) · 1.02 KB
/
default.conf
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
# Default configuration file for sysbuild(1) for user builds.
#
# This default configuration file tells sysbuild to place the NetBSD
# source tree and all build products within the user's home directory.
#
# This file does not assume that the host is NetBSD. For that reason,
# it cannot automatically determine "valid" settings for some variables
# like MACHINES or GIT_*_BRANCH and therefore only generic values are set.
# Place all build files in the user's home directory.
BUILD_ROOT="${HOME}/netbsd"
# Store release files relative to the build root.
RELEASEDIR="${BUILD_ROOT}/release"
# Place source trees in the home directory as well.
SRCDIR="${BUILD_ROOT}/src"
#XSRCDIR="${BUILD_ROOT}/usr/xsrc"
# Build for the reference machine only. Add more if desired.
MACHINES="amd64"
# What to build for every machine.
BUILD_TARGETS="release"
# Do not perform update builds by default.
INCREMENTAL_BUILD="no"
# Set the Git repo and the desired release.
SCM="git"
GIT_SRC_REPO="https://github.com/NetBSD/src.git"
#GIT_SRC_BRANCH="netbsd-6"