mirror of
https://github.com/Telecominfraproject/oopt-goldstone.git
synced 2025-10-31 10:07:59 +00:00
33 lines
880 B
Bash
Executable File
33 lines
880 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" == "clean" ]; then
|
|
sudo rm -rf RELEASE/ REPO/ builds/ make/ packages/ setup.env tools/ .gitignore
|
|
exit 0
|
|
fi
|
|
|
|
#
|
|
# This repository was originally generated using the following command
|
|
# run from the root of the repository:
|
|
|
|
sm/ONL/tools/onl-nos-create.py \
|
|
--root . \
|
|
--name "SONiC+ONL Network OS" \
|
|
--prefix x1 \
|
|
--arches amd64 \
|
|
--debian jessie stretch \
|
|
--copyright "Copyright 2018 Big Switch Networks" \
|
|
--maintainer "support@bigswitch.com" \
|
|
--version 1.0.0 \
|
|
--changelog "Initial" \
|
|
--support support@bigswitch.com \
|
|
--csr-C US \
|
|
--csr-ST CA \
|
|
--csr-O "Open Compute Project" \
|
|
--csr-localityName "Santa Clara" \
|
|
--csr-commonName Networking \
|
|
--csr-organizationUnitName "Open Network Linux" \
|
|
--csr-emailAddress support@bigswitch.com \
|
|
--write-files \
|
|
$@ \
|
|
# BLANK
|