Skip to content

Commit 15db520

Browse files
committed
Merge pull request opennetworklinux#4 from jnealtowns/master
AS5600 and AS5610 Support.
2 parents fe23349 + df54c5b commit 15db520

76 files changed

Lines changed: 1088 additions & 24 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
############################################################
22
# <bsn.cl fy=2013 v=onl>
3-
#
4-
# Copyright 2013, 2014 BigSwitch Networks, Inc.
5-
#
3+
#
4+
# Copyright 2013, 2014 BigSwitch Networks, Inc.
5+
#
66
# Licensed under the Eclipse Public License, Version 1.0 (the
77
# "License"); you may not use this file except in compliance
88
# with the License. You may obtain a copy of the License at
9-
#
9+
#
1010
# http://www.eclipse.org/legal/epl-v10.html
11-
#
11+
#
1212
# Unless required by applicable law or agreed to in writing,
1313
# software distributed under the License is distributed on an
1414
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
1515
# either express or implied. See the License for the specific
1616
# language governing permissions and limitations under the
1717
# License.
18-
#
18+
#
1919
# </bsn.cl>
2020
############################################################
2121
#
2222
# These are the platforms to include in this installer build.
2323
#
2424
############################################################
25-
INSTALLER_PLATFORMS := powerpc-quanta-lb9-r0 powerpc-quanta-ly2-r0
25+
INSTALLER_PLATFORMS := powerpc-quanta-lb9-r0 \
26+
powerpc-quanta-ly2-r0 \
27+
powerpc-as5610-52x \
28+
powerpc-as5600-52x
29+
2630

builds/swi/powerpc/all/rootfs/repo.all

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[deb-all]
2-
packages= python-flask platform-config-powerpc-quanta-lb9-r0 platform-config-powerpc-quanta-ly2-r0 platform-config-powerpc-quanta-lb9a-r0 vendor-config-xonl vendor-config-quanta
2+
packages= python-flask platform-config-powerpc-quanta-lb9-r0 platform-config-powerpc-quanta-ly2-r0 platform-config-powerpc-quanta-lb9a-r0 vendor-config-onl vendor-config-quanta vendor-config-accton platform-config-powerpc-as5610-52x platform-config-powerpc-as5600-52x
33
source=copy:__DIR__/all ./
44
omitdebsrc=true
55

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
############################################################
2+
# <bsn.cl fy=2013 v=onl>
3+
#
4+
# Copyright 2013, 2014 BigSwitch Networks, Inc.
5+
#
6+
# Licensed under the Eclipse Public License, Version 1.0 (the
7+
# "License"); you may not use this file except in compliance
8+
# with the License. You may obtain a copy of the License at
9+
#
10+
# http://www.eclipse.org/legal/epl-v10.html
11+
#
12+
# Unless required by applicable law or agreed to in writing,
13+
# software distributed under the License is distributed on an
14+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
15+
# either express or implied. See the License for the specific
16+
# language governing permissions and limitations under the
17+
# License.
18+
#
19+
# </bsn.cl>
20+
############################################################
21+
ifndef ONL
22+
$(error $$ONL is undefined.)
23+
endif
24+
25+
# ONL_REQUIRED_SUBMODULES :=
26+
ONL_REQUIRED_PACKAGES := vendor-config-onl:all vendor-config-accton:all
27+
28+
include $(ONL)/make/component.mk
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# -*- Makefile -*-
2+
############################################################
3+
# <bsn.cl fy=2013 v=onl>
4+
#
5+
# Copyright 2013, 2014 BigSwitch Networks, Inc.
6+
#
7+
# Licensed under the Eclipse Public License, Version 1.0 (the
8+
# "License"); you may not use this file except in compliance
9+
# with the License. You may obtain a copy of the License at
10+
#
11+
# http://www.eclipse.org/legal/epl-v10.html
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
16+
# either express or implied. See the License for the specific
17+
# language governing permissions and limitations under the
18+
# License.
19+
#
20+
# </bsn.cl>
21+
############################################################
22+
############################################################
23+
ifndef ONL
24+
$(error $$ONL is not set)
25+
endif
26+
27+
include $(ONL)/make/config.mk
28+
29+
all:
30+
@echo Run 'make deb'
31+
32+
.PHONY: deb
33+
deb:
34+
$(MAKE) -C deb
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
############################################################
2+
# <bsn.cl fy=2013 v=onl>
3+
#
4+
# Copyright 2013, 2014 BigSwitch Networks, Inc.
5+
#
6+
# Licensed under the Eclipse Public License, Version 1.0 (the
7+
# "License"); you may not use this file except in compliance
8+
# with the License. You may obtain a copy of the License at
9+
#
10+
# http://www.eclipse.org/legal/epl-v10.html
11+
#
12+
# Unless required by applicable law or agreed to in writing,
13+
# software distributed under the License is distributed on an
14+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
15+
# either express or implied. See the License for the specific
16+
# language governing permissions and limitations under the
17+
# License.
18+
#
19+
# </bsn.cl>
20+
############################################################
21+
ARCH=all
22+
PACKAGE_NAMES=platform-config-powerpc-as5600-52x
23+
include ../../../../../make/debuild.mk
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
files
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
platform-config-powerpc-as5600-52x (0.1.0bsn1~ubuntu1) UNRELEASED; urgency=low
2+
3+
* Initial release.
4+
5+
-- Support <support@bigswitch.com> Fri, 03 Jan 2014 07:28:59 -0800
6+
7+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Source: platform-config-powerpc-as5600-52x
2+
Section: misc
3+
Priority: optional
4+
Maintainer: Support <support@bigswitch.com>
5+
Build-Depends: debhelper (>= 9)
6+
Standards-Version: 3.8.4
7+
8+
Package: platform-config-powerpc-as5600-52x
9+
Architecture: all
10+
Depends:
11+
Description: Platform Configuration files for powerpc-as5600-52x.
12+
Platform Configuration files for powerpc-as5600-52x.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Copyright 2013 Big Switch Networks

0 commit comments

Comments
 (0)