summaryrefslogtreecommitdiff
path: root/kernel/boot.its
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/boot.its')
-rw-r--r--kernel/boot.its83
1 files changed, 83 insertions, 0 deletions
diff --git a/kernel/boot.its b/kernel/boot.its
new file mode 100644
index 0000000..b3f8efa
--- /dev/null
+++ b/kernel/boot.its
@@ -0,0 +1,83 @@
+/dts-v1/;
+
+/ {
+ description = "Chrome OS kernel image with one or more FDT blobs";
+ images {
+ kernel@0 {
+ description = "kernel";
+ data = /incbin/("build/Image");
+ type = "kernel_noload";
+ arch = "arm64";
+ os = "linux";
+ compression = "none";
+ load = <0>;
+ entry = <0>;
+ };
+
+ ramdisk@0 {
+ description = "RAM disk";
+ data = /incbin/("/boot/initrd.img");
+ type = "ramdisk";
+ arch = "arm64";
+ os = "linux";
+ compression = "none";
+ hash@1{
+ algo = "sha1";
+ };
+ };
+
+ fdt@0 {
+ description = "rk3399-gru-bob-r0.dtb";
+ data = /incbin/("dtbs/rk3399-gru-bob-r0.dtb");
+ type = "flat_dt";
+ arch = "arm64";
+ compression = "none";
+ hash@1{
+ algo = "sha1";
+ };
+ };
+
+ fdt@1 {
+ description = "rk3399-gru-bob-r2.dtb";
+ data = /incbin/("dtbs/rk3399-gru-bob-r2.dtb");
+ type = "flat_dt";
+ arch = "arm64";
+ compression = "none";
+ hash@1{
+ algo = "sha1";
+ };
+ };
+
+ fdt@2 {
+ description = "rk3399-gru-bob-r4.dtb";
+ data = /incbin/("dtbs/rk3399-gru-bob-r4.dtb");
+ type = "flat_dt";
+ arch = "arm64";
+ compression = "none";
+ hash@1{
+ algo = "sha1";
+ };
+ };
+ };
+ configurations {
+ default = "conf@0";
+
+ conf@0 {
+ kernel = "kernel@0";
+ ramdisk = "ramdisk@0";
+ fdt = "fdt@0";
+ };
+
+ conf@1 {
+ kernel = "kernel@0";
+ ramdisk = "ramdisk@0";
+ fdt = "fdt@1";
+ };
+
+ conf@2 {
+ kernel = "kernel@0";
+ ramdisk = "ramdisk@0";
+ fdt = "fdt@2";
+ };
+ };
+};