2016-12-05 13:12:19 -06:00
|
|
|
###############################################################################
|
|
|
|
## Configuration parameters for SONiC build system
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# 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
|
|
|
|
2017-09-01 17:28:33 -05:00
|
|
|
# SONIC_CONFIG_MAKE_JOBS - set number of parallel make jobs per package.
|
2017-07-07 07:32:50 -05:00
|
|
|
# Corresponding -j argument will be passed to make/dpkg commands that build separate packages
|
|
|
|
SONIC_CONFIG_MAKE_JOBS = $(shell nproc)
|
|
|
|
|
2019-06-20 11:19:33 -05:00
|
|
|
# SONIC_USE_DOCKER_BUILDKIT - use docker buildkit for build.
|
|
|
|
# If set to y SONiC build system will set environment variable DOCKER_BUILDKIT=1
|
|
|
|
# to enable docker buildkit.
|
|
|
|
# This options will speed up docker image build time.
|
|
|
|
# NOTE: SONIC_USE_DOCKER_BUILDKIT will produce larger installable SONiC image
|
|
|
|
# because of a docker bug (more details: https://github.com/moby/moby/issues/38903)
|
|
|
|
# SONIC_USE_DOCKER_BUILDKIT = y
|
|
|
|
|
2018-11-01 20:00:00 -05:00
|
|
|
# SONIC_CONFIG_USE_NATIVE_DOCKERD_FOR_BUILD - use native dockerd for build.
|
|
|
|
# If set to y SONiC build container will use native dockerd instead of dind for faster build
|
|
|
|
# SONIC_CONFIG_USE_NATIVE_DOCKERD_FOR_BUILD = y
|
|
|
|
|
2016-12-05 13:12:19 -06:00
|
|
|
# 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.
|
2018-03-27 15:39:04 -05:00
|
|
|
# If set to y SONiC will get the minigraph from graph service. Graph service URL need to be
|
2017-02-17 15:47:01 -06:00
|
|
|
# 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
|
|
|
|
|
2019-12-04 06:50:56 -06:00
|
|
|
# ENABLE_ZTP - installs Zero Touch Provisioning support.
|
|
|
|
# ENABLE_ZTP = y
|
|
|
|
|
2018-03-27 15:39:04 -05:00
|
|
|
# SHUTDOWN_BGP_ON_START - if set to y all bgp sessions will be in admin down state when
|
2017-06-12 13:05:22 -05:00
|
|
|
# bgp service starts.
|
|
|
|
# SHUTDOWN_BGP_ON_START = y
|
|
|
|
|
2018-03-06 01:55:37 -06:00
|
|
|
# ENABLE_PFCWD_ON_START - if set to y PFC Watchdog (PFCWD) will be enabled all server-facing ports
|
|
|
|
# by default for TOR switch
|
|
|
|
# ENABLE_PFCWD_ON_START = y
|
|
|
|
|
2019-08-15 04:20:18 -05:00
|
|
|
# INSTALL_DEBUG_TOOLS - installs debugging tools in baseline docker
|
2017-02-21 21:04:43 -06:00
|
|
|
# Uncomment next line to enable:
|
2019-08-15 04:20:18 -05:00
|
|
|
# INSTALL_DEBUG_TOOLS = y
|
2017-04-20 11:12:27 -05:00
|
|
|
|
|
|
|
# SONIC_ROUTING_STACK - specify the routing-stack being elected to drive SONiC's control-plane.
|
2018-10-02 12:24:59 -05:00
|
|
|
# Supported routing stacks on SONiC are:
|
|
|
|
# routing-stacks: quagga, frr.
|
2019-05-08 01:40:40 -05:00
|
|
|
SONIC_ROUTING_STACK = frr
|
2017-05-30 18:17:03 -05:00
|
|
|
|
|
|
|
# ENABLE_SYNCD_RPC - build docker-syncd with rpc packages for testing purposes.
|
|
|
|
# Uncomment to enable:
|
|
|
|
# ENABLE_SYNCD_RPC = y
|
2018-03-27 15:39:04 -05:00
|
|
|
|
2017-09-19 18:23:31 -05:00
|
|
|
# Enable Origanization Extensions - Specific to the deployment scenarios of the Organization
|
|
|
|
ENABLE_ORGANIZATION_EXTENSIONS = y
|
2018-03-27 15:39:04 -05:00
|
|
|
|
2018-06-19 17:59:12 -05:00
|
|
|
# Debugging option allows sonic debian packages to get built including symbols
|
|
|
|
# information. Profiling option, disables compiler optimizations (-O0) as well
|
|
|
|
# as includes symbols information. Given that 'profiling' option is a superset
|
|
|
|
# of 'debugging' one, user should only enable either one option or the other --
|
|
|
|
# if both options are enabled, the 'profiling' one will prevail.
|
|
|
|
#SONIC_DEBUGGING_ON = y
|
|
|
|
#SONIC_PROFILING_ON = y
|
|
|
|
|
2018-03-27 15:39:04 -05:00
|
|
|
# ENABLE_SYSTEM_TELEMETRY - build docker-sonic-telemetry for system telemetry support
|
2019-02-28 18:27:29 -06:00
|
|
|
ENABLE_SYSTEM_TELEMETRY = y
|
2018-07-25 10:14:18 -05:00
|
|
|
|
|
|
|
# DEFAULT_KERNEL_PROCURE_METHOD - default method for obtaining kernel
|
|
|
|
# build: build kernel from source
|
|
|
|
# download: download pre-built kernel from Azure storage.
|
|
|
|
DEFAULT_KERNEL_PROCURE_METHOD = build
|
2018-11-26 20:19:12 -06:00
|
|
|
|
|
|
|
# FRR user and group id values. These only take effect when SONIC_ROUTING_STACK is frr.
|
|
|
|
# Note: these values match the admin uid/gid of the host's admin account. If these values
|
|
|
|
# change and user doesn't want the frr uid/gid to potentially match a random user on the
|
|
|
|
# host, then either the appropriate account and group will need to be created on the host
|
|
|
|
# manually or changes need to be made when the image is built to create the account and
|
|
|
|
# group during installation.
|
2019-01-16 20:34:41 -06:00
|
|
|
FRR_USER_UID = 300
|
|
|
|
FRR_USER_GID = 300
|
2019-03-29 17:25:17 -05:00
|
|
|
|
|
|
|
# Default VS build memory preparation
|
|
|
|
DEFAULT_VS_PREPARE_MEM = yes
|
2019-09-14 22:27:09 -05:00
|
|
|
|
|
|
|
# ENABLE_SYSTEM_SFLOW - build docker-sonic-sflow for sFlow support
|
|
|
|
ENABLE_SFLOW = y
|
SONiC Management Framework Release 1.0 (#3488)
* Added sonic-mgmt-framework as submodule / docker
* fix build issues
* update sonic-mgmt-framework submodule branch to master
* Merged changes 70007e6d2ba3a4c0b371cd693ccc63e0a8906e77..00d4fcfed6a759e40d7b92120ea0ee1f08300fc6
00d4fcfed6a759e40d7b92120ea0ee1f08300fc6 Modified environemnt variables
* Changes to build sonic-mgmt-framework docker
* bumped up sonic-mgmt-framework commit-id
* version bump for sonic-mgmt-framework commit-it
* bumped up sonic-mgmt-framework commit-id
* Add python packages to docker
* Build fix for docker with python packages
* added libyang as dependent package
* Allow building images on NFS-mounted clones
Prior to this change, `build_debian.sh` would generate a Debian
filesystem in `./fsroot`. This needs root permissions, and one of the
tests that is performed is whether the user can create a character
special file in the filesystem (using mknod).
On most NFS deployments, `root` is the least privileged user, and cannot
run mknod. Also, attempting to run commands like rm or mv as root would
fail due to permission errors, since the root user gets mapped to an
unprivileged user like `nobody`.
This commit changes the location of the Debian filesystem to `/fsroot`,
which is a tmpfs mount within the slave Docker. The default squashfs,
docker tarball and zip files are also created within /tmp, before being
copied back to /sonic as the regular user.
The side effect of this change is that the contents of `/fsroot` are no
longer available once the slave container exits, however they are
available within the squashfs image.
Signed-off-by: Nirenjan Krishnan <Nirenjan.Krishnan@dell.com>
* bumped up sonc-mgmt-framework commit to include PR #18
* REST Server startup script is enahnced to read the settings from
ConfigDB. Below table provides mapping of db field to command line
argument name.
============================================================
ConfigDB entry key Field name REST Server argument
============================================================
REST_SERVER|default port -port
REST_SERVER|default client_auth -client_auth
REST_SERVER|default log_level -v
DEVICE_METADATA|x509 server_crt -cert
DEVICE_METADATA|x509 server_key -key
DEVICE_METADATA|x509 ca_crt -cacert
============================================================
* Replace src/telemetry as submodule to sonic-telemetry
* Update telemetry commit HEAD
* Update sonic-telemetry commit HEAD
* libyang env path update
* Add libyang dependency to telemetry
* Add scripts to create JSON files for CLI backend
Scripts to create /var/platform/syseeprom and /var/platform/system, which are back-end
files for CLI, for system EEPROM and system information.
Signed-off-by: Howard Persh <Howard_Persh@dell.com>
* In startup script, create directory where CLI back-end files live
Signed-off-by: Howard Persh <Howard_Persh@dell.com>
* build dependency pkgs added to docker for build failure fix
* Changes to fix build issue for mgmt framework
* Fix exec path issue with telemetry
* s5232[device] PSU detecttion and default led state support
* Processing of first boot in rc.local should not have premature exit
Signed-off-by: Howard Persh <Howard_Persh@dell.com>
* docker mount options added for platform, system features
* bumped up sonic-mgmt-framework commit id to pick 23rd July 2019 changes
* Added mount options for telemetry docker to get access for system and platform info.
* Update commit for sonic-utilities
* [dell]: Corrected dport map and renamed config files for S5232F
* Fix telemetry submodule commit
* added support for sonic-cli console
* [Dell S5232F, Z9264F] Harden FPGA driver kernel module
For Dell S5232F and Z9264F platforms, be more strict when checking state
in ISR of FPGA driver, to harden against spurious interrupts.
Signed-off-by: Howard Persh <Howard_Persh@dell.com>
* update mgmt-framework submodule to 27th Aug commit.
* remove changes not related to mgmt-framework and sonic-telemetry
* Revert "Replace src/telemetry as submodule to sonic-telemetry"
This reverts commit 11c31929759a17122782d4944066a6ac8453b78d.
* Revert "Replace src/telemetry as submodule to sonic-telemetry"
This reverts commit 11c31929759a17122782d4944066a6ac8453b78d.
* make submodule changes and remove a change not related to PR
* more changes
* Update .gitmodules
* Update Dockerfile.j2
* Update .gitmodules
* Update .gitmodules
* Update .gitmodules
reverting experimental change
* Removed syspoll for release_1.0
Signed-off-by: Jeff Yin <29264773+jeff-yin@users.noreply.github.com>
* Update docker-sonic-mgmt-framework.mk
* Update sonic-mgmt-framework.mk
* Update sonic-mgmt-framework.mk
* Update docker-sonic-mgmt-framework.mk
* Update docker-sonic-mgmt-framework.mk
* Revert "Processing of first boot in rc.local should not have premature exit"
This reverts commit e99a91ffc28a0fd13f4ad458719d2511c3665431.
* Remove old telemetry directory
* Update docker-sonic-mgmt-framework.mk
* Resolving merge conflict with Azure
* Reverting the wrong merge
* Use CVL_SCHEMA_PATH instead of changing directory for telemetry startup
* Add missing export
* Add python mmh3 to slave dockerfile
* Remove sonic-mgmt-framework build dep for telemetry, fix dialout startup issues
* Provided flag to disable compiling mgmt-framework
* Update sonic-utilites point latest commit id
* Point sonic-utilities to Azure accepted SHA
* Updating mgmt framework to right sha
* Add sonic-telemetry submodule
* Update the mgmt-framework commit id
Co-authored-by: jghalam <joe.ghalam@gmail.com>
Co-authored-by: Partha Dutta <51353699+dutta-partha@users.noreply.github.com>
Co-authored-by: srideepDell <srideep_devireddy@dell.com>
Co-authored-by: nirenjan <nirenjan@users.noreply.github.com>
Co-authored-by: Sachin Holla <51310506+sachinholla@users.noreply.github.com>
Co-authored-by: Eric Seifert <seiferteric@gmail.com>
Co-authored-by: Howard Persh <hpersh@yahoo.com>
Co-authored-by: Jeff Yin <29264773+jeff-yin@users.noreply.github.com>
Co-authored-by: Arunsundar Kannan <31632515+arunsundark@users.noreply.github.com>
Co-authored-by: rvasanthm <51932293+rvasanthm@users.noreply.github.com>
Co-authored-by: Ashok Daparthi-Dell <Ashok_Daparthi@Dell.com>
Co-authored-by: anand-kumar-subramanian <51383315+anand-kumar-subramanian@users.noreply.github.com>
2019-12-23 23:47:16 -06:00
|
|
|
|
|
|
|
# ENABLE_MGMT_FRAMEWORK - build docker-sonic-mgt-framework for CLI and REST server support
|
|
|
|
ENABLE_MGMT_FRAMEWORK = y
|
2020-01-14 19:13:45 -06:00
|
|
|
|
|
|
|
# ENABLE_RESTAPI - build docker-sonic-restapi for configuring the switch using REST APIs
|
|
|
|
ENABLE_RESTAPI = n
|
2020-02-21 12:20:07 -06:00
|
|
|
|
|
|
|
# ENABLE_NAT - build docker-sonic-nat for nat support
|
|
|
|
ENABLE_NAT = y
|
2020-04-16 23:54:45 -05:00
|
|
|
|
|
|
|
# INSTALL_KUBERNETES - if set to y kubernetes packages are installed to be able to
|
|
|
|
# run as worker node in kubernetes cluster.
|
|
|
|
INSTALL_KUBERNETES = n
|
|
|
|
|
|
|
|
# KUBERNETES_VERSION - Set to the required version.
|
|
|
|
# K8s_GCR_IO_PAUSE_VERSION - Version of k8s universal pause container image
|
2020-08-06 18:23:27 -05:00
|
|
|
# These are Used *only* when INCLUDE_KUBERNETES=y
|
2020-04-16 23:54:45 -05:00
|
|
|
# NOTE: As a worker node it has to run version compatible to kubernetes master.
|
|
|
|
#
|
2020-07-24 12:14:24 -05:00
|
|
|
KUBERNETES_VERSION = 1.18.6
|
|
|
|
KUBERNETES_CNI_VERSION = 0.8.6
|
2020-04-16 23:54:45 -05:00
|
|
|
K8s_GCR_IO_PAUSE_VERSION = 3.2
|
|
|
|
|