linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] cleanup building the new tests
@ 2009-12-14 21:38 John Kacur
  2009-12-14 21:39 ` [PATCH 1/3] The PHONY target for install is incorrectly specified as "all" John Kacur
  0 siblings, 1 reply; 4+ messages in thread
From: John Kacur @ 2009-12-14 21:38 UTC (permalink / raw)
  To: Clark Williams, Carsten Emde; +Cc: John Kacur, linux-rt-users, Thomas Gleixner

Clark - please pull the following patches from
git://git.kernel.org/pub/scm/linux/kernel/git/jkacur/rt-tests.git
branch: rt-tests-dev

Note that the previous set is also merged in the rt-tests-dev branch, so you
can pull everything from there.

John Kacur (3):
  The PHONY target for install is incorrectly specified as "all"
  Remove making of backfire kernel module from the rt-tests makefile
    The kernel module can be made by cding to src/backfire and doing
    make modules sudo make modules_install
  Add a .gitignore file in the backfire directory for generated files.

 Makefile                |    6 ++----
 src/backfire/.gitignore |    5 +++++
 2 files changed, 7 insertions(+), 4 deletions(-)
 create mode 100644 src/backfire/.gitignore


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

* [PATCH 1/3] The PHONY target for install is incorrectly specified as "all"
  2009-12-14 21:38 [PATCH 0/3] cleanup building the new tests John Kacur
@ 2009-12-14 21:39 ` John Kacur
  2009-12-14 21:39   ` [PATCH 2/3] Remove making of backfire kernel module from the rt-tests makefile The kernel module can be made by cding to src/backfire and doing make modules sudo make modules_install John Kacur
  0 siblings, 1 reply; 4+ messages in thread
From: John Kacur @ 2009-12-14 21:39 UTC (permalink / raw)
  To: Clark Williams, Carsten Emde; +Cc: John Kacur, linux-rt-users, Thomas Gleixner

Change the PHONY target for install to install

Signed-off-by: John Kacur <jkacur@redhat.com>
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index 3a85336..d19c992 100644
--- a/Makefile
+++ b/Makefile
@@ -69,7 +69,7 @@ distclean: clean
 changelog:
 	git log >ChangeLog
 
-.PHONY: all
+.PHONY: install
 install: all
 	mkdir -p "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mandir)/man4"
 	mkdir -p "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mandir)/man8"
-- 
1.6.5.2


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

* [PATCH 2/3] Remove making of backfire kernel module from the rt-tests makefile The kernel module can be made by cding to src/backfire and doing make modules sudo make modules_install
  2009-12-14 21:39 ` [PATCH 1/3] The PHONY target for install is incorrectly specified as "all" John Kacur
@ 2009-12-14 21:39   ` John Kacur
  2009-12-14 21:39     ` [PATCH 3/3] Add a .gitignore file in the backfire directory for generated files John Kacur
  0 siblings, 1 reply; 4+ messages in thread
From: John Kacur @ 2009-12-14 21:39 UTC (permalink / raw)
  To: Clark Williams, Carsten Emde; +Cc: John Kacur, linux-rt-users, Thomas Gleixner

Signed-off-by: John Kacur <jkacur@redhat.com>
---
 Makefile |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index d19c992..8e44ec5 100644
--- a/Makefile
+++ b/Makefile
@@ -75,9 +75,7 @@ install: all
 	mkdir -p "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mandir)/man8"
 	cp $(TARGETS) "$(DESTDIR)$(bindir)"
 	mkdir -p "$(DESTDIR)$(srcdir)/backfire"
-	sed s/__VERSION_STRING__/$(VERSION_STRING)/ <src/backfire/backfire.c >"$(DESTDIR)$(srcdir)/backfire/backfire.c"
-	cp src/backfire/Makefile "$(DESTDIR)$(srcdir)/backfire"
-	gzip src/backfire/backfire.4 -c >"$(DESTDIR)$(mandir)/man4/backfire.4.gz
+	gzip src/backfire/backfire.4 -c >"$(DESTDIR)$(mandir)/man4/backfire.4.gz"
 	gzip src/cyclictest/cyclictest.8 -c >"$(DESTDIR)$(mandir)/man8/cyclictest.8.gz"
 	gzip src/pi_tests/pi_stress.8 -c >"$(DESTDIR)$(mandir)/man8/pi_stress.8.gz"
 	gzip src/hwlatdetect/hwlatdetect.8 -c >"$(DESTDIR)$(mandir)/man8/hwlatdetect.8.gz"
-- 
1.6.5.2


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

* [PATCH 3/3] Add a .gitignore file in the backfire directory for generated files.
  2009-12-14 21:39   ` [PATCH 2/3] Remove making of backfire kernel module from the rt-tests makefile The kernel module can be made by cding to src/backfire and doing make modules sudo make modules_install John Kacur
@ 2009-12-14 21:39     ` John Kacur
  0 siblings, 0 replies; 4+ messages in thread
From: John Kacur @ 2009-12-14 21:39 UTC (permalink / raw)
  To: Clark Williams, Carsten Emde; +Cc: John Kacur, linux-rt-users, Thomas Gleixner

Add a .gitignore file in the backfire directory for generated files
that are created when making the kernel module.

Signed-off-by: John Kacur <jkacur@redhat.com>
---
 src/backfire/.gitignore |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)
 create mode 100644 src/backfire/.gitignore

diff --git a/src/backfire/.gitignore b/src/backfire/.gitignore
new file mode 100644
index 0000000..9af500d
--- /dev/null
+++ b/src/backfire/.gitignore
@@ -0,0 +1,5 @@
+Module.symvers
+backfire.ko
+backfire.mod.c
+modules.order
+
-- 
1.6.5.2


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

end of thread, other threads:[~2009-12-14 21:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-14 21:38 [PATCH 0/3] cleanup building the new tests John Kacur
2009-12-14 21:39 ` [PATCH 1/3] The PHONY target for install is incorrectly specified as "all" John Kacur
2009-12-14 21:39   ` [PATCH 2/3] Remove making of backfire kernel module from the rt-tests makefile The kernel module can be made by cding to src/backfire and doing make modules sudo make modules_install John Kacur
2009-12-14 21:39     ` [PATCH 3/3] Add a .gitignore file in the backfire directory for generated files John Kacur

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).