summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTien Fong Chee <tien.fong.chee@intel.com>2019-09-29 23:37:52 +0800
committerTien Fong Chee(old_UID 16019) <tfchee@sj-iccf0232.altera.com>2019-10-09 03:19:14 -0700
commit5c4d4439cd74a20062874b22e45bb422a91f15a8 (patch)
tree1255a01411be547375a45784e946fe26bfd45f0f
parent5b35d3b0a2d665785c28d3557aa1debd6dc0dd36 (diff)
downloadu-boot-socfpga-5c4d4439cd74a20062874b22e45bb422a91f15a8.tar.gz
ARM: socfpga: Add default kernel fitImage for Arria10 NAND SoCDK
Add default fitImage file bundling kernel and dtb images for Arria10 NAND. Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
-rw-r--r--board/altera/arria10-socdk/fit_kernel_nand.its44
1 files changed, 44 insertions, 0 deletions
diff --git a/board/altera/arria10-socdk/fit_kernel_nand.its b/board/altera/arria10-socdk/fit_kernel_nand.its
new file mode 100644
index 0000000000..3a2fb62db5
--- /dev/null
+++ b/board/altera/arria10-socdk/fit_kernel_nand.its
@@ -0,0 +1,44 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (C) 2019 Intel Corporation
+ *
+ */
+
+/dts-v1/;
+
+/ {
+ description = "FIT image with kernel and DTB";
+ #address-cells = <1>;
+
+ images {
+ kernel {
+ description = "Linux Kernel";
+ data = /incbin/("../../../Image");
+ type = "kernel";
+ os = "linux";
+ arch = "arm";
+ compression = "none";
+ load = <0x8000>;
+ entry = <0x8000>;
+ };
+
+ fdt {
+ description = "Linux DTB";
+ data = /incbin/("../../../socfpga_arria10_socdk_nand.dtb");
+ type = "flat_dt";
+ os = "linux";
+ arch = "arm";
+ compression = "none";
+
+ };
+ };
+
+ configurations {
+ default = "conf";
+ conf {
+ description = "Linux boot configuration";
+ kernel = "kernel";
+ fdt = "fdt";
+ };
+ };
+};