diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2016-05-18 13:28:41 +0900 |
---|---|---|
committer | Seung-Woo Kim <sw0312.kim@samsung.com> | 2016-12-14 13:50:41 +0900 |
commit | 9fdb85ede43501def4f7c15b4c5fdcf2677ab2fd (patch) | |
tree | 2241e35619244de92b5fe0cf75618126e94ddf5d | |
parent | 51be47bfbb3cea3df29857b87b3c517fb6de49c5 (diff) |
arm64: build: add tizen-tm2 its file to create kernel image for u-boot
This patch adds tizen-tm2 its file to create kernel image for u-boot.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
-rw-r--r-- | arch/arm64/boot/tizen-tm2.its | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/arch/arm64/boot/tizen-tm2.its b/arch/arm64/boot/tizen-tm2.its new file mode 100644 index 000000000000..9bb81cdd4b8c --- /dev/null +++ b/arch/arm64/boot/tizen-tm2.its @@ -0,0 +1,55 @@ +/dts-v1/; +/ { + description = "Combined kernel and dtbs image for Tizen TM2 board"; + #address-cells = <1>; + images { + kernel@0 { + description = "Linux kernel for arm64 exynos5433"; + data = /incbin/("Image.gz"); + type = "kernel"; + arch = "arm64"; + os = "linux"; + compression = "gzip"; + load = <0x20080000>; + entry = <0x20080000>; + hash@1 { + algo = "crc32"; + }; + }; + fdt@0 { + description = "exynos5433-tm2.dtb"; + data = /incbin/("dts/exynos/exynos5433-tm2.dtb"); + type = "flat_dt"; + arch = "arm64"; + compression = "none"; + load = <0x24000000>; + hash@1 { + algo = "crc32"; + }; + }; + fdt@1 { + description = "exynos5433-tm2e.dtb"; + data = /incbin/("dts/exynos/exynos5433-tm2e.dtb"); + type = "flat_dt"; + arch = "arm64"; + compression = "none"; + load = <0x24000000>; + hash@1 { + algo = "crc32"; + }; + }; + }; + configurations { + default = "tm2@0"; + tm2@0 { + description = "Linux kernel with exynos5433-tm2.dtb"; + kernel = "kernel@0"; + fdt = "fdt@0"; + }; + tm2e@1 { + description = "Linux kernel with exynos5433-tm2e.dtb"; + kernel = "kernel@0"; + fdt = "fdt@1"; + }; + }; +}; |