All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] tools: Actually install tmon in the install rule
@ 2015-11-11 22:25 Kamal Mostafa
  2015-11-11 22:25 ` [PATCH 2/2] tools: Add a "make all" rule Kamal Mostafa
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Kamal Mostafa @ 2015-11-11 22:25 UTC (permalink / raw)
  To: linux-kernel
  Cc: Kamal Mostafa, Arnaldo Carvalho de Melo, Jiri Olsa,
	Pali Rohár, Roberta Dobrescu

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 tools/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/Makefile b/tools/Makefile
index d6f307d..fa9d0a61 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -101,7 +101,7 @@ freefall_install:
 install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
 		perf_install selftests_install turbostat_install usb_install \
 		virtio_install vm_install net_install x86_energy_perf_policy_install \
-		tmon freefall_install
+		tmon_install freefall_install
 
 acpi_clean:
 	$(call descend,power/acpi,clean)
-- 
1.9.1


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

* [PATCH 2/2] tools: Add a "make all" rule
  2015-11-11 22:25 [PATCH 1/2] tools: Actually install tmon in the install rule Kamal Mostafa
@ 2015-11-11 22:25 ` Kamal Mostafa
  2015-11-12 21:16   ` Pavel Machek
  2015-11-16 10:58   ` [tip:perf/urgent] " tip-bot for Kamal Mostafa
  2015-11-12 14:17 ` [PATCH 1/2] tools: Actually install tmon in the install rule Arnaldo Carvalho de Melo
  2015-11-16 10:57 ` [tip:perf/urgent] " tip-bot for Kamal Mostafa
  2 siblings, 2 replies; 6+ messages in thread
From: Kamal Mostafa @ 2015-11-11 22:25 UTC (permalink / raw)
  To: linux-kernel
  Cc: Kamal Mostafa, Arnaldo Carvalho de Melo, Jiri Olsa,
	Jonathan Cameron, Pavel Machek, Pali Rohár,
	Roberta Dobrescu

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 fa9d0a61..7dc820a 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] 6+ messages in thread

* Re: [PATCH 1/2] tools: Actually install tmon in the install rule
  2015-11-11 22:25 [PATCH 1/2] tools: Actually install tmon in the install rule Kamal Mostafa
  2015-11-11 22:25 ` [PATCH 2/2] tools: Add a "make all" rule Kamal Mostafa
@ 2015-11-12 14:17 ` Arnaldo Carvalho de Melo
  2015-11-16 10:57 ` [tip:perf/urgent] " tip-bot for Kamal Mostafa
  2 siblings, 0 replies; 6+ messages in thread
From: Arnaldo Carvalho de Melo @ 2015-11-12 14:17 UTC (permalink / raw)
  To: Kamal Mostafa; +Cc: linux-kernel, Jiri Olsa, Pali Rohár, Roberta Dobrescu

Em Wed, Nov 11, 2015 at 02:25:33PM -0800, Kamal Mostafa escreveu:
> Signed-off-by: Kamal Mostafa <kamal@canonical.com>
> ---
>  tools/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Thanks, applied both patches.

- Arnaldo

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

* Re: [PATCH 2/2] tools: Add a "make all" rule
  2015-11-11 22:25 ` [PATCH 2/2] tools: Add a "make all" rule Kamal Mostafa
@ 2015-11-12 21:16   ` Pavel Machek
  2015-11-16 10:58   ` [tip:perf/urgent] " tip-bot for Kamal Mostafa
  1 sibling, 0 replies; 6+ messages in thread
From: Pavel Machek @ 2015-11-12 21:16 UTC (permalink / raw)
  To: Kamal Mostafa
  Cc: linux-kernel, Arnaldo Carvalho de Melo, Jiri Olsa,
	Jonathan Cameron, Pali Rohár, Roberta Dobrescu

On Wed 2015-11-11 14:25:34, Kamal Mostafa wrote:
> Signed-off-by: Kamal Mostafa <kamal@canonical.com>

Acked-by: Pavel Machek <pavel@ucw.cz>

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

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

* [tip:perf/urgent] tools: Actually install tmon in the install rule
  2015-11-11 22:25 [PATCH 1/2] tools: Actually install tmon in the install rule Kamal Mostafa
  2015-11-11 22:25 ` [PATCH 2/2] tools: Add a "make all" rule Kamal Mostafa
  2015-11-12 14:17 ` [PATCH 1/2] tools: Actually install tmon in the install rule Arnaldo Carvalho de Melo
@ 2015-11-16 10:57 ` tip-bot for Kamal Mostafa
  2 siblings, 0 replies; 6+ messages in thread
From: tip-bot for Kamal Mostafa @ 2015-11-16 10:57 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: acme, roberta.dobrescu, tglx, mingo, kamal, linux-kernel, jolsa,
	pali.rohar, hpa

Commit-ID:  836d525baada26e1a7462e87805337b9a9b729f6
Gitweb:     http://git.kernel.org/tip/836d525baada26e1a7462e87805337b9a9b729f6
Author:     Kamal Mostafa <kamal@canonical.com>
AuthorDate: Wed, 11 Nov 2015 14:25:33 -0800
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Thu, 12 Nov 2015 10:48:16 -0300

tools: Actually install tmon in the install rule

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

diff --git a/tools/Makefile b/tools/Makefile
index d6f307d..fa9d0a61 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -101,7 +101,7 @@ freefall_install:
 install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
 		perf_install selftests_install turbostat_install usb_install \
 		virtio_install vm_install net_install x86_energy_perf_policy_install \
-		tmon freefall_install
+		tmon_install freefall_install
 
 acpi_clean:
 	$(call descend,power/acpi,clean)

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

* [tip:perf/urgent] tools: Add a "make all" rule
  2015-11-11 22:25 ` [PATCH 2/2] tools: Add a "make all" rule Kamal Mostafa
  2015-11-12 21:16   ` Pavel Machek
@ 2015-11-16 10:58   ` tip-bot for Kamal Mostafa
  1 sibling, 0 replies; 6+ messages in thread
From: tip-bot for Kamal Mostafa @ 2015-11-16 10:58 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: acme, linux-kernel, tglx, pavel, jolsa, roberta.dobrescu, mingo,
	pali.rohar, kamal, jic23, hpa

Commit-ID:  f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95
Gitweb:     http://git.kernel.org/tip/f6ba98c5dc78708cb7fd29950c4a50c4c7e88f95
Author:     Kamal Mostafa <kamal@canonical.com>
AuthorDate: Wed, 11 Nov 2015 14:25:34 -0800
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Thu, 12 Nov 2015 18:58:10 -0300

tools: Add a "make all" rule

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 fa9d0a61..7dc820a 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)
 

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

end of thread, other threads:[~2015-11-16 10:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-11 22:25 [PATCH 1/2] tools: Actually install tmon in the install rule Kamal Mostafa
2015-11-11 22:25 ` [PATCH 2/2] tools: Add a "make all" rule Kamal Mostafa
2015-11-12 21:16   ` Pavel Machek
2015-11-16 10:58   ` [tip:perf/urgent] " tip-bot for Kamal Mostafa
2015-11-12 14:17 ` [PATCH 1/2] tools: Actually install tmon in the install rule Arnaldo Carvalho de Melo
2015-11-16 10:57 ` [tip:perf/urgent] " tip-bot for 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.