|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 2/4] xenbus: CONFIG_PROC_FS is required for the xenbu
xenbus: CONFIG_PROC_FS is required for the xenbus's privcmd
It does not appear that any of the functionality of xenbus' privcmd
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/privcmd/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
@@ -28,6 +28,11 @@ config XEN_UNPRIVILEGED_GUEST
bool
default !XEN_PRIVILEGED_GUEST
+config XEN_PRIVCMD
+ bool
+ depends on PROC_FS
+ default y
+
config XEN_BACKEND
tristate "Backend driver support"
default y
--- x/linux-2.6-xen-sparse/drivers/xen/privcmd/Makefile
+++ x/linux-2.6-xen-sparse/drivers/xen/privcmd/Makefile
@@ -1,2 +1,2 @@
-obj-y := privcmd.o
+obj-$(CONFIG_XEN_PRIVCMD) := privcmd.o
--
Horms http://www.vergenet.net/~horms/
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|