41 lines
1.4 KiB
Diff
41 lines
1.4 KiB
Diff
# HG changeset patch
|
|
# User Ian Campbell <ian.campbell@xensource.com>
|
|
# Date Wed Oct 25 13:58:30 2006 +0100
|
|
# Node ID 266aef9b0386b0742e05893e24e09375b31bf835
|
|
# parent: e715360e82f8d8aa72356fc77df7f4e564a97062
|
|
PV-on-HVM: Include a Makefile in each subdirectory to maintain
|
|
compatability with kernels from before Kbuild files were introduced.
|
|
|
|
This follows best practice as described in
|
|
Documentation/kbuild/modules.txt
|
|
|
|
Signed-off-by: Ian Campbell <ian.campbell@xensource.com>
|
|
Signed-off-by: K. Y. Srinivasan <ksrinivasan@novell.com>
|
|
Signed-off-by: Tsunehisa Doi <Doi.Tsunehisa@jp.fujitsu.com>
|
|
|
|
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
|
|
+++ b/unmodified_drivers/linux-2.6/blkfront/Makefile Wed Oct 25 13:58:30 2006 +0100
|
|
@@ -0,0 +1,3 @@
|
|
+ifneq ($(KERNELRELEASE),)
|
|
+include $(src)/Kbuild
|
|
+endif
|
|
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
|
|
+++ b/unmodified_drivers/linux-2.6/netfront/Makefile Wed Oct 25 13:58:30 2006 +0100
|
|
@@ -0,0 +1,3 @@
|
|
+ifneq ($(KERNELRELEASE),)
|
|
+include $(src)/Kbuild
|
|
+endif
|
|
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
|
|
+++ b/unmodified_drivers/linux-2.6/platform-pci/Makefile Wed Oct 25 13:58:30 2006 +0100
|
|
@@ -0,0 +1,3 @@
|
|
+ifneq ($(KERNELRELEASE),)
|
|
+include $(src)/Kbuild
|
|
+endif
|
|
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
|
|
+++ b/unmodified_drivers/linux-2.6/xenbus/Makefile Wed Oct 25 13:58:30 2006 +0100
|
|
@@ -0,0 +1,3 @@
|
|
+ifneq ($(KERNELRELEASE),)
|
|
+include $(src)/Kbuild
|
|
+endif
|
|
|