Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinWad authored Mar 7, 2023
1 parent 040a886 commit c80c5d3
Showing 3 changed files with 7,890 additions and 0 deletions.
49 changes: 49 additions & 0 deletions fit-image.its
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@


/dts-v1/;

/ {
description = "Test RK3328 Boot image";
#address-cells = <1>;

images {
kernel {
description = "Kernel";
data = /incbin/("Image.gz");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "gzip";
load = <0x02008000>;
entry = <0x02008000>;
hash {
algo = "sha1";
};
};
fdt {
description = "DTB";
data = /incbin/("rk3328-nanopi-r2-rev03.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x33000000>;
entry = <0x33000000>;
hash {
algo = "sha1";
};
};
};

configurations {
default = "standard";
standard {
description = "Standard Boot";
kernel = "kernel";
fdt = "fdt";
hash {
algo = "sha1";
};
};
};

};
Loading

0 comments on commit c80c5d3

Please sign in to comment.