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 memory ranges
[palacios.git] / palacios / build / Makefile
index 7bf6dc7..c3712a2 100644 (file)
@@ -1,6 +1,6 @@
 # Makefile for GeekOS kernel, userspace, and tools
 # Copyright (c) 2004,2005 David H. Hovemeyer <daveho@cs.umd.edu>
-# $Revision: 1.13 $
+# $Revision: 1.14 $
 
 # This is free software.  You are permitted to use,
 # redistribute, and modify it as specified in the file "COPYING".
@@ -269,21 +269,6 @@ pxe:       fd.img
        $(PAD) /tftpboot/vmm.img 1474560
 
 
-pxe-discovery-pdinda:  fd.img
-       cp fd.img geekos.img
-       $(PAD) geekos.img 1474560
-       /usr/local/vmm-util/pxe_cp geekos.img
-       /usr/local/vmm-util/tty_perm pdinda
-       echo "Copied file to PXE boot area and set serial permissions for pdinda"
-
-
-pxe-discovery-bjp600:  fd.img
-       cp fd.img geekos.img
-       $(PAD) geekos.img 1474560
-       /usr/local/vmm-util/pxe_cp geekos.img
-       /usr/local/vmm-util/tty_perm bjp600
-       echo "Copied file to PXE boot area and set serial permissions for pdinda"
-
 
 # Floppy boot sector (first stage boot loader).
 geekos/fd_boot.bin : geekos/setup.bin geekos/kernel.bin $(PROJECT_ROOT)/src/geekos/fd_boot.asm vm_kernel
@@ -351,6 +336,11 @@ vm_kernel: force
        @echo "VM kernel lives at 0x100000 and is" `$(NUMSECS) vm_kernel` "sectors long"
 
 
+
+vmm_mem_test: geekos/vmm_mem.c
+       $(HOST_CC) -o mem_test -DVMM_MEM_TEST -I../include ../src/geekos/vmm_mem.c 
+
+
 # Clean build directories of generated files
 clean :
        for d in geekos common libc user tools; do \