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 guest-iso directive to test vm makefile
Lei Xia [Tue, 14 Oct 2008 19:36:20 +0000 (14:36 -0500)]
misc/test_vm/build/Makefile

index 786d43a..bacef9f 100644 (file)
@@ -232,21 +232,14 @@ fd.img : geekos/fd_boot.bin geekos/setup.bin geekos/kernel.bin
        cat geekos/fd_boot.bin geekos/setup.bin geekos/kernel.bin > $@
 
 
-# make ready to boot over PXE
-pxe:   fd.img
-       cp fd.img /tftpboot/vmm.img
-       $(PAD) /tftpboot/vmm.img 1474560
 
-
-vm:    geekos/kernel.bin
-       cp geekos/kernel.bin ../../vmm-hack1/build/vm_kernel
-
-guest_img: fd.img
+guest-img: fd.img
        cp fd.img guest.img
        $(PAD) guest.img 1474560
 
-geekos/test: geekos/test.o
-       $(CC) geekos/test.o -o geekos/test
+guest-iso: guest-img
+
+       mkisofs -pad -b guest.img -R -o guest.iso guest.img