Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


added file disk implementation
Jack Lange [Thu, 5 Aug 2010 18:28:48 +0000 (13:28 -0500)]
palacios/src/devices/Kconfig
palacios/src/devices/Makefile

index 9a07e71..0edc9ff 100644 (file)
@@ -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"
index 18d0159..817645d 100644 (file)
@@ -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