[Armadeus-commitlog] armadeus branch, master, updated. release-3.3-99-g74a3da1
Brought to you by:
sszy
|
From: jscheer <js...@us...> - 2010-11-09 15:05:12
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 74a3da157a5e0c5eafaf4ff88144f8c74f00c599 (commit)
via ec9760c4e4c981cdeb5a4e826dc1e66afd71d364 (commit)
from 1140663c16adec1aa4dfc5397cd53c3a5fdc8ba4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 74a3da157a5e0c5eafaf4ff88144f8c74f00c599
Merge: ec9760c4e4c981cdeb5a4e826dc1e66afd71d364 1140663c16adec1aa4dfc5397cd53c3a5fdc8ba4
Author: Jeremie Scheer <jer...@ar...>
Date: Tue Nov 9 16:03:45 2010 +0100
Merge branch 'master' of ssh://jscheer@armadeus.git.sourceforge.net/gitroot/armadeus/armadeus
commit ec9760c4e4c981cdeb5a4e826dc1e66afd71d364
Author: Jeremie Scheer <jer...@ar...>
Date: Tue Nov 9 16:03:07 2010 +0100
[TEST] GPL licence added on PPS test scripts.
-----------------------------------------------------------------------
Summary of changes:
target/pps/configs/networkConfig | 20 ++++++++++++++++++++
target/pps/scripts/init_boa.sh | 28 ++++++++++++++++------------
target/pps/scripts/init_wpa.sh | 26 +++++++++++++++-----------
target/pps/scripts/install.sh | 20 ++++++++++++++++++++
target/pps/scripts/reset_wi2wi.sh | 26 +++++++++++++++-----------
target/pps/scripts/stop_wpa.sh | 26 +++++++++++++++-----------
target/pps/scripts/test_ether_gadget.sh | 26 +++++++++++++++-----------
target/pps/scripts/test_ether_smsc95xx.sh | 26 +++++++++++++++-----------
target/pps/scripts/test_wifi.sh | 27 +++++++++++++++------------
target/pps/www/index.html | 20 ++++++++++++++++++++
10 files changed, 166 insertions(+), 79 deletions(-)
diff --git a/target/pps/configs/networkConfig b/target/pps/configs/networkConfig
index 4b947fe..a54ca2a 100644
--- a/target/pps/configs/networkConfig
+++ b/target/pps/configs/networkConfig
@@ -1,2 +1,22 @@
+#
+# THE ARMADEUS PROJECT
+#
+# Copyright (C) year The armadeus systems team [Jérémie Scheer]
+#
+# This program 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.
+#
+# This program 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+
export SSID=
export PSK=
diff --git a/target/pps/scripts/init_boa.sh b/target/pps/scripts/init_boa.sh
index 3af8abc..9e40a71 100644
--- a/target/pps/scripts/init_boa.sh
+++ b/target/pps/scripts/init_boa.sh
@@ -1,18 +1,22 @@
#
-# This software has been developed by ARMADEUS SYSTEMS
+# THE ARMADEUS PROJECT
#
-# Customer Name: HTSC
-#
-# Project Name: PPS
-#
-# Copyright (C) 2010 :
-#
-# This program is the property of the armadeus systems company or of the
-# final customer as soon as terms & conditions stipulated by the contract
-# between the two parties are full-filled .
-#
-# Written by: Burkhart Frederic,,,
+# Copyright (C) year The armadeus systems team [Jérémie Scheer]
#
+# This program 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.
+#
+# This program 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
# setup /etc/hosts file (hosname id required by "boa")
echo "127.0.0.1 localhost" > /etc/hosts
diff --git a/target/pps/scripts/init_wpa.sh b/target/pps/scripts/init_wpa.sh
index f838353..65fbb81 100644
--- a/target/pps/scripts/init_wpa.sh
+++ b/target/pps/scripts/init_wpa.sh
@@ -1,18 +1,22 @@
#
-# This software has been developed by ARMADEUS SYSTEMS
+# THE ARMADEUS PROJECT
#
-# Customer Name: Armadeus
+# Copyright (C) year The armadeus systems team [Jérémie Scheer]
#
-# Project Name: PPS
-#
-# Copyright (C) 2010 :
+# This program 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.
+#
+# This program 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
-# This program is the property of the armadeus systems company or of the
-# final customer as soon as terms & conditions stipulated by the contract
-# between the two parties are full-filled .
-#
-# Written by: Jérémie Scheer,,,
-#
if [ -f /etc/wpa_supplicant/networkConfig ]; then
diff --git a/target/pps/scripts/install.sh b/target/pps/scripts/install.sh
index 5526704..6bce6a2 100755
--- a/target/pps/scripts/install.sh
+++ b/target/pps/scripts/install.sh
@@ -1,3 +1,23 @@
+#
+# THE ARMADEUS PROJECT
+#
+# Copyright (C) year The armadeus systems team [Jérémie Scheer]
+#
+# This program 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.
+#
+# This program 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+
#!/bin/sh
if [ "$1" == "" ]; then
diff --git a/target/pps/scripts/reset_wi2wi.sh b/target/pps/scripts/reset_wi2wi.sh
index c1f7341..08fed6f 100644
--- a/target/pps/scripts/reset_wi2wi.sh
+++ b/target/pps/scripts/reset_wi2wi.sh
@@ -1,18 +1,22 @@
#
-# This software has been developed by ARMADEUS SYSTEMS
+# THE ARMADEUS PROJECT
#
-# Customer Name: Armadeus
+# Copyright (C) year The armadeus systems team [Jérémie Scheer]
#
-# Project Name: PPS
-#
-# Copyright (C) 2010 :
+# This program 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.
+#
+# This program 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
-# This program is the property of the armadeus systems company or of the
-# final customer as soon as terms & conditions stipulated by the contract
-# between the two parties are full-filled .
-#
-# Written by: Jérémie Scheer,,,
-#
source /usr/bin/gpio_helpers.sh
diff --git a/target/pps/scripts/stop_wpa.sh b/target/pps/scripts/stop_wpa.sh
index 8e11015..24a406e 100644
--- a/target/pps/scripts/stop_wpa.sh
+++ b/target/pps/scripts/stop_wpa.sh
@@ -1,18 +1,22 @@
#
-# This software has been developed by ARMADEUS SYSTEMS
+# THE ARMADEUS PROJECT
#
-# Customer Name: Armadeus
+# Copyright (C) year The armadeus systems team [Jérémie Scheer]
#
-# Project Name: PPS
-#
-# Copyright (C) 2010 :
+# This program 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.
+#
+# This program 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
-# This program is the property of the armadeus systems company or of the
-# final customer as soon as terms & conditions stipulated by the contract
-# between the two parties are full-filled .
-#
-# Written by: Jérémie Scheer,,,
-#
ifconfig eth1 down 2>/dev/null
diff --git a/target/pps/scripts/test_ether_gadget.sh b/target/pps/scripts/test_ether_gadget.sh
index 168be97..e2c3a4f 100644
--- a/target/pps/scripts/test_ether_gadget.sh
+++ b/target/pps/scripts/test_ether_gadget.sh
@@ -1,18 +1,22 @@
#
-# This software has been developed by ARMADEUS SYSTEMS
+# THE ARMADEUS PROJECT
#
-# Customer Name: HTSC
+# Copyright (C) year The armadeus systems team [Jérémie Scheer]
#
-# Project Name: PPS
-#
-# Copyright (C) 2010 :
+# This program 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.
+#
+# This program 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
-# This program is the property of the armadeus systems company or of the
-# final customer as soon as terms & conditions stipulated by the contract
-# between the two parties are full-filled .
-#
-# Written by: Burkhart Frederic,,,
-#
modprobe -r smsc95xx
modprobe -r g_ether
diff --git a/target/pps/scripts/test_ether_smsc95xx.sh b/target/pps/scripts/test_ether_smsc95xx.sh
index 655682b..8745f99 100644
--- a/target/pps/scripts/test_ether_smsc95xx.sh
+++ b/target/pps/scripts/test_ether_smsc95xx.sh
@@ -1,18 +1,22 @@
#
-# This software has been developed by ARMADEUS SYSTEMS
+# THE ARMADEUS PROJECT
#
-# Customer Name: cryonic medical S.A.
+# Copyright (C) year The armadeus systems team [Jérémie Scheer]
#
-# Project Name: PPS
-#
-# Copyright (C) 2010 :
+# This program 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.
+#
+# This program 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
-# This program is the property of the armadeus systems company or of the
-# final customer as soon as terms & conditions stipulated by the contract
-# between the two parties are full-filled .
-#
-# Written by: Burkhart Frederic,,,
-#
modprobe -r g_ether
modprobe -r smsc95xx
diff --git a/target/pps/scripts/test_wifi.sh b/target/pps/scripts/test_wifi.sh
index 1266525..9b9c5c5 100644
--- a/target/pps/scripts/test_wifi.sh
+++ b/target/pps/scripts/test_wifi.sh
@@ -1,19 +1,22 @@
#
-# This software has been developed by ARMADEUS SYSTEMS
+# THE ARMADEUS PROJECT
#
-# Customer Name: HTSC
+# Copyright (C) year The armadeus systems team [Jérémie Scheer]
#
-# Project Name: PPS
-#
-# Copyright (C) 2010 :
+# This program 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.
+#
+# This program 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
-# This program is the property of the armadeus systems company or of the
-# final customer as soon as terms & conditions stipulated by the contract
-# between the two parties are full-filled .
-#
-# Written by: Burkhart Frederic,,,
-#
-
modprobe libertas_sdio
diff --git a/target/pps/www/index.html b/target/pps/www/index.html
index b1a5e22..65cf71c 100644
--- a/target/pps/www/index.html
+++ b/target/pps/www/index.html
@@ -1,3 +1,23 @@
+<!--
+ THE ARMADEUS PROJECT
+
+ Copyright (C) year The armadeus systems team [Jérémie Scheer]
+
+ This program 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.
+
+ This program 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, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+-->
+
<html>
<head>
<title> </title>
hooks/post-receive
--
armadeus
|