2016-12-05 13:12:19 -06:00
|
|
|
###############################################################################
|
|
|
|
## Configuration parameters for SONiC build system
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# SONIC_CONFIG_VERBOSE - enable echoing for rules commands.
|
|
|
|
# Uncomment next line to enable:
|
|
|
|
# SONIC_CONFIG_VERBOSE = y
|
|
|
|
|
|
|
|
# SONIC_CONFIG_PRINT_DEPENDENCIES - show dependencies for each invoked target.
|
|
|
|
# Before executing rule for each target its dependencies are printed to console.
|
|
|
|
# Uncomment next line to enable:
|
|
|
|
# SONIC_CONFIG_PRINT_DEPENDENCIES = y
|
|
|
|
|
|
|
|
# SONIC_CONFIG_BUILD_JOBS - set number of jobs for parallel build.
|
|
|
|
# Corresponding -j argument will be passed to make command inside docker
|
|
|
|
# container.
|
2017-03-07 14:32:39 -06:00
|
|
|
SONIC_CONFIG_BUILD_JOBS = 1
|
2016-12-05 13:12:19 -06:00
|
|
|
|
|
|
|
# SONIC_CONFIG_LOG_TO_FILES - print output from execution of rule for each
|
|
|
|
# target into separate log file under target/log/.
|
|
|
|
# Useful when executing parallel build
|
|
|
|
# Uncomment next line to enable:
|
|
|
|
SONIC_CONFIG_LOG_TO_FILES = y
|
|
|
|
|
|
|
|
# SONIC_CONFIG_ENABLE_COLORS - enable colored output in build system.
|
|
|
|
# Comment next line to disable:
|
|
|
|
# SONIC_CONFIG_ENABLE_COLORS = y
|
|
|
|
|
2017-04-12 13:23:48 -05:00
|
|
|
# DEFAULT_USERNAME - default username for installer build
|
|
|
|
DEFAULT_USERNAME = admin
|
2016-12-05 13:12:19 -06:00
|
|
|
|
2017-04-12 13:23:48 -05:00
|
|
|
# DEFAULT_PASSWORD - default password for installer build
|
|
|
|
DEFAULT_PASSWORD = YourPaSsWoRd
|
2017-02-17 15:47:01 -06:00
|
|
|
|
|
|
|
# ENABLE_DHCP_GRAPH_SERVICE - specify the source of minigraph to generate configuration file.
|
|
|
|
# If set to y SONiC will get the minigraph from graph service. Graph service URL need to be
|
|
|
|
# passed through DHCP option 225.
|
|
|
|
# If not set (default behavior) the default minigraph built into the image will be used.
|
|
|
|
# ENABLE_DHCP_GRAPH_SERVICE = y
|
|
|
|
|
2017-02-21 21:04:43 -06:00
|
|
|
# SONIC_CONFIG_DEBUG - install debug packages
|
|
|
|
# Uncomment next line to enable:
|
|
|
|
# SONIC_CONFIG_DEBUG = y
|