c77a7acb88
The custom kernel used for the Rock5B features an FIQ debug interface which is enabled by default. As it is not needed, it is disabled. The documentation features instructions on how to re-enable it, if it is needed. Signed-off-by: Kilian Zinnecker <kilian.zinnecker@mail.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
47 lines
738 B
Plaintext
47 lines
738 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/("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";
|
|
};
|
|
};
|
|
};
|
|
};
|