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 module directory tree and build configuration
[palacios.git] / modules / linux_mods / Kconfig
diff --git a/modules/linux_mods/Kconfig b/modules/linux_mods/Kconfig
new file mode 100644 (file)
index 0000000..3869f46
--- /dev/null
@@ -0,0 +1,31 @@
+
+
+
+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               
+