diff options
author | Rabin Vincent <rabin@rab.in> | 2015-02-08 16:14:06 +0100 |
---|---|---|
committer | Jesper Nilsson <jespern@axis.com> | 2015-03-25 09:49:48 +0100 |
commit | a9f75ac5a24cb94c2373daa3d73f90d22cf5d94b (patch) | |
tree | b445b1d3aae563e8465e639edf05b782ac50f1d9 /arch/cris/Makefile | |
parent | 43f7071e107ede92ac9e499d218233c8bb4c3607 (diff) | |
download | op-kernel-dev-a9f75ac5a24cb94c2373daa3d73f90d22cf5d94b.zip op-kernel-dev-a9f75ac5a24cb94c2373daa3d73f90d22cf5d94b.tar.gz |
CRISv32: add device tree support
Add support for booting CRISv32 with a built-in device tree.
Signed-off-by: Rabin Vincent <rabin@rab.in>
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Diffstat (limited to 'arch/cris/Makefile')
-rw-r--r-- | arch/cris/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/cris/Makefile b/arch/cris/Makefile index 39dc7d0..4a5404b 100644 --- a/arch/cris/Makefile +++ b/arch/cris/Makefile @@ -40,6 +40,10 @@ else MACH := endif +ifneq ($(CONFIG_BUILTIN_DTB),"") +core-$(CONFIG_OF) += arch/cris/boot/dts/ +endif + LD = $(CROSS_COMPILE)ld -mcrislinux OBJCOPYFLAGS := -O binary -R .note -R .comment -S |