linuxOS_D21X/target/d211/per1_mmc_secure_boot/kernel.its
2024-11-29 16:13:46 +08:00

63 lines
1.2 KiB
Plaintext

/*
* Simple U-Boot uImage source file containing a single kernel and FDT blob
*/
/dts-v1/;
/ {
description = "Artinchip Linux kernel and FDT blob";
#address-cells = <1>;
images {
kernel {
description = "Artinchip Linux kernel";
data = /incbin/("./Image");
type = "kernel";
arch = "riscv";
compression = "none";
os = "linux";
load = <0x40000000>;
entry = <0x40000000>;
signature {
algo = "sha256,rsa2048";
key-name-hint = "dev";
};
};
opensbi {
description = "OpenSBI fw_dynamic Firmware";
type = "firmware";
os = "opensbi";
arch = "riscv";
compression = "none";
load = <0x43FE0000>;
entry = <0x43FE0000>;
data = /incbin/("fw_dynamic.bin");
signature {
algo = "sha256,rsa2048";
key-name-hint = "dev";
};
};
fdt-1 {
description = "Flattened Device Tree blob";
data = /incbin/("./u-boot.dtb");
type = "flat_dt";
arch = "riscv";
compression = "none";
signature {
algo = "sha256,rsa2048";
key-name-hint = "dev";
};
};
};
configurations {
default = "conf-1";
conf-1 {
description = "Boot Linux kernel with FDT blob";
firmware = "opensbi";
kernel = "kernel";
fdt = "fdt-1";
};
};
};