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.
|
|
|
|
SONIC_CONFIG_BUILD_JOBS = $(shell nproc)
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# USERNAME - username for installer build
|
|
|
|
USERNAME = admin
|
|
|
|
|
|
|
|
# PASSWORD - password for installer build
|
2017-01-19 17:40:18 -06:00
|
|
|
PASSWORD = YourPaSsWoRd
|