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.


reworked build system to automatically compile Linux kernel module when selected...
[palacios.git] / linux_module / Makefile
1
2 LDFLAGS += --whole-archive  --script=$(PWD)/link.cmd
3
4 EXTRA_CFLAGS  += -I$(PWD)/../palacios/include/ -DMODULE=1 -D__KERNEL__=1
5
6
7 v3vee-objs:=    palacios.o \
8                 palacios-dev.o \
9                 palacios-vm.o \
10                 palacios-file.o \
11                 palacios-stream.o \
12                 palacios-console.o \
13                 palacios-mm.o \
14                 palacios-serial.o \
15                 palacios-queue.o \
16                 palacios-ringbuffer.o 
17
18 #palacios-socket.o 
19 #palacios-vnet.o palacios-packet.o 
20
21 v3vee-objs += ../libv3vee.a 
22
23
24 obj-m := v3vee.o
25
26
27
28 all:
29         $(MAKE) -C $(CONFIG_LINUX_KERN) M=$(PWD) modules
30
31
32
33 clean:
34         $(MAKE) -C $(CONFIG_LINUX_KERN) M=$(PWD) clean
35