From: Jack Lange Date: Thu, 5 Aug 2010 18:28:48 +0000 (-0500) Subject: added file disk implementation X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=commitdiff_plain;h=443c4b4c3e443696d5d7e11640f9b2b6650300ba added file disk implementation --- diff --git a/palacios/src/devices/Kconfig b/palacios/src/devices/Kconfig index 9a07e71..0edc9ff 100644 --- a/palacios/src/devices/Kconfig +++ b/palacios/src/devices/Kconfig @@ -271,6 +271,13 @@ config DEBUG_PIT help Enable debugging for the PIT +config FILEDISK + bool "FILEDISK storage backend" + default y + depends on FILE && (IDE || LINUX_VIRTIO_BLOCK) + help + Includes the file based disk backend + config NETDISK bool "NETDISK storage backend" diff --git a/palacios/src/devices/Makefile b/palacios/src/devices/Makefile index 18d0159..817645d 100644 --- a/palacios/src/devices/Makefile +++ b/palacios/src/devices/Makefile @@ -29,6 +29,7 @@ obj-$(CONFIG_NE2K) += ne2k.o obj-$(CONFIG_TMPDISK) += tmpdisk.o obj-$(CONFIG_RAMDISK) += ramdisk.o obj-$(CONFIG_NETDISK) += netdisk.o +obj-$(CONFIG_FILEDISK) += filedisk.o obj-$(CONFIG_CGA) += cga.o obj-$(CONFIG_TELNET_CONSOLE) += telnet_cons.o