summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Kraft <george.kraft@calxeda.com>2013-11-07 12:19:35 -0600
committerGeorge Kraft <george.kraft@calxeda.com>2013-11-07 12:19:35 -0600
commit06768cad65ba1ae9c0b7e437ced811477cd4fbd7 (patch)
tree77fbc89076e682a547953e9ac7b08e7cfefa83cb
parente08354f9c7b26511eeb01209a9a64f5e4b31b6f5 (diff)
downloadcxmanage-06768cad65ba1ae9c0b7e437ced811477cd4fbd7.tar.gz
nojira: Updated copyright headers
-rw-r--r--LICENSE2
-rw-r--r--cxmanage_api/__init__.py2
-rw-r--r--cxmanage_api/cli/__init__.py2
-rw-r--r--cxmanage_api/cli/commands/__init__.py2
-rw-r--r--cxmanage_api/cli/commands/config.py2
-rw-r--r--cxmanage_api/cli/commands/eeprom.py2
-rw-r--r--cxmanage_api/cli/commands/fabric.py2
-rw-r--r--cxmanage_api/cli/commands/fw.py2
-rw-r--r--cxmanage_api/cli/commands/info.py2
-rw-r--r--cxmanage_api/cli/commands/ipdiscover.py2
-rw-r--r--cxmanage_api/cli/commands/ipmitool.py2
-rw-r--r--cxmanage_api/cli/commands/mc.py2
-rw-r--r--cxmanage_api/cli/commands/power.py2
-rw-r--r--cxmanage_api/cli/commands/sensor.py2
-rw-r--r--cxmanage_api/cli/commands/tspackage.py2
-rw-r--r--cxmanage_api/crc32.py2
-rw-r--r--cxmanage_api/cx_exceptions.py2
-rwxr-xr-xcxmanage_api/docs/generate_api_rst.py2
-rw-r--r--cxmanage_api/fabric.py2
-rw-r--r--cxmanage_api/firmware_package.py2
-rw-r--r--cxmanage_api/image.py2
-rw-r--r--cxmanage_api/ip_retriever.py2
-rw-r--r--cxmanage_api/loggers.py2
-rw-r--r--cxmanage_api/node.py2
-rw-r--r--cxmanage_api/simg.py2
-rw-r--r--cxmanage_api/tasks.py2
-rw-r--r--cxmanage_api/tftp.py2
-rw-r--r--cxmanage_api/ubootenv.py2
-rw-r--r--cxmanage_test/__init__.py2
-rw-r--r--cxmanage_test/fabric_test.py2
-rw-r--r--cxmanage_test/image_test.py2
-rw-r--r--cxmanage_test/node_test.py2
-rw-r--r--cxmanage_test/tasks_test.py2
-rw-r--r--cxmanage_test/tftp_test.py2
-rwxr-xr-xrun_tests2
-rwxr-xr-xscripts/cxmanage2
-rwxr-xr-xscripts/cxmux30
-rwxr-xr-xscripts/sol_tabs2
-rw-r--r--setup.py2
39 files changed, 68 insertions, 38 deletions
diff --git a/LICENSE b/LICENSE
index affd7ab..89da6d8 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2012, Calxeda Inc.
+Copyright (c) 2012-2013, Calxeda Inc.
All rights reserved.
diff --git a/cxmanage_api/__init__.py b/cxmanage_api/__init__.py
index 4e7c0e4..9cff494 100644
--- a/cxmanage_api/__init__.py
+++ b/cxmanage_api/__init__.py
@@ -1,7 +1,7 @@
"""Calxeda: __init__.py """
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/__init__.py b/cxmanage_api/cli/__init__.py
index 8e6e6f8..f57a394 100644
--- a/cxmanage_api/cli/__init__.py
+++ b/cxmanage_api/cli/__init__.py
@@ -1,7 +1,7 @@
"""Calxeda: __init__.py """
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/__init__.py b/cxmanage_api/cli/commands/__init__.py
index 571a3c5..b1cbfbb 100644
--- a/cxmanage_api/cli/commands/__init__.py
+++ b/cxmanage_api/cli/commands/__init__.py
@@ -1,7 +1,7 @@
"""Calxeda: __init__.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/config.py b/cxmanage_api/cli/commands/config.py
index bde21ca..23aa028 100644
--- a/cxmanage_api/cli/commands/config.py
+++ b/cxmanage_api/cli/commands/config.py
@@ -1,7 +1,7 @@
"""Calxeda: config.py """
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/eeprom.py b/cxmanage_api/cli/commands/eeprom.py
index fa715ff..86ca1cd 100644
--- a/cxmanage_api/cli/commands/eeprom.py
+++ b/cxmanage_api/cli/commands/eeprom.py
@@ -1,6 +1,6 @@
"""Calxeda: eeprom.py """
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/fabric.py b/cxmanage_api/cli/commands/fabric.py
index 9a410c1..0ee7805 100644
--- a/cxmanage_api/cli/commands/fabric.py
+++ b/cxmanage_api/cli/commands/fabric.py
@@ -1,7 +1,7 @@
"""Calxeda: fabric.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/fw.py b/cxmanage_api/cli/commands/fw.py
index b131bf9..6663152 100644
--- a/cxmanage_api/cli/commands/fw.py
+++ b/cxmanage_api/cli/commands/fw.py
@@ -1,6 +1,6 @@
"""Calxeda: fw.py """
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/info.py b/cxmanage_api/cli/commands/info.py
index 9d92fa9..0968351 100644
--- a/cxmanage_api/cli/commands/info.py
+++ b/cxmanage_api/cli/commands/info.py
@@ -1,7 +1,7 @@
"""Calxeda: info.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/ipdiscover.py b/cxmanage_api/cli/commands/ipdiscover.py
index c6c3dee..fd21546 100644
--- a/cxmanage_api/cli/commands/ipdiscover.py
+++ b/cxmanage_api/cli/commands/ipdiscover.py
@@ -1,7 +1,7 @@
"""Calxeda: ipdiscover.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/ipmitool.py b/cxmanage_api/cli/commands/ipmitool.py
index 2c54b37..ab95bbf 100644
--- a/cxmanage_api/cli/commands/ipmitool.py
+++ b/cxmanage_api/cli/commands/ipmitool.py
@@ -1,7 +1,7 @@
"""Calxeda: ipmitool.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/mc.py b/cxmanage_api/cli/commands/mc.py
index ac258ab..86e0963 100644
--- a/cxmanage_api/cli/commands/mc.py
+++ b/cxmanage_api/cli/commands/mc.py
@@ -1,7 +1,7 @@
"""Calxeda: mc.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/power.py b/cxmanage_api/cli/commands/power.py
index 1255cbc..c14de70 100644
--- a/cxmanage_api/cli/commands/power.py
+++ b/cxmanage_api/cli/commands/power.py
@@ -1,7 +1,7 @@
"""Calxeda: power.py """
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/sensor.py b/cxmanage_api/cli/commands/sensor.py
index acbad6e..97b4aba 100644
--- a/cxmanage_api/cli/commands/sensor.py
+++ b/cxmanage_api/cli/commands/sensor.py
@@ -1,7 +1,7 @@
"""Calxeda: sensor.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cli/commands/tspackage.py b/cxmanage_api/cli/commands/tspackage.py
index e2663ba..2cbfef8 100644
--- a/cxmanage_api/cli/commands/tspackage.py
+++ b/cxmanage_api/cli/commands/tspackage.py
@@ -1,7 +1,7 @@
"""Calxeda: tspackage.py"""
-# Copyright 2013 Calxeda, Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/crc32.py b/cxmanage_api/crc32.py
index aca7838..aa85179 100644
--- a/cxmanage_api/crc32.py
+++ b/cxmanage_api/crc32.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/cx_exceptions.py b/cxmanage_api/cx_exceptions.py
index 8f94955..5e0c931 100644
--- a/cxmanage_api/cx_exceptions.py
+++ b/cxmanage_api/cx_exceptions.py
@@ -1,7 +1,7 @@
"""Calxeda: cx_exceptions.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/docs/generate_api_rst.py b/cxmanage_api/docs/generate_api_rst.py
index 553d3c8..776dabe 100755
--- a/cxmanage_api/docs/generate_api_rst.py
+++ b/cxmanage_api/docs/generate_api_rst.py
@@ -2,7 +2,7 @@
:author: Eric Vasquez
:contact: eric.vasquez@calxeda.com
-:copyright: (c) 2012, Calxeda Inc.
+:copyright: (c) 2012-2013, Calxeda Inc.
"""
diff --git a/cxmanage_api/fabric.py b/cxmanage_api/fabric.py
index e143c32..7582aee 100644
--- a/cxmanage_api/fabric.py
+++ b/cxmanage_api/fabric.py
@@ -2,7 +2,7 @@
"""Calxeda: fabric.py """
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/firmware_package.py b/cxmanage_api/firmware_package.py
index ce698c8..2822fd2 100644
--- a/cxmanage_api/firmware_package.py
+++ b/cxmanage_api/firmware_package.py
@@ -1,7 +1,7 @@
"""Calxeda: firmware_package.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/image.py b/cxmanage_api/image.py
index a6456d4..8f3011a 100644
--- a/cxmanage_api/image.py
+++ b/cxmanage_api/image.py
@@ -1,7 +1,7 @@
"""Calxeda: image.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/ip_retriever.py b/cxmanage_api/ip_retriever.py
index 39fbb30..ef443cb 100644
--- a/cxmanage_api/ip_retriever.py
+++ b/cxmanage_api/ip_retriever.py
@@ -1,7 +1,7 @@
"""Calxeda: ip_retriever.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/loggers.py b/cxmanage_api/loggers.py
index 9657ef9..1e4f4ab 100644
--- a/cxmanage_api/loggers.py
+++ b/cxmanage_api/loggers.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2013, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/node.py b/cxmanage_api/node.py
index 66f0d67..0977bf1 100644
--- a/cxmanage_api/node.py
+++ b/cxmanage_api/node.py
@@ -2,7 +2,7 @@
"""Calxeda: node.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/simg.py b/cxmanage_api/simg.py
index d8901b8..1870691 100644
--- a/cxmanage_api/simg.py
+++ b/cxmanage_api/simg.py
@@ -1,7 +1,7 @@
"""Calxeda: simg.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/tasks.py b/cxmanage_api/tasks.py
index 98fdd3e..d241c30 100644
--- a/cxmanage_api/tasks.py
+++ b/cxmanage_api/tasks.py
@@ -1,7 +1,7 @@
"""Calxeda: tasks.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/tftp.py b/cxmanage_api/tftp.py
index 59e9774..e3aaec3 100644
--- a/cxmanage_api/tftp.py
+++ b/cxmanage_api/tftp.py
@@ -1,7 +1,7 @@
"""Calxeda: tftp.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_api/ubootenv.py b/cxmanage_api/ubootenv.py
index da9b37c..14029bb 100644
--- a/cxmanage_api/ubootenv.py
+++ b/cxmanage_api/ubootenv.py
@@ -1,6 +1,6 @@
"""Calxeda: ubootenv.py """
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_test/__init__.py b/cxmanage_test/__init__.py
index 61bf116..d8d5307 100644
--- a/cxmanage_test/__init__.py
+++ b/cxmanage_test/__init__.py
@@ -1,7 +1,7 @@
"""Calxeda: __init__.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_test/fabric_test.py b/cxmanage_test/fabric_test.py
index d2a6e28..69e7c03 100644
--- a/cxmanage_test/fabric_test.py
+++ b/cxmanage_test/fabric_test.py
@@ -1,6 +1,6 @@
"""Calxeda: fabric_test.py """
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_test/image_test.py b/cxmanage_test/image_test.py
index fcbb011..71e8000 100644
--- a/cxmanage_test/image_test.py
+++ b/cxmanage_test/image_test.py
@@ -1,7 +1,7 @@
"""Calxeda: image_test.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_test/node_test.py b/cxmanage_test/node_test.py
index 1853761..dbe78a1 100644
--- a/cxmanage_test/node_test.py
+++ b/cxmanage_test/node_test.py
@@ -2,7 +2,7 @@
"""Unit tests for the Node class."""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_test/tasks_test.py b/cxmanage_test/tasks_test.py
index 5ede9e4..2d7b9a3 100644
--- a/cxmanage_test/tasks_test.py
+++ b/cxmanage_test/tasks_test.py
@@ -1,7 +1,7 @@
"""Calxeda: task_test.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/cxmanage_test/tftp_test.py b/cxmanage_test/tftp_test.py
index 94d9e38..afd258f 100644
--- a/cxmanage_test/tftp_test.py
+++ b/cxmanage_test/tftp_test.py
@@ -1,7 +1,7 @@
"""Calxeda: tftp_test.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/run_tests b/run_tests
index bfc64c4..dc9a7b3 100755
--- a/run_tests
+++ b/run_tests
@@ -1,6 +1,6 @@
#!/usr/bin/env python
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/scripts/cxmanage b/scripts/cxmanage
index 9cb5d11..3e6f8b8 100755
--- a/scripts/cxmanage
+++ b/scripts/cxmanage
@@ -1,6 +1,6 @@
#!/usr/bin/env python
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/scripts/cxmux b/scripts/cxmux
index 938ad04..0630efd 100755
--- a/scripts/cxmux
+++ b/scripts/cxmux
@@ -1,5 +1,35 @@
#!/usr/bin/env python
+# Copyright (c) 2012-2013, Calxeda Inc.
+#
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+# * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# * Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+# * Neither the name of Calxeda Inc. nor the names of its contributors
+# may be used to endorse or promote products derived from this software
+# without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+# COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
+# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+# DAMAGE.
+
import os
import sys
diff --git a/scripts/sol_tabs b/scripts/sol_tabs
index c5cb9fe..d6626ca 100755
--- a/scripts/sol_tabs
+++ b/scripts/sol_tabs
@@ -1,6 +1,6 @@
#!/bin/bash
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#
diff --git a/setup.py b/setup.py
index 98aeaea..c0e4bbc 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
"""Calxeda: setup.py"""
-# Copyright (c) 2012, Calxeda Inc.
+# Copyright (c) 2012-2013, Calxeda Inc.
#
# All rights reserved.
#