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.


moved linux module to main Palacios tree
[palacios.git] / linux_module / Makefile
1 KERNELDIR  := ../../linux-2.6.32.y/
2 CONFIG_PALACIOS_PATH := /home/jarusl/palacios
3
4
5
6
7 v3vee-objs := palacios.o palacios-dev.o palacios-vm.o palacios-file.o palacios-stream.o palacios-console.o palacios-mm.o palacios-serial.o palacios-queue.o palacios-ringbuffer.o 
8 #palacios-socket.o 
9 #palacios-vnet.o palacios-packet.o 
10
11 v3vee-objs += ../../palacios/libv3vee.a 
12
13
14 obj-m := v3vee.o
15
16
17 LDFLAGS = --whole-archive  --script=$(PWD)/link.cmd
18
19
20 EXTRA_CFLAGS := -I$(CONFIG_PALACIOS_PATH)/palacios/include/ -DMODULE=1 -D__KERNEL__=1
21
22
23
24 all:
25         $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
26
27
28 clean:
29         $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
30
31 install:
32         $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install /sbin/ -ae
33