nuttx-star64/nuttx.its

55 lines
1,010 B
Text
Raw Permalink Normal View History

2023-08-04 08:32:05 +08:00
/dts-v1/;
/ {
description = "NuttX FIT image";
#address-cells = <2>;
images {
vmlinux {
description = "vmlinux";
data = /incbin/("./nuttx.bin");
type = "kernel";
arch = "riscv";
os = "linux";
load = <0x0 0x40200000>;
entry = <0x0 0x40200000>;
compression = "none";
};
ramdisk {
description = "buildroot initramfs";
data = /incbin/("./initrd");
type = "ramdisk";
arch = "riscv";
os = "linux";
load = <0x0 0x46100000>;
compression = "none";
hash-1 {
algo = "sha256";
};
};
fdt {
2023-08-04 09:27:58 +08:00
data = /incbin/("./jh7110-visionfive-v2.dtb");
2023-08-04 08:32:05 +08:00
type = "flat_dt";
arch = "riscv";
load = <0x0 0x46000000>;
compression = "none";
hash-1 {
algo = "sha256";
};
};
};
configurations {
2023-08-04 09:27:58 +08:00
default = "nuttx";
2023-08-04 08:32:05 +08:00
2023-08-04 09:27:58 +08:00
nuttx {
2023-08-04 08:32:05 +08:00
description = "NuttX";
kernel = "vmlinux";
fdt = "fdt";
loadables = "ramdisk";
};
};
};