aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/Makefile
diff options
context:
space:
mode:
authorDavid Vrabel <david.vrabel@citrix.com>2012-02-13 14:24:49 +0000
committerDavid Vrabel <david.vrabel@citrix.com>2012-02-13 14:24:49 +0000
commit3e99c95ba1c8a9508b3dc5e94c67f0ae46c7d360 (patch)
tree6505c04f294b81aa344a1a6b6aa18e789f685d74 /xen/common/Makefile
parentc5a41f505852d764e96cbbbd17cfee460c822278 (diff)
downloadxen-3e99c95ba1c8a9508b3dc5e94c67f0ae46c7d360.tar.gz
xen-3e99c95ba1c8a9508b3dc5e94c67f0ae46c7d360.tar.bz2
xen-3e99c95ba1c8a9508b3dc5e94c67f0ae46c7d360.zip
arm, device tree: parse the DTB for RAM location and size
Prior to setting up the page tables, parse the DTB for the location and size of RAM. Use this information to get the physical address to relocate Xen to in setup_pagetables(). Signed-off-by: David Vrabel <david.vrabel@citrix.com> Acked-by: Tim Deegan <tim@xen.org> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'xen/common/Makefile')
-rw-r--r--xen/common/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/xen/common/Makefile b/xen/common/Makefile
index 4b1e6f220c..372b259a11 100644
--- a/xen/common/Makefile
+++ b/xen/common/Makefile
@@ -1,6 +1,7 @@
obj-y += bitmap.o
obj-y += cpu.o
obj-y += cpupool.o
+obj-$(HAS_DEVICE_TREE) += device_tree.o
obj-y += domctl.o
obj-y += domain.o
obj-y += event_channel.o
@@ -60,3 +61,5 @@ subdir-$(ia64) += hvm
subdir-y += libelf
subdir-$(HAS_DEVICE_TREE) += libfdt
+
+CFLAGS += -Ilibfdt