public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86: suppress realmode.bin is up to date message
@ 2014-04-15 17:58 Peter Foley
  2014-04-16  7:40 ` [tip:x86/urgent] x86/build: Supress " tip-bot for Peter Foley
  2014-04-16 13:24 ` [tip:x86/build] " tip-bot for Peter Foley
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Foley @ 2014-04-15 17:58 UTC (permalink / raw)
  To: linux-kernel; +Cc: Peter Foley, tglx, mingo, hpa, x86

suppress the below unnecessary message.

make[3]: 'arch/x86/realmode/rm/realmode.bin' is up to date.

Signed-off-by: Peter Foley <pefoley2@pefoley.com>
---
 arch/x86/realmode/rm/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/x86/realmode/rm/Makefile b/arch/x86/realmode/rm/Makefile
index 3497f14..7c0d7be 100644
--- a/arch/x86/realmode/rm/Makefile
+++ b/arch/x86/realmode/rm/Makefile
@@ -52,8 +52,9 @@ $(obj)/realmode.elf: $(obj)/realmode.lds $(REALMODE_OBJS) FORCE
 OBJCOPYFLAGS_realmode.bin := -O binary
 
 targets += realmode.bin
-$(obj)/realmode.bin: $(obj)/realmode.elf $(obj)/realmode.relocs
+$(obj)/realmode.bin: $(obj)/realmode.elf $(obj)/realmode.relocs FORCE
 	$(call if_changed,objcopy)
+	@:
 
 quiet_cmd_relocs = RELOCS  $@
       cmd_relocs = arch/x86/tools/relocs --realmode $< > $@
-- 
1.9.2


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

* [tip:x86/urgent] x86/build: Supress realmode.bin is up to date message
  2014-04-15 17:58 [PATCH] x86: suppress realmode.bin is up to date message Peter Foley
@ 2014-04-16  7:40 ` tip-bot for Peter Foley
  2014-04-16 13:24 ` [tip:x86/build] " tip-bot for Peter Foley
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Peter Foley @ 2014-04-16  7:40 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: linux-kernel, pefoley2, hpa, mingo, tglx

Commit-ID:  96f4c760d99afae7da28628b30211cd3bf0958d5
Gitweb:     http://git.kernel.org/tip/96f4c760d99afae7da28628b30211cd3bf0958d5
Author:     Peter Foley <pefoley2@pefoley.com>
AuthorDate: Tue, 15 Apr 2014 13:58:13 -0400
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 16 Apr 2014 08:57:18 +0200

x86/build: Supress realmode.bin is up to date message

Supress this unnecessary message during kernel re-build:

   make[3]: 'arch/x86/realmode/rm/realmode.bin' is up to date.

Signed-off-by: Peter Foley <pefoley2@pefoley.com>
Link: http://lkml.kernel.org/r/1397584693-15902-1-git-send-email-pefoley2@pefoley.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 arch/x86/realmode/rm/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/x86/realmode/rm/Makefile b/arch/x86/realmode/rm/Makefile
index 3497f14..7c0d7be 100644
--- a/arch/x86/realmode/rm/Makefile
+++ b/arch/x86/realmode/rm/Makefile
@@ -52,8 +52,9 @@ $(obj)/realmode.elf: $(obj)/realmode.lds $(REALMODE_OBJS) FORCE
 OBJCOPYFLAGS_realmode.bin := -O binary
 
 targets += realmode.bin
-$(obj)/realmode.bin: $(obj)/realmode.elf $(obj)/realmode.relocs
+$(obj)/realmode.bin: $(obj)/realmode.elf $(obj)/realmode.relocs FORCE
 	$(call if_changed,objcopy)
+	@:
 
 quiet_cmd_relocs = RELOCS  $@
       cmd_relocs = arch/x86/tools/relocs --realmode $< > $@

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

* [tip:x86/build] x86/build: Supress realmode.bin is up to date message
  2014-04-15 17:58 [PATCH] x86: suppress realmode.bin is up to date message Peter Foley
  2014-04-16  7:40 ` [tip:x86/urgent] x86/build: Supress " tip-bot for Peter Foley
@ 2014-04-16 13:24 ` tip-bot for Peter Foley
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Peter Foley @ 2014-04-16 13:24 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: linux-kernel, pefoley2, hpa, mingo, tglx

Commit-ID:  a9358bc3531901a15e2f7cd48550c9555fc0288f
Gitweb:     http://git.kernel.org/tip/a9358bc3531901a15e2f7cd48550c9555fc0288f
Author:     Peter Foley <pefoley2@pefoley.com>
AuthorDate: Tue, 15 Apr 2014 13:58:13 -0400
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 16 Apr 2014 15:17:24 +0200

x86/build: Supress realmode.bin is up to date message

Supress this unnecessary message during kernel re-build:

   make[3]: 'arch/x86/realmode/rm/realmode.bin' is up to date.

Signed-off-by: Peter Foley <pefoley2@pefoley.com>
Link: http://lkml.kernel.org/r/1397584693-15902-1-git-send-email-pefoley2@pefoley.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 arch/x86/realmode/rm/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/x86/realmode/rm/Makefile b/arch/x86/realmode/rm/Makefile
index 3497f14..7c0d7be 100644
--- a/arch/x86/realmode/rm/Makefile
+++ b/arch/x86/realmode/rm/Makefile
@@ -52,8 +52,9 @@ $(obj)/realmode.elf: $(obj)/realmode.lds $(REALMODE_OBJS) FORCE
 OBJCOPYFLAGS_realmode.bin := -O binary
 
 targets += realmode.bin
-$(obj)/realmode.bin: $(obj)/realmode.elf $(obj)/realmode.relocs
+$(obj)/realmode.bin: $(obj)/realmode.elf $(obj)/realmode.relocs FORCE
 	$(call if_changed,objcopy)
+	@:
 
 quiet_cmd_relocs = RELOCS  $@
       cmd_relocs = arch/x86/tools/relocs --realmode $< > $@

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

end of thread, other threads:[~2014-04-16 13:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-15 17:58 [PATCH] x86: suppress realmode.bin is up to date message Peter Foley
2014-04-16  7:40 ` [tip:x86/urgent] x86/build: Supress " tip-bot for Peter Foley
2014-04-16 13:24 ` [tip:x86/build] " tip-bot for Peter Foley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox