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.


automatic build script for the build tools needed for the vmm
Jack Lange [Fri, 22 Feb 2008 17:25:57 +0000 (17:25 +0000)]
SETUP_DEV_ENV.pl [new file with mode: 0755]

diff --git a/SETUP_DEV_ENV.pl b/SETUP_DEV_ENV.pl
new file mode 100755 (executable)
index 0000000..1299e5c
--- /dev/null
@@ -0,0 +1,39 @@
+#!/usr/bin/perl
+
+
+
+$location = `pwd`;
+chomp $location;
+$location .= "/devtools";
+
+
+print "\n";
+print "Installing and configuring the v3vee development environment...\n";
+print "Location: " . $location . "\n\n";
+
+mkdir $location;
+
+
+install_nasm();
+
+
+sub install_nasm {
+  ### Setup vmx capable nasm
+  print "Installing VMX capable NASM...\n";
+  chdir "./utils";
+  print "Unpacking...";
+  `tar -xzf nasm-0.98.39.tar.gz`;
+  print "done\n";
+  chdir "./nasm-0.98.39";
+  print "Patching in VMX support\n";
+  `patch < ../vmx.patch`;
+  print "Patch to fix the stupid installer...\n";
+  `patch < ../nasm-install.patch`;
+  print "Configuring...\n";
+  `./configure --prefix=$location`;
+  print "Compiling...\n";
+  `make`;
+  print "Installing...";
+  `make install`;
+  print "Done!!\n\n";
+}