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 linker script for checkpoint code
Jack Lange [Fri, 16 Sep 2011 19:40:58 +0000 (15:40 -0400)]
linux_module/Makefile
linux_module/ld.chkpt.cmd [new file with mode: 0644]

index d028d2e..0c20052 100644 (file)
@@ -6,6 +6,10 @@ ifdef V3_CONFIG_SYMMOD
 LDFLAGS += --script=$(PWD)/ld.symmod.cmd
 endif
 
+ifdef V3_CONFIG_CHECKPOINT
+LDFLAGS += --script=$(PWD)/ld.chkpt.cmd
+endif
+
 EXTRA_CFLAGS  += -I$(PWD)/../palacios/include/ -include autoconf.h -DMODULE=1 -D__KERNEL__=1
 
 
diff --git a/linux_module/ld.chkpt.cmd b/linux_module/ld.chkpt.cmd
new file mode 100644 (file)
index 0000000..7a46435
--- /dev/null
@@ -0,0 +1,10 @@
+SECTIONS
+{
+       _v3_chkpt_stores :
+       {
+               __start__v3_chkpt_stores = .;
+               *(_v3_chkpt_stores);
+               __stop__v3_chkpt_stores = .;
+       }
+}
+