Skip to content

Commit 5322ac9

Browse files
authored
Merge branch 'master' into cpu_queues
2 parents e4bbd0f + 9048901 commit 5322ac9

File tree

430 files changed

+114787
-1581
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

430 files changed

+114787
-1581
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ assignees: ''
77

88
---
99

10-
**We do not triage issue for this repo. All issues are triaged in Azure/sonic-buildimage repo**
10+
**We do not triage issue for this repo. All issues are triaged in sonic-net/sonic-buildimage repo**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# This is a basic workflow to help you get started with GitHub Actions
2+
3+
name: Run the shell script to generate sonic image links in sonic_image_links.json in a dedicated branch
4+
5+
# Run the script once in a minute. Github may take 15 minutes to run this even though we request once in a minute, which is OK.
6+
on:
7+
schedule:
8+
- cron: '* * * * *'
9+
10+
jobs:
11+
build:
12+
# The type of runner that the job will run on
13+
runs-on: ubuntu-latest
14+
15+
# Steps represent a sequence of tasks that will be executed as part of the job
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- name: Run the script to build a json file with details about various builds for various platforms
20+
run: sh ./generate_sonic_image_links.sh
21+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This is a basic workflow to help you get started with GitHub Actions
2+
3+
name: Run the shell script to generate sonic image links in supported_devices_platforms_md.sh in a dedicated branch
4+
5+
# Run the script once in a minute. Github may take 15 minutes to run this even though we request once in a minute, which is OK.
6+
on:
7+
schedule:
8+
- cron: '5 * * * *'
9+
10+
jobs:
11+
build:
12+
# The type of runner that the job will run on
13+
runs-on: ubuntu-latest
14+
15+
# Steps represent a sequence of tasks that will be executed as part of the job
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- name: Run the script to build a json file with details about various builds for various platforms
20+
run: sh ./supported_devices_platforms_md.sh

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
*~
22
*.swp
33
*.un~
4+
.DS_Store
5+
.vscode/

CONTRIBUTING.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ For example:
3333
* Use a pull request to do code review
3434
* Use issues to keep track of what is going on
3535

