56 lines
1.8 KiB
Plaintext
Executable File
56 lines
1.8 KiB
Plaintext
Executable File
/dts-v1/;
|
|
|
|
/ {
|
|
description = "U-boot FIT image for HiFive Nvdla";
|
|
#address-cells = <2>;
|
|
|
|
images {
|
|
vmlinux {
|
|
description = "vmlinux";
|
|
data = /incbin/("../work/linux/arch/riscv/boot/Image");
|
|
type = "kernel";
|
|
arch = "riscv";
|
|
os = "linux";
|
|
load = <0x0 0x80200000>;
|
|
entry = <0x0 0x80200000>;
|
|
compression = "none";
|
|
};
|
|
|
|
ramdisk {
|
|
description = "buildroot initramfs";
|
|
data = /incbin/("../work/initramfs.cpio.gz");
|
|
type = "ramdisk";
|
|
arch = "riscv";
|
|
os = "linux";
|
|
load = <0x0 0x86100000>;
|
|
compression = "none";
|
|
hash-1 {
|
|
algo = "sha256";
|
|
};
|
|
};
|
|
|
|
fdt {
|
|
data = /incbin/("../work/u-boot/arch/riscv/dts/starfive_vic7100_evb.dtb");
|
|
type = "flat_dt";
|
|
arch = "riscv";
|
|
load = <0x0 0x86000000>;
|
|
compression = "none";
|
|
hash-1 {
|
|
algo = "sha256";
|
|
};
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
default = "config-1";
|
|
|
|
config-1 {
|
|
description = "HiFive Nvdla with opensbi";
|
|
kernel = "vmlinux";
|
|
fdt = "fdt";
|
|
loadables = "ramdisk";
|
|
};
|
|
};
|
|
};
|
|
|