summaryrefslogtreecommitdiff
path: root/system/arm/dt/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'system/arm/dt/Makefile')
-rw-r--r--system/arm/dt/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/system/arm/dt/Makefile b/system/arm/dt/Makefile
index 425230868..62cf65f27 100644
--- a/system/arm/dt/Makefile
+++ b/system/arm/dt/Makefile
@@ -1,4 +1,4 @@
-# Copyright (c) 2015 ARM Limited
+# Copyright (c) 2015-2016 ARM Limited
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -37,7 +37,9 @@ TARGETS=\
armv7_gem5_v1_16cpu.dtb \
armv8_gem5_v1_1cpu.dtb armv8_gem5_v1_2cpu.dtb \
armv8_gem5_v1_4cpu.dtb armv8_gem5_v1_8cpu.dtb \
- armv8_gem5_v1_16cpu.dtb
+ armv8_gem5_v1_16cpu.dtb \
+ armv8_gem5_v1_big_little_2_2.dtb \
+ armv8_gem5_v1_big_little_2_4.dtb
GEN_DTS=mkdir -p .gen; \
$(CPP) -x assembler-with-cpp \
@@ -54,6 +56,10 @@ all: $(TARGETS)
.gen/armv8_gem5_v1_%cpu.dts: armv8.dts platforms/vexpress_gem5_v1.dtsi
$(call GEN_DTS,vexpress_gem5_v1.dtsi,$*)
+.gen/armv8_gem5_v1_big_little%.dts: armv8_big_little.dts \
+ platforms/vexpress_gem5_v1.dtsi
+ $(call GEN_DTS,vexpress_gem5_v1.dtsi,$*)
+
%.dtb: .gen/%.dts
$(DTC) -I dts -O dtb -o $@ $<