[PATCH] board: altera: arria10: Add default kernel fitImage for Arria10 QSPI SoCDK

sieu.mun.tang at intel.com sieu.mun.tang at intel.com
Thu Sep 1 21:18:41 CEST 2022


From: Tien Fong Chee <tien.fong.chee at intel.com>

Add default fitImage file bundling kernel and dtb images for Arria10
QSPI.

Signed-off-by: Tien Fong Chee <tien.fong.chee at intel.com>
Signed-off-by: Sieu Mun Tang <sieu.mun.tang at intel.com>
---
 board/altera/arria10-socdk/fit_kernel.its | 44 +++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 board/altera/arria10-socdk/fit_kernel.its

diff --git a/board/altera/arria10-socdk/fit_kernel.its b/board/altera/arria10-socdk/fit_kernel.its
new file mode 100644
index 0000000000..c9559f3f1f
--- /dev/null
+++ b/board/altera/arria10-socdk/fit_kernel.its
@@ -0,0 +1,44 @@
+// SPDX-License-Identifier: GPL-2.0
+ /*
+ * Copyright (C) 2019 Intel Corporation <www.intel.com>
+ *
+ */
+
+/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_qspi.dtb");
+			type = "flat_dt";
+			os = "linux";
+			arch = "arm";
+			compression = "none";
+
+		};
+	};
+
+	configurations {
+		default = "conf";
+		conf {
+			description = "Linux boot configuration";
+			kernel = "kernel";
+			fdt = "fdt";
+		};
+	};
+};
-- 
2.25.1



More information about the U-Boot mailing list