Scripts which perform an installable binary image build for SONiC
Go to file
lguohan 0ed9b3ce28 [platform]: remove sku from build parameter (#350)
different sku will be contained in a single one sonic image.
no longer need to specify sku at the build time
2017-03-01 17:05:13 -08:00
device [platform]: remove sku from build parameter (#350) 2017-03-01 17:05:13 -08:00
dockers [docker-teamd] fix a config bug introduced in #345 (#353) 2017-03-01 14:32:52 -08:00
files [platform]: remove sku from build parameter (#350) 2017-03-01 17:05:13 -08:00
installer [platform]: ingrasys-s9100: Add ingrasys switch s9100 (#318) 2017-02-22 02:15:39 -08:00
platform [build]: allow single src file to build multiple independent debian p… (#349) 2017-03-01 08:32:58 -08:00
rules [build]: allow single src file to build multiple independent debian p… (#349) 2017-03-01 08:32:58 -08:00
sonic-slave [All Dockerfiles]: Prevent apt asking questions on the console (#300) 2017-02-16 21:48:49 -08:00
src [kernel]: update sonic linux kernel to download source from azure storage (#347) 2017-02-28 12:55:48 -08:00
.gitignore [platform]: remove sku from build parameter (#350) 2017-03-01 17:05:13 -08:00
.gitmodules Add Ingrasys S9100 platform submodule (#333) 2017-02-24 04:10:19 -08:00
build_debian.sh [installer]: support platform driver lazy installation (#340) 2017-02-27 13:08:41 -08:00
build_docker.sh Split script: push_docker.sh (#89) 2016-12-01 02:18:59 -08:00
build_image.sh Allow build image with local changes for debug purpose (#247) 2017-02-14 16:56:08 -08:00
functions.sh Squash merge master (11de390) 2016-08-04 10:39:33 -07:00
get_docker-base.sh Add mkdir if the target dir does not exist (#130) 2016-12-16 02:19:15 +00:00
LICENSE updating readme, formatting in license 2016-03-09 17:39:34 +00:00
MAINTAINERS Adding license and maintainers 2016-03-08 19:10:18 -08:00
Makefile [platform]: remove sku from build parameter (#350) 2017-03-01 17:05:13 -08:00
onie-image.conf [docker]: change hardcoded value to DOCKERFS_DIR for docker directory on the disk (#269) 2017-02-06 08:17:16 -08:00
onie-mk-demo.sh Squashed merge master 2016-09-09 17:53:41 -07:00
push_docker.sh push_docker.sh: Remove deprecated comments (#90) 2016-12-01 10:41:29 -08:00
README.buildsystem.md Fix commands in buildsystem README (#147) 2016-12-21 11:50:35 -08:00
README.md [platform]: remove sku from build parameter (#350) 2017-03-01 17:05:13 -08:00
slave.mk [platform]: remove sku from build parameter (#350) 2017-03-01 17:05:13 -08:00
ThirdPartyLicenses.txt Config apt inside docker images to save disk space: auto clean, gz, no trans (#69) 2016-11-16 12:46:15 -08:00

Broadcom: Broadcom Cavium: Cavium Mellanox: Mellanox P4: Broadcom

sonic-buildimage

Build SONiC Switch Images

Description

Build an Open Network Install Environment (ONIE) compatiable network operating system (NOS) installer image for network switches, and also build docker images running inside the NOS.

Prerequisites

SAI Version

SONiC V2 is using SAI 0.9.4.

Clone or fetch the code repository with all git submodules

To clone the code repository recursively, assuming git version 1.9 or newer:

git clone --recursive https://github.com/Azure/sonic-buildimage.git

NOTE: If the repo has already been cloned, however there are no files under the submodule directories (e.g., src/lldpd, src/ptf, src/sonic-linux-kernel, etc.), you can manually fetch all the git submodules as follows:

git submodule update --init --recursive

You also need to change all git paths to relative path as we build all submodules inside the docker:

git submodule foreach --recursive '[ -f .git ] && echo "gitdir: $(realpath --relative-to=. $(cut -d" " -f2 .git))" > .git'

Usage

To build NOS installer image and docker images, run the following commands:

make configure PLATFORM=[ASIC_VENDOR]
make

NOTE: We recommend reserving 50G free space to build one platform.

Supported PLATFORM are:

  • PLATFORM=broadcom
  • PLATFORM=mellanox
  • PLATFORM=cavium
  • PLATFORM=p4

You may find the rules/config file useful. It contains configuration options for the build process, like adding more verbosity or showing dependencies, username and password for base image etc.

Every docker image is built and saved to target/ directory. So, for instance, to build only docker-database, execute:

make target/docker-database.gz

Same goes for debian packages, which are under target/debs/:

make target/debs/swss_1.0.0_amd64.deb

Every target has a clean target, so in order to clean swss, execute:

make target/debs/swss_1.0.0_amd64.deb-clean

It is recommended to use clean targets to clean all packages that are built together, like dev packages for instance. In order to be more familiar with build process and make some changes to it, it is recommended to read this short Documentation.

Notes:

  • If you are running make for the first time, a sonic-slave-${USER} docker image will be built automatically. This may take a while, but it is a one-time action, so please be patient.

  • The root user account is disabled. However, the created user can sudo.

  • The target directory is ./target, containing the NOS installer image and docker images.

    • sonic-generic.bin: SONiC switch installer image (ONIE compatiable)
    • sonic-aboot.bin: SONiC switch installer image (Aboot compatiable)
    • docker-base.gz: base docker image where other docker images are built from, only used in build process (gzip tar archive)
    • docker-database.gz: docker image for in-memory key-value store, used as inter-process communication (gzip tar archive)
    • docker-fpm.gz: docker image for quagga with fpm module enabled (gzip tar archive)
    • docker-orchagent-brcm.gz: docker image for SWitch State Service (SWSS) on Broadcom platform (gzip tar archive)
    • docker-orchagent-cavm.gz: docker image for SWitch State Service (SWSS) on Cavium platform (gzip tar archive)
    • docker-orchagent-mlnx.gz: docker image for SWitch State Service (SWSS) on Mellanox platform (gzip tar archive)
    • docker-syncd-brcm.gz: docker image for the daemon to sync database and Broadcom switch ASIC (gzip tar archive)
    • docker-syncd-cavm.gz: docker image for the daemon to sync database and Cavium switch ASIC (gzip tar archive)
    • docker-syncd-mlnx.gz: docker image for the daemon to sync database and Mellanox switch ASIC (gzip tar archive)
    • docker-sonic-p4.gz: docker image for all-in-one for p4 software switch (gzip tar archive)

Contribution Guide

All contributors must sign a contribution license agreement before contributions can be accepted. Contact sonic-cla-agreements@microsoft.com.

GitHub Workflow

We're following basic GitHub Flow. If you have no idea what we're talking about, check out GitHub's official guide. Note that merge is only performed by the repository maintainer.

Guide for performing commits:

  • Isolate each commit to one component/bugfix/issue/feature
  • Use a standard commit message format:
[component/folder touched]: Description intent of your changes

[List of changes]

Signed-off-by: Your Name your@email.com

For example:

swss-common: Stabilize the ConsumerTable

* Fixing autoreconf
* Fixing unit-tests by adding checkers and initialize the DB before start
* Adding the ability to select from multiple channels
* Health-Monitor - The idea of the patch is that if something went wrong with the notification channel,
  we will have the option to know about it (Query the LLEN table length).

  Signed-off-by: user@dev.null
  • Each developer should fork this repository and add the team as a Contributor
  • Push your changes to your private fork and do "pull-request" to this repository
  • Use a pull request to do code review
  • Use issues to keep track of what is going on

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.