Hi,
In order to switch to the new toolchain in each cycle more smoothly, it's
been decided that Android builds will be using the tip toolchain until the
formal toolchain is released in every month. The toolchain 4.6 daily build
has already been setup, which can be found in
https://android-build.linaro.org/builds/~linaro-android/toolchain-4.6-bzr/.
Since
Android 1109 has already been successfully released with toolchain 1109 and
the new cycle has already started, the android builds will switch to use the
tip toolchain from now on. The toolchain for the following builds have been
switched to the tip toolchain. Should you have any problems, please feel
free to let me know. Thanks.
staging-snowball
staging-panda
staging-origen
staging-imx53
panda
beagle
Best regards
--
Chao Yang
Android Platform Team
Linaro.org │ Open source software for ARM SoCs
Follow Linaro:
http://www.facebook.com/pages/Linaro/155974581091106http://twitter.com/#!/linaroorghttp://www.linaro.org/linaro-blog/
Hi All,
I'm setting up a new machine and I'm guessing I must have missed a
step or a file.
When I debuild -S -sa it's complaining about my secret key not being found.
gpg: skipped "Tom Gall <tom.gall(a)linaro.org>": secret key not available
gpg: /tmp/debsign.Or3BKbui/live-build_3.0~a21-1linaro9~natty1.dsc:
clearsign failed: secret key not available
debsign: gpg error occurred! Aborting....
Yet if I gpg -k on both a "good" machine and this new box I see the
exact same set of keys listed.
Thoughts?
--
Regards,
Tom
"We want great men who, when fortune frowns will not be discouraged."
- Colonel Henry Knox
Linaro.org │ Open source software for ARM SoCs
w) tom.gall att linaro.org
w) tom_gall att vnet.ibm.com
h) tom_gall att mac.com
Check all the cpus are online before the tests
Check all the cpus are back online after the tests.
Signed-off-by: Daniel Lezcano <daniel.lezcano(a)linaro.org>
---
cpuhotplug/1_sanity_check.sh | 39 +++++++++++++++++++++++++++++++++++++++
cpuhotplug/1_sanity_check.txt | 1 +
cpuhotplug/z_sanity_check.sh | 39 +++++++++++++++++++++++++++++++++++++++
cpuhotplug/z_sanity_check.txt | 1 +
4 files changed, 80 insertions(+), 0 deletions(-)
create mode 100644 cpuhotplug/1_sanity_check.sh
create mode 100644 cpuhotplug/1_sanity_check.txt
create mode 100644 cpuhotplug/z_sanity_check.sh
create mode 100644 cpuhotplug/z_sanity_check.txt
diff --git a/cpuhotplug/1_sanity_check.sh b/cpuhotplug/1_sanity_check.sh
new file mode 100644
index 0000000..50ebbcc
--- /dev/null
+++ b/cpuhotplug/1_sanity_check.sh
@@ -0,0 +1,39 @@
+#!/bin/bash
+#
+# PM-QA validation test suite for the power management on Linux
+#
+# Copyright (C) 2011, Linaro Limited.
+#
+# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# Contributors:
+# Daniel Lezcano <daniel.lezcano(a)linaro.org> (IBM Corporation)
+# - initial API and implementation
+#
+
+# URL :
+
+source ../include/functions.sh
+
+sanity_check() {
+ local ret=$(cat $CPU_PATH/offline)
+ if [ -z "$ret" ]; then
+ return 0
+ else
+ return 1
+ fi
+}
+
+check "all cpu are online" "sanity_check"
diff --git a/cpuhotplug/1_sanity_check.txt b/cpuhotplug/1_sanity_check.txt
new file mode 100644
index 0000000..8930419
--- /dev/null
+++ b/cpuhotplug/1_sanity_check.txt
@@ -0,0 +1 @@
+ensure all the cpus are online before the tests
diff --git a/cpuhotplug/z_sanity_check.sh b/cpuhotplug/z_sanity_check.sh
new file mode 100644
index 0000000..43051ac
--- /dev/null
+++ b/cpuhotplug/z_sanity_check.sh
@@ -0,0 +1,39 @@
+#!/bin/bash
+#
+# PM-QA validation test suite for the power management on Linux
+#
+# Copyright (C) 2011, Linaro Limited.
+#
+# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# Contributors:
+# Daniel Lezcano <daniel.lezcano(a)linaro.org> (IBM Corporation)
+# - initial API and implementation
+#
+
+# URL :
+
+source ../include/functions.sh
+
+sanity_check() {
+ local ret=$(cat $CPU_PATH/offline)
+ if [ -z "$ret" ]; then
+ return 0
+ else
+ return 1
+ fi
+}
+
+check "all cpu are back online" "sanity_check"
diff --git a/cpuhotplug/z_sanity_check.txt b/cpuhotplug/z_sanity_check.txt
new file mode 100644
index 0000000..2b6c2fa
--- /dev/null
+++ b/cpuhotplug/z_sanity_check.txt
@@ -0,0 +1 @@
+ensure all the cpus are online when the tests are finished
--
1.7.1
Specify the test suite can be run on Linux because it is not
ARM specific.
Signed-off-by: Daniel Lezcano <daniel.lezcano(a)linaro.org>
---
Makefile | 2 +-
Test.mk | 2 +-
cpufreq/Makefile | 2 +-
cpufreq/cpufreq_01.sh | 2 +-
cpufreq/cpufreq_02.sh | 2 +-
cpufreq/cpufreq_03.sh | 2 +-
cpufreq/cpufreq_04.sh | 2 +-
cpufreq/cpufreq_05.sh | 2 +-
cpufreq/cpufreq_06.sh | 2 +-
cpufreq/cpufreq_07.sh | 2 +-
cpufreq/cpufreq_08.sh | 2 +-
cpufreq/cpufreq_09.sh | 2 +-
cpuhotplug/Makefile | 2 +-
cpuhotplug/cpuhotplug_01.sh | 2 +-
cpuhotplug/cpuhotplug_02.sh | 2 +-
cpuhotplug/cpuhotplug_03.sh | 2 +-
cpuhotplug/cpuhotplug_04.sh | 2 +-
cpuhotplug/cpuhotplug_05.sh | 2 +-
cpuhotplug/cpuhotplug_06.sh | 2 +-
cpuhotplug/cpuhotplug_07.sh | 2 +-
cpuhotplug/cpuhotplug_08.sh | 2 +-
include/functions.sh | 2 +-
sched_mc/Makefile | 2 +-
sched_mc/sched_01.sh | 2 +-
sched_mc/sched_02.sh | 2 +-
sched_mc/sched_03.sh | 2 +-
sched_mc/sched_04.sh | 2 +-
testcases.awk | 2 +-
testcases/Makefile | 2 +-
testcases/cpufreq/Makefile | 2 +-
testcases/cpufreq/avail_freq01.sh | 2 +-
testcases/cpufreq/avail_freq02.sh | 2 +-
testcases/cpufreq/avail_gov01.sh | 2 +-
testcases/cpufreq/avail_gov02.sh | 2 +-
testcases/cpuhotplug/Makefile | 2 +-
testcases/cpuhotplug/cpu_hotplug_latency.sh | 2 +-
testcases/cpuidle/Makefile | 2 +-
testcases/cpuidle/test_usb_cpuidle.c | 2 +-
testcases/proof_o_concept/Makefile | 2 +-
testcases/proof_o_concept/PM-list_c_states.sh | 2 +-
testcases/proof_o_concept/PM-list_p_states.sh | 2 +-
utils/Makefile | 2 +-
utils/cpuburn.c | 2 +-
utils/cpucycle.c | 2 +-
utils/nanosleep.c | 2 +-
45 files changed, 45 insertions(+), 45 deletions(-)
diff --git a/Makefile b/Makefile
index 478fec3..1560e98 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/Test.mk b/Test.mk
index 3c387db..655527c 100644
--- a/Test.mk
+++ b/Test.mk
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpufreq/Makefile b/cpufreq/Makefile
index 762441f..a90620c 100644
--- a/cpufreq/Makefile
+++ b/cpufreq/Makefile
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpufreq/cpufreq_01.sh b/cpufreq/cpufreq_01.sh
index 8cfbce9..f4fc178 100755
--- a/cpufreq/cpufreq_01.sh
+++ b/cpufreq/cpufreq_01.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpufreq/cpufreq_02.sh b/cpufreq/cpufreq_02.sh
index 212b2eb..aeecd45 100755
--- a/cpufreq/cpufreq_02.sh
+++ b/cpufreq/cpufreq_02.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpufreq/cpufreq_03.sh b/cpufreq/cpufreq_03.sh
index 256a5c2..65aed52 100755
--- a/cpufreq/cpufreq_03.sh
+++ b/cpufreq/cpufreq_03.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpufreq/cpufreq_04.sh b/cpufreq/cpufreq_04.sh
index 6fa81fa..a4ee5db 100755
--- a/cpufreq/cpufreq_04.sh
+++ b/cpufreq/cpufreq_04.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpufreq/cpufreq_05.sh b/cpufreq/cpufreq_05.sh
index a264e24..560ae3d 100755
--- a/cpufreq/cpufreq_05.sh
+++ b/cpufreq/cpufreq_05.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpufreq/cpufreq_06.sh b/cpufreq/cpufreq_06.sh
index cb75e7f..d67ce6d 100755
--- a/cpufreq/cpufreq_06.sh
+++ b/cpufreq/cpufreq_06.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpufreq/cpufreq_07.sh b/cpufreq/cpufreq_07.sh
index 2fb4b53..1505cb3 100755
--- a/cpufreq/cpufreq_07.sh
+++ b/cpufreq/cpufreq_07.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpufreq/cpufreq_08.sh b/cpufreq/cpufreq_08.sh
index 3f47613..89be94c 100755
--- a/cpufreq/cpufreq_08.sh
+++ b/cpufreq/cpufreq_08.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpufreq/cpufreq_09.sh b/cpufreq/cpufreq_09.sh
index 7fa8317..1807dc8 100755
--- a/cpufreq/cpufreq_09.sh
+++ b/cpufreq/cpufreq_09.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpuhotplug/Makefile b/cpuhotplug/Makefile
index 2225d82..df0b8f4 100644
--- a/cpuhotplug/Makefile
+++ b/cpuhotplug/Makefile
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpuhotplug/cpuhotplug_01.sh b/cpuhotplug/cpuhotplug_01.sh
index f6f36ff..83fc17a 100644
--- a/cpuhotplug/cpuhotplug_01.sh
+++ b/cpuhotplug/cpuhotplug_01.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpuhotplug/cpuhotplug_02.sh b/cpuhotplug/cpuhotplug_02.sh
index 4f3f3d2..4273f65 100644
--- a/cpuhotplug/cpuhotplug_02.sh
+++ b/cpuhotplug/cpuhotplug_02.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpuhotplug/cpuhotplug_03.sh b/cpuhotplug/cpuhotplug_03.sh
index 489706b..51cde18 100644
--- a/cpuhotplug/cpuhotplug_03.sh
+++ b/cpuhotplug/cpuhotplug_03.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpuhotplug/cpuhotplug_04.sh b/cpuhotplug/cpuhotplug_04.sh
index 6cf944f..753cf55 100644
--- a/cpuhotplug/cpuhotplug_04.sh
+++ b/cpuhotplug/cpuhotplug_04.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpuhotplug/cpuhotplug_05.sh b/cpuhotplug/cpuhotplug_05.sh
index 82bf2b4..12df3c4 100644
--- a/cpuhotplug/cpuhotplug_05.sh
+++ b/cpuhotplug/cpuhotplug_05.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpuhotplug/cpuhotplug_06.sh b/cpuhotplug/cpuhotplug_06.sh
index 1b1c7eb..ce4ffeb 100644
--- a/cpuhotplug/cpuhotplug_06.sh
+++ b/cpuhotplug/cpuhotplug_06.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpuhotplug/cpuhotplug_07.sh b/cpuhotplug/cpuhotplug_07.sh
index 518ad06..72d9744 100644
--- a/cpuhotplug/cpuhotplug_07.sh
+++ b/cpuhotplug/cpuhotplug_07.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/cpuhotplug/cpuhotplug_08.sh b/cpuhotplug/cpuhotplug_08.sh
index 889221f..e996f11 100644
--- a/cpuhotplug/cpuhotplug_08.sh
+++ b/cpuhotplug/cpuhotplug_08.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/include/functions.sh b/include/functions.sh
index b34d49b..1d06249 100644
--- a/include/functions.sh
+++ b/include/functions.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/sched_mc/Makefile b/sched_mc/Makefile
index 762441f..a90620c 100644
--- a/sched_mc/Makefile
+++ b/sched_mc/Makefile
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/sched_mc/sched_01.sh b/sched_mc/sched_01.sh
index e0fd9aa..d4414b6 100755
--- a/sched_mc/sched_01.sh
+++ b/sched_mc/sched_01.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/sched_mc/sched_02.sh b/sched_mc/sched_02.sh
index 36730a4..c7cbc26 100755
--- a/sched_mc/sched_02.sh
+++ b/sched_mc/sched_02.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/sched_mc/sched_03.sh b/sched_mc/sched_03.sh
index b5a9c49..6520ce5 100755
--- a/sched_mc/sched_03.sh
+++ b/sched_mc/sched_03.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/sched_mc/sched_04.sh b/sched_mc/sched_04.sh
index 4d7cfc1..f9266e8 100755
--- a/sched_mc/sched_04.sh
+++ b/sched_mc/sched_04.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases.awk b/testcases.awk
index a28279a..71ce9ee 100644
--- a/testcases.awk
+++ b/testcases.awk
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/Makefile b/testcases/Makefile
index 8844ad0..08b3233 100644
--- a/testcases/Makefile
+++ b/testcases/Makefile
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/cpufreq/Makefile b/testcases/cpufreq/Makefile
index 75413f2..65afd9a 100644
--- a/testcases/cpufreq/Makefile
+++ b/testcases/cpufreq/Makefile
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/cpufreq/avail_freq01.sh b/testcases/cpufreq/avail_freq01.sh
index 7396d05..1809e46 100755
--- a/testcases/cpufreq/avail_freq01.sh
+++ b/testcases/cpufreq/avail_freq01.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/cpufreq/avail_freq02.sh b/testcases/cpufreq/avail_freq02.sh
index f5a1a81..b012317 100755
--- a/testcases/cpufreq/avail_freq02.sh
+++ b/testcases/cpufreq/avail_freq02.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/cpufreq/avail_gov01.sh b/testcases/cpufreq/avail_gov01.sh
index 43f797c..d2c8f1c 100755
--- a/testcases/cpufreq/avail_gov01.sh
+++ b/testcases/cpufreq/avail_gov01.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/cpufreq/avail_gov02.sh b/testcases/cpufreq/avail_gov02.sh
index 1eea948..3e07d80 100755
--- a/testcases/cpufreq/avail_gov02.sh
+++ b/testcases/cpufreq/avail_gov02.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/cpuhotplug/Makefile b/testcases/cpuhotplug/Makefile
index f214123..ab92602 100644
--- a/testcases/cpuhotplug/Makefile
+++ b/testcases/cpuhotplug/Makefile
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/cpuhotplug/cpu_hotplug_latency.sh b/testcases/cpuhotplug/cpu_hotplug_latency.sh
index d7b29c8..9fb63f1 100755
--- a/testcases/cpuhotplug/cpu_hotplug_latency.sh
+++ b/testcases/cpuhotplug/cpu_hotplug_latency.sh
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/cpuidle/Makefile b/testcases/cpuidle/Makefile
index a2c1f57..64a9f79 100644
--- a/testcases/cpuidle/Makefile
+++ b/testcases/cpuidle/Makefile
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/cpuidle/test_usb_cpuidle.c b/testcases/cpuidle/test_usb_cpuidle.c
index 985f2f2..9f12161 100644
--- a/testcases/cpuidle/test_usb_cpuidle.c
+++ b/testcases/cpuidle/test_usb_cpuidle.c
@@ -1,5 +1,5 @@
/*
- * PM-QA validation test suite for the power management on ARM
+ * PM-QA validation test suite for the power management on Linux
*
* Copyright (C) 2011, Linaro Limited.
*
diff --git a/testcases/proof_o_concept/Makefile b/testcases/proof_o_concept/Makefile
index 1cef8c4..6d54932 100644
--- a/testcases/proof_o_concept/Makefile
+++ b/testcases/proof_o_concept/Makefile
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/proof_o_concept/PM-list_c_states.sh b/testcases/proof_o_concept/PM-list_c_states.sh
index 537fc50..f274419 100755
--- a/testcases/proof_o_concept/PM-list_c_states.sh
+++ b/testcases/proof_o_concept/PM-list_c_states.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/testcases/proof_o_concept/PM-list_p_states.sh b/testcases/proof_o_concept/PM-list_p_states.sh
index 84d684d..8c592bf 100755
--- a/testcases/proof_o_concept/PM-list_p_states.sh
+++ b/testcases/proof_o_concept/PM-list_p_states.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/utils/Makefile b/utils/Makefile
index 6b0db07..6d2783f 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -1,5 +1,5 @@
#
-# PM-QA validation test suite for the power management on ARM
+# PM-QA validation test suite for the power management on Linux
#
# Copyright (C) 2011, Linaro Limited.
#
diff --git a/utils/cpuburn.c b/utils/cpuburn.c
index 12e82c0..af3d2ee 100644
--- a/utils/cpuburn.c
+++ b/utils/cpuburn.c
@@ -1,5 +1,5 @@
/*******************************************************************************
- * PM-QA validation test suite for the power management on ARM
+ * PM-QA validation test suite for the power management on Linux
*
* Copyright (C) 2011, Linaro Limited.
*
diff --git a/utils/cpucycle.c b/utils/cpucycle.c
index dc4a7d7..5ad36bc 100644
--- a/utils/cpucycle.c
+++ b/utils/cpucycle.c
@@ -1,5 +1,5 @@
/*******************************************************************************
- * PM-QA validation test suite for the power management on ARM
+ * PM-QA validation test suite for the power management on Linux
*
* Copyright (C) 2011, Linaro Limited.
*
diff --git a/utils/nanosleep.c b/utils/nanosleep.c
index f366e53..27f197e 100644
--- a/utils/nanosleep.c
+++ b/utils/nanosleep.c
@@ -1,5 +1,5 @@
/*******************************************************************************
- * PM-QA validation test suite for the power management on ARM
+ * PM-QA validation test suite for the power management on Linux
*
* Copyright (C) 2011, Linaro Limited.
*
--
1.7.1