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.


some renaming
Jack Lange [Tue, 9 Nov 2010 21:09:44 +0000 (15:09 -0600)]
palacios/src/devices/Kconfig
palacios/src/devices/Makefile
palacios/src/devices/char_stream.c [moved from palacios/src/devices/stream.c with 98% similarity]

index 456d717..b60f420 100644 (file)
@@ -337,11 +337,11 @@ config SERIAL_UART
        help 
          Include virtual serial port
 
-config STREAM
-       bool "Stream device"
+config CHAR_STREAM
+       bool "Stream based character frontend"
        default n
        help
-         Stream Device
+         Include Stream based character device frontend
 
 endmenu
 
index 434caee..88356e1 100644 (file)
@@ -37,4 +37,4 @@ obj-$(CONFIG_CURSES_CONSOLE) += curses_cons.o
 obj-$(CONFIG_PASSTHROUGH_PCI) += pci_passthrough.o
 
 obj-$(CONFIG_SYMMOD) += lnx_virtio_symmod.o
-obj-$(CONFIG_STREAM) += stream.o
+obj-$(CONFIG_CHAR_STREAM) += char_stream.o
similarity index 98%
rename from palacios/src/devices/stream.c
rename to palacios/src/devices/char_stream.c
index 66ee74f..4590cae 100644 (file)
@@ -106,5 +106,5 @@ static int stream_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg)
     return 0;
 }
 
-device_register("STREAM", stream_init)
+device_register("CHAR_STREAM", stream_init)