|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 3/4] xenbus: CONFIG_PROC_FS is required for the xenbu
xenbus: CONFIG_PROC_FS is required for the xenbus device
It does not appear that any of the functionality of xenbus_dev
can be provided without CONFIG_PROC_FS
Signed-Off-By: Horms <horms@xxxxxxxxxxxx>
linux-2.6-xen-sparse/drivers/xen/Kconfig | 5 +++++
linux-2.6-xen-sparse/drivers/xen/xenbus/Makefile | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
--- x/linux-2.6-xen-sparse/drivers/xen/Kconfig
+++ x/linux-2.6-xen-sparse/drivers/xen/Kconfig
@@ -84,6 +89,11 @@ config XEN_BLKDEV_BACKEND
block devices to other guests via a high-performance shared-memory
interface.
+config XEN_XENBUS_DEV
+ bool
+ depends on PROC_FS
+ default y
+
config XEN_NETDEV_BACKEND
tristate "Network-device backend driver"
depends on XEN_BACKEND && NET
--- x/linux-2.6-xen-sparse/drivers/xen/xenbus/Makefile
+++ x/linux-2.6-xen-sparse/drivers/xen/xenbus/Makefile
@@ -9,4 +9,4 @@ xenbus-objs += xenbus_client.o
xenbus-objs += xenbus_comms.o
xenbus-objs += xenbus_xs.o
xenbus-objs += xenbus_probe.o
-xenbus-objs += xenbus_dev.o
+obj-$(CONFIG_XEN_XENBUS_DEV) += xenbus_dev.o
--
Horms http://www.vergenet.net/~horms/
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|