Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[platform]: remove sku from build parameter #350

Merged
merged 2 commits into from
Mar 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
fsroot/
fs.*
target/
*.deb
*.changes

# Subdirectories in src
src/hiredis/*
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ DOCKER_BUILD = docker build \
-C sonic \
-f slave.mk \
PLATFORM=$(PLATFORM) \
SKU=$(SKU) \
DEBUG_BUILD=$(DEBUG_BUILD) \
ENABLE_DHCP_GRAPH_SERVICE=$(ENABLE_DHCP_GRAPH_SERVICE) \
$@
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ You also need to change all git paths to relative path as we build all submodule

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

make configure PLATFORM=[ASIC_VENDOR] SKU=[HW_SKU]
make configure PLATFORM=[ASIC_VENDOR]
make

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

Supported PLATFORM and SKU are:
- PLATFORM=broadcom SKU=Force10-S6000
- PLATFORM=mellanox SKU=ACS-MSN2700
- PLATFORM=cavium SKU=AS7512
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.
Expand Down
Loading