36-
##Expectations for pull requests
37-
Pull requests should be free of any known bugs and be accompanied by tests and appropriate documentation. Test coverage may include unit tests, integration tests such as [PTF tests](https://github.com/Azure/SONiC/wiki/HOWTO-write-a-PTF-Test) defined in the [sonic-mgmt repo](https://github.com/Azure/sonic-mgmt/tree/master/ansible/roles/test/tasks).
36+
## Expectations for pull requests
37+
Pull requests should be free of any known bugs and be accompanied by tests and appropriate documentation. Test coverage may include unit tests, integration tests such as [PTF tests](https://github.com/sonic-net/SONiC/wiki/HOWTO-write-a-PTF-Test) defined in the [sonic-mgmt repo](https://github.com/sonic-net/sonic-mgmt/tree/master/ansible/roles/test/tasks).
3838

3939
## Commiting new test
40-
When commiting a new feature with a new test, please complete a [test plan from the template](doc/SONiC%20Test%20Plan%20Template.md)
40+
When committing a new feature with a new test, please complete a [test plan from the template](doc/SONiC%20Test%20Plan%20Template.md)
4141

4242

43-
##Responding to pull requests
43+
## Responding to pull requests
4444
Responsible individual: A contribution needs to be looked at by its
4545
maintainers. In the absence of the maintainer, the project leader can respond.
4646
A pull request should be responded to in approximately 48 hours. This does
4747
not mean the contribution will be resolved in 48 hours. It could even mean
4848
an email that states: “busy now, will get to it soon.”
4949

50-
##Contributors License Agreement
51-
All contributors must sign a contribution license agreement before
52-
contributions can be accepted. Send email to [sonic-cla](mailto:[email protected])
53-
to request a copy of the contributors a license agreement to be signed.
50+
## Contributors License Agreement
51+
All contributors must sign an [Individual Contributor License Agreement (ICLA)](https://docs.linuxfoundation.org/lfx/easycla/v2-current/contributors/individual-contributor) before
52+
contributions can be accepted. This process is managed by the [Linux Foundation - EasyCLA](https://easycla.lfx.linuxfoundation.org/) and automated
53+
via a GitHub bot. If the contributor has not yet signed a CLA, the bot will create a comment on the pull request containing a link to electronically sign the CLA.

MoM.html

100644100755
+456-1
Large diffs are not rendered by default.
+150
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title>SONiC | Home</title>
8+
9+
<!-- Favicon -->
10+
<link rel="shortcut icon" href="assets/img/logo_on_tab.png" type="image/x-icon">
11+
12+
<!-- Font awesome -->
13+
<link href="assets/css/font-awesome.css" rel="stylesheet">
14+
<!-- Bootstrap -->
15+
<link href="assets/css/bootstrap.css" rel="stylesheet">
16+
<!-- Slick slider -->
17+
<link rel="stylesheet" type="text/css" href="assets/css/slick.css">
18+
<!-- Fancybox slider -->
19+
<link rel="stylesheet" href="assets/css/jquery.fancybox.css" type="text/css" media="screen" />
20+
<!-- Theme color -->
21+
<link id="switcher" href="assets/css/theme-color/default-theme.css" rel="stylesheet">
22+
23+
<!-- Main style sheet -->
24+
<link href="assets/css/style.css" rel="stylesheet">
25+
26+
27+
<!-- Google Fonts -->
28+
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
29+
<link href='https://fonts.googleapis.com/css?family=Roboto:400,400italic,300,300italic,500,700' rel='stylesheet' type='text/css'>
30+
31+
32+
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
33+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
34+
<!--[if lt IE 9]>
35+
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
36+
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
37+
<![endif]-->
38+
39+
</head>
40+
<body>
41+
42+
<!--START SCROLL TOP BUTTON -->
43+
<a class="scrollToTop" href="#">
44+
<i class="fa fa-angle-up"></i>
45+
</a>
46+
<!-- END SCROLL TOP BUTTON -->
47+
48+
<!-- Start menu -->
49+
<section id="mu-menu">
50+
</section>
51+
<!-- End menu -->
52+
<!-- Start search box -->
53+
<div id="mu-search">
54+
<div class="mu-search-area">
55+
<button class="mu-search-close"><span class="fa fa-close"></span></button>
56+
<div class="container">
57+
<div class="row">
58+
<div class="col-md-12">
59+
<form class="mu-search-form">
60+
<input type="search" placeholder="Type Your Keyword(s) & Hit Enter">
61+
</form>
62+
</div>
63+
</div>
64+
</div>
65+
</div>
66+
</div>
67+
<!-- End search box -->
68+
<!-- Page breadcrumb -->
69+
<section id="mu-page-breadcrumb">
70+
<div class="container">
71+
<div class="row">
72+
<div class="col-md-12">
73+
<div class="mu-page-breadcrumb-area">
74+
<h2>OCP Virtual Summit 2020 SONiC Demos</h2>
75+
</div>
76+
</div>
77+
</div>
78+
</div>
79+
</section>
80+
<!-- End breadcrumb -->
81+
82+
<!-- Start contact -->
83+
<section id="mu-contact">
84+
<div class="container">
85+
<div class="row">
86+
<div class="col-md-12">
87+
<div class="mu-contact-area">
88+
<!-- start title -->
89+
<div class="mu-title">
90+
<p> <a href="https://www.youtube.com/watch?v=X8nyfmroabg&feature=youtu.be" > Disaggregating Cisco 8000: SONiC on fixed and modular hardware</a></p>
91+
<p> <a href="https://www.youtube.com/watch?v=mU33ehcIdX0&feature=youtu.be" > Deep Dive: Enabling SONiC on the Cisco 8000 Platform</a></p>
92+
<p> <a href="https://www.youtube.com/watch?v=yWTqsekKyq8&feature=youtu.be" > Running SONiC on the Cisco 8000</a></p>
93+
<p> <a href="https://www.youtube.com/watch?v=wK-N6tWTUJs&feature=youtu.be" > Ixia UHD100T32 Emulates Rack of Servers to Validate SONiC 100GE Switch</a></p>
94+
<p> <a href="https://ent.box.com/s/vrw36hh8usy4vqc70gmizjdevajwhd1e" > Broadcom: Congestion Visibility</a></p>
95+
<p> <a href="https://ent.box.com/s/f787fyse1kb5s7z9xa7w6dlizhezbgf5" > Broadcom: High Scale NAT Demo</a></p>
96+
<p> <a href="https://www.youtube.com/watch?v=KZMyxmM8gCs" > Insidepacket : Load balancer, disaggregated firewall</a></p>
97+
<p> <a href="https://www.youtube.com/watch?v=GMXuPKmfE60" > Aviz Networks AVB Demo</a></p>
98+
<p> <a href="https://www.youtube.com/watch?v=S0mzqHkYPCo" > Aviz Networks CLI Demo</a></p>
99+
<p> <a href="https://dell.app.box.com/s/hre0v7v82a65muvbntfpmwr809rst7o6" > Dell sFlow on SONiC</a></p>
100+
</div>
101+
<!-- end title -->
102+
</div>
103+
</div>
104+
</div>
105+
</div>
106+
</section>
107+
<!-- End contact -->
108+
109+
110+
<!-- Start footer -->
111+
<footer id="mu-footer">
112+
113+
<!-- start footer bottom -->
114+
<div class="mu-footer-bottom">
115+
<div class="container">
116+
<div class="mu-footer-bottom-area">
117+
</div>
118+
</div>
119+
</div>
120+
<!-- end footer bottom -->
121+
</footer>
122+
<!-- End footer -->
123+
124+
125+
126+
127+
128+
129+
<!-- jQuery library -->
130+
<script src="assets/js/jquery.min.js"></script>
131+
<script type="text/javascript">
132+
$("#mu-menu").load("menu.html");
133+
</script>
134+
<!-- Include all compiled plugins (below), or include individual files as needed -->
135+
<script src="assets/js/bootstrap.js"></script>
136+
<!-- Slick slider -->
137+
<script type="text/javascript" src="assets/js/slick.js"></script>
138+
<!-- Counter -->
139+
<script type="text/javascript" src="assets/js/waypoints.js"></script>
140+
<script type="text/javascript" src="assets/js/jquery.counterup.js"></script>
141+
<!-- Mixit slider -->
142+
<script type="text/javascript" src="assets/js/jquery.mixitup.js"></script>
143+
<!-- Add fancyBox -->
144+
<script type="text/javascript" src="assets/js/jquery.fancybox.pack.js"></script>
145+
146+
<!-- Custom js -->
147+
<script src="assets/js/custom.js"></script>
148+
149+
</body>
150+
</html>
155 KB
Binary file not shown.

0 commit comments

Comments
 (0)