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.


753b01bdaa8a7fe3b248edf82ae55979cad1f5d5
[palacios.git] / modules / linux_mods / i386 / binaries.S
1 #;  -*- fundamental -*-
2
3 /* 
4  * This file is part of the Palacios Virtual Machine Monitor developed
5  * by the V3VEE Project with funding from the United States National 
6  * Science Foundation and the Department of Energy.  
7  *
8  * The V3VEE Project is a joint project between Northwestern University
9  * and the University of New Mexico.  You can find out more at 
10  * http://www.v3vee.org
11  *
12  * Copyright (c) 2010, Jack Lange <jarusl@cs.northwestern.edu>
13  * Copyright (c) 2010, The V3VEE Project <http://www.v3vee.org> 
14  * All rights reserved.
15  *
16  * Author: Jack Lange <jarusl@cs.northwestern.edu>
17  *
18  * This is free software.  You are permitted to use,
19  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
20  */
21
22 .data
23
24 #define TOSTR(str) #str
25 #define MOD_DIR(name) TOSTR(./modules/linux_mods/i386/binaries/name)
26
27         
28 #ifdef CONFIG_LNX_MOD_32BIT_TEST
29 .globl v3_lnx_mod_32bit_test_start
30 v3_lnx_mod_32bit_test_start:
31 .incbin MOD_DIR(test.ko)
32 .globl v3_lnx_mod_32bit_test_stop
33 v3_lnx_mod_32bit_test_stop:
34 #endif
35