diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 67: Add headers

Message ID 20110623194415.2772.47981.launchpad@loganberry.canonical.com
State Accepted
Headers show

Commit Message

Paul Larson June 23, 2011, 7:44 p.m. UTC
------------------------------------------------------------
revno: 67
tags: 2011.06
committer: Paul Larson <paul.larson@canonical.com>
branch nick: lava-dispatcher
timestamp: Thu 2011-06-23 14:38:42 -0500
message:
  Add headers
modified:
  lava-dispatch
  lava/dispatcher/__init__.py
  lava/dispatcher/actions/__init__.py
  lava/dispatcher/actions/android_0xbench.py
  lava/dispatcher/actions/android_basic.py
  lava/dispatcher/actions/android_deploy.py
  lava/dispatcher/actions/boot_control.py
  lava/dispatcher/actions/deploy.py
  lava/dispatcher/actions/launch_control.py
  lava/dispatcher/actions/lava-test.py
  lava/dispatcher/android_client.py
  lava/dispatcher/android_config.py
  lava/dispatcher/android_util.py
  lava/dispatcher/client.py
  lava/dispatcher/config.py
  lava/dispatcher/tests/test_config.py
  lava/dispatcher/utils.py


--
lp:lava-dispatcher
https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk

You are subscribed to branch lp:lava-dispatcher.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava-dispatch'
--- lava-dispatch	2011-04-29 07:28:36 +0000
+++ lava-dispatch	2011-06-23 19:38:42 +0000
@@ -1,4 +1,24 @@ 
-#!/usr/bin/python
+#!/usr/bin/env python
+
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Paul Larson <paul.larson@linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, see <http://www.gnu.org/licenses>.
+
 import sys
 
 from lava.dispatcher import LavaTestJob

=== modified file 'lava/dispatcher/__init__.py'
--- lava/dispatcher/__init__.py	2011-05-31 14:13:13 +0000
+++ lava/dispatcher/__init__.py	2011-06-23 19:38:42 +0000
@@ -1,4 +1,23 @@ 
-#!/usr/bin/python
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Paul Larson <paul.larson@linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along
+# with this program; if not, see <http://www.gnu.org/licenses>.
+
 from datetime import datetime
 import json
 from lava.dispatcher.actions import get_all_cmds

=== modified file 'lava/dispatcher/actions/__init__.py'
--- lava/dispatcher/actions/__init__.py	2011-05-19 10:50:13 +0000
+++ lava/dispatcher/actions/__init__.py	2011-06-23 19:38:42 +0000
@@ -1,4 +1,25 @@ 
 #!/usr/bin/python
+
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Paul Larson <paul.larson@linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along
+# with this program; if not, see <http://www.gnu.org/licenses>.
+
 from glob import glob
 import imp
 import os

=== modified file 'lava/dispatcher/actions/android_0xbench.py'
--- lava/dispatcher/actions/android_0xbench.py	2011-05-26 19:02:21 +0000
+++ lava/dispatcher/actions/android_0xbench.py	2011-06-23 19:38:42 +0000
@@ -1,4 +1,24 @@ 
 #!/usr/bin/python
+
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Linaro Validation Team <linaro-dev@lists.linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <http://www.gnu.org/licenses>.
+
 from lava.dispatcher.actions import BaseAndroidAction
 import time
 import pexpect

=== modified file 'lava/dispatcher/actions/android_basic.py'
--- lava/dispatcher/actions/android_basic.py	2011-05-26 18:55:49 +0000
+++ lava/dispatcher/actions/android_basic.py	2011-06-23 19:38:42 +0000
@@ -1,4 +1,24 @@ 
 #!/usr/bin/python
+
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Linaro Validation Team <linaro-dev@lists.linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <http://www.gnu.org/licenses>.
+
 from lava.dispatcher.actions import BaseAndroidAction
 from lava.dispatcher.client import OperationFailed
 from lava.dispatcher.android_config import TESTER_STR

=== modified file 'lava/dispatcher/actions/android_deploy.py'
--- lava/dispatcher/actions/android_deploy.py	2011-06-01 21:32:58 +0000
+++ lava/dispatcher/actions/android_deploy.py	2011-06-23 19:38:42 +0000
@@ -1,4 +1,24 @@ 
 #!/usr/bin/python
+
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Linaro Validation Team <linaro-dev@lists.linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <http://www.gnu.org/licenses>.
+
 from lava.dispatcher.actions import BaseAction
 from lava.dispatcher.config import LAVA_IMAGE_TMPDIR, LAVA_IMAGE_URL, MASTER_STR
 import os

=== modified file 'lava/dispatcher/actions/boot_control.py'
--- lava/dispatcher/actions/boot_control.py	2011-05-22 01:51:01 +0000
+++ lava/dispatcher/actions/boot_control.py	2011-06-23 19:38:42 +0000
@@ -1,4 +1,25 @@ 
 #!/usr/bin/python
+
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Paul Larson <paul.larson@linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along
+# with this program; if not, see <http://www.gnu.org/licenses>.
+
 from lava.dispatcher.actions import BaseAction, BaseAndroidAction
 
 class cmd_boot_linaro_android_image(BaseAndroidAction):

