47 lines
746 B
Plaintext
47 lines
746 B
Plaintext
|
/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/("rk3588-rock-5b.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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|