All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule
@ 2016-01-06 23:37 Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 3.10.y] " Kamal Mostafa
                   ` (9 more replies)
  0 siblings, 10 replies; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

Adds a "make all" rule to tools/Makefile, allowing stable maintainers to more
easily build-test candidate patches.  Please consider applying to all relevant
stable kernel versions.

This is v4.4-rc2 upstream commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95
(tools: Add a "make all" rule) backported to all active stable versions which
have tools/Makefile.  Note that the 4.2 and 4.3 patches here are actually just
cherry-picks.

 -Kamal

Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH 3.10.y] tools: Add a "make all" rule
  2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
@ 2016-01-06 23:37 ` Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 3.12.y] " Kamal Mostafa
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
[ kamal: backport to 3.10-stable: build all tools for this version ]
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 tools/Makefile | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index 41067f3..b82a15b 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -22,6 +22,10 @@ help:
 	@echo '  from the kernel command line to build and install one of'
 	@echo '  the tools above'
 	@echo ''
+	@echo '  $$ make tools/all'
+	@echo ''
+	@echo '  builds all tools.'
+	@echo ''
 	@echo '  $$ make tools/install'
 	@echo ''
 	@echo '  installs all tools.'
@@ -50,6 +54,10 @@ selftests: FORCE
 turbostat x86_energy_perf_policy: FORCE
 	$(call descend,power/x86/$@)
 
+all: cgroup cpupower firewire lguest \
+		perf selftests turbostat usb \
+		virtio vm net x86_energy_perf_policy
+
 cpupower_install:
 	$(call descend,power/$(@:_install=),install)
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 3.12.y] tools: Add a "make all" rule
  2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 3.10.y] " Kamal Mostafa
@ 2016-01-06 23:37 ` Kamal Mostafa
  2016-01-09  7:16   ` Jiri Slaby
  2016-01-06 23:37 ` [PATCH 3.13.y] " Kamal Mostafa
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
[ kamal: backport to 3.12-stable: build all tools for this version ]
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 tools/Makefile | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index 41067f3..b82a15b 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -22,6 +22,10 @@ help:
 	@echo '  from the kernel command line to build and install one of'
 	@echo '  the tools above'
 	@echo ''
+	@echo '  $$ make tools/all'
+	@echo ''
+	@echo '  builds all tools.'
+	@echo ''
 	@echo '  $$ make tools/install'
 	@echo ''
 	@echo '  installs all tools.'
@@ -50,6 +54,10 @@ selftests: FORCE
 turbostat x86_energy_perf_policy: FORCE
 	$(call descend,power/x86/$@)
 
+all: cgroup cpupower firewire lguest \
+		perf selftests turbostat usb \
+		virtio vm net x86_energy_perf_policy
+
 cpupower_install:
 	$(call descend,power/$(@:_install=),install)
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 3.13.y] tools: Add a "make all" rule
  2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 3.10.y] " Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 3.12.y] " Kamal Mostafa
@ 2016-01-06 23:37 ` Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 3.14.y] " Kamal Mostafa
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
[ kamal: backport to 3.13-stable: build all tools for this version ]
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 tools/Makefile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index a9b0200..0f28b09 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -23,6 +23,10 @@ help:
 	@echo '  from the kernel command line to build and install one of'
 	@echo '  the tools above'
 	@echo ''
+	@echo '  $$ make tools/all'
+	@echo ''
+	@echo '  builds all tools.'
+	@echo ''
 	@echo '  $$ make tools/install'
 	@echo ''
 	@echo '  installs all tools.'
@@ -54,6 +58,11 @@ turbostat x86_energy_perf_policy: FORCE
 tmon: FORCE
 	$(call descend,thermal/$@)
 
+all: cgroup cpupower firewire lguest \
+		perf selftests turbostat usb \
+		virtio vm net x86_energy_perf_policy \
+		tmon
+
 cpupower_install:
 	$(call descend,power/$(@:_install=),install)
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 3.14.y] tools: Add a "make all" rule
  2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
                   ` (2 preceding siblings ...)
  2016-01-06 23:37 ` [PATCH 3.13.y] " Kamal Mostafa
