| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /dts-v1/;
- / {
- description = "Rock 5B FIT Image";
- #address-cells = <1>;
- images {
- kernel {
- description = "Kernel";
- data = /incbin/("Image.gz");
- type = "kernel";
- arch = "arm64";
- os = "linux";
- compression = "gzip";
- load = <0x0a200000>;
- entry = <0x0a200000>;
- hash {
- algo = "sha256";
- };
- };
- fdt {
- description = "Device Tree";
- data = /incbin/("rock5b.dtb");
- type = "flat_dt";
- arch = "arm64";
- compression = "none";
- load = <0x0e000000>;
- entry = <0x0e000000>;
- hash {
- algo = "sha256";
- };
- };
- };
- configurations {
- default = "standard";
- standard {
- description = "Standard Boot";
- kernel = "kernel";
- fdt = "fdt";
- hash {
- algo = "sha256";
- };
- };
- };
- };
|