annotate kernel/build.xml @ 385:d056b552d3f4

Made better use of layout
author Windel Bouwman
date Thu, 01 May 2014 14:03:12 +0200
parents 6df89163e114
children 2ec730e45ea1
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">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
3
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
4 <property name="src" value="src" />
379
78c27013f02e Removed old recipes
Windel Bouwman
parents: 378
diff changeset
5 <property name="arch" value="arm" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
6
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
7 <target name="vexpress">
381
6df89163e114 Fix section and ldr pseudo instruction
Windel Bouwman
parents: 379
diff changeset
8 <assemble source="arch/qemu_vexpress/startup_a9.asm" target="arm" output="start.o" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
9 <compile target="arm" sources='arch/vexpressA9.c3' includes="${src}/*.c3" output="vexp.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
10 <compile target="arm" sources='${src}/*.c3' output="henkie.o" />
385
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
11 <link output="kernel.o"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
12 target="arm"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
13 layout="arch/qemu_vexpress/vexpressA9.mmap"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
14 objects="henkie.o;vexp.o;start.o" />
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
15 <objcopy
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
16 objectfile="kernel.o"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
17 imagename="image"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 381
diff changeset
18 output="kernel_arm.bin" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
19 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
20
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
21 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
22