@ 2016-01-06 23:37 ` Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 3.16.y] " Kamal Mostafa
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
[ kamal: backport to 3.14-stable: build all tools for this version ]
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 tools/Makefile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index feec3ad..6e8ac89 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -24,6 +24,10 @@ help:
 	@echo '  from the kernel command line to build and install one of'
 	@echo '  the tools above'
 	@echo ''
+	@echo '  $$ make tools/all'
+	@echo ''
+	@echo '  builds all tools.'
+	@echo ''
 	@echo '  $$ make tools/install'
 	@echo ''
 	@echo '  installs all tools.'
@@ -58,6 +62,11 @@ turbostat x86_energy_perf_policy: FORCE
 tmon: FORCE
 	$(call descend,thermal/$@)
 
+all: acpi cgroup cpupower firewire lguest \
+		perf selftests turbostat usb \
+		virtio vm net x86_energy_perf_policy \
+		tmon
+
 acpi_install:
 	$(call descend,power/$(@:_install=),install)
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 3.16.y] tools: Add a "make all" rule
  2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
                   ` (3 preceding siblings ...)
  2016-01-06 23:37 ` [PATCH 3.14.y] " Kamal Mostafa
@ 2016-01-06 23:37 ` Kamal Mostafa
  2016-01-14 15:08   ` Luis Henriques
  2016-01-06 23:37 ` [PATCH 3.18.y] " Kamal Mostafa
                   ` (4 subsequent siblings)
  9 siblings, 1 reply; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
[ kamal: backport to 3.16-stable: build all tools for this version ]
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 tools/Makefile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index 9a617ad..f0fd70a 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -25,6 +25,10 @@ help:
 	@echo '  from the kernel command line to build and install one of'
 	@echo '  the tools above'
 	@echo ''
+	@echo '  $$ make tools/all'
+	@echo ''
+	@echo '  builds all tools.'
+	@echo ''
 	@echo '  $$ make tools/install'
 	@echo ''
 	@echo '  installs all tools.'
@@ -62,6 +66,11 @@ turbostat x86_energy_perf_policy: FORCE
 tmon: FORCE
 	$(call descend,thermal/$@)
 
+all: acpi cgroup cpupower hv firewire lguest \
+		perf selftests turbostat usb \
+		virtio vm net x86_energy_perf_policy \
+		tmon
+
 acpi_install:
 	$(call descend,power/$(@:_install=),install)
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 3.18.y] tools: Add a "make all" rule
  2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
                   ` (4 preceding siblings ...)
  2016-01-06 23:37 ` [PATCH 3.16.y] " Kamal Mostafa
@ 2016-01-06 23:37 ` Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 3.19.y] " Kamal Mostafa
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
[ kamal: backport to 3.18-stable: build all tools for this version ]
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 tools/Makefile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index 9a617ad..f0fd70a 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -25,6 +25,10 @@ help:
 	@echo '  from the kernel command line to build and install one of'
 	@echo '  the tools above'
 	@echo ''
+	@echo '  $$ make tools/all'
+	@echo ''
+	@echo '  builds all tools.'
+	@echo ''
 	@echo '  $$ make tools/install'
 	@echo ''
 	@echo '  installs all tools.'
@@ -62,6 +66,11 @@ turbostat x86_energy_perf_policy: FORCE
 tmon: FORCE
 	$(call descend,thermal/$@)
 
+all: acpi cgroup cpupower hv firewire lguest \
+		perf selftests turbostat usb \
+		virtio vm net x86_energy_perf_policy \
+		tmon
+
 acpi_install:
 	$(call descend,power/$(@:_install=),install)
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 3.19.y] tools: Add a "make all" rule
  2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
                   ` (5 preceding siblings ...)
  2016-01-06 23:37 ` [PATCH 3.18.y] " Kamal Mostafa
@ 2016-01-06 23:37 ` Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 4.1.y] " Kamal Mostafa
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
[ kamal: backport to 3.19-stable: build all tools for this version ]
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 tools/Makefile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index 9a617ad..f0fd70a 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -25,6 +25,10 @@ help:
 	@echo '  from the kernel command line to build and install one of'
 	@echo '  the tools above'
 	@echo ''
+	@echo '  $$ make tools/all'
+	@echo ''
+	@echo '  builds all tools.'
+	@echo ''
 	@echo '  $$ make tools/install'
 	@echo ''
 	@echo '  installs all tools.'
@@ -62,6 +66,11 @@ turbostat x86_energy_perf_policy: FORCE
 tmon: FORCE
 	$(call descend,thermal/$@)
 
+all: acpi cgroup cpupower hv firewire lguest \
+		perf selftests turbostat usb \
+		virtio vm net x86_energy_perf_policy \
+		tmon
+
 acpi_install:
 	$(call descend,power/$(@:_install=),install)
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 4.1.y] tools: Add a "make all" rule
  2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
                   ` (6 preceding siblings ...)
  2016-01-06 23:37 ` [PATCH 3.19.y] " Kamal Mostafa
@ 2016-01-06 23:37 ` Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 4.2.y] " Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 4.3.y] " Kamal Mostafa
  9 siblings, 0 replies; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