=== modified file 'lava/dispatcher/actions/deploy.py'
--- lava/dispatcher/actions/deploy.py	2011-06-01 21:32:58 +0000
+++ lava/dispatcher/actions/deploy.py	2011-06-23 19:38:42 +0000
@@ -1,3 +1,23 @@ 
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Paul Larson <paul.larson@linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along
+# with this program; if not, see <http://www.gnu.org/licenses>.
+
 from commands import getoutput, getstatusoutput
 import os
 import re

=== modified file 'lava/dispatcher/actions/launch_control.py'
--- lava/dispatcher/actions/launch_control.py	2011-05-23 21:47:06 +0000
+++ lava/dispatcher/actions/launch_control.py	2011-06-23 19:38:42 +0000
@@ -1,4 +1,25 @@ 
 #!/usr/bin/python
+
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Paul Larson <paul.larson@linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along
+# with this program; if not, see <http://www.gnu.org/licenses>.
+
 import json
 from lava.dispatcher.actions import BaseAction
 from lava.dispatcher.config import LAVA_RESULT_DIR, MASTER_STR, LAVA_SERVER_IP

=== modified file 'lava/dispatcher/actions/lava-test.py'
--- lava/dispatcher/actions/lava-test.py	2011-06-10 18:45:47 +0000
+++ lava/dispatcher/actions/lava-test.py	2011-06-23 19:38:42 +0000
@@ -1,4 +1,25 @@ 
 #!/usr/bin/python
+
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Paul Larson <paul.larson@linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along
+# with this program; if not, see <http://www.gnu.org/licenses>.
+
 from lava.dispatcher.actions import BaseAction
 from lava.dispatcher.client import OperationFailed
 from lava.dispatcher.config import LAVA_RESULT_DIR, MASTER_STR, TESTER_STR

=== modified file 'lava/dispatcher/android_client.py'
--- lava/dispatcher/android_client.py	2011-05-26 18:55:49 +0000
+++ lava/dispatcher/android_client.py	2011-06-23 19:38:42 +0000
@@ -1,3 +1,22 @@ 
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Linaro Validation Team <linaro-dev@lists.linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <http://www.gnu.org/licenses>.
+
 import pexpect
 import sys
 from lava.dispatcher.client import LavaClient

=== modified file 'lava/dispatcher/android_config.py'
--- lava/dispatcher/android_config.py	2011-06-20 20:43:21 +0000
+++ lava/dispatcher/android_config.py	2011-06-23 19:38:42 +0000
@@ -1,3 +1,22 @@ 
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Linaro Validation Team <linaro-dev@lists.linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <http://www.gnu.org/licenses>.
+
 from lava.dispatcher.config import Board
 
 class BeagleBoard(Board):

=== modified file 'lava/dispatcher/android_util.py'
--- lava/dispatcher/android_util.py	2011-04-27 19:15:54 +0000
+++ lava/dispatcher/android_util.py	2011-06-23 19:38:42 +0000
@@ -1,3 +1,22 @@ 
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Linaro Validation Team <linaro-dev@lists.linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <http://www.gnu.org/licenses>.
+
 import os
 from uuid import uuid1
 from datetime import datetime

=== modified file 'lava/dispatcher/client.py'
--- lava/dispatcher/client.py	2011-05-26 22:31:59 +0000
+++ lava/dispatcher/client.py	2011-06-23 19:38:42 +0000
@@ -1,3 +1,23 @@ 
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Paul Larson <paul.larson@linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along
+# with this program; if not, see <http://www.gnu.org/licenses>.
+
 import pexpect
 import sys
 import time

=== modified file 'lava/dispatcher/config.py'
--- lava/dispatcher/config.py	2011-06-20 20:43:21 +0000
+++ lava/dispatcher/config.py	2011-06-23 19:38:42 +0000
@@ -1,3 +1,23 @@ 
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Paul Larson <paul.larson@linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along
+# with this program; if not, see <http://www.gnu.org/licenses>.
+
 """
 This is an ugly hack, the uboot commands for a given board type and the board
 type of a test machine need to come from the device registry.  This is an

=== modified file 'lava/dispatcher/tests/test_config.py'
--- lava/dispatcher/tests/test_config.py	2011-04-08 05:18:09 +0000
+++ lava/dispatcher/tests/test_config.py	2011-06-23 19:38:42 +0000
@@ -1,3 +1,22 @@ 
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Linaro Validation Team <linaro-dev@lists.linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <http://www.gnu.org/licenses>.
+
 from unittest import TestCase
 
 from lava.dispatcher.config import BOARDS, LAVA_SERVER_IP

=== modified file 'lava/dispatcher/utils.py'
--- lava/dispatcher/utils.py	2011-05-23 22:23:45 +0000
+++ lava/dispatcher/utils.py	2011-06-23 19:38:42 +0000
@@ -1,4 +1,23 @@ 
-#!/usr/bin/python
+# Copyright (C) 2011 Linaro Limited
+#
+# Author: Paul Larson <paul.larson@linaro.org>
+#
+# This file is part of LAVA Dispatcher.
+#
+# LAVA Dispatcher is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# LAVA Dispatcher is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along
+# with this program; if not, see <http://www.gnu.org/licenses>.
+
 import os
 import shutil
 import urllib2