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

52 lines
1017 B
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>;
};
opensbi {
description = "OpenSBI fw_dynamic Firmware";
type = "firmware";
os = "opensbi";
arch = "riscv";
compression = "none";
load = <0x43FE0000>;
entry = <0x43FE0000>;
data = /incbin/("fw_dynamic.bin");
};
fdt-1 {
description = "Flattened Device Tree blob";
data = /incbin/("./u-boot.dtb");
type = "flat_dt";
arch = "riscv";
load = <0x43F00000>;
compression = "none";
};
};
configurations {
default = "conf-1";
conf-1 {
description = "Boot Linux kernel with FDT blob";
firmware = "opensbi";
kernel = "kernel";
fdt = "fdt-1";
};
};
};