[ kamal: backport to 4.1-stable: build all tools for this version ]
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 tools/Makefile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index 9a617ad..f0fd70a 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -25,6 +25,10 @@ help:
 	@echo '  from the kernel command line to build and install one of'
 	@echo '  the tools above'
 	@echo ''
+	@echo '  $$ make tools/all'
+	@echo ''
+	@echo '  builds all tools.'
+	@echo ''
 	@echo '  $$ make tools/install'
 	@echo ''
 	@echo '  installs all tools.'
@@ -62,6 +66,11 @@ turbostat x86_energy_perf_policy: FORCE
 tmon: FORCE
 	$(call descend,thermal/$@)
 
+all: acpi cgroup cpupower hv firewire lguest \
+		perf selftests turbostat usb \
+		virtio vm net x86_energy_perf_policy \
+		tmon
+
 acpi_install:
 	$(call descend,power/$(@:_install=),install)
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 4.2.y] tools: Add a "make all" rule
  2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
                   ` (7 preceding siblings ...)
  2016-01-06 23:37 ` [PATCH 4.1.y] " Kamal Mostafa
@ 2016-01-06 23:37 ` Kamal Mostafa
  2016-01-06 23:37 ` [PATCH 4.3.y] " Kamal Mostafa
  9 siblings, 0 replies; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/Makefile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index d6f307d..681292b 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -32,6 +32,10 @@ help:
 	@echo '  from the kernel command line to build and install one of'
 	@echo '  the tools above'
 	@echo ''
+	@echo '  $$ make tools/all'
+	@echo ''
+	@echo '  builds all tools.'
+	@echo ''
 	@echo '  $$ make tools/install'
 	@echo ''
 	@echo '  installs all tools.'
@@ -77,6 +81,11 @@ tmon: FORCE
 freefall: FORCE
 	$(call descend,laptop/$@)
 
+all: acpi cgroup cpupower hv firewire lguest \
+		perf selftests turbostat usb \
+		virtio vm net x86_energy_perf_policy \
+		tmon freefall
+
 acpi_install:
 	$(call descend,power/$(@:_install=),install)
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 4.3.y] tools: Add a "make all" rule
  2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
                   ` (8 preceding siblings ...)
  2016-01-06 23:37 ` [PATCH 4.2.y] " Kamal Mostafa
@ 2016-01-06 23:37 ` Kamal Mostafa
  9 siblings, 0 replies; 13+ messages in thread
From: Kamal Mostafa @ 2016-01-06 23:37 UTC (permalink / raw)
  To: stable
  Cc: Jiri Slaby, Kamal Mostafa, Zefan Li, Sasha Levin, Luis Henriques,
	Greg Kroah-Hartman, Jiri Olsa, Jonathan Cameron, Pali Rohar,
	Roberta Dobrescu, Arnaldo Carvalho de Melo

commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/Makefile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index d6f307d..681292b 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -32,6 +32,10 @@ help:
 	@echo '  from the kernel command line to build and install one of'
 	@echo '  the tools above'
 	@echo ''
+	@echo '  $$ make tools/all'
+	@echo ''
+	@echo '  builds all tools.'
+	@echo ''
 	@echo '  $$ make tools/install'
 	@echo ''
 	@echo '  installs all tools.'
@@ -77,6 +81,11 @@ tmon: FORCE
 freefall: FORCE
 	$(call descend,laptop/$@)
 
+all: acpi cgroup cpupower hv firewire lguest \
+		perf selftests turbostat usb \
+		virtio vm net x86_energy_perf_policy \
+		tmon freefall
+
 acpi_install:
 	$(call descend,power/$(@:_install=),install)
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH 3.12.y] tools: Add a "make all" rule
  2016-01-06 23:37 ` [PATCH 3.12.y] " Kamal Mostafa
@ 2016-01-09  7:16   ` Jiri Slaby
  0 siblings, 0 replies; 13+ messages in thread
From: Jiri Slaby @ 2016-01-09  7:16 UTC (permalink / raw)
  To: Kamal Mostafa, stable
  Cc: Zefan Li, Sasha Levin, Luis Henriques, Greg Kroah-Hartman,
	Jiri Olsa, Jonathan Cameron, Pali Rohar, Roberta Dobrescu,
	Arnaldo Carvalho de Melo

On 01/07/2016, 12:37 AM, Kamal Mostafa wrote:
> commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.

Applied. Thanks.

-- 
js
suse labs

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 3.16.y] tools: Add a "make all" rule
  2016-01-06 23:37 ` [PATCH 3.16.y] " Kamal Mostafa
@ 2016-01-14 15:08   ` Luis Henriques
  0 siblings, 0 replies; 13+ messages in thread
From: Luis Henriques @ 2016-01-14 15:08 UTC (permalink / raw)
  To: Kamal Mostafa
  Cc: stable, Jiri Slaby, Zefan Li, Sasha Levin, Greg Kroah-Hartman,
	Jiri Olsa, Jonathan Cameron, Pali Rohar, Roberta Dobrescu,
	Arnaldo Carvalho de Melo

On Wed, Jan 06, 2016 at 03:37:07PM -0800, Kamal Mostafa wrote:
> commit f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95 upstream.
> 
> Signed-off-by: Kamal Mostafa <kamal@canonical.com>
> Acked-by: Pavel Machek <pavel@ucw.cz>
> Cc: Jiri Olsa <jolsa@kernel.org>
> Cc: Jonathan Cameron <jic23@kernel.org>
> Cc: Pali Rohar <pali.rohar@gmail.com>
> Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
> Link: http://lkml.kernel.org/r/1447280736-2161-2-git-send-email-kamal@canonical.com
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> [ kamal: backport to 3.16-stable: build all tools for this version ]

Thanks Kamal, queuing this for the next 3.16 kernel.

Cheers,
--
Lu�s

> Signed-off-by: Kamal Mostafa <kamal@canonical.com>
> ---
>  tools/Makefile | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/tools/Makefile b/tools/Makefile
> index 9a617ad..f0fd70a 100644
> --- a/tools/Makefile
> +++ b/tools/Makefile
> @@ -25,6 +25,10 @@ help:
>  	@echo '  from the kernel command line to build and install one of'
>  	@echo '  the tools above'
>  	@echo ''
> +	@echo '  $$ make tools/all'
> +	@echo ''
> +	@echo '  builds all tools.'
> +	@echo ''
>  	@echo '  $$ make tools/install'
>  	@echo ''
>  	@echo '  installs all tools.'
> @@ -62,6 +66,11 @@ turbostat x86_energy_perf_policy: FORCE
>  tmon: FORCE
>  	$(call descend,thermal/$@)
>  
> +all: acpi cgroup cpupower hv firewire lguest \
> +		perf selftests turbostat usb \
> +		virtio vm net x86_energy_perf_policy \
> +		tmon
> +
>  acpi_install:
>  	$(call descend,power/$(@:_install=),install)
>  
> -- 
> 1.9.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe stable" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2016-01-14 15:09 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-06 23:37 [PATCH 3.10.y to 4.3.y] tools: Add a "make all" rule Kamal Mostafa
2016-01-06 23:37 ` [PATCH 3.10.y] " Kamal Mostafa
2016-01-06 23:37 ` [PATCH 3.12.y] " Kamal Mostafa
2016-01-09  7:16   ` Jiri Slaby
2016-01-06 23:37 ` [PATCH 3.13.y] " Kamal Mostafa
2016-01-06 23:37 ` [PATCH 3.14.y] " Kamal Mostafa
2016-01-06 23:37 ` [PATCH 3.16.y] " Kamal Mostafa
2016-01-14 15:08   ` Luis Henriques
2016-01-06 23:37 ` [PATCH 3.18.y] " Kamal Mostafa
2016-01-06 23:37 ` [PATCH 3.19.y] " Kamal Mostafa
2016-01-06 23:37 ` [PATCH 4.1.y] " Kamal Mostafa
2016-01-06 23:37 ` [PATCH 4.2.y] " Kamal Mostafa
2016-01-06 23:37 ` [PATCH 4.3.y] " Kamal Mostafa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.