diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2012-03-02 11:56:38 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2012-03-02 11:56:38 +0000 |
commit | 412beee6a0349ce430920e2b2faa8009ced4a672 (patch) | |
tree | a45532e27595b703ab6e8106b52a0ba4ab4cb95e /Makefile.target | |
parent | 41c1e2f54e6fc76dbc7047f1a95693f4d37b4623 (diff) |
arm: add device tree support
If compiled with CONFIG_FDT, allow user to specify a device tree file using
the -dtb argument. If the machine supports it then the dtb will be loaded
into memory and passed to the kernel on boot.
Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
[Peter Maydell: Use machine opt rather than global to pass dtb filename]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.target b/Makefile.target index 68a5641183..6a56b3e4b9 100644 --- a/Makefile.target +++ b/Makefile.target @@ -373,6 +373,7 @@ obj-arm-y += vexpress.o obj-arm-y += strongarm.o obj-arm-y += collie.o obj-arm-y += pl041.o lm4549.o +obj-arm-$(CONFIG_FDT) += device_tree.o obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o |