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.


Minor change to linux version numbers in module build file
Patrick G. Bridges [Fri, 11 Nov 2011 04:00:55 +0000 (21:00 -0700)]
linux_module/iface-file.c

index 5489764..1df1d6d 100644 (file)
@@ -128,7 +128,7 @@ static int palacios_file_mkdir(const char * pathname, unsigned short perms, int
        struct nameidata nd;
 
        // I'm not 100% sure about the version here, but it was around this time that the API changed
-#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,35) 
+#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,37) 
        ret = kern_path_parent(pathname, &nd);
 #else