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.


Updated Kconfigs to a reasonable default, appropriate to default guestos image
[palacios.git] / Makefile
index e21caf4..fe05444 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -578,6 +578,8 @@ define rule_palacios__
 
 endef
 
+#all
+all: libv3vee.a build_vm guest_os.img
 
 # palacios image - including updated kernel symbols
 libv3vee.a: $(palacios)
@@ -588,6 +590,15 @@ palacios: libv3vee.a
 palacios.asm: palacios
        $(OBJDUMP) --disassemble $< > $@
 
+# guest builder
+build_vm : utils/guest_creator/*.c utils/guest_creator/*.h
+       (cd utils/guest_creator; make)
+       cp utils/guest_creator/build_vm .
+
+guest_os.img: guest_os.iso guest_os.xml build_vm
+       ./build_vm guest_os.xml -o guest_os.img
+       
+
 # The actual objects are generated when descending, 
 # make sure no implicit rule kicks in
 $(sort  $(palacios)) : $(palacios-dirs) ;