annotate kernel/build.xml @ 410:6aa9743ed362 tip

Reflect change in c3 public modifier
author Windel Bouwman
date Mon, 23 Feb 2015 21:06:04 +0100
parents ad6be5454067
children
rev   line source
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
1
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
2 <project name="lcfos-kernel" default="vexpress">
410
6aa9743ed362 Reflect change in c3 public modifier
Windel Bouwman
parents: 408
diff changeset
3 <import name="ppci.buildtasks" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
4
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
5 <property name="src" value="src" />
379
78c27013f02e Removed old recipes
Windel Bouwman
parents: 378
diff changeset
6 <property name="arch" value="arm" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
7
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
8 <target name="vexpress">
393
6ae782a085e0 Added init program
Windel Bouwman
parents: 389
diff changeset
9
6ae782a085e0 Added init program
Windel Bouwman
parents: 389
diff changeset
10 <assemble source="arch/qemu_vexpress/start.asm"
402
0fb6633c42f6 Moved several files to logical locations
Windel Bouwman
parents: 398
diff changeset
11 target="arm" output="obj/start.o" />
393
6ae782a085e0 Added init program
Windel Bouwman
parents: 389
diff changeset
12
402
0fb6633c42f6 Moved several files to logical locations
Windel Bouwman
parents: 398
diff changeset
13 <compile target="arm" sources='*.c3;arch/qemu_vexpress/vexpressA9.c3'
410
6aa9743ed362 Reflect change in c3 public modifier
Windel Bouwman
parents: 408
diff changeset
14 output="obj/kernel.o"
6aa9743ed362 Reflect change in c3 public modifier
Windel Bouwman
parents: 408
diff changeset
15 listing="kernel.lst"
6aa9743ed362 Reflect change in c3 public modifier
Windel Bouwman
parents: 408
diff changeset
16 />
393
6ae782a085e0 Added init program
Windel Bouwman
parents: 389
diff changeset
17
402
0fb6633c42f6 Moved several files to logical locations
Windel Bouwman
parents: 398
diff changeset
18 <link output="obj/kernel.elf"
385
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
19 target="arm"
389
2ec730e45ea1 Added check for recursive struct
Windel Bouwman
parents: 385
diff changeset
20 layout="arch/qemu_vexpress/layout.mmap"
404
a284749c5729 Improved build scripts
Windel Bouwman
parents: 403
diff changeset
21 objects="obj/kernel.o;obj/start.o" />
393
6ae782a085e0 Added init program
Windel Bouwman
parents: 389
diff changeset
22
385
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
23 <objcopy
404
a284749c5729 Improved build scripts
Windel Bouwman
parents: 403
diff changeset
24 objectfile="obj/kernel.elf"
385
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
25 imagename="image"
404
a284749c5729 Improved build scripts
Windel Bouwman
parents: 403
diff changeset
26 format="bin"
408
ad6be5454067 Added image build task
Windel Bouwman
parents: 404
diff changeset
27 output="obj/kernel.bin" />
393
6ae782a085e0 Added init program
Windel Bouwman
parents: 389
diff changeset
28
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
29 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
30
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
31 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
32