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 generic VMM framework
[palacios.git] / palacios / include / geekos / vmm_sizes.h
1 #ifndef __vmm_sizes
2 #define __vmm_sizes
3 #define KERNEL_LOAD_ADDRESS  0x2fe9d000
4 #define KERNEL_START (KERNEL_LOAD_ADDRESS)
5 #define KERNEL_CORE_LENGTH ( 230 *512)
6 #define KERNEL_END (KERNEL_LOAD_ADDRESS+KERNEL_CORE_LENGTH-1)
7 #define VM_KERNEL_LENGTH ( 97 *512)
8 #define VM_KERNEL_START (KERNEL_LOAD_ADDRESS + KERNEL_CORE_LENGTH)
9 #define VM_BOOT_PACKAGE_START (VM_KERNEL_START) 
10 #define VM_BOOT_PACKAGE_END  (VM_KERNEL_START+VM_KERNEL_LENGTH-1) 
11 #endif