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.


removed ugly module support
Jack Lange [Wed, 5 May 2010 22:24:18 +0000 (17:24 -0500)]
13 files changed:
Kconfig
modules/Kconfig [deleted file]
modules/linux_mods/Kconfig [deleted file]
modules/linux_mods/i386/Kconfig [deleted file]
modules/linux_mods/i386/Makefile [deleted file]
modules/linux_mods/i386/binaries.S [deleted file]
modules/linux_mods/i386/binaries/test.ko [deleted file]
modules/linux_mods/i386/headers.c [deleted file]
modules/v3_mods/Kconfig [deleted file]
modules/v3_mods/i386/Kconfig [deleted file]
modules/v3_mods/i386/Makefile [deleted file]
modules/v3_mods/i386/binaries.S [deleted file]
modules/v3_mods/i386/headers.c [deleted file]

diff --git a/Kconfig b/Kconfig
index fbed666..913dd5e 100644 (file)
--- a/Kconfig
+++ b/Kconfig
@@ -210,13 +210,6 @@ menuconfig SYMMOD
        help
          Enable Symbiotic module loading
 
-if SYMMOD
-
-source "modules/Kconfig"
-
-endif
-
-
 
 endmenu
 
diff --git a/modules/Kconfig b/modules/Kconfig
deleted file mode 100644 (file)
index 11cdb34..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-source "./modules/linux_mods/Kconfig"
-source "./modules/v3_mods/Kconfig"
\ No newline at end of file
diff --git a/modules/linux_mods/Kconfig b/modules/linux_mods/Kconfig
deleted file mode 100644 (file)
index 3869f46..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-config LNX_KERN_MODS
-       bool "Linux kernel modules"
-       select LNX_MOD_32BIT
-       select LNX_MOD_64BIT
-       
-
-
-
-
-config LNX_MOD_32BIT
-       bool "32 bit modules"
-       depends on LNX_KERN_MODS
-
-config LNX_MOD_32BIT_TEST
-       bool "Linux (i386) test module"
-       default y if SYMMOD
-       depends on LNX_MOD_32BIT
-       help 
-           This is a simple 32 bit test Linux kernel module
-
-
-
-
-config LNX_MOD_64BIT
-       bool "64 bit modules" 
-       depends on LNX_KERN_MODS
-       default y               
-
diff --git a/modules/linux_mods/i386/Kconfig b/modules/linux_mods/i386/Kconfig
deleted file mode 100644 (file)
index 28ed4da..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-config LINUX_KERN_MODS
-       bool "Include Linux kernel modules"
-       depends on SYMMOD
-
-if LINUX_KERN_MODS 
-
-config LINUX_TEST_MODULE
-       bool "Linux test module"
-       default y if SYMMOD
-       depends on SYMMOD
-       help 
-           This is a simple test linux kernel module
-
-
-       
-
-endif
diff --git a/modules/linux_mods/i386/Makefile b/modules/linux_mods/i386/Makefile
deleted file mode 100644 (file)
index cdcc933..0000000
+++ /dev/null
@@ -1 +0,0 @@
-obj-$(CONFIG_LNX_MOD_32BIT)   += binaries.o headers.o
\ No newline at end of file
diff --git a/modules/linux_mods/i386/binaries.S b/modules/linux_mods/i386/binaries.S
deleted file mode 100644 (file)
index 753b01b..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#;  -*- fundamental -*-
-
-/* 
- * This file is part of the Palacios Virtual Machine Monitor developed
- * by the V3VEE Project with funding from the United States National 
- * Science Foundation and the Department of Energy.  
- *
- * The V3VEE Project is a joint project between Northwestern University
- * and the University of New Mexico.  You can find out more at 
- * http://www.v3vee.org
- *
- * Copyright (c) 2010, Jack Lange <jarusl@cs.northwestern.edu>
- * Copyright (c) 2010, The V3VEE Project <http://www.v3vee.org> 
- * All rights reserved.
- *
- * Author: Jack Lange <jarusl@cs.northwestern.edu>
- *
- * This is free software.  You are permitted to use,
- * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
- */
-
-.data
-
-#define TOSTR(str) #str
-#define MOD_DIR(name) TOSTR(./modules/linux_mods/i386/binaries/name)
-
-       
-#ifdef CONFIG_LNX_MOD_32BIT_TEST
-.globl v3_lnx_mod_32bit_test_start
-v3_lnx_mod_32bit_test_start:
-.incbin MOD_DIR(test.ko)
-.globl v3_lnx_mod_32bit_test_stop
-v3_lnx_mod_32bit_test_stop:
-#endif
-
diff --git a/modules/linux_mods/i386/binaries/test.ko b/modules/linux_mods/i386/binaries/test.ko
deleted file mode 100644 (file)
index e5af2d2..0000000
Binary files a/modules/linux_mods/i386/binaries/test.ko and /dev/null differ
diff --git a/modules/linux_mods/i386/headers.c b/modules/linux_mods/i386/headers.c
deleted file mode 100644 (file)
index 83b5317..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/* 
- * This file is part of the Palacios Virtual Machine Monitor developed
- * by the V3VEE Project with funding from the United States National 
- * Science Foundation and the Department of Energy.  
- *
- * The V3VEE Project is a joint project between Northwestern University
- * and the University of New Mexico.  You can find out more at 
- * http://www.v3vee.org
- *
- * Copyright (c) 2010, Jack Lange <jarusl@cs.northwestern.edu> 
- * Copyright (c) 2010, The V3VEE Project <http://www.v3vee.org> 
- * All rights reserved.
- *
- * Author: Jack Lange <jarusl@cs.northwestern.edu>
- *
- * This is free software.  You are permitted to use,
- * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
- */
-
-#include <palacios/vmm_symmod.h>
-
-
-
-#ifdef CONFIG_LNX_MOD_32BIT_TEST
-extern uint8_t v3_lnx_mod_32bit_test_start[];
-extern uint8_t v3_lnx_mod_32bit_test_stop[];
-
-register_module("test_32", v3_lnx_mod_32bit_test_start, v3_lnx_mod_32bit_test_stop, V3_SYMMOD_LNX);
-#endif
diff --git a/modules/v3_mods/Kconfig b/modules/v3_mods/Kconfig
deleted file mode 100644 (file)
index 5003358..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-config V3_MODS
-       bool "V3VEE Symbiotic modules"
-       select V3_MOD_32BIT
-       select V3_MOD_64BIT
-       
-
-
-
-
-config V3_MOD_32BIT
-       bool "32 bit modules"
-       depends on V3_MODS
-
-config V3_MOD_32BIT_TEST
-       bool "V3 Sym (i386) test module"
-       default y if SYMMOD
-       depends on V3_MOD_32BIT
-       help 
-           This is a simple 32 bit test Symbiotic Module
-
-
-
-
-config V3_MOD_64BIT
-       bool "64 bit modules" 
-       depends on V3_MODS
-       default y               
-
diff --git a/modules/v3_mods/i386/Kconfig b/modules/v3_mods/i386/Kconfig
deleted file mode 100644 (file)
index 28ed4da..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-config LINUX_KERN_MODS
-       bool "Include Linux kernel modules"
-       depends on SYMMOD
-
-if LINUX_KERN_MODS 
-
-config LINUX_TEST_MODULE
-       bool "Linux test module"
-       default y if SYMMOD
-       depends on SYMMOD
-       help 
-           This is a simple test linux kernel module
-
-
-       
-
-endif
diff --git a/modules/v3_mods/i386/Makefile b/modules/v3_mods/i386/Makefile
deleted file mode 100644 (file)
index cdcc933..0000000
+++ /dev/null
@@ -1 +0,0 @@
-obj-$(CONFIG_LNX_MOD_32BIT)   += binaries.o headers.o
\ No newline at end of file
diff --git a/modules/v3_mods/i386/binaries.S b/modules/v3_mods/i386/binaries.S
deleted file mode 100644 (file)
index 90c2ea3..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#;  -*- fundamental -*-
-
-/* 
- * This file is part of the Palacios Virtual Machine Monitor developed
- * by the V3VEE Project with funding from the United States National 
- * Science Foundation and the Department of Energy.  
- *
- * The V3VEE Project is a joint project between Northwestern University
- * and the University of New Mexico.  You can find out more at 
- * http://www.v3vee.org
- *
- * Copyright (c) 2010, Jack Lange <jarusl@cs.northwestern.edu>
- * Copyright (c) 2010, The V3VEE Project <http://www.v3vee.org> 
- * All rights reserved.
- *
- * Author: Jack Lange <jarusl@cs.northwestern.edu>
- *
- * This is free software.  You are permitted to use,
- * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
- */
-
-.data
-
-#define TOSTR(str) #str
-#define MOD_DIR(name) TOSTR(./modules/v3_mods/i386/binaries/name)
-
-       
-#ifdef CONFIG_V3_MOD_32BIT_TEST
-.globl v3_mod_32bit_test_start
-v3_mod_32bit_test_start:
-.incbin MOD_DIR(test.vo)
-.globl v3_mod_32bit_test_stop
-v3_mod_32bit_test_stop:
-#endif
-
diff --git a/modules/v3_mods/i386/headers.c b/modules/v3_mods/i386/headers.c
deleted file mode 100644 (file)
index e9daaa5..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/* 
- * This file is part of the Palacios Virtual Machine Monitor developed
- * by the V3VEE Project with funding from the United States National 
- * Science Foundation and the Department of Energy.  
- *
- * The V3VEE Project is a joint project between Northwestern University
- * and the University of New Mexico.  You can find out more at 
- * http://www.v3vee.org
- *
- * Copyright (c) 2010, Jack Lange <jarusl@cs.northwestern.edu> 
- * Copyright (c) 2010, The V3VEE Project <http://www.v3vee.org> 
- * All rights reserved.
- *
- * Author: Jack Lange <jarusl@cs.northwestern.edu>
- *
- * This is free software.  You are permitted to use,
- * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
- */
-
-#include <palacios/vmm_symmod.h>
-
-
-
-#ifdef CONFIG_V3_MOD_32BIT_TEST
-extern uint8_t v3_mod_32bit_test_start[];
-extern uint8_t v3_mod_32bit_test_stop[];
-
-register_module("v3_test_32", v3_mod_32bit_test_start, v3_mod_32bit_test_stop, V3_SYMMOD_MOD);
-